:root {
    --home-navy: #154B88;
    --home-sky: #2795CE;
    --home-brick: #C8320F;
    --home-coral: #E25524;
    --home-leaf: #5CAC36;
    --home-forest: #056E38;
    --home-amber: #F38C00;
    --home-gold: #FFB000;
    --home-cream: #fff8ef;
    --home-mist: #f3f8fc;
    --home-ink: #13314f;
}

.home-page {
    background:
        radial-gradient(circle at top left, rgba(39, 149, 206, 0.14), transparent 28%),
        radial-gradient(circle at top right, rgba(243, 140, 0, 0.13), transparent 24%),
        linear-gradient(180deg, #f9fcff 0%, #ffffff 28%, #f8fbff 100%);
    color: var(--home-ink);
}

.btn-primary {
    background-color: var(--home-amber);
    border-color: var(--home-amber);
}

.btn-primary:hover {
    background-color: var(--home-coral);
    border-color: var(--home-coral);
}

.home-page section {
    position: relative;
}

.home-hero {
    padding: 9rem 0 6rem;
    overflow: hidden;
}

.home-hero::before,
.home-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    z-index: 0;
}

.home-hero::before {
    /* width: 320px; */
    height: 320px;
    top: 4rem;
    right: -6rem;
    background: radial-gradient(circle, rgba(39, 149, 206, 0.22), transparent 68%);
}

.home-hero::after {
    width: 240px;
    height: 240px;
    bottom: -2rem;
    left: -4rem;
    background: radial-gradient(circle, rgba(243, 140, 0, 0.16), transparent 68%);
}

.home-hero>.container,
.home-section>.container {
    position: relative;
    z-index: 1;
}

.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.75rem 1.15rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(21, 75, 136, 0.1);
    box-shadow: 0 18px 40px -30px rgba(21, 75, 136, 0.55);
    color: var(--home-navy);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.eyebrow-pill .dot {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--home-amber), var(--home-coral));
    box-shadow: 0 0 0 8px rgba(243, 140, 0, 0.12);
}

.hero-title {
    font-size: clamp(2.7rem, 5vw, 4.8rem);
    line-height: 1.05;
    font-weight: 800;
    color: #0e2d4d;
    letter-spacing: -0.04em;
}

.hero-title .accent {
    background: linear-gradient(135deg, var(--home-navy), var(--home-sky) 45%, var(--home-amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-copy {
    max-width: 640px;
    font-size: 1.08rem;
    line-height: 1.85;
    color: #4f6479;
}

.hero-actions .btn {
    min-width: 210px;
    border-radius: 1rem;
    padding: 0.95rem 1.5rem;
    font-weight: 700;
}

.home-page .btn-primary {
    background: linear-gradient(135deg, var(--home-coral), var(--home-amber));
    border: none;
    box-shadow: 0 22px 40px -28px rgba(21, 75, 136, 0.9);
}

.home-page .btn-primary:hover,
.home-page .btn-primary:focus {
    background: linear-gradient(135deg, var(--home-brick), var(--home-coral));
    box-shadow: 0 22px 40px -28px rgba(21, 75, 136, 0.9);
}

.hero-outline-btn {
    border: 1px solid rgba(21, 75, 136, 0.18);
    background: rgba(255, 255, 255, 0.86);
    color: var(--home-navy);
    box-shadow: 0 16px 34px -28px rgba(21, 75, 136, 0.55);
}

.hero-outline-btn:hover {
    border-color: rgba(21, 75, 136, 0.32);
    background: #ffffff;
    color: var(--home-navy);
}

.hero-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 700px;
    margin-top: 2rem;
}

.hero-metric {
    padding: 1.2rem 1.15rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(21, 75, 136, 0.08);
    box-shadow: 0 22px 40px -32px rgba(21, 75, 136, 0.48);
}

.hero-metric strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f355b;
}

.hero-metric span {
    display: block;
    font-size: 0.92rem;
    color: #5f7286;
    line-height: 1.55;
}

.hero-visual-wrap {
    position: relative;
    padding-left: 2rem;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid rgba(21, 75, 136, 0.12);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 252, 0.92));
    box-shadow: 0 34px 70px -40px rgba(16, 42, 74, 0.4);
    padding: 1.1rem;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(39, 149, 206, 0.1), transparent 35%, rgba(243, 140, 0, 0.08));
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 1.45rem;
}

