/* ============================================================
   MONTERA TAX — EARLY ACCESS LANDING PAGE
   Brand: Navy #1e3a5f / Orange #f48020
   ============================================================ */

/* ---- RESET & BASE ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy-900: #0d1f33;
    --navy-800: #122840;
    --navy-700: #1e3a5f;
    --navy-600: #254a78;
    --navy-500: #2d5a8e;
    --navy-400: #3a72b0;
    --navy-300: #5a90c8;
    --orange-600: #d96b10;
    --orange-500: #f48020;
    --orange-400: #f69540;
    --orange-300: #f9b470;
    --orange-100: #fef3e8;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --font-sans: 'Frank Ruhl Libre', Georgia, serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, .10), 0 2px 6px rgba(0, 0, 0, .07);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, .14), 0 4px 12px rgba(0, 0, 0, .08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, .18), 0 8px 24px rgba(0, 0, 0, .10);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --bg-custom: #D0E8FC42
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Hide scrollbar for all elements */
* {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

*::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

/* ============================================================
   FOR BOOKKEEPERS
   ============================================================ */
.bookkeeper-section {
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}

.bookkeeper-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.bookkeeper-content-side {
    text-align: left;
}

.bookkeeper-visual-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bk-features-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.bk-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.bk-icon {
    width: 48px;
    height: 48px;
    background: rgba(244, 128, 32, 0.1);
    color: var(--orange-500);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.bk-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 4px;
}

.bk-text span {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

.perfect-for {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.perfect-for svg {
    color: var(--orange-500);
}

/* Dashboard Mockup */
.dashboard-mockup {
    background: var(--navy-900);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    width: 100%;
    max-width: 560px;
}

.mockup-header {
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 20px;
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.mockup-search {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 16px;
    border-radius: 4px;
    flex: 1;
    max-width: 200px;
}

.mockup-body {
    display: grid;
    grid-template-columns: 80px 1fr;
    min-height: 420px;
}

.mockup-sidebar {
    background: rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.side-item {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.side-item.active {
    background: var(--orange-500);
}

.mockup-main {
    padding: 24px;
}

.mockup-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.m-stat {
    height: 80px;
    flex: 1;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.m-item {
    height: 44px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-800);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.client-switcher-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: badgeFloat 3s ease-in-out infinite;
    z-index: 200;
    color: var(--navy-800);
}

.badge-icon {
    font-size: 18px;
}

.client-switcher-badge span {
    font-size: 14px;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1024px) {
    .bookkeeper-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .bookkeeper-content-side {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .client-switcher-badge {
        right: 20px;
        bottom: 20px;
    }
}


/* ---- UTILITY ---- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.carousel-container {
    padding: 1rem 0rem 1rem 0rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-400) 50%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::before {
    opacity: 1;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-md {
    padding: 12px 28px;
    font-size: 15px;
}

.btn-lg {
    padding: 8px 25px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(244, 128, 32, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(244, 128, 32, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-ghost-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--navy-700);
    border-color: var(--gray-300);
}

.btn-outline:hover {
    border-color: var(--orange-500);
    color: var(--orange-500);
    transform: translateY(-2px);
}

/* ---- SECTION HEADERS ---- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0rem auto 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--orange-100);
    color: var(--orange-600);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    border: 1px solid rgba(244, 128, 32, 0.2);
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--navy-800);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), var(--shadow-sm);
    padding: 12px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-700);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--gray-700);
}

.nav-links a:hover {
    background: var(--gray-100);
    color: var(--navy-700);
}

.navbar.scrolled .nav-links a:hover {
    background: var(--gray-100);
    color: var(--navy-700);
}

.nav-links .nav-cta {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white) !important;
    box-shadow: 0 4px 16px rgba(244, 128, 32, 0.3);
}

.nav-links .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(244, 128, 32, 0.4);
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600)) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3.5px;
    background: var(--navy-700);
    border-radius: 2px;
    transition: all var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--navy-700);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 70vh;
    background: linear-gradient(145deg, var(--navy-900) 0%, var(--navy-800) 40%, var(--navy-700) 70%, #1a3a6e 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 130px 0 65px;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 128, 32, 0.18) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 90, 142, 0.4) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    text-align: left;
}

.hero-content .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin: 0 -15px;
}

.hero-content .col-main {
    flex: 0 0 60%;
    max-width: 60%;
    padding-right: 40px;
}

.hero-content .col-visual {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

/* Solar system styles moved to solar-system.css */


/* Solar system media queries moved to solar-system.css */


@media (max-width: 991px) {
    .hero-content {
        text-align: center;
    }

    .hero-content .col-main,
    .hero-content .col-visual {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
        padding: 0 15px;
        justify-content: center;
    }

    .hero-actions,
    .hero-float-cards {
        justify-content: center;
    }

    .hero-content .row {
        margin: 0;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(244, 128, 32, 0.12);
    border: 1px solid rgba(244, 128, 32, 0.3);
    color: var(--orange-300);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
    animation: fadeInDown 0.6s ease both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--orange-400);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.85);
    }
}

.hero-title {
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 620px;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 45px;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    animation: fadeInUp 0.7s ease 0.4s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Floating cards */
.hero-float-cards {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    /* margin-top: 52px; */
    width: 100%;
    z-index: 2;
    position: relative;
}

.float-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: floatIn 0.8s ease both;
}

.float-card-1 {
    animation-delay: 0.5s;
}

.float-card-2 {
    animation-delay: 0.7s;
}

.float-card-3 {
    animation-delay: 0.9s;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.float-card-icon {
    font-size: 22px;
    width: 44px;
    height: 44px;
    background: rgba(244, 128, 32, 0.2);
    color: var(--orange-500);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
}

.float-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.float-card-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
}

/* Floating animation for cards */
.float-card-1 {
    animation: floatIn 0.8s ease 0.5s both, floatY 4s ease-in-out 1.3s infinite;
}

.float-card-2 {
    animation: floatIn 0.8s ease 0.7s both, floatY 4s ease-in-out 1.5s infinite reverse;
}

.float-card-3 {
    animation: floatIn 0.8s ease 0.9s both, floatY 4s ease-in-out 1.7s infinite;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 3rem 0rem 2rem 0rem;
}

.trust-label {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-800);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Optional: fade edges slightly for a smoother enter/exit */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.trust-logos {
    display: flex;
    align-items: center;
}

.logos-slide {
    display: flex;
    align-items: center;
    animation: scrollLogos 35s linear infinite;
    flex-shrink: 0;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.trust-logos:hover .logos-slide {
    animation-play-state: paused;
}

.trust-logo-item {
    /* opacity: 0.5; */
    transition: opacity var(--transition);
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 40px;
}

.trust-logo-item:hover {
    opacity: 0.8;
}

.trust-logo-img {
    height: 50px;
    width: auto;
    /* filter: grayscale(100%);
    opacity: 0.6; */
    transition: all var(--transition);
}

.trust-logo-item:hover .trust-logo-img {
    /* filter: grayscale(0%);
    opacity: 1; */
}

.platform-svg {
    height: 28px;
    width: auto;
}

/* ============================================================
   WHAT YOU GET
   ============================================================ */
.what-you-get {
    padding: 120px 0;
    background: var(--white);
}

.wyg-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: start;
}

/* Checklist */
.wyg-checklist {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.wyg-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-100);
    transition: background var(--transition);
}

.wyg-item:first-child {
    padding-top: 0;
}

.wyg-item:last-child {
    border-bottom: none;
}

.wyg-item:hover {
    background: transparent;
}

.wyg-item:hover .wyg-icon {
    background: var(--orange-500);
    border-color: var(--orange-500);
}

.wyg-item:hover .wyg-icon svg {
    stroke: var(--white);
}

.wyg-icon {
    width: 36px;
    height: 36px;
    background: var(--orange-100);
    border: 1.5px solid rgba(244, 128, 32, 0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-500);
    flex-shrink: 0;
    margin-top: 2px;
    transition: all var(--transition);
}

.wyg-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wyg-text strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1.3;
}

.wyg-text span {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Right summary card */
.wyg-summary-wrap {
    position: sticky;
    top: 100px;
}

.wyg-summary-card {
    background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
    border-radius: var(--radius-2xl);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(26, 54, 93, 0.4);
    position: relative;
    overflow: hidden;
}

.wyg-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
}

.wyg-summary-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wyg-summary-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange-400);
    background: rgba(244, 128, 32, 0.15);
    padding: 6px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.wyg-summary-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.wyg-summary-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.wyg-summary-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.wyg-stat {
    text-align: center;
    padding: 16px 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.wyg-stat-number {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--orange-400);
    line-height: 1;
    margin-bottom: 6px;
}

.wyg-stat-label {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wyg-summary-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.wyg-summary-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.wyg-summary-feature:hover {
    background: rgba(255, 255, 255, 0.08);
}

.wyg-summary-feature svg {
    color: var(--orange-400);
    flex-shrink: 0;
}

.wyg-summary-feature span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.wyg-summary-cta {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius-lg);
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .wyg-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .wyg-summary-wrap {
        position: static;
    }

    .wyg-summary-card {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .wyg-summary-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .wyg-stat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
    }

    .wyg-stat-number {
        margin-bottom: 0;
        font-size: 20px;
    }

    .wyg-stat-label {
        text-align: right;
    }
}

/* ============================================================
   BUDGET-FRIENDLY CALCULATION SERVICE
   ============================================================ */
.calc-service {
    background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.calc-service::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 128, 32, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.calc-service-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.calc-service-left {
    flex: 1;
}

.calc-badge {
    background: rgba(244, 128, 32, 0.15) !important;
    border-color: rgba(244, 128, 32, 0.3) !important;
    color: var(--orange-300) !important;
}

.calc-service-title {
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.calc-service-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 520px;
}

.calc-service-right {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .calc-service-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .calc-service-desc {
        max-width: 100%;
    }
}

/* ============================================================
   FEATURES (legacy — kept for CSS references)
   ============================================================ */
.features {
    padding: 120px 0;
    background: var(--white);
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card-large {
    grid-column: span 1;
    grid-row: span 2;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    border-color: rgba(244, 128, 32, 0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-highlight {
    background: linear-gradient(145deg, var(--navy-800), var(--navy-700));
    border-color: transparent;
    color: var(--white);
}

.feature-card-highlight h3 {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.feature-card-highlight p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.feature-card-highlight:hover {
    border-color: rgba(244, 128, 32, 0.4);
}

.feature-icon-wrap {
    margin-bottom: 20px;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--orange-100), rgba(244, 128, 32, 0.08));
    border: 1px solid rgba(244, 128, 32, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-500);
}

.feature-card-highlight .feature-icon {
    background: rgba(244, 128, 32, 0.15);
    border-color: rgba(244, 128, 32, 0.3);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.feature-list li {
    font-size: 14px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--orange-500);
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-cta {
    margin-top: 24px;
}

/* ============================================================
   CALC DETAIL SECTION
   ============================================================ */
.calc-detail {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.calc-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.calc-detail-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
}

/* Left column header */
.calc-detail-header {
    margin-bottom: 40px;
}

.calc-detail-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange-500);
    background: var(--orange-100);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.calc-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy-800);
    line-height: 1.3;
    margin: 0;
}

/* Feature grid */
.calc-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.calc-feature-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.calc-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.calc-feature-card:hover {
    border-color: var(--orange-200);
    box-shadow: 0 10px 40px rgba(244, 128, 32, 0.1);
    transform: translateY(-4px);
}

.calc-feature-card:hover::before {
    transform: scaleX(1);
}

.calc-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--orange-100), rgba(244, 128, 32, 0.05));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-500);
    flex-shrink: 0;
}

