/* FlowShipZ — design tokens (logo: navy #003060 + green #68B030) */
:root {
    --navy: #003060;
    --navy-heading: #003060;
    --navy-deep: #00244a;
    /* Primary accent — logo green */
    --accent: #68B030;
    --accent-mid: #7bc045;
    --accent-dark: #5a9629;
    --accent-deep: #4a7d22;
    --accent-soft: #a8d67a;
    --accent-tint: #eef6e6;
    /* Legacy --green* names kept for compatibility */
    --green: var(--accent);
    --green-kicker: var(--accent-deep);
    --green-dark: var(--accent-dark);
    --muted: #64748b;
    --pill-bg: #eef6e6;
    --hero-grad-top: #f4f8fc;
    --hero-grad-bot: #fafbfc;
    --brand-black: #000000;
    --brand-muted: #3d2b2b;
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 10px 28px rgba(0, 0, 0, 0.08);
    --radius-lg: 12px;
    --radius-xl: 14px;
    --radius-btn: 10px;
    --font: "Quicksand", system-ui, sans-serif;
    --hero-desktop-h: 500px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    font-optical-sizing: auto;
    color: var(--navy);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 28%);
    -webkit-font-smoothing: antialiased;
}

.text-navy {
    color: var(--navy) !important;
}

.text-accent,
.text-green {
    color: var(--accent) !important;
}

/* Header — 3-zone grid: logo | centered nav | actions (desktop) */
.site-header {
    background: #fff;
    border-bottom: 1px solid rgba(15, 39, 68, 0.06);
    position: sticky;
    top: 0;
    z-index: 1030;
}

.site-header .navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.header-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 0.75rem;
    min-height: 60px;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
}

.header-shell .navbar-brand {
    grid-column: 1;
    justify-self: start;
    margin-right: 0;
    margin-bottom: 0;
    line-height: 1.15;
    align-self: center;
}

.header-shell .header-toggler {
    grid-column: 2;
    justify-self: end;
}

@media (min-width: 992px) {
    .header-shell {
        grid-template-columns: max-content minmax(0, 1fr) max-content;
        grid-template-rows: auto;
        min-height: 64px;
        padding-top: 0.45rem;
        padding-bottom: 0.45rem;
        column-gap: 1rem;
    }

    .header-shell .navbar-brand {
        grid-column: 1;
        grid-row: 1;
    }

    .header-shell .header-toggler {
        display: none !important;
    }

    .header-shell .header-nav-desktop {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        width: auto;
        max-width: 100%;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
    }

    .header-shell .header-actions--desktop {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }

    .site-header .main-nav .nav-link {
        padding-top: 0.55rem !important;
        padding-bottom: 0.55rem !important;
    }

    .site-header .main-nav .nav-link.active::after {
        bottom: 0.2rem;
    }
}

/* Mobile drawer — slides in from the right (Bootstrap offcanvas) */
.nav-offcanvas {
    width: min(20rem, 88vw) !important;
    border-left: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.12);
}

.nav-offcanvas .offcanvas-header {
    background: #fafbfc;
}

.nav-offcanvas-links .nav-link {
    border-radius: 10px;
    padding: 0.65rem 1rem !important;
    font-weight: 500;
    color: var(--navy-heading);
    transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-offcanvas-links .nav-link:hover,
.nav-offcanvas-links .nav-link:focus {
    background: #f1f5f9;
    color: var(--green-dark);
}

.nav-offcanvas-links .nav-link.active {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.16), rgba(14, 165, 233, 0.06));
    color: var(--navy-heading);
}

.nav-offcanvas-links .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    margin-top: 0.35rem;
    margin-bottom: 0.5rem;
    box-shadow: none !important;
    border: 1px solid #e8ecf0 !important;
}

.nav-offcanvas-links .dropdown-toggle::after {
    float: right;
    margin-top: 0.45em;
}

.brand-logo {
    display: block;
    height: auto;
    max-height: 44px;
    width: auto;
    max-width: min(180px, 52vw);
}

@media (min-width: 992px) {
    .brand-logo {
        max-height: 50px;
        max-width: 200px;
    }
}

.brand-logo--drawer {
    max-height: 38px;
    max-width: 150px;
}

.main-nav .nav-link {
    color: var(--navy);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem !important;
    position: relative;
}

.main-nav .nav-link:hover {
    color: var(--green);
}

.main-nav .nav-link.active {
    color: var(--navy);
}

.main-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.15rem;
    height: 3px;
    border-radius: 2px;
    background: var(--navy-deep);
}

.main-nav .dropdown-toggle::after {
    margin-left: 0.35em;
    vertical-align: 0.12em;
}

.btn-login {
    background: #fff;
    border: 1px solid #cfd8e3;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.45rem 1rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-login:hover {
    background: #f8fafc;
    border-color: var(--navy);
    color: var(--navy);
}

.btn-signup {
    background: var(--green);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.45rem 1rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-signup:hover {
    background: var(--green-dark);
    color: #fff;
    filter: brightness(0.95);
}

.btn-icon {
    flex-shrink: 0;
}

.navbar-toggler {
    width: 42px;
    height: 42px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 10px;
}

.toggler-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 1px;
}

/* Hero */
.hero-section {
    padding: 2.25rem 0 3.25rem;
    background: linear-gradient(180deg, var(--hero-grad-top) 0%, #ffffff 50%, var(--hero-grad-bot) 100%);
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
    background: var(--pill-bg);
    color: var(--navy-heading);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.42rem 1rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    border: 1px solid rgba(14, 116, 144, 0.12);
}

.hero-pill .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
}

.hero-title {
    font-size: clamp(2.15rem, 4.2vw, 2.9rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--navy-heading);
}

.hero-lead {
    font-size: 0.95rem;
    max-width: 32rem;
    line-height: 1.65;
    color: var(--muted) !important;
}

.hero-features {
    max-width: 520px;
    margin-top: 1.5rem;
}

.feat-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.45rem;
}

.feat-blue {
    background: var(--accent-tint);
    color: var(--accent-deep);
}

.feat-accent,
.feat-green {
    background: var(--accent-tint);
    color: var(--accent-dark);
}

.feat-purple {
    background: #ede9fe;
    color: #7c3aed;
}

.feat-orange {
    background: #ffedd5;
    color: #ea580c;
}

.feat-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--navy-heading);
    line-height: 1.25;
    display: block;
}

.btn-primary-dark {
    background: var(--navy-deep);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 0.62rem 1.2rem;
    border-radius: var(--radius-btn);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-dark:hover {
    background: var(--navy-deep);
    color: #fff;
}

.btn-outline-navy {
    background: #fff;
    border: 2px solid var(--navy-deep);
    color: var(--navy-deep);
    font-weight: 600;
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-btn);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

/* Hero visual + tracking card */
.hero-visual {
    position: relative;
    padding-top: 0;
}

.hero-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
   
    height: 420px;
}