.floating-card {
    position: absolute;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(21, 75, 136, 0.08);
    box-shadow: 0 24px 45px -32px rgba(13, 39, 66, 0.58);
    backdrop-filter: blur(12px);
}

.floating-card-top {
    top: -1rem;
    left: -1rem;
    padding: 1rem 1.1rem;
    max-width: 230px;
}

.floating-card-bottom {
    right: -1.2rem;
    bottom: 2rem;
    padding: 1.1rem 1.15rem;
    max-width: 255px;
}

.floating-card .icon {
    width: 2.85rem;
    height: 2.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    margin-bottom: 0.75rem;
}

.icon-profit {
    background: rgba(92, 172, 54, 0.12);
    color: var(--home-forest);
}

.icon-brand {
    background: rgba(243, 140, 0, 0.12);
    color: var(--home-coral);
}

.floating-card .label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #708396;
}

.floating-card strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #123252;
    line-height: 1.35;
}

.floating-card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #587084;
}

.home-section {
    padding: 5.8rem 0;
}

.section-tint {
    background:
        radial-gradient(circle at left top, rgba(39, 149, 206, 0.08), transparent 24%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.mini-label {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--home-coral);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.section-heading h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    color: #0f2f4d;
    letter-spacing: -0.03em;
}

.section-heading p {
    color: #617487;
    line-height: 1.8;
    font-size: 1rem;
}

.elegant-card {
    height: 100%;
    padding: 2rem 1.7rem;
    border-radius: 1.8rem;
    border: 1px solid rgba(21, 75, 136, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 28px 55px -42px rgba(15, 45, 79, 0.45);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.elegant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 58px -38px rgba(15, 45, 79, 0.52);
    border-color: rgba(39, 149, 206, 0.18);
}

.elegant-icon {
    width: 4rem;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
    border-radius: 1.2rem;
    color: #fff;
    box-shadow: 0 18px 34px -24px rgba(15, 45, 79, 0.65);
}

.icon-amber {
    background: linear-gradient(135deg, var(--home-amber), var(--home-gold));
}

.icon-blue {
    background: linear-gradient(135deg, var(--home-navy), var(--home-sky));
}

.icon-green {
    background: linear-gradient(135deg, var(--home-leaf), var(--home-forest));
}

.icon-coral {
    background: linear-gradient(135deg, var(--home-coral), var(--home-brick));
}

.elegant-card h4,
.elegant-card h5 {
    color: #103252;
    font-weight: 800;
}

.elegant-card p,
.elegant-card li {
    color: #607385;
    line-height: 1.75;
}

.tone-panel {
    height: 100%;
    padding: 2rem;
    border-radius: 1.9rem;
    border: 1px solid transparent;
    box-shadow: 0 30px 55px -45px rgba(15, 45, 79, 0.55);
}

.tone-panel-warning {
    background: linear-gradient(180deg, rgba(255, 248, 239, 0.95), #ffffff);
    border-color: rgba(243, 140, 0, 0.18);
}

.tone-panel-info {
    background: linear-gradient(180deg, rgba(243, 248, 252, 0.98), #ffffff);
    border-color: rgba(39, 149, 206, 0.18);
}

.tone-panel .tone-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.tone-panel .tone-head .elegant-icon {
    margin-bottom: 0;
    width: 3.3rem;
    height: 3.3rem;
}

.tone-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tone-list li {
    position: relative;
    padding-left: 1.6rem;
}

.tone-list li+li {
    margin-top: 0.8rem;
}

.tone-list li::before {
    content: "";
    position: absolute;
    top: 0.75rem;
    left: 0;
    width: 0.58rem;
    height: 0.58rem;
    border-radius: 999px;
}

.tone-panel-warning .tone-list li::before {
    background: var(--home-amber);
    box-shadow: 0 0 0 6px rgba(243, 140, 0, 0.12);
}

.tone-panel-info .tone-list li::before {
    background: var(--home-sky);
    box-shadow: 0 0 0 6px rgba(39, 149, 206, 0.12);
}

.feature-media-card,
.booking-preview-card,
.cta-band,
.contact-card,
.faq-shell {
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(21, 75, 136, 0.08);
    box-shadow: 0 30px 60px -42px rgba(15, 45, 79, 0.42);
    background: #ffffff;
}

.feature-media-card img,
.booking-preview-image {
    width: 100%;
    display: block;
    object-fit: cover;
}

.feature-media-card img {
    height: 300px;
}

.dashboard-showcase {
    padding: 2rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(255, 176, 0, 0.22), transparent 28%),
        linear-gradient(135deg, var(--home-navy) 0%, #1d6fa7 55%, var(--home-sky) 100%);
    color: #edf8ff;
    box-shadow: 0 34px 70px -36px rgba(21, 75, 136, 0.78);
}

.dashboard-showcase .dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.dashboard-showcase .badge {
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff8dd;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 700;
}

.dashboard-showcase .metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.dashboard-showcase .metric-grid article,
.dashboard-showcase .feature-strip span {
    padding: 1rem 1.05rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.dashboard-showcase .metric-grid strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.5rem;
    color: #ffffff;
}

.dashboard-showcase .metric-grid span {
    color: rgba(237, 248, 255, 0.76);
    line-height: 1.55;
}

.dashboard-showcase .feature-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.support-bullets .bullet-item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #4f6478;
}

.support-bullets .bullet-item i {
    color: var(--home-leaf);
    margin-top: 0.2rem;
}

.booking-preview-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 252, 0.98));
}