.calc-feature-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-800);
    margin: 0 0 6px 0;
}

.calc-feature-content p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

/* Right column */
.calc-detail-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.calc-handle-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.calc-handle-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}

.calc-handle-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.calc-handle-header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.calc-handle-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-800);
}

.calc-handle-sublabel {
    font-size: 13px;
    color: var(--gray-500);
}

.calc-handle-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calc-handle-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.5;
    padding: 14px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.calc-handle-list li:hover {
    background: var(--gray-100);
}

.calc-handle-list-icon {
    width: 28px;
    height: 28px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-500);
    flex-shrink: 0;
}

.calc-handle-list li span {
    flex: 1;
}

.calc-tagline {
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-700) 100%);
    border-radius: var(--radius-xl);
    padding: 24px;
    display: flex;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.calc-tagline::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 128, 32, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.calc-tagline-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-400);
    flex-shrink: 0;
}

.calc-tagline-content {
    flex: 1;
}

.calc-tagline-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.calc-tagline p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

.calc-detail-cta {
    width: 100%;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    font-size: 15px;
}

.calc-detail-cta svg {
    transition: transform 0.2s ease;
}

.calc-detail-cta:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .calc-detail-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .calc-detail-right {
        position: static;
    }

    .calc-feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .calc-detail {
        padding: 60px 0 80px;
    }

    .calc-detail-title {
        font-size: 26px;
    }

    .calc-feature-card {
        flex-direction: column;
        text-align: center;
    }

    .calc-feature-icon {
        margin: 0 auto;
    }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    padding: 3rem 0;
    /* background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%); */
    /* background-color: #D0E8FC42; */
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(244, 128, 32, 0.3);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-connector {
    position: absolute;
    top: 32px;
    left: calc(50% + 32px);
    right: calc(-50% + 32px);
    height: 2px;
    background: linear-gradient(90deg, var(--orange-400), var(--orange-300));
    z-index: 1;
}