/* Desktop: fixed-height hero (500px), balanced copy, image flush right */
@media (min-width: 992px) {
    .hero-section {
        overflow-x: clip;
        padding: 0;
        height: var(--hero-desktop-h);
        min-height: var(--hero-desktop-h);
        max-height: var(--hero-desktop-h);
    }

    .hero-section > .container {
        padding-right: 0;
        height: 100%;
    }

    .hero-section > .container > .row.hero-row {
        margin-right: 0;
        height: 100%;
        min-height: var(--hero-desktop-h);
        --bs-gutter-y: 0;
        align-items: stretch;
    }

    .hero-copy {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .hero-pill {
        margin-bottom: 0.75rem;
        padding: 0.38rem 0.95rem;
        font-size: 0.76rem;
        width: fit-content;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(1.95rem, 2.85vw, 2.5rem);
        margin-bottom: 0.65rem;
        line-height: 1.12;
    }

    .hero-lead {
        font-size: 0.92rem;
        line-height: 1.6;
        max-width: 30rem;
    }

    .hero-features {
        margin-top: 1rem;
    }

    .hero-features .feat-circle {
        width: 48px;
        height: 48px;
        margin-bottom: 0.4rem;
    }

    .hero-features .feat-circle svg {
        width: 20px;
        height: 20px;
    }

    .hero-features .feat-label {
        font-size: 0.72rem;
    }

    .hero-cta {
        margin-top: 1rem !important;
    }

    .hero-cta .btn {
        padding-top: 0.55rem;
        padding-bottom: 0.55rem;
        font-size: 0.88rem;
    }

    .hero-section .hero-visual {
        padding-right: 0;
        margin-top: 0;
        margin-bottom: 0;
        height: var(--hero-desktop-h);
        display: flex;
        align-items: stretch;
    }

    .hero-image-wrap {
        width: calc(50vw - 50% + 100%);
        max-width: none;
        margin-right: calc(50% - 50vw);
        margin-left: 0;
        height: var(--hero-desktop-h);
        min-height: var(--hero-desktop-h);
        max-height: var(--hero-desktop-h);
        border-radius: var(--radius-xl) 0 0 var(--radius-xl);
        background-image: none;
    }

    .hero-bg-img {
        display: block;
        object-fit: cover;
        object-position: center right;
    }

    .track-card {
        left: auto;
        right: 1rem;
        bottom: 1rem;
        margin-right: 0;
        max-width: min(340px, calc(100% - 1.75rem));
        padding: 0.85rem 0.95rem 0.8rem;
    }

    .track-tabs {
        margin-bottom: 0.65rem;
        padding-bottom: 0.45rem;
    }

    .track-tab {
        font-size: 0.78rem;
        padding: 0.35rem 0.5rem;
    }

    .input-group-track .form-control {
        min-height: 44px;
        padding: 0.55rem 0.75rem;
        font-size: 0.85rem;
    }

    .input-group-track .btn {
        padding: 0.55rem 0.9rem;
        font-size: 0.8rem;
    }

    .track-safe {
        margin-top: 0.5rem !important;
        font-size: 0.72rem !important;
    }
}

@media (max-width: 991.98px) {
    .hero-image-wrap {
        height: 360px;
    }
}

@media (max-width: 575.98px) {
    .hero-image-wrap {
        height: 320px;
    }
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center right;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 39, 68, 0.12) 0%, transparent 45%);
    pointer-events: none;
}

.track-card {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: -1.5rem;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1rem 1.1rem 0.95rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(15, 23, 42, 0.06);
}


.track-tabs {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eef2f6;
    padding-bottom: 0.5rem;
}

.track-tab {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    padding: 0.35rem 0.5rem;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.track-tab.active {
    color: var(--navy-heading);
    background: #f0fdf4;
}

.track-tab:last-child.active {
    color: var(--accent-dark);
    background: var(--accent-tint);
}

.input-group-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
}

.input-group-track .form-control {
    border: 1px solid #dce4ec;
    border-radius: 10px 0 0 10px;
    font-size: 0.875rem;
    padding: 0.65rem 0.85rem;
    min-height: 48px;
    flex: 1 1 auto;
    min-width: 0;
}

.input-group-track .btn {
    border-radius: 0 10px 10px 0;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.65rem 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    white-space: nowrap;
}

.btn-track-now {
    background: var(--navy-deep);
    color: #fff;
    border: 1px solid var(--navy-deep);
}

.btn-track-now:hover {
    background: #071525;
    color: #fff;
}

.track-safe {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

/* Services */
.services-section {
    padding-top: 5rem !important;
    background: #f8f9fa;
    border-top: 1px solid #eef2f6;
}

.section-kicker {
    color: var(--green-kicker);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
}

.section-title {
    color: var(--navy-heading);
    font-weight: 700;
    font-size: clamp(1.55rem, 3vw, 2.05rem);
}

.services-row {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 1.35rem 1.25rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 29, 61, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-blue {
    background: var(--accent-tint);
    color: var(--accent-deep);
}

.icon-accent,
.icon-green {
    background: var(--accent-tint);
    color: var(--accent-dark);
}

.icon-purple {
    background: #ede9fe;
    color: #7c3aed;
}

.icon-orange {
    background: #ffedd5;
    color: #ea580c;
}

.icon-blue2 {
    background: #e0f2fe;
    color: #0284c7;
}

.service-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-heading);
    margin-bottom: 0.5rem;
}

.service-desc {
    margin: 0;
    line-height: 1.55;
    color: var(--muted) !important;
    font-size: 0.875rem !important;
}

/* Partners */
.partners-section {
    background: #f8f9fa;
    border-top: 1px solid #eef2f6;
}

.partners-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-nav {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #94a3b8;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.partner-nav:hover {
    border-color: #cbd5e1;
    color: var(--navy-heading);
}

.partners-viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.partners-strip {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.partners-slide {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 2.75rem);
    flex-shrink: 0;
    padding: 0.35rem 0.5rem;
}

.partners-slide li {
    flex-shrink: 0;
    min-width: 5.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: #8b95a5;
    letter-spacing: -0.02em;
    list-style: none;
}

.partners-slide li:hover {
    color: var(--navy-heading);
}

/* Stats bar */
.stats-bar {
    background: var(--navy-deep);
    color: #fff;
    padding: 2.25rem 0;
    margin-top: 0;
}

.stats-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 0;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}