.booking-preview-image {
    min-height: 310px;
    height: 100%;
}

.booking-preview-copy {
    padding: 2.2rem;
}

.caption-label {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--home-coral);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.pricing-card {
    height: 100%;
    padding: 2rem 1.7rem;
    border-radius: 1.9rem;
    border: 1px solid rgba(21, 75, 136, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 255, 0.95));
    box-shadow: 0 28px 58px -44px rgba(15, 45, 79, 0.46);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 64px -42px rgba(15, 45, 79, 0.5);
}

.pricing-card.popular {
    background:
        radial-gradient(circle at top right, rgba(255, 176, 0, 0.16), transparent 32%),
        linear-gradient(180deg, rgba(243, 248, 252, 0.98), #ffffff 100%);
    border-color: rgba(39, 149, 206, 0.24);
    transform: translateY(-10px);
}

.pricing-card .popular-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(21, 75, 136, 0.08);
    color: var(--home-navy);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-card .plan-name {
    color: #133150;
    font-weight: 800;
}

.pricing-card .plan-copy {
    min-height: 48px;
    color: #65788a;
}

.pricing-card .price {
    margin: 1.5rem 0;
    font-size: 2.35rem;
    font-weight: 800;
    color: #0f2f4d;
}

.pricing-card .price span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #728394;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #596f82;
    line-height: 1.65;
}

.pricing-features li+li {
    margin-top: 0.85rem;
}