.step-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================================
   FOR BOOKKEEPERS
   ============================================================ */
.bookkeeper-section {
    padding: 120px 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.bookkeeper-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.bookkeeper-content-side {
    max-width: 520px;
}

.bookkeeper-lead {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 40px;
}

.bookkeeper-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.bk-feature {
    display: flex;
    gap: 20px;
}

.bk-icon {
    font-size: 28px;
    width: 60px;
    height: 60px;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bk-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 4px;
}

.bk-text span {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.perfect-for {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--orange-600);
    background: rgba(244, 128, 32, 0.08);
    padding: 16px 20px;
    border-radius: var(--radius-md);
}

/* Dashboard Mockup */
.bookkeeper-visual-side {
    position: relative;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    aspect-ratio: 16/10;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    height: 40px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 16px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
}

.mockup-search {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--gray-200);
    height: 24px;
    border-radius: var(--radius-sm);
    font-size: 10px;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.mockup-body {
    flex: 1;
    display: flex;
}

.mockup-sidebar {
    width: 60px;
    border-right: 1px solid var(--gray-100);
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.side-item {
    width: 32px;
    height: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
}

.side-item.active {
    background: var(--orange-100);
}

.mockup-main {
    flex: 1;
    padding: 24px;
}

.mockup-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.m-stat {
    flex: 1;
    height: 60px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
}

.mockup-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.m-item {
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
}

.client-switcher-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--navy-800);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-xl);
    z-index: 10;
    animation: bounce 3s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.client-switcher-badge span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.client-switcher-badge strong {
    color: var(--orange-400);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .bookkeeper-layout {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .bookkeeper-content-side {
        max-width: 100%;
        text-align: center;
    }

    .bk-feature {
        text-align: left;
    }

    .perfect-for {
        justify-content: center;
    }

    .bookkeeper-visual-side {
        padding: 40px 0;
    }
}

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.who-its-for {
    padding: 4rem 0rem;
    background: #f3f4f6;
}

.audience-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.audience-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.audience-card:hover {
    border-color: rgba(244, 128, 32, 0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.audience-card-featured {
    background: linear-gradient(145deg, var(--navy-800), var(--navy-700));
    border-color: transparent;
    transform: scale(1.03);
}

.audience-card-featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.audience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.audience-icon {
    font-size: 48px;
    margin-bottom: 1rem;
    display: block;
}

.audience-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 12px;
}

.audience-card-featured h3 {
    color: var(--white);
}

.audience-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 24px;
}

.audience-card-featured p {
    color: rgba(255, 255, 255, 0.65);
}

.audience-features {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.audience-features li {
    font-size: 14px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
}

.audience-features li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: var(--orange-100);
    color: var(--orange-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

.audience-card-featured .audience-features li {
    color: rgba(255, 255, 255, 0.75);
}

.audience-card-featured .audience-features li::before {
    background: rgba(244, 128, 32, 0.2);
    color: var(--orange-300);
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-hero {
    padding: 120px 0 30px;
    background: var(--white);
    text-align: center;
}

.pricing-hero .section-title {
    font-size: clamp(32px, 5vw, 48px);
}

.pricing {
    padding: 80px 0 40px;
    background: var(--white);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

/* Base Pricing Card */
.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: var(--shadow-md);
}

.pricing-card:hover {
    border-color: rgba(244, 128, 32, 0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

/* Featured Card (Governance - Most Popular) */
.pricing-card-featured {
    background: var(--white);
    border: 2px solid var(--orange-500);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-6px);
    border-color: var(--orange-500);
}

/* Most Popular Badge */
.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

/* Card Header */
.pricing-card-header {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-top: 0.5rem;
}

.pricing-card-featured .pricing-card-header {
    padding-top: 1.5rem;
}

.pricing-plan-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 6px;
}

.pricing-card-featured .pricing-plan-name {
    color: var(--orange-500);
}

.pricing-tagline {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 20px;
}

.pricing-card-featured .pricing-tagline {
    color: var(--gray-500);
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy-800);
    letter-spacing: -0.02em;
    line-height: 1;
}

.pricing-card-featured .price-amount {
    color: var(--navy-800);
}

.price-unit {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

.pricing-card-featured .price-unit {
    color: var(--gray-500);
}

/* Card Body */
.pricing-card-body {
    flex: 1;
    margin-bottom: 1rem;
}

.pricing-includes {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 16px;
}

.pricing-card-featured .pricing-includes {
    color: var(--gray-600);
}

/* Feature List */
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features li {
    font-size: 13px;
    color: var(--gray-600);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.pricing-features li::before {
    content: '\2713';
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: #e6f7f2;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-card-featured .pricing-features li {
    color: var(--gray-600);
}

.pricing-card-featured .pricing-features li::before {
    background: #e6f7f2;
    color: #10b981;
}

/* Card Footer */
.pricing-card-footer {
    margin-top: auto;
}

.btn-full {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Nav active state */
.nav-links a.active {
    color: var(--orange-500);
}

/* Pricing Add-ons Card */
.addons-card {
    max-width: 800px;
    margin: 40px auto 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 32px 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.addons-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange-500), var(--orange-400));
}

.addons-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: rgba(244, 128, 32, 0.2);
}

.addons-header {
    text-align: center;
    margin-bottom: 32px;
}

.addons-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--orange-100);
    color: var(--orange-600);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.addons-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy-800);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.addons-subtitle {
    font-size: 15px;
    color: var(--gray-500);
    max-width: 460px;
    margin: 0 auto;
}

.addons-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.addon-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.addon-row:hover {
    background: var(--white);
    border-color: var(--orange-200);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.addon-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-500);
    transition: all var(--transition);
}