@media (min-width: 768px) {
    .stat-item {
        flex: 1;
        justify-content: flex-start;
        padding: 0 0.5rem;
    }
}

.stat-number-line {
    display: block;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    margin-top: 0.15rem;
}

.stat-literal {
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.stat-literal--visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-divider {
    display: none;
}

@media (min-width: 768px) {
    .stat-divider {
        display: block;
        width: 1px;
        height: 44px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.18);
        align-self: center;
    }
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(147, 197, 253, 0.22);
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 52%;
}

.stat-icon-users {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z'/%3E%3C/svg%3E");
}

.stat-icon-box {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M20 8h-3V4H3c-1.1 0-2 .9-2 2v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4z'/%3E%3C/svg%3E");
}

.stat-icon-pin {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
}

.stat-icon-headset {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 1c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z'/%3E%3C/svg%3E");
}

.site-footer-minimal {
    background: #ffffff;
}

/* Spacing under hero for overlapping card */
@media (max-width: 991.98px) {
    .hero-visual {
        margin-bottom: 4rem;
    }
}


/* —— Homepage sections below stats (FlowShipZ theme) —— */

.section-network {
    border-top: 1px solid #eef2f6;
}

.network-checks li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    font-weight: 500;
    color: var(--navy-heading);
    font-size: 0.95rem;
}

.network-checks li:last-child {
    margin-bottom: 0;
}

.check-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.18);
    color: var(--green);
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.growth-chip {
    background: #f8f9fa;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    padding: 1.15rem 0.75rem;
}

.growth-chip-value {
    display: block;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.growth-chip-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.section-growth {
    background:
        radial-gradient(1100px 320px at 12% -8%, rgba(34, 197, 94, 0.12), transparent 58%),
        radial-gradient(900px 300px at 88% 0%, rgba(59, 130, 246, 0.1), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #f4f7fb 45%, #eef2f7 100%);
    border-top: 1px solid #e8ecf0;
}

.growth-headline {
    text-transform: capitalize;
}

.growth-metric-num {
    display: block;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--navy-heading);
    line-height: 1.1;
}

.growth-metric-cap {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.growth-metric-note {
    font-size: 0.7rem !important;
}

.growth-wave {
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #c4b5fd, #f9a8d4, #67e8f9, #93c5fd);
    opacity: 0.85;
    max-width: 280px;
    margin-left: auto;
}

@media (max-width: 991.98px) {
    .growth-wave {
        margin-left: 0;
    }
}

.glass-grid {
    --glass-radius: 18px;
    position: relative;
}

.glass-tile {
    position: relative;
    border-radius: var(--glass-radius, 18px);
    padding: 1.2rem 1rem 1.1rem;
    min-height: 164px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 12px 36px rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
    isolation: isolate;
}

.glass-tile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--glass-radius, 18px) var(--glass-radius, 18px) 0 0;
    opacity: 0.85;
    pointer-events: none;
}

.glass-tile::after {
    content: "";
    position: absolute;
    inset: 45% -25% -35%;
    background: radial-gradient(circle at 55% 25%, rgba(255, 255, 255, 0.55) 0%, transparent 62%);
    pointer-events: none;
    z-index: 0;
}

.glass-tile:hover {
    transform: translateY(-6px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 22px 52px rgba(15, 23, 42, 0.12);
    border-color: rgba(255, 255, 255, 0.95);
}

.glass-tile--sky {
    background: linear-gradient(165deg, rgba(191, 219, 254, 0.55) 0%, rgba(255, 255, 255, 0.92) 55%, #fff 100%);
}

.glass-tile--sky::before {
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-mid) 100%);
}

.glass-tile--mint {
    background: linear-gradient(165deg, rgba(191, 219, 254, 0.55) 0%, rgba(255, 255, 255, 0.92) 55%, #fff 100%);
}

.glass-tile--mint::before {
    background: linear-gradient(90deg, var(--accent-deep) 0%, var(--accent-mid) 100%);
}

.glass-tile--rose {
    background: linear-gradient(165deg, rgba(251, 207, 232, 0.5) 0%, rgba(255, 255, 255, 0.94) 55%, #fff 100%);
}

.glass-tile--rose::before {
    background: linear-gradient(90deg, #ec4899, #f472b6);
}

.glass-tile--violet {
    background: linear-gradient(165deg, rgba(221, 214, 254, 0.55) 0%, rgba(255, 255, 255, 0.92) 55%, #fff 100%);
}

.glass-tile--violet::before {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.glass-tile--amber {
    background: linear-gradient(165deg, rgba(253, 230, 138, 0.55) 0%, rgba(255, 255, 255, 0.92) 55%, #fff 100%);
}

.glass-tile--amber::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.glass-tile--lilac {
    background: linear-gradient(165deg, rgba(216, 180, 254, 0.5) 0%, rgba(255, 255, 255, 0.94) 55%, #fff 100%);
}

.glass-tile--lilac::before {
    background: linear-gradient(90deg, #a855f7, #c084fc);
}

.glass-tile--coral {
    background: linear-gradient(165deg, rgba(254, 215, 170, 0.55) 0%, rgba(255, 255, 255, 0.92) 55%, #fff 100%);
}

.glass-tile--coral::before {
    background: linear-gradient(90deg, #f97316, #fb923c);
}

.glass-tile--peach {
    background: linear-gradient(165deg, rgba(254, 243, 199, 0.55) 0%, rgba(255, 255, 255, 0.94) 55%, #fff 100%);
}

.glass-tile--peach::before {
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 100%);
}

.glass-tile-ic {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff 0%, #f8fafc 100%);
    color: var(--navy-heading);
    margin-bottom: 0.75rem;
    box-shadow:
        0 0 0 1px rgba(15, 23, 42, 0.06),
        0 6px 16px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.glass-tile:hover .glass-tile-ic {
    transform: scale(1.06);
    box-shadow:
        0 0 0 1px rgba(34, 197, 94, 0.22),
        0 8px 20px rgba(34, 197, 94, 0.14);
}

@media (prefers-reduced-motion: reduce) {
    .glass-tile:hover {
        transform: none;
    }

    .glass-tile:hover .glass-tile-ic {
        transform: none;
    }
}

.glass-tile-title {
    position: relative;
    z-index: 1;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--navy-heading);
    margin: 0 0 0.38rem;
    line-height: 1.28;
    letter-spacing: -0.01em;
}

.glass-tile-body {
    position: relative;
    z-index: 1;
}

.glass-tile-desc {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.5;
    color: #475569;
    max-width: 24ch;
}

.glass-grid .col:nth-child(odd) .glass-tile {
    animation: growthCardFloatA 5.8s ease-in-out infinite;
}

.glass-grid .col:nth-child(even) .glass-tile {
    animation: growthCardFloatB 6.4s ease-in-out infinite;
}

@keyframes growthCardFloatA {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes growthCardFloatB {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(2px); }
}

@media (max-width: 575.98px) {
    .glass-tile {
        min-height: 148px;
        padding: 1rem 0.85rem 0.95rem;
    }

    .glass-tile-ic {
        width: 46px;
        height: 46px;
        margin-bottom: 0.55rem;
    }

    .glass-tile-ic svg {
        width: 24px;
        height: 24px;
    }

    .glass-tile-title {
        font-size: 0.83rem;
    }

    .glass-tile-desc {
        font-size: 0.72rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .glass-grid .glass-tile {
        animation: none !important;
    }
}

.spotlight-card {
    border-radius: 24px;
    padding: 1.75rem 1.5rem;
    border: 1px solid rgba(0, 29, 61, 0.06);
    overflow: hidden;
}

.spotlight-card--warm {
    background: linear-gradient(160deg, #fff5f0 0%, #ffedd5 40%, #fff 100%);
}

.spotlight-card--cool {
    background: linear-gradient(160deg, #f0fdf4 0%, var(--accent-tint) 48%, #fff 100%);
}

.spotlight-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-heading);
    margin-bottom: 0.65rem;
}

.spotlight-card-desc {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.spotlight-card-visual {
  
    border-radius: 16px;
    margin-top: auto;
}

.spotlight-card-visual--dash {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.06) 0%, rgba(34, 197, 94, 0.14) 100%),
        repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(255, 255, 255, 0.4) 8px, rgba(255, 255, 255, 0.4) 9px);
}

.spotlight-card-visual--pay {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(14, 116, 144, 0.08) 100%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.9) 0%, transparent 45%);
}

.section-features,
.section-why {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid #e8ecf0;
}

.why-card {
    position: relative;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 16px;
    padding: 1.55rem 1.35rem 1.5rem;
    border: 1px solid rgba(0, 29, 61, 0.07);
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.why-card::before {
    content: "";
    position: absolute;
    inset: -60px -60px auto -60px;
    height: 140px;
    background:
        radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.18), transparent 60%),
        radial-gradient(circle at 70% 20%, rgba(59, 130, 246, 0.10), transparent 55%);
    pointer-events: none;
    opacity: 0.9;
    z-index: 0;
}

.why-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.0) 0px, rgba(255, 255, 255, 0.0) 10px, rgba(15, 23, 42, 0.04) 11px, rgba(15, 23, 42, 0.0) 12px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 56px rgba(15, 23, 42, 0.12);
    border-color: rgba(34, 197, 94, 0.22);
}

.why-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-mid) 100%);
    opacity: 1;
    filter: saturate(1.05);
    box-shadow: 0 10px 24px rgba(34, 197, 94, 0.12);
    z-index: 1;
}

.why-card-accent--green {
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-mid) 100%);
}