.pricing-features i {
    color: var(--home-sky);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.pricing-card .btn {
    border-radius: 1rem;
    padding: 0.9rem 1.2rem;
    font-weight: 700;
}

.pricing-card .btn-outline-primary {
    color: var(--home-navy);
    border-color: rgba(21, 75, 136, 0.18);
}

.pricing-card .btn-outline-primary:hover {
    background: var(--home-navy);
    border-color: var(--home-navy);
}

.cta-band {
    padding: 3rem;
    background:
        radial-gradient(circle at left top, rgba(255, 176, 0, 0.18), transparent 24%),
        linear-gradient(135deg, #f8fbff 0%, #ffffff 45%, rgba(243, 248, 252, 0.96) 100%);
}

.cta-band .cta-card {
    height: 100%;
    padding: 1.65rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(21, 75, 136, 0.08);
    box-shadow: 0 24px 50px -40px rgba(15, 45, 79, 0.45);
}

.saas-shell {
    border-radius: 2.25rem;
    overflow: hidden;
    background:
        radial-gradient(circle at right top, rgba(255, 176, 0, 0.14), transparent 28%),
        radial-gradient(circle at left bottom, rgba(92, 172, 54, 0.12), transparent 24%),
        linear-gradient(135deg, #0d2f4e 0%, #11436e 42%, #0e5d7f 100%);
    color: #ffffff;
    box-shadow: 0 36px 70px -36px rgba(10, 36, 63, 0.65);
}

.saas-shell .saas-inner {
    padding: 3rem;
}

.saas-plan-card {
    height: 100%;
    padding: 1.6rem;
    border-radius: 1.45rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.saas-plan-card h5,
.saas-plan-card h3 {
    color: #ffffff;
}

.saas-plan-card ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 1rem;
}

.saas-plan-card li {
    display: flex;
    gap: 0.6rem;
    color: rgba(237, 248, 255, 0.82);
}

.saas-plan-card li+li {
    margin-top: 0.55rem;
}

.saas-cta-panel {
    height: 100%;
    padding: 2.3rem;
    border-radius: 1.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.saas-cta-panel .btn-light {
    border-radius: 1rem;
    padding: 0.9rem 1.2rem;
    font-weight: 800;
    color: var(--home-navy);
}

.faq-shell {
    padding: 2rem;
    background: linear-gradient(180deg, #ffffff 0%, rgba(243, 248, 252, 0.92) 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.blog-card {
    height: 100%;
    border-radius: 1.8rem;
    overflow: hidden;
    border: 1px solid rgba(21, 75, 136, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 255, 0.96));
    box-shadow: 0 28px 58px -44px rgba(15, 45, 79, 0.46);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 64px -42px rgba(15, 45, 79, 0.52);
    border-color: rgba(39, 149, 206, 0.18);
}

.blog-thumb {
    position: relative;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-thumb img {
    transform: scale(1.04);
}

.blog-content {
    padding: 1.6rem;
}

.blog-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.95rem;
    color: var(--home-coral);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-content h3 {
    margin-bottom: 0.9rem;
    color: #123252;
    font-size: 1.22rem;
    line-height: 1.45;
    font-weight: 800;
}

.blog-content p {
    margin-bottom: 1.4rem;
    color: #617487;
    line-height: 1.8;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--home-navy);
    font-weight: 800;
    text-decoration: none;
}

.blog-link:hover {
    color: var(--home-sky);
}

.faq-shell .accordion-item {
    border-radius: 1.25rem !important;
    border: 1px solid rgba(21, 75, 136, 0.08);
    overflow: hidden;
    box-shadow: 0 20px 35px -32px rgba(15, 45, 79, 0.48);
}

.faq-shell .accordion-button {
    font-weight: 700;
    color: #163353;
    background: #ffffff;
    box-shadow: none;
}

.faq-shell .accordion-button:not(.collapsed) {
    color: var(--home-navy);
    background: rgba(39, 149, 206, 0.08);
}

.faq-shell .accordion-body {
    color: #607284;
    line-height: 1.8;
}

.contact-copy .contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.contact-copy .contact-icon {
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(39, 149, 206, 0.12);
    color: var(--home-navy);
    flex-shrink: 0;
}

.contact-card {
    padding: 2.25rem;
    background: linear-gradient(180deg, #ffffff 0%, rgba(249, 252, 255, 0.94) 100%);
}

.contact-card .alert {
    border-radius: 1rem;
}

.contact-card .form-control,
.contact-card .form-select {
    border-radius: 1rem;
    border: 1px solid rgba(21, 75, 136, 0.1);
    padding: 0.9rem 1rem;
    color: #163353;
    background: rgba(255, 255, 255, 0.96);
}

.contact-card .form-control:focus,
.contact-card .form-select:focus {
    border-color: rgba(39, 149, 206, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(39, 149, 206, 0.14);
}

@media (max-width: 991.98px) {
    .home-hero {
        padding-top: 8rem;
    }

    .hero-visual-wrap {
        padding-left: 0;
        margin-top: 2rem;
    }

    .hero-image {
        height: 440px;
    }

    .floating-card-top,
    .floating-card-bottom {
        position: static;
        max-width: 100%;
        margin-top: 1rem;
    }

    .pricing-card.popular {
        transform: none;
    }

    .cta-band,
    .saas-shell .saas-inner,
    .contact-card,
    .faq-shell {
        padding: 1.6rem;
    }
}

@media (max-width: 767.98px) {

    .hero-metric-grid,
    .dashboard-showcase .metric-grid,
    .dashboard-showcase .feature-strip,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .booking-preview-copy {
        padding: 1.7rem;
    }
}