.addon-row:hover .addon-icon {
    border-color: var(--orange-400);
    background: var(--orange-100);
    color: var(--orange-600);
}

.addon-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.addon-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-800);
}

.addon-description {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.4;
}

.addon-pricing {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.addon-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy-800);
    line-height: 1;
}

.addon-unit {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-400);
    margin-top: 2px;
}

.addons-cta {
    text-align: center;
}

.addons-cta .btn {
    padding: 10px 32px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .addons-card {
        padding: 24px 20px;
    }

    .addon-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
        padding: 20px;
    }

    .addon-icon {
        margin: 0 auto;
    }

    .addon-pricing {
        text-align: center;
    }
}



/* ============================================================
   INTEGRATIONS
   ============================================================ */
.integrations {
    padding: 120px 0;
    background: var(--gray-50);
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.integration-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all var(--transition);
    cursor: default;
}

.integration-card:hover {
    border-color: rgba(244, 128, 32, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.int-logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 16px;
    display: block;
}

.integration-logo {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    margin: 0 auto 12px;
}

.integration-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.integration-card-more .integration-logo {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    font-size: 24px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: 120px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(244, 128, 32, 0.2);
}

.testimonial-card-featured {
    background: linear-gradient(145deg, var(--navy-800), var(--navy-700));
    border-color: transparent;
}

.testimonial-stars {
    font-size: 18px;
    color: var(--orange-400);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card-featured .testimonial-text {
    color: rgba(255, 255, 255, 0.75);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-800);
}

.testimonial-card-featured .author-name {
    color: var(--white);
}

.author-role {
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 2px;
}

.testimonial-card-featured .author-role {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   EARLY ACCESS FORM
   ============================================================ */
.early-access {
    padding: 120px 0 80px;
    background: linear-gradient(145deg, var(--navy-900) 0%, var(--navy-800) 60%, #1a3a6e 100%);
    position: relative;
    overflow: hidden;
}

.early-access-bg-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(244, 128, 32, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.early-access-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.early-access-content .section-badge {
    background: rgba(244, 128, 32, 0.15);
    border-color: rgba(244, 128, 32, 0.3);
    color: var(--orange-300);
}

.early-access-content .section-title {
    color: var(--white);
    text-align: left;
}

.early-access-content .section-subtitle {
    color: rgba(255, 255, 255, 0.65);
    text-align: left;
    margin-bottom: 40px;
}

.early-access-perks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.perk-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.perk-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: rgba(244, 128, 32, 0.12);
    border: 1px solid rgba(244, 128, 32, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.perk-item strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.perk-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

/* Form */
.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    padding-bottom: 44px;
    box-shadow: var(--shadow-xl);
    overflow: visible;
}

.form-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy-800);
    margin-bottom: 6px;
}

.form-subtitle {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.early-access-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Full-width submit button override */
.early-access-form .btn-primary.btn-full {
    border-radius: var(--radius-md);
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-top: 4px;
    box-shadow: 0 6px 24px rgba(244, 128, 32, 0.4);
}

.early-access-form .btn-primary.btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(244, 128, 32, 0.5);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--gray-800);
    background: var(--white);
    transition: all var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(244, 128, 32, 0.12);
}

.form-group input::placeholder {
    color: var(--gray-400);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-disclaimer {
    font-size: 12px;
    color: var(--gray-400);
    text-align: center;
    margin-top: 4px;
}

.btn-loader {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    width: 18px;
    height: 18px;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.form-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.form-success h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy-800);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================================
   THE MONTERA ADVANTAGE (B2B SaaS)
   ============================================================ */
.advantage-section {
    padding: 80px 0 140px;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.advantage-glass-card {
    background: linear-gradient(145deg, var(--navy-900), var(--navy-800));
    border-radius: var(--radius-2xl);
    padding: 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.advantage-glass-card::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 128, 32, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.advantage-header {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.advantage-icon-new {
    width: 80px;
    height: 80px;
    background: rgba(244, 128, 32, 0.1);
    border: 1px solid rgba(244, 128, 32, 0.3);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-400);
    flex-shrink: 0;
}

.advantage-badge {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange-400);
    margin-bottom: 12px;
}

.advantage-title-new {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.advantage-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.advantage-main-text .lead-text {
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 24px;
}

.advantage-main-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.advantage-main-text strong {
    color: var(--white);
}

.advantage-feature-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.adv-f-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.adv-f-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(244, 128, 32, 0.2);
    transform: translateX(8px);
}

.adv-f-item strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.adv-f-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin: 0;
}

.advantage-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.advantage-footer p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .advantage-body {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .advantage-glass-card {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .advantage-header {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .advantage-main-text .lead-text {
        font-size: 20px;
    }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    padding: 1.5rem 0 3.5rem;
    /* background: var(--bg-custom); */
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item.open {
    border-color: rgba(244, 128, 32, 0.3);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-800);
    text-align: left;
    transition: all var(--transition);
}

.faq-question:hover {
    color: var(--orange-500);
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--gray-400);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--orange-500);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
    padding: 3rem 0rem;
    background: linear-gradient(135deg, var(--navy-500) 0%, var(--navy-700) 50%, var(--navy-900) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='rgba(255,255,255,0.03)' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='rgba(255,255,255,0.05)' d='M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,90.7C672,85,768,107,864,128C960,149,1056,171,1152,165.3C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='rgba(255,255,255,0.07)' d='M0,256L48,240C96,224,192,192,288,181.3C384,171,480,181,576,186.7C672,192,768,192,864,176C960,160,1056,128,1152,133.3C1248,139,1344,181,1392,202.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-position: bottom;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.final-cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 30%, rgba(58, 114, 176, 0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.final-cta-icon {
    height: 60px;
    width: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.final-cta h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 3rem
}

.final-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta .btn-primary {
    background: var(--white);
    color: var(--navy-700);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.final-cta .btn-primary:hover {
    background: var(--orange-500);
    color: var(--white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: linear-gradient(180deg, var(--navy-900) 0%, #08121d 100%);
    padding: 3rem 0rem 1rem;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
}

.footer-mission {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 360px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    transition: all var(--transition);
}

.social-link:hover {
    background: rgba(244, 128, 32, 0.1);
    border-color: var(--orange-500);
    color: var(--orange-400);
    transform: translateY(-3px);
}

.footer-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--orange-500);
    margin-bottom: 24px;
}

.footer-nav {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 14px;
}

.footer-nav a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-trust {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.trust-badge svg {
    color: var(--orange-500);
}

.footer-address {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
}

.footer-address strong {
    color: var(--white);
    font-weight: 700;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-legal-links a:hover {
    color: var(--white);
}

.footer-disclaimer {
    max-width: 500px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    text-align: right;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .footer-layout {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .footer-branding {
        grid-column: span 2;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .footer-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-branding {
        grid-column: span 1;
    }

    .footer-nav {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-disclaimer {
        text-align: center;
    }
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card-large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .step-connector {
        display: none;
    }

    .integrations-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .early-access-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .early-access-content .section-title,
    .early-access-content .section-subtitle {
        text-align: center;
    }

    .hero-float-cards {
        display: none;
    }

    /* Pricing 1024px */
    .pricing-cards {
        gap: 16px;
    }

    .pricing-card {
        padding: 1.5rem 1.25rem;
    }

    .price-amount {
        font-size: 32px;
    }

    .pricing-card-featured {
        transform: scale(1.02);
    }

    .pricing-card-featured:hover {
        transform: scale(1.02) translateY(-6px);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy-900);
        padding: 100px 32px 32px;
        gap: 8px;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 18px;
        padding: 14px 20px;
        border-radius: var(--radius-md);
    }

    .hamburger {
        display: flex;
        z-index: 1000;
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(6.5px, 6.5px);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6.5px, -6.5px);
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-large {
        grid-column: span 1;
    }

    .audience-cards {
        grid-template-columns: 1fr;
    }

    .audience-card-featured {
        transform: scale(1);
    }

    .audience-card-featured:hover {
        transform: translateY(-6px);
    }

    /* Pricing 768px */
    .pricing-hero {
        padding: 100px 0 24px;
    }

    .pricing {
        padding: 60px 0 80px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 340px;
    }

    .pricing-card-featured {
        transform: scale(1);
        order: -1;
    }

    .pricing-card-featured:hover {
        transform: translateY(-6px);
    }

    .price-amount {
        font-size: 44px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-disclaimer {
        text-align: center;
    }

    .trust-logos {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .final-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    /* Pricing 480px */
    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .price-amount {
        font-size: 30px;
    }

    .pricing-plan-name {
        font-size: 18px;
    }
}

/* Differentiator Callout */
.diff-callout {
    margin-top: 64px;
    background: #fff8f1;
    border: 1.5px solid #fed7aa;
    border-radius: var(--radius-xl);
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(244, 128, 32, 0.05);
}

.diff-callout-icon {
    width: 48px;
    height: 48px;
    background: var(--orange-500);
    color: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diff-callout-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange-600);
    margin-bottom: 8px;
}

.diff-callout p {
    font-size: 16px;
    font-weight: 500;
    color: var(--navy-800);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 640px) {
    .diff-callout {
        flex-direction: column;
        padding: 24px;
        text-align: center;
        align-items: center;
    }
}