.why-card-accent--emerald {
    background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
}

.why-card-accent--purple {
    background: linear-gradient(90deg, #8b5cf6 0%, #a78bfa 100%);
    box-shadow: 0 10px 24px rgba(139, 92, 246, 0.14);
}

.why-card-accent--orange {
    background: linear-gradient(90deg, #f97316 0%, #fb7185 100%);
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.14);
}

.why-mini {
    background: rgba(255, 255, 255, 0.86);
    border-radius: 14px;
    padding: 1.1rem 0.75rem;
    border: 1px solid rgba(0, 29, 61, 0.06);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
    transition: transform 0.22s ease, border-color 0.2s, box-shadow 0.22s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.why-mini:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 8px 28px rgba(34, 197, 94, 0.12);
}

.why-mini::before {
    content: "";
    position: absolute;
    inset: -40px -40px auto -40px;
    height: 110px;
    background: radial-gradient(circle at 25% 40%, rgba(34, 197, 94, 0.18), transparent 60%);
    opacity: 0.8;
    pointer-events: none;
}

.why-mini-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 0 auto 0.5rem;
    border-radius: 12px;
    background: rgba(241, 245, 249, 0.95);
    color: var(--navy-heading);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.why-mini:hover .why-mini-icon {
    transform: translateY(-2px) scale(1.03);
}

.why-mini-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--navy-heading);
    margin-bottom: 0.35rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.why-mini-desc {
    font-size: 0.78rem;
    line-height: 1.45;
}

.feature-tile-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(220, 252, 231, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
    color: var(--accent-dark);
    border: 1px solid rgba(34, 197, 94, 0.18);
    box-shadow: 0 14px 34px rgba(34, 197, 94, 0.12);
    margin-bottom: 1rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    z-index: 1;
    position: relative;
}

