/* ============================================
           BRIK CRM — Landing Page
           Aesthetic: Architectural Warmth meets
           Industrial Precision
           ============================================ */

        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Core Palette — Brik CRM Red + Black */
            --brick: #D63031;
            --brick-light: #E74C3C;
            --brick-dark: #B71C1C;
            --terracotta: #E55039;
            --sand: #FDEAEA;
            --sand-light: #FEF5F5;
            --cream: #FEFCFC;
            --charcoal: #1A1A1A;
            --charcoal-mid: #2C2C2C;
            --stone: #3D3D3D;
            --stone-light: #6B6B6B;
            --warm-gray: #9E9E9E;
            --highlight: #F59E0B;
            --highlight-glow: #FBBF24;
            --success: #16A34A;
            --white: #FFFFFF;

            /* Typography */
            --font-display: 'DM Serif Display', Georgia, serif;
            --font-body: 'General Sans', -apple-system, sans-serif;
            --font-mono: 'JetBrains Mono', monospace;

            /* Spacing */
            --section-pad: clamp(80px, 12vw, 160px);
            --content-max: 1240px;
            --nav-height: 72px;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: var(--font-body);
            background: var(--cream);
            color: var(--charcoal);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ============================================
           NOISE TEXTURE OVERLAY
           ============================================ */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 9999;
            pointer-events: none;
            opacity: 0.025;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            background-repeat: repeat;
            background-size: 256px 256px;
        }

        /* ============================================
           UTILITY
           ============================================ */
        .container {
            max-width: var(--content-max);
            margin: 0 auto;
            padding: 0 clamp(20px, 4vw, 48px);
        }

        /* ============================================
           SCROLL REVEAL ANIMATIONS
           ============================================ */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
        .reveal-delay-5 { transition-delay: 0.5s; }

        /* ============================================
           NAVIGATION
           ============================================ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            height: var(--nav-height);
            display: flex;
            align-items: center;
            padding: 0 clamp(20px, 4vw, 48px);
            background: rgba(254, 252, 252, 0.85);
            backdrop-filter: blur(20px) saturate(1.4);
            -webkit-backdrop-filter: blur(20px) saturate(1.4);
            border-bottom: 1px solid rgba(214, 48, 49, 0.08);
            transition: all 0.4s ease;
        }

        .nav.scrolled {
            box-shadow: 0 1px 24px rgba(28, 25, 23, 0.06);
        }

        .nav-inner {
            max-width: var(--content-max);
            margin: 0 auto;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--charcoal);
        }

        .nav-logo-img {
            height: 180px;
            width: auto;
            display: block;
            margin: -62px -28px -62px -35px;
        }

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

        .nav-links a {
            text-decoration: none;
            color: var(--stone);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.02em;
            transition: color 0.2s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--brick);
            transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .nav-links a:hover {
            color: var(--charcoal);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .btn-ghost {
            padding: 8px 20px;
            border: none;
            background: transparent;
            color: var(--stone);
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: color 0.2s;
        }

        .btn-ghost:hover {
            color: var(--charcoal);
        }

        .btn-primary {
            padding: 10px 24px;
            border: none;
            background: var(--brick);
            color: var(--white);
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .btn-primary:hover {
            background: var(--brick-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(214, 48, 49, 0.3);
        }

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

        .btn-large {
            padding: 16px 36px;
            font-size: 16px;
            border-radius: 10px;
        }

        .btn-outline {
            padding: 16px 36px;
            border: 2px solid var(--charcoal);
            background: transparent;
            color: var(--charcoal);
            font-family: var(--font-body);
            font-size: 16px;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .btn-outline:hover {
            background: var(--charcoal);
            color: var(--white);
            transform: translateY(-1px);
        }

        /* Mobile menu toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .nav-toggle span {
            width: 24px;
            height: 2px;
            background: var(--charcoal);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .nav-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero {
            padding-top: calc(var(--nav-height) + var(--section-pad));
            padding-bottom: var(--section-pad);
            position: relative;
            overflow: hidden;
        }

        /* Brick pattern background */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: -10%;
            width: 55%;
            height: 100%;
            opacity: 0.03;
            background-image:
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 48px,
                    var(--brick) 48px,
                    var(--brick) 50px
                ),
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 98px,
                    var(--brick) 98px,
                    var(--brick) 100px
                );
            mask-image: linear-gradient(135deg, transparent 20%, black 60%);
            -webkit-mask-image: linear-gradient(135deg, transparent 20%, black 60%);
        }

        /* Floating accent orb */
        .hero::after {
            content: '';
            position: absolute;
            top: 15%;
            right: 5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(214, 48, 49, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-20px, 20px) scale(1.05); }
        }

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

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px 6px 8px;
            background: var(--sand);
            border: 1px solid rgba(214, 48, 49, 0.12);
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: var(--brick);
            margin-bottom: 24px;
            letter-spacing: 0.02em;
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--success);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(42px, 5.5vw, 72px);
            line-height: 1.05;
            letter-spacing: -0.03em;
            color: var(--charcoal);
            margin-bottom: 24px;
        }

        .hero h1 em {
            font-style: italic;
            color: var(--brick);
        }

        .hero-sub {
            font-size: clamp(16px, 1.8vw, 19px);
            color: var(--stone-light);
            line-height: 1.65;
            max-width: 480px;
            margin-bottom: 40px;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 48px;
            flex-wrap: wrap;
        }

        .hero-proof {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .hero-avatars {
            display: flex;
        }

        .hero-avatars span {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid var(--cream);
            margin-left: -8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            color: white;
        }

        .hero-avatars span:first-child { margin-left: 0; background: var(--brick); }
        .hero-avatars span:nth-child(2) { background: var(--stone); }
        .hero-avatars span:nth-child(3) { background: var(--terracotta); }
        .hero-avatars span:nth-child(4) { background: var(--brick-dark); }

        .hero-proof-text {
            font-size: 13px;
            color: var(--stone-light);
            line-height: 1.5;
        }

        .hero-proof-text strong {
            color: var(--charcoal);
            font-weight: 600;
        }

        /* Hero visual — Dashboard mockup */
        .hero-visual {
            position: relative;
        }

        .dashboard-mock {
            background: var(--white);
            border-radius: 16px;
            border: 1px solid rgba(28, 25, 23, 0.08);
            box-shadow:
                0 1px 2px rgba(28, 25, 23, 0.04),
                0 8px 32px rgba(28, 25, 23, 0.06),
                0 24px 64px rgba(28, 25, 23, 0.04);
            overflow: hidden;
            position: relative;
            transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .dashboard-mock:hover {
            transform: perspective(1200px) rotateY(-1deg) rotateX(1deg);
        }

        .dash-topbar {
            padding: 12px 20px;
            background: var(--charcoal);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .dash-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }
        .dash-dot.red { background: #EF4444; }
        .dash-dot.yellow { background: #F59E0B; }
        .dash-dot.green { background: #22C55E; }

        .dash-url {
            flex: 1;
            text-align: center;
            font-family: var(--font-mono);
            font-size: 11px;
            color: var(--warm-gray);
        }

        .dash-body {
            padding: 24px;
            display: grid;
            grid-template-columns: 180px 1fr;
            gap: 20px;
            min-height: 340px;
        }

        .dash-sidebar {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .dash-nav-item {
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
            color: var(--stone-light);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .dash-nav-item.active {
            background: var(--sand-light);
            color: var(--brick);
            font-weight: 600;
        }

        .dash-nav-icon {
            width: 16px;
            height: 16px;
            border-radius: 4px;
            background: currentColor;
            opacity: 0.2;
        }

        .dash-content {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .dash-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .dash-stat-card {
            padding: 16px;
            background: var(--sand-light);
            border-radius: 10px;
            border: 1px solid rgba(214, 48, 49, 0.06);
        }

        .dash-stat-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--stone-light);
            font-weight: 600;
            margin-bottom: 6px;
        }

        .dash-stat-value {
            font-family: var(--font-display);
            font-size: 24px;
            color: var(--charcoal);
        }

        .dash-stat-change {
            font-size: 11px;
            color: var(--success);
            font-weight: 600;
            margin-top: 4px;
        }

        .dash-chart {
            flex: 1;
            background: var(--sand-light);
            border-radius: 10px;
            border: 1px solid rgba(214, 48, 49, 0.06);
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        .dash-chart-title {
            font-size: 12px;
            font-weight: 600;
            color: var(--charcoal);
            margin-bottom: 16px;
        }

        .dash-chart-bars {
            display: flex;
            align-items: flex-end;
            gap: 8px;
            height: 100px;
        }

        .dash-bar {
            flex: 1;
            border-radius: 4px 4px 0 0;
            transition: height 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .dash-bar:nth-child(odd) { background: var(--brick); opacity: 0.8; }
        .dash-bar:nth-child(even) { background: var(--terracotta); opacity: 0.5; }

        /* Floating notification card */
        .float-card {
            position: absolute;
            background: var(--white);
            border-radius: 12px;
            padding: 14px 18px;
            box-shadow: 0 8px 32px rgba(28, 25, 23, 0.12);
            border: 1px solid rgba(28, 25, 23, 0.06);
            animation: floatCard 6s ease-in-out infinite;
            z-index: 3;
        }

        .float-card-1 {
            top: 20%;
            left: -40px;
            animation-delay: 0s;
        }

        .float-card-2 {
            bottom: 15%;
            right: -30px;
            animation-delay: 2s;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .float-card-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--stone-light);
            font-weight: 600;
            margin-bottom: 4px;
        }

        .float-card-value {
            font-family: var(--font-display);
            font-size: 20px;
            color: var(--charcoal);
        }

        .float-card-sub {
            font-size: 11px;
            color: var(--success);
            font-weight: 600;
        }

        /* ============================================
           LOGOS BAR
           ============================================ */
        .logos-section {
            padding: 60px 0;
            border-top: 1px solid rgba(28, 25, 23, 0.06);
            border-bottom: 1px solid rgba(28, 25, 23, 0.06);
        }

        .logos-label {
            text-align: center;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--warm-gray);
            font-weight: 600;
            margin-bottom: 32px;
        }

        .logos-grid {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(32px, 6vw, 72px);
            flex-wrap: wrap;
        }

        .logo-item {
            font-family: var(--font-display);
            font-size: 20px;
            color: var(--warm-gray);
            opacity: 0.5;
            transition: opacity 0.3s;
            white-space: nowrap;
        }

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

        /* ============================================
           FEATURES SECTION
           ============================================ */
        .features {
            padding: var(--section-pad) 0;
        }

        .section-label {
            font-family: var(--font-mono);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--brick);
            font-weight: 500;
            margin-bottom: 16px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(32px, 4vw, 52px);
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: var(--charcoal);
            margin-bottom: 20px;
            max-width: 600px;
        }

        .section-desc {
            font-size: 17px;
            color: var(--stone-light);
            line-height: 1.65;
            max-width: 520px;
            margin-bottom: 64px;
        }

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

        .feature-card {
            background: var(--white);
            border: 1px solid rgba(28, 25, 23, 0.06);
            border-radius: 16px;
            padding: 36px 32px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--brick), var(--terracotta));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(28, 25, 23, 0.08);
            border-color: rgba(214, 48, 49, 0.12);
        }

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

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--sand);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 22px;
        }

        .feature-card h3 {
            font-family: var(--font-display);
            font-size: 22px;
            color: var(--charcoal);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--stone-light);
            line-height: 1.65;
        }

        /* Large feature — Scheduling spotlight */
        .feature-spotlight {
            padding: var(--section-pad) 0;
            position: relative;
        }

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

        .spotlight-visual {
            background: var(--charcoal);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            overflow: hidden;
        }

        .spotlight-visual::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(214, 48, 49, 0.15) 0%, transparent 70%);
        }

        .spotlight-calendar {
            position: relative;
            z-index: 2;
        }

        .cal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .cal-month {
            font-family: var(--font-display);
            font-size: 20px;
            color: var(--white);
        }

        .cal-nav {
            display: flex;
            gap: 8px;
        }

        .cal-nav button {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.15);
            background: transparent;
            color: var(--white);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            transition: background 0.2s;
        }

        .cal-nav button:hover {
            background: rgba(255,255,255,0.1);
        }

        .cal-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 4px;
            margin-bottom: 12px;
        }

        .cal-day-label {
            text-align: center;
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.3);
            font-weight: 600;
            padding: 8px 0;
        }

        .cal-day {
            text-align: center;
            padding: 8px;
            font-size: 13px;
            color: rgba(255,255,255,0.5);
            border-radius: 8px;
            position: relative;
        }

        .cal-day.active {
            color: var(--white);
        }

        .cal-day.today {
            background: var(--brick);
            color: var(--white);
            font-weight: 600;
        }

        .cal-day.has-event::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--terracotta);
        }

        .cal-events {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 16px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .cal-event {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 14px;
            border-radius: 8px;
            background: rgba(255,255,255,0.05);
            border-left: 3px solid;
        }

        .cal-event:nth-child(1) { border-color: var(--brick); }
        .cal-event:nth-child(2) { border-color: var(--highlight); }
        .cal-event:nth-child(3) { border-color: var(--success); }

        .cal-event-time {
            font-family: var(--font-mono);
            font-size: 11px;
            color: rgba(255,255,255,0.4);
            min-width: 50px;
        }

        .cal-event-title {
            font-size: 13px;
            color: var(--white);
            font-weight: 500;
        }

        /* ============================================
           STATS / SOCIAL PROOF BANNER
           ============================================ */
        .stats-banner {
            padding: 80px 0;
            background: var(--charcoal);
            position: relative;
            overflow: hidden;
        }

        .stats-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 48px,
                    rgba(214, 48, 49, 0.04) 48px,
                    rgba(214, 48, 49, 0.04) 50px
                ),
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 98px,
                    rgba(214, 48, 49, 0.04) 98px,
                    rgba(214, 48, 49, 0.04) 100px
                );
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 48px;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: clamp(36px, 4vw, 56px);
            color: var(--white);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-number span {
            color: var(--terracotta);
        }

        .stat-desc {
            font-size: 14px;
            color: rgba(255,255,255,0.4);
            font-weight: 500;
        }

        /* ============================================
           TESTIMONIALS
           ============================================ */
        .testimonials {
            padding: var(--section-pad) 0;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .testimonials-header .section-title {
            margin-left: auto;
            margin-right: auto;
        }

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

        .testimonial-card {
            background: var(--white);
            border: 1px solid rgba(28, 25, 23, 0.06);
            border-radius: 16px;
            padding: 32px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
        }

        .testimonial-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(28, 25, 23, 0.06);
        }

        .testimonial-stars {
            display: flex;
            gap: 2px;
            margin-bottom: 20px;
        }

        .testimonial-stars svg {
            width: 16px;
            height: 16px;
            fill: var(--highlight);
        }

        .testimonial-text {
            font-size: 15px;
            line-height: 1.7;
            color: var(--stone);
            flex: 1;
            margin-bottom: 24px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-top: 20px;
            border-top: 1px solid rgba(28, 25, 23, 0.06);
        }

        .testimonial-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: var(--white);
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--charcoal);
        }

        .testimonial-role {
            font-size: 12px;
            color: var(--stone-light);
        }

        /* ============================================
           PRICING
           ============================================ */
        .pricing {
            padding: var(--section-pad) 0;
            background: var(--sand-light);
            position: relative;
        }

        .pricing::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(214, 48, 49, 0.15), transparent);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .pricing-header .section-title {
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 56px;
        }

        .pricing-toggle-label {
            font-size: 14px;
            font-weight: 500;
            color: var(--stone-light);
        }

        .pricing-toggle-label.active {
            color: var(--charcoal);
            font-weight: 600;
        }

        .toggle-switch {
            width: 48px;
            height: 26px;
            background: var(--warm-gray);
            border-radius: 100px;
            cursor: pointer;
            position: relative;
            transition: background 0.3s;
            border: none;
        }

        .toggle-switch.active {
            background: var(--brick);
        }

        .toggle-switch::after {
            content: '';
            position: absolute;
            top: 3px;
            left: 3px;
            width: 20px;
            height: 20px;
            background: var(--white);
            border-radius: 50%;
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 1px 3px rgba(0,0,0,0.15);
        }

        .toggle-switch.active::after {
            transform: translateX(22px);
        }

        .pricing-save {
            font-size: 12px;
            font-weight: 600;
            color: var(--success);
            background: rgba(22, 163, 74, 0.08);
            padding: 2px 10px;
            border-radius: 100px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1080px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--white);
            border: 1px solid rgba(28, 25, 23, 0.08);
            border-radius: 20px;
            padding: 40px 36px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(28, 25, 23, 0.08);
        }

        .pricing-card.featured {
            background: var(--charcoal);
            border-color: transparent;
            transform: scale(1.04);
        }

        .pricing-card.featured:hover {
            transform: scale(1.04) translateY(-4px);
            box-shadow: 0 20px 60px rgba(28, 25, 23, 0.2);
        }

        .pricing-popular {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--brick);
            color: var(--white);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            padding: 4px 16px;
            border-radius: 100px;
        }

        .pricing-name {
            font-family: var(--font-display);
            font-size: 24px;
            margin-bottom: 8px;
        }

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

        .pricing-desc {
            font-size: 14px;
            color: var(--stone-light);
            margin-bottom: 24px;
            line-height: 1.5;
        }

        .pricing-card.featured .pricing-desc {
            color: rgba(255,255,255,0.4);
        }

        .pricing-amount {
            display: flex;
            align-items: baseline;
            gap: 4px;
            margin-bottom: 32px;
        }

        .pricing-currency {
            font-size: 20px;
            font-weight: 600;
            color: var(--stone-light);
        }

        .pricing-card.featured .pricing-currency {
            color: rgba(255,255,255,0.5);
        }

        .pricing-value {
            font-family: var(--font-display);
            font-size: 52px;
            line-height: 1;
            letter-spacing: -0.03em;
        }

        .pricing-card.featured .pricing-value {
            color: var(--white);
        }

        .pricing-period {
            font-size: 14px;
            color: var(--stone-light);
        }

        .pricing-card.featured .pricing-period {
            color: rgba(255,255,255,0.4);
        }

        .pricing-btn {
            width: 100%;
            padding: 14px 24px;
            border: 2px solid var(--charcoal);
            background: transparent;
            color: var(--charcoal);
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 32px;
        }

        .pricing-btn:hover {
            background: var(--charcoal);
            color: var(--white);
        }

        .pricing-card.featured .pricing-btn {
            background: var(--brick);
            border-color: var(--brick);
            color: var(--white);
        }

        .pricing-card.featured .pricing-btn:hover {
            background: var(--brick-dark);
            border-color: var(--brick-dark);
        }

        .pricing-features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: var(--stone);
            line-height: 1.5;
        }

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

        .pricing-check {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: rgba(22, 163, 74, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .pricing-check svg {
            width: 10px;
            height: 10px;
            stroke: var(--success);
            fill: none;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .pricing-card.featured .pricing-check {
            background: rgba(22, 163, 74, 0.15);
        }

        /* ============================================
           INTEGRATION SECTION
           ============================================ */
        .integrations {
            padding: var(--section-pad) 0;
        }

        .integrations-inner {
            text-align: center;
        }

        .integration-logos {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 56px;
            max-width: 780px;
            margin-left: auto;
            margin-right: auto;
        }

        .integration-card {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 20px 24px;
            background: var(--white);
            border: 1px solid rgba(28, 25, 23, 0.07);
            border-radius: 14px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .integration-card:hover {
            border-color: rgba(214, 48, 49, 0.15);
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(28, 25, 23, 0.07);
        }

        .integration-icon {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
        }

        .integration-icon img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .integration-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--charcoal);
            line-height: 1.3;
        }

        @media (max-width: 768px) {
            .integration-logos {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

        @media (max-width: 768px) {
            .integration-card {
                padding: 16px 18px;
            }
        }

        /* ============================================
           FINAL CTA
           ============================================ */
        .final-cta {
            padding: var(--section-pad) 0;
            position: relative;
        }

        .cta-box {
            background: var(--charcoal);
            border-radius: 24px;
            padding: clamp(48px, 8vw, 96px) clamp(32px, 6vw, 80px);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(214, 48, 49, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-box::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(229, 80, 57, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-family: var(--font-display);
            font-size: clamp(32px, 4vw, 52px);
            color: var(--white);
            line-height: 1.1;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }

        .cta-title em {
            font-style: italic;
            color: var(--terracotta);
        }

        .cta-desc {
            font-size: 17px;
            color: rgba(255,255,255,0.5);
            max-width: 480px;
            margin: 0 auto 40px;
            line-height: 1.65;
        }

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

        .cta-actions .btn-primary {
            background: var(--brick);
        }

        .cta-actions .btn-primary:hover {
            background: var(--brick-light);
        }

        .cta-actions .btn-outline {
            border-color: rgba(255,255,255,0.2);
            color: var(--white);
        }

        .cta-actions .btn-outline:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.3);
            color: var(--white);
        }

        .cta-note {
            margin-top: 24px;
            font-size: 13px;
            color: rgba(255,255,255,0.3);
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            padding: 64px 0 40px;
            border-top: 1px solid rgba(28, 25, 23, 0.06);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand-desc {
            font-size: 14px;
            color: var(--stone-light);
            line-height: 1.65;
            margin-top: 16px;
            max-width: 280px;
        }

        .footer-col h4 {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--charcoal);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-col a {
            text-decoration: none;
            font-size: 14px;
            color: var(--stone-light);
            transition: color 0.2s;
        }

        .footer-col a:hover {
            color: var(--brick);
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 32px;
            border-top: 1px solid rgba(28, 25, 23, 0.06);
        }

        .footer-copy {
            font-size: 13px;
            color: var(--warm-gray);
        }

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

        .footer-legal a {
            font-size: 13px;
            color: var(--warm-gray);
            text-decoration: none;
            transition: color 0.2s;
        }

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

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 1024px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .hero-visual {
                max-width: 600px;
            }

            .dashboard-mock {
                transform: none;
            }

            .dashboard-mock:hover {
                transform: none;
            }

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

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

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }

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

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

        @media (max-width: 768px) {
            :root {
                --section-pad: 60px;
            }

            .nav-logo-img {
                height: 130px;
                margin: -44px -15px -44px -15px;
            }

            .nav.scrolled {
                box-shadow: none;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: var(--nav-height);
                left: 0;
                right: 0;
                background: rgba(254, 252, 252, 0.97);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 20px clamp(20px, 4vw, 48px);
                gap: 0;
                border-bottom: 1px solid rgba(214, 48, 49, 0.08);
                box-shadow: 0 8px 32px rgba(28, 25, 23, 0.06);
            }

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

            .nav-links li a {
                display: block;
                padding: 14px 0;
                font-size: 16px;
                border-bottom: 1px solid rgba(28, 25, 23, 0.05);
            }

            .nav-links li:last-child a {
                border-bottom: none;
            }

            .nav-toggle {
                display: flex;
            }

            .nav-cta {
                gap: 8px;
                margin-left: auto;
            }

            .nav-cta .btn-ghost {
                display: none;
            }

            .nav-cta .btn-primary {
                padding: 8px 16px;
                font-size: 13px;
            }

            .nav-toggle {
                margin-left: 12px;
            }

            /* Center all hero content */
            .hero-content {
                text-align: center;
            }

            .hero-badge {
                display: inline-flex;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero-sub {
                font-size: 16px;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-actions .btn-primary,
            .hero-actions .btn-outline {
                text-align: center;
                width: 100%;
            }

            .hero-proof {
                justify-content: center;
            }

            /* Center section headers */
            .section-label {
                text-align: center;
            }

            .section-title {
                font-size: 28px;
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }

            .section-desc {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }

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

            .feature-card {
                padding: 28px 24px;
                text-align: center;
            }

            .feature-icon {
                margin-left: auto;
                margin-right: auto;
            }

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

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }

            .pricing-card.featured {
                transform: none;
            }

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

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

            .stat-number {
                font-size: 36px;
            }

            .float-card { display: none; }

            .dash-body {
                grid-template-columns: 1fr;
            }

            .dash-sidebar {
                display: none;
            }

            .spotlight-visual {
                padding: 24px;
            }

            /* Center spotlight text */
            .spotlight-grid > div:last-child {
                text-align: center;
            }

            .spotlight-grid > div:last-child ul {
                display: inline-block;
                text-align: left;
            }

            .cta-title {
                font-size: 28px;
            }

            .cta-actions {
                flex-direction: column;
                width: 100%;
            }

            .cta-actions .btn-primary,
            .cta-actions .btn-outline {
                width: 100%;
                text-align: center;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
                text-align: center;
            }

            .footer-brand-desc {
                margin-left: auto;
                margin-right: auto;
            }

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

        @media (max-width: 480px) {
            :root {
                --section-pad: 48px;
            }

            .nav-logo-img {
                height: 110px;
                margin: -36px -12px -36px -12px;
            }

            .hero h1 {
                font-size: 28px;
            }

            .hero-badge {
                font-size: 11px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .dash-stats {
                grid-template-columns: 1fr;
            }

            .pricing-card {
                padding: 28px 24px;
            }

            .cal-days {
                gap: 2px;
            }

            .cal-day {
                padding: 5px;
                font-size: 11px;
            }
        }