.feature-tile-icon--accent,
.feature-tile-icon--green {
    background: linear-gradient(180deg, rgba(220, 252, 231, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-color: rgba(34, 197, 94, 0.18);
    color: var(--accent-dark);
}

.feature-tile-icon--purple {
    background: linear-gradient(180deg, rgba(237, 233, 254, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-color: rgba(124, 58, 237, 0.18);
    box-shadow: 0 14px 34px rgba(124, 58, 237, 0.12);
    color: #7c3aed;
}

.feature-tile-icon--orange {
    background: linear-gradient(180deg, rgba(255, 237, 213, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-color: rgba(249, 115, 22, 0.18);
    box-shadow: 0 14px 34px rgba(249, 115, 22, 0.12);
    color: #ea580c;
}

.why-card:hover .feature-tile-icon {
    transform: translateY(-3px) scale(1.03);
}

.feature-tile-title {
    font-size: 1.07rem;
    font-weight: 800;
    color: var(--navy-heading);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

.feature-tile-desc {
    line-height: 1.55;
    font-size: 0.93rem;
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .why-card:hover,
    .why-mini:hover,
    .why-mini:hover .why-mini-icon,
    .why-card:hover .feature-tile-icon {
        transform: none;
    }
}

/* Dual-row testimonial marquee */
.section-testimonials-marquee {
    background: #fff;
    border-top: 1px solid #eef2f6;
    overflow: hidden;
}

.marquee-wrap {
    position: relative;
    padding: 0.25rem 0 0.5rem;
}

.marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 72px;
    z-index: 2;
    pointer-events: none;
}

.marquee-fade--left {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, transparent 100%);
}

.marquee-fade--right {
    right: 0;
    background: linear-gradient(270deg, #fff 0%, transparent 100%);
}

.marquee-row {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 1.25rem;
    animation: marquee-ltr 55s linear infinite;
}

.marquee-row--rtl .marquee-track {
    animation: marquee-rtl 60s linear infinite;
}

@keyframes marquee-ltr {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-rtl {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }

    .marquee-group:last-child {
        display: none;
    }
}

.marquee-group {
    display: flex;
    gap: 1.25rem;
    flex-shrink: 0;
}

.marquee-card {
    flex: 0 0 auto;
    width: min(340px, 85vw);
    margin: 0;
    padding: 1.25rem 1.35rem;
    background: #f8fafc;
    border: 1px solid #e8ecf0;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
}

.marquee-card blockquote {
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--navy-heading);
    font-style: italic;
    margin: 0;
}

.marquee-card figcaption {
    font-size: 0.85rem;
    color: var(--navy-heading);
}

.section-final-cta {
    background: #0a1d37;
}

.final-cta-inner {
    border-radius: 14px;
    background: linear-gradient(135deg, #0f2744 0%, #0a1d37 50%, #0c4a2e 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 640px;
    margin: 0 auto;
}

.final-cta-title {
    color: #fff;
    font-weight: 700;
    font-size: clamp(1.25rem, 2.8vw, 1.6rem);
    line-height: 1.25;
}

.final-cta-lead {
    color: rgba(255, 255, 255, 0.82);
    max-width: 34rem;
    font-size: 0.875rem;
    line-height: 1.55;
}

.final-cta-btns .btn {
    border-radius: 10px;
    font-size: 0.875rem;
}

.section-final-cta .btn-light {
    border: none;
}

.section-final-cta .btn-outline-light {
    border-width: 2px;
}

.section-final-cta .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
}

/* Full footer (newsletter + columns) */
.site-footer-full {
    background: linear-gradient(180deg, #151032 0%, #0d0a24 55%, #0a0818 100%);
    color: rgba(255, 255, 255, 0.92);
}

.footer-newsletter-title {
    color: #fff;
    font-weight: 700;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    line-height: 1.35;
}

.footer-input-wrap {
    background: #fff;
    border-radius: 999px;
    overflow: hidden;
    padding: 4px 4px 4px 1rem;
    max-width: 520px;
    margin-left: auto;
}

@media (min-width: 992px) {
    .footer-input-wrap {
        margin-left: 0;
        max-width: none;
    }
}

.footer-input-icon {
    display: flex;
    align-items: center;
    color: #94a3b8;
    flex-shrink: 0;
    margin-right: 0.35rem;
}

.footer-email-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    min-width: 0;
    padding: 0.65rem 0.5rem;
}

.footer-submit-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--green) 0%, #1e3a8a 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s ease, filter 0.15s ease;
}

.footer-submit-btn:hover {
    filter: brightness(1.05);
    transform: scale(1.04);
}

.footer-newsletter-note {
    opacity: 0.65;
}

.footer-col-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col-text {
    opacity: 0.75;
    line-height: 1.65;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: inline-block;
    padding: 0.2rem 0;
    transition: color 0.15s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--green);
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-social-link:hover {
    background: var(--green);
    color: #fff;
}

.footer-contact-ic {
    flex-shrink: 0;
    opacity: 0.85;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.55);
}

.why-mini-icon--accent {
    background: rgba(34, 197, 94, 0.14);
    color: var(--green);
}

.why-mini-icon--sky {
    background: rgba(59, 130, 246, 0.12);
    color: #2563eb;
    border-color: rgba(37, 99, 235, 0.16);
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.12);
}

.why-mini-icon--purple {
    background: rgba(139, 92, 246, 0.12);
    color: #7c3aed;
    border-color: rgba(124, 58, 237, 0.16);
    box-shadow: 0 14px 34px rgba(124, 58, 237, 0.12);
}

.why-mini-icon--amber {
    background: rgba(245, 158, 11, 0.14);
    color: #b45309;
    border-color: rgba(180, 83, 9, 0.16);
    box-shadow: 0 14px 34px rgba(180, 83, 9, 0.12);
}

.why-mini-icon--mint {
    background: rgba(45, 212, 191, 0.14);
    color: #0f766e;
    border-color: rgba(15, 118, 110, 0.16);
    box-shadow: 0 14px 34px rgba(15, 118, 110, 0.12);
}

.why-mini-icon--coral {
    background: rgba(249, 115, 22, 0.14);
    color: #ea580c;
    border-color: rgba(234, 88, 12, 0.16);
    box-shadow: 0 14px 34px rgba(234, 88, 12, 0.12);
}

/* —— Inner pages: SaaS layout system —— */
.page-main {
    padding-bottom: 2.25rem; /* ensures content never visually clashes with footer */
    overflow-x: clip;
    position: relative;
    z-index: 1;
}

/* Keep footer always above page visuals */
.site-footer-full {
    position: relative;
    z-index: 5;
}

/* Hero (all inner pages) */
.page-hero {
    position: relative;
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
    background: linear-gradient(165deg, #f0f9ff 0%, #f8fafc 42%, #ffffff 100%);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.page-hero--saas::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 50% at 100% -10%, rgba(34, 197, 94, 0.14), transparent 55%),
        radial-gradient(ellipse 60% 40% at 0% 100%, rgba(16, 185, 129, 0.10), transparent 52%);
    pointer-events: none;
}

.page-hero--saas::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 992px) {
    .page-hero-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: 2.5rem;
    }
}

.page-hero-copy {
    max-width: 38rem;
}

/* Breadcrumb */
.saas-bc-wrap {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.25rem;
    padding: 0.35rem 0.6rem 0.35rem 0.45rem;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 4px 20px rgba(15, 23, 42, 0.05);
}

.saas-bc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.15rem 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.saas-bc__item {
    display: flex;
    align-items: center;
}

.saas-bc__sep {
    display: flex;
    align-items: center;
    color: #94a3b8;
    list-style: none;
    padding: 0 0.1rem;
}

.saas-bc__chev {
    flex-shrink: 0;
    opacity: 0.75;
}

.saas-bc__link {
    color: #64748b;
    text-decoration: none;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    transition: color 0.15s ease, background 0.15s ease;
}

.saas-bc__link:hover {
    color: var(--green-dark);
    background: rgba(34, 197, 94, 0.12);
}

.saas-bc__muted {
    color: #94a3b8;
    padding: 0.2rem 0.35rem;
    user-select: none;
}

.saas-bc__current {
    color: var(--navy-heading);
    font-weight: 700;
    padding: 0.2rem 0.45rem;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 575.98px) {
    .saas-bc__current {
        max-width: 140px;
    }
}

.saas-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-dark);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(16, 185, 129, 0.10));
    border: 1px solid rgba(34, 197, 94, 0.28);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
}

.saas-kicker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.22);
}

.page-hero-title {
    font-weight: 800;
    color: var(--navy-heading);
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.page-hero-lead {
    color: #475569;
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 36rem;
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.35rem;
}

.btn-saas-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    border: none;
    color: #fff;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.28);
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-saas-primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(34, 197, 94, 0.32);
}

.btn-saas-ghost {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.65rem 1.15rem;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.65);
    color: var(--navy-heading);
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.btn-saas-ghost:hover {
    border-color: rgba(34, 197, 94, 0.45);
    background: #fff;
    color: var(--navy-heading);
}

.saas-hero-panel {
    position: relative;
    border-radius: 20px;
    padding: 1.35rem 1.25rem;
    background: linear-gradient(145deg, #000000 0%, #003060 55%, #00244a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
    color: rgba(255, 255, 255, 0.92);
}

.saas-hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.18), transparent 45%);
    pointer-events: none;
}

.saas-hero-panel-inner {
    position: relative;
    z-index: 1;
}

.saas-hero-panel-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1rem;
}

.saas-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
}

.saas-hero-stat {
    text-align: center;
    padding: 0.65rem 0.4rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.saas-hero-stat-val {
    font-weight: 800;
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.75) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.saas-hero-stat-lab {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.25rem;
    line-height: 1.25;
}

.saas-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
}

.saas-hero-disclaimer {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
}

.saas-tag {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.28rem 0.55rem;
    border-radius: 6px;
    background: rgba(34, 197, 94, 0.16);
    color: var(--accent-soft);
    border: 1px solid rgba(34, 197, 94, 0.28);
}

/* Sections */
.saas-section {
    padding: clamp(2.75rem, 6vw, 4.5rem) 0;
}

.saas-section--tight {
    padding: clamp(2rem, 4vw, 3rem) 0;
}

.saas-section--soft {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.saas-section--white {
    background: #fff;
}

.saas-section--mesh {
    position: relative;
    background: linear-gradient(160deg, #000000 0%, #003060 50%, #00244a 100%);
    color: rgba(255, 255, 255, 0.9);
}

.saas-section--mesh::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: radial-gradient(rgba(34, 197, 94, 0.12) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.saas-section--mesh .container {
    position: relative;
    z-index: 1;
}

.saas-section--mesh .saas-h2,
.saas-section--mesh .saas-lead {
    color: #fff;
}

.saas-section--mesh .saas-lead {
    color: rgba(255, 255, 255, 0.72);
}

.saas-section--border-top {
    border-top: 1px solid #e2e8f0;
}

.saas-section-head {
    max-width: 42rem;
    margin-bottom: 2rem;
}

.saas-section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.saas-h2 {
    font-weight: 800;
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    letter-spacing: -0.02em;
    color: var(--navy-heading);
    margin-bottom: 0.65rem;
    line-height: 1.2;
}

.saas-section--mesh .saas-h2 {
    color: #fff;
}

.saas-lead {
    color: #64748b;
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.saas-mini {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}

.page-prose {
    color: #475569;
    font-size: 1rem;
    line-height: 1.75;
}

.page-prose p:last-child {
    margin-bottom: 0;
}

.saas-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.saas-check-list li {
    position: relative;
    padding-left: 1.65rem;
    margin-bottom: 0.75rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.55;
}

.saas-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 1rem;
    height: 1rem;
    border-radius: 4px;
    background: rgba(34, 197, 94, 0.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315803d' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 0.65rem no-repeat;
}

.saas-section--mesh .saas-check-list li {
    color: rgba(255, 255, 255, 0.88);
}

.saas-section--mesh .saas-check-list li::before {
    background-color: rgba(34, 197, 94, 0.26);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2386efac' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}

/* Stat strip */
.saas-stat-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .saas-stat-strip {
        grid-template-columns: repeat(4, 1fr);
    }
}

.saas-stat-strip__item {
    padding: 1.15rem 1rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e8ecf1;
    text-align: center;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.04);
}

.saas-stat-strip__val {
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--navy-heading);
    letter-spacing: -0.03em;
    line-height: 1;
}

.saas-stat-strip__val span {
    color: var(--green);
}

.saas-stat-strip__lab {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.4rem;
}

/* Cards & bento */
.saas-card {
    height: 100%;
    padding: 1.35rem 1.4rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e8ecf1;
    box-shadow: 0 10px 36px rgba(15, 23, 42, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.saas-card:hover {
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.saas-card--dark {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    box-shadow: none;
}

.saas-card--dark:hover {
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.saas-card--dark h3,
.saas-card--dark .saas-card-title {
    color: #fff;
}

.saas-card--dark p,
.saas-card--dark .saas-card-text {
    color: rgba(255, 255, 255, 0.65);
}

.saas-card--accent {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.10) 0%, rgba(16, 185, 129, 0.06) 100%);
    border-color: rgba(34, 197, 94, 0.22);
}

.saas-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.20), rgba(16, 185, 129, 0.12));
}

.saas-card-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy-heading);
    margin-bottom: 0.45rem;
}

.saas-card-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

.saas-bento {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .saas-bento {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: minmax(120px, auto);
    }

    .saas-bento__wide {
        grid-column: span 3;
    }

    .saas-bento__tall {
        grid-row: span 2;
    }

    .saas-bento__full {
        grid-column: span 6;
    }

    .saas-bento__half {
        grid-column: span 3;
    }
}

/* Split visual block */
.saas-visual {
    border-radius: 20px;
    min-height: 260px;
    background: linear-gradient(135deg, #f0fdf4 0%, var(--accent-tint) 45%, #ffffff 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    position: relative;
    overflow: hidden;
}

.saas-visual::after {
    content: "";
    position: absolute;
    inset: 20% -20% -30% 30%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.22), transparent 65%);
    pointer-events: none;
}

.saas-visual-inner {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.saas-visual--compact {
    min-height: 220px;
}

.saas-visual-badge {
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.85);
    color: #fff;
}

.saas-visual-title {
    margin-top: 0.75rem;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--navy-heading);
    line-height: 1.25;
}

/* Timeline steps */
.saas-timeline {
    position: relative;
    padding-left: 0;
    list-style: none;
    margin: 0;
}

@media (min-width: 992px) {
    .saas-timeline {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }

    .saas-timeline::before {
        display: none;
    }
}

.saas-timeline-item {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .saas-timeline-item {
        padding-left: 0;
        margin-bottom: 0;
        padding-top: 0.5rem;
        border-top: 3px solid #e2e8f0;
    }

    .saas-timeline-item::before {
        content: "";
        position: absolute;
        top: -3px;
        left: 0;
        width: 44px;
        height: 3px;
        background: linear-gradient(90deg, var(--green), var(--green-dark));
        border-radius: 0 2px 2px 0;
    }
}

@media (max-width: 991.98px) {
    .saas-timeline::before {
        content: "";
        position: absolute;
        left: 0.65rem;
        top: 0.35rem;
        bottom: 0.35rem;
        width: 2px;
        background: linear-gradient(180deg, var(--green), #e2e8f0);
        border-radius: 2px;
    }

    .saas-timeline {
        position: relative;
    }

    .saas-timeline-item:last-child {
        margin-bottom: 0;
    }
}

.saas-step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

@media (min-width: 992px) {
    .saas-step-num {
        position: static;
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.85rem;
        margin-bottom: 0.85rem;
    }
}

.saas-step-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy-heading);
    margin-bottom: 0.35rem;
}

.saas-step-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

.saas-section--mesh .saas-step-title {
    color: #fff;
}

.saas-section--mesh .saas-step-desc {
    color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 992px) {
    .saas-section--mesh .saas-timeline-item {
        border-top-color: rgba(255, 255, 255, 0.12);
    }
}

/* Quote */
.saas-quote {
    position: relative;
    margin: 0;
    padding: 2rem 2rem 2rem 1.75rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 50%);
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--green);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.06);
}

.saas-quote p {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--navy-heading);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 1rem;
}

.saas-quote footer {
    font-size: 0.85rem;
    color: #64748b;
}

.saas-quote footer strong {
    color: var(--navy-heading);
    font-style: normal;
}

/* Logo row */
.saas-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.25rem 2rem;
    padding: 1.5rem 0;
}

.saas-logo-pill {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    background: #fff;
    border: 1px dashed #cbd5e1;
}

/* Pill badges row */
.saas-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.saas-pill {
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #475569;
}

.saas-pill--dark {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
}

/* Comparison row — SaaS pricing-style cards */
.saas-compare-row {
    display: grid;
    gap: 1.15rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .saas-compare-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .saas-compare-row--pair {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 52rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.saas-compare {
    border-radius: 18px;
    padding: 1.5rem 1.45rem 1.45rem;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 10px 36px rgba(15, 23, 42, 0.06);
    position: relative;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.saas-compare:hover {
    border-color: rgba(34, 197, 94, 0.25);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 16px 44px rgba(15, 23, 42, 0.08);
}

.saas-compare--featured {
    border: 2px solid rgba(34, 197, 94, 0.45);
    background: linear-gradient(180deg, #f8fffb 0%, #ffffff 38%, #fafcff 100%);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95) inset,
        0 0 0 1px rgba(34, 197, 94, 0.12),
        0 16px 48px rgba(34, 197, 94, 0.14),
        0 28px 64px rgba(15, 23, 42, 0.06);
    z-index: 1;
}

@media (min-width: 768px) {
    .saas-compare--featured {
        transform: translateY(-4px);
        padding-top: 1.65rem;
        padding-bottom: 1.55rem;
    }
}

.saas-compare--featured::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-mid) 50%, var(--accent-dark) 100%);
}

.saas-compare-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-deep) 100%);
    padding: 0.32rem 0.55rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.28);
}

.saas-compare h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy-heading);
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
    padding-right: 4.5rem;
    line-height: 1.25;
}

.saas-compare--featured h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.saas-compare ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.saas-compare li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2.15rem;
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.45;
    border-bottom: none;
}

/* Checkbox-style marker */
.saas-compare li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.48rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 6px;
    background: linear-gradient(145deg, var(--green) 0%, var(--green-dark) 100%);
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.28);
    flex-shrink: 0;
}

.saas-compare li::after {
    content: "";
    position: absolute;
    left: 0.38rem;
    top: 0.62rem;
    width: 0.32rem;
    height: 0.58rem;
    border: solid #fff;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    border-radius: 0 0 1px 0;
}

.saas-compare--featured li::before {
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.34);
}

.saas-compare--featured li::after {
    border-color: #fff;
}

/* FAQ */
.saas-faq .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 0.65rem;
    background: #fff;
}

.saas-faq .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--navy-heading);
    box-shadow: none !important;
}

.saas-faq .accordion-button:not(.collapsed) {
    background: rgba(34, 197, 94, 0.10);
    color: var(--navy-heading);
}

.saas-faq .accordion-body {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
}

/* CTA bars */
.page-cta-bar,
.saas-cta {
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    background: linear-gradient(125deg, #000000 0%, #003060 42%, #004a8c 100%);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
}

.page-cta-bar h2,
.saas-cta h2 {
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.page-cta-bar p,
.saas-cta p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
    max-width: 36rem;
}

.saas-cta .btn-saas-primary {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.saas-cta .btn-saas-ghost,
.page-cta-bar .btn-saas-ghost {
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

.saas-cta .btn-saas-ghost:hover,
.page-cta-bar .btn-saas-ghost:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.14);
}

/* Contact page */
.contact-layout {
    display: grid;
    gap: 2rem;
}

@media (min-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr 1.15fr;
        align-items: start;
    }
}

.contact-side-card {
    border-radius: 20px;
    padding: 1.75rem;
    background: linear-gradient(165deg, #000000 0%, #003060 100%);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}

.contact-side-card h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.contact-side-card .lead {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.contact-channel {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-channel:last-of-type {
    border-bottom: none;
}

.contact-channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.22);
    font-size: 1.1rem;
}

.contact-channel a {
    color: var(--accent-soft);
    text-decoration: none;
    font-weight: 600;
}

.contact-channel a:hover {
    color: #bbf7d0;
}

.contact-hours {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.contact-form-card {
    background: #fff;
    border: 1px solid #e8ecf1;
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.07);
}

.contact-form-card .form-label {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--navy-heading);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border-radius: 10px;
    border-color: #e2e8f0;
    font-size: 0.92rem;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: rgba(34, 197, 94, 0.55);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

/* Legacy class (some includes may still use) */
.page-card {
    
    padding: 1.35rem 1.4rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e8ecf1;
    box-shadow: 0 10px 36px rgba(15, 23, 42, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.page-card:hover {
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.page-card h3 {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy-heading);
    margin-bottom: 0.45rem;
}

.page-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

.page-section-title {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--navy-heading);
    margin-bottom: 1rem;
}

#mainNav .dropdown-item.active,
#mainNav .dropdown-item:active,
#navOffcanvas .dropdown-item.active,
#navOffcanvas .dropdown-item:active {
    background: rgba(34, 197, 94, 0.16);
    color: var(--navy-heading);
}

/* Bootstrap `.btn-success` — match site accent (if used anywhere) */
.btn-success {
    --bs-btn-bg: var(--accent);
    --bs-btn-border-color: var(--accent-dark);
    --bs-btn-hover-bg: var(--accent-dark);
    --bs-btn-hover-border-color: var(--accent-deep);
    --bs-btn-active-bg: var(--accent-deep);
    --bs-btn-active-border-color: var(--accent-deep);
    --bs-btn-disabled-bg: var(--accent-soft);
    --bs-btn-disabled-border-color: var(--accent-soft);
}

/* Pincode search page */
.pin-page .page-hero {
    padding-top: clamp(1.6rem, 3.6vw, 2.6rem);
    padding-bottom: clamp(1.9rem, 4.5vw, 3.1rem);
}

.pin-page .saas-kicker {
    font-size: 0.66rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.7rem;
}

.pin-page .page-hero-title {
    font-size: clamp(1.55rem, 3.2vw, 2.15rem);
    margin-bottom: 0.7rem;
    letter-spacing: -0.03em;
}

.pin-page .page-hero-lead {
    font-size: 0.95rem;
    max-width: 34rem;
}

.pin-page .saas-hero-panel {
    padding: 1.1rem 1.05rem;
    border-radius: 18px;
}

.pin-page .saas-hero-panel-title {
    margin-bottom: 0.75rem;
}

.pin-search-row {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 34rem;
}

.pin-input {
    flex: 1 1 220px;
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 0.6rem 0.8rem;
    font-size: 0.92rem;
    outline: none;
    background: rgba(255, 255, 255, 0.8);
}

.pin-input:focus {
    border-color: rgba(34, 197, 94, 0.55);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
    background: #fff;
}

.pin-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.05rem;
}

@media (min-width: 768px) {
    .pin-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .pin-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.pin-card {
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background:
        radial-gradient(ellipse 80% 60% at 15% 10%, rgba(34, 197, 94, 0.12), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
    padding: 1.15rem 1.15rem 1.05rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.pin-card:hover {
    transform: translateY(-2px);
    border-color: rgba(34, 197, 94, 0.22);
    box-shadow: 0 18px 52px rgba(15, 23, 42, 0.08);
}

.pin-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.pin-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.pin-avatar {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 65%, var(--accent-mid) 100%);
    box-shadow: 0 10px 22px rgba(34, 197, 94, 0.20);
    flex-shrink: 0;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.pin-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--navy-heading);
    line-height: 1.2;
}

.pin-sub {
    margin-top: 0.25rem;
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pin-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: rgba(255, 255, 255, 0.7);
}

.pin-badge--ok {
    color: #14532d;
    border-color: rgba(34, 197, 94, 0.30);
    background: rgba(34, 197, 94, 0.12);
}

.pin-badge--no {
    color: #991b1b;
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.08);
}

.pin-badge--unk {
    color: #334155;
    border-color: rgba(148, 163, 184, 0.35);
    background: rgba(148, 163, 184, 0.12);
}

.pin-flags {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.6rem;
    margin-bottom: 0.9rem;
}

.pin-flag {
    border-radius: 14px;
    border: 1px solid #e8ecf1;
    background: #fff;
    padding: 0.55rem 0.6rem;
    text-align: center;
}

.pin-flag span {
    display: block;
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pin-flag b {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--navy-heading);
    border-radius: 10px;
    padding: 0.28rem 0.35rem;
    border: 1px solid #e8ecf1;
    background: #f8fafc;
}

.pin-flag b.pin-val--y {
    color: #14532d;
    border-color: rgba(34, 197, 94, 0.28);
    background: rgba(34, 197, 94, 0.14);
}

.pin-flag b.pin-val--n {
    color: #7f1d1d;
    border-color: rgba(239, 68, 68, 0.28);
    background: rgba(239, 68, 68, 0.14);
}

.pin-flag b.pin-val--dash {
    color: #7f1d1d;
    border-color: rgba(239, 68, 68, 0.22);
    background: rgba(239, 68, 68, 0.10);
}

.pin-meta {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.55;
    display: grid;
    gap: 0.35rem;
}

.pin-meta b {
    color: var(--navy-heading);
}

/* Track order page */
.trk-page .page-hero-title {
    font-size: clamp(1.55rem, 3.2vw, 2.25rem);
}

.trk-search-row {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 40rem;
}

.trk-input {
    flex: 1 1 260px;
    min-height: 44px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 0.6rem 0.8rem;
    font-size: 0.92rem;
    outline: none;
    background: rgba(255, 255, 255, 0.8);
}

.trk-input:focus {
    border-color: rgba(34, 197, 94, 0.55);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
    background: #fff;
}

.trk-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-radius: 18px;
    padding: 1.15rem 1.15rem;
    background:
        radial-gradient(ellipse 75% 55% at 10% 10%, rgba(34, 197, 94, 0.12), transparent 55%),
        linear-gradient(180deg, #fff 0%, #fafbfc 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.trk-summary-title {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

.trk-summary-id {
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--navy-heading);
}

.trk-summary-sub {
    margin-top: 0.25rem;
    font-size: 0.9rem;
    color: #475569;
}

.trk-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.65rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.78rem;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
}

.trk-badge--ok {
    color: #14532d;
    border-color: rgba(34, 197, 94, 0.28);
    background: rgba(34, 197, 94, 0.14);
}

.trk-badge--warn {
    color: #92400e;
    border-color: rgba(245, 158, 11, 0.30);
    background: rgba(245, 158, 11, 0.14);
}

.trk-badge--no {
    color: #7f1d1d;
    border-color: rgba(239, 68, 68, 0.28);
    background: rgba(239, 68, 68, 0.14);
}

.trk-badge--info {
    color: #14532d;
    border-color: rgba(34, 197, 94, 0.30);
    background: rgba(34, 197, 94, 0.12);
}

.trk-layout {
    display: grid;
    grid-template-columns: 1fr;
}

.trk-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.trk-steps::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.65), rgba(226, 232, 240, 1));
    border-radius: 2px;
}

.trk-step {
    position: relative;
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.trk-step:last-child {
    margin-bottom: 0;
}

.trk-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
    margin-top: 0.3rem;
    margin-left: 7px;
}

.trk-step-card {
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    padding: 0.95rem 1rem;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.trk-step-top {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: baseline;
}

.trk-step-title {
    font-weight: 900;
    color: var(--navy-heading);
    letter-spacing: -0.02em;
}

.trk-step-time {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 600;
    white-space: nowrap;
}

.trk-step-remark {
    margin-top: 0.35rem;
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.5;
}

.trk-step-loc {
    margin-top: 0.35rem;
    font-size: 0.86rem;
    color: #64748b;
}

.trk-step-loc b {
    color: var(--navy-heading);
}
