        /* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 0;
            overflow: hidden;
            background: var(--bg-canvas);
        }

        .hero-login-mobile { display: none !important; }

        /* Full-screen background photo layer */
        .hero-bg-photo {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .hero-bg-photo img,
        .hero-bg-photo .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        /* Gradient overlay on left side for text readability */
        .hero-bg-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(
                to right,
                rgba(255,254,251,0.96) 0%,
                rgba(255,254,251,0.88) 30%,
                rgba(255,254,251,0.45) 55%,
                rgba(255,254,251,0.0) 75%
            );
            pointer-events: none;
        }

        /* Hide old glow elements */
        .hero-glow, .hero-glow-2, .hero-orb, .hero-grid { display: none; }

        /* Content sits on top of photo */
        .hero-content {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 48px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        /* Text block â€” left side */
        .hero-copy {
            min-width: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 100px 0 80px 0;
            max-width: 540px;
        }

        .hero-copy .hero-subtitle { margin-left: 0; margin-right: 0; max-width: 460px; }
        .hero-copy .hero-actions { justify-content: flex-start; }
        .hero-copy .hero-trust-signals { justify-content: flex-start; }

        /* Hero media column â€” hidden (photo is now in .hero-bg-photo) */
        .hero-media { display: none; }
        .hero-media::before { display: none; }

        /* Floating notification cards â€” positioned on the hero section */
        .hero-float-card {
            position: absolute;
            background: rgba(255,254,251,0.96);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: var(--radius-md);
            padding: 10px 14px;
            box-shadow: 0 8px 32px rgba(32,21,21,0.10), 0 2px 8px rgba(32,21,21,0.06);
            font-family: var(--font-sans);
            font-size: 12px;
            color: var(--fg-primary);
            z-index: 10;
            animation: floatBob 4s ease-in-out infinite;
            max-width: 200px;
        }

        .hero-float-card.fc-top-right {
            top: 16%;
            right: 6%;
            animation-delay: 0s;
        }
        .hero-float-card.fc-mid-right {
            top: 44%;
            right: 32%;
            animation-delay: 1.3s;
        }
        .hero-float-card.fc-bottom-right {
            bottom: 18%;
            right: 8%;
            animation-delay: 0.7s;
        }

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

        .fc-icon {
            width: 28px; height: 28px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
            margin-bottom: 6px;
        }
        .fc-icon.green  { background: #dcfce7; }
        .fc-icon.blue   { background: #dbeafe; }
        .fc-icon.orange { background: #fff7ed; }
        .fc-icon.purple { background: #f3e8ff; }

        .fc-label { font-size: 10px; color: var(--fg-tertiary); font-weight: 500; margin-bottom: 1px; }
        .fc-value { font-size: 13px; font-weight: 700; color: var(--fg-primary); }
        .fc-row { display: flex; align-items: center; gap: 8px; }
        .fc-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
        .fc-dot.green  { background: #22c55e; }
        .fc-dot.orange { background: var(--accent); }
        .fc-desc { font-size: 11px; color: var(--fg-secondary); line-height: 1.4; margin-top: 4px; }
        .fc-name { font-size: 12px; font-weight: 600; color: var(--fg-primary); }

        /* Shield icon card top-right of photo */
        .fc-shield { display: none; }

        /* Slider dots for photo carousel */
        .hero-slider-dots {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 20;
        }
        
        .hero-slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255,255,255,0.25);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.4);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 20;
            transition: all 0.3s ease;
        }
        .hero-slider-btn:hover {
            background: rgba(255,255,255,0.5);
            transform: translateY(-50%) scale(1.1);
        }
        .hero-slider-btn.prev { left: 24px; }
        .hero-slider-btn.next { right: 24px; }
        .slider-dot {
            position: relative;
            width: 24px;
            height: 24px;
            border: none;
            padding: 0;
            background: transparent;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            /* Extra margin to ensure ~44px touch target spacing */
            margin: 0 4px;
        }
        .slider-dot::before {
            content: '';
            display: block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.45);
            transition: background 0.25s, width 0.25s, border-radius 0.25s;
        }
        .slider-dot.active::before {
            background: #fff;
            width: 22px;
            border-radius: 4px;
        }
        .slider-dot:hover:not(.active)::before {
            background: rgba(255,255,255,0.7);
        }

        /* Hero slider (full-screen photo) */
        .hero-slider {
            position: absolute;
            inset: 0;
        }
        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1.2s ease-in-out, transform 1.2s ease-in-out;
            transform: scale(1.03);
        }
        .hero-slide.active { opacity: 1; z-index: 1; transform: scale(1); }

        /* Mock placeholder when no photos */
        .hero-mock {
            width: 100%; height: 100%;
            background: linear-gradient(135deg, #f0f4f8, #d8e2ec);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-mock-inner {
            padding: 32px;
            text-align: center;
            color: var(--fg-tertiary);
        }
        .hero-mock svg { opacity: 0.3; margin: 0 auto 12px; display: block; }
        .hero-mock p { font-size: 13px; }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 5px 14px 5px 8px;
            border-radius: 999px;
            background: rgba(255,255,255,0.9);
            border: 1px solid rgba(232,115,46,0.2);
            font-size: 12.5px;
            font-weight: 500;
            color: var(--fg-secondary);
            margin-bottom: 24px;
            width: fit-content;
        }

        .hero-badge-dot {
            width: 7px; height: 7px;
            border-radius: 50%;
            background: var(--accent);
            display: inline-block;
            box-shadow: 0 0 0 3px rgba(232,115,46,0.2);
            animation: pulse 2s ease infinite;
            flex-shrink: 0;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; box-shadow: 0 0 0 3px rgba(232,115,46,0.2); }
            50%       { opacity: 0.7; box-shadow: 0 0 0 6px rgba(232,115,46,0.06); }
        }

        .hero-title {
            font-family: var(--font-sans);
            font-size: clamp(36px, 4.2vw, 56px);
            font-weight: 800;
            line-height: 1.08;
            letter-spacing: -0.03em;
            margin-bottom: 20px;
            color: var(--fg-primary);
        }

        /* No gradient on title — clean ink like Zapier */
        .hero-title-gradient {
            color: var(--fg-primary);
            background: none;
            -webkit-text-fill-color: var(--fg-primary);
        }

        .hero-subtitle {
            font-size: 16px;
            color: var(--fg-secondary);
            max-width: 460px;
            margin: 0 0 32px;
            line-height: 1.7;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn-hero {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 13px 28px;
            font-size: 15px;
            font-weight: 600;
            border-radius: var(--radius-md);
            text-decoration: none;
            transition: all 0.2s var(--ease-out);
            cursor: pointer;
            border: none;
            font-family: var(--font-sans);
        }

        .btn-hero-primary {
            background: var(--accent);
            color: var(--accent-fg);
            box-shadow: 0 8px 24px rgba(255,79,0,0.28);
        }

        .btn-hero-primary:hover {
            background: var(--accent-dark);
            box-shadow: 0 14px 32px rgba(255,79,0,0.38);
            transform: translateY(-2px);
        }

        .btn-hero-secondary {
            background: transparent;
            color: var(--fg-primary);
            border: 1.5px solid var(--fg-primary);
        }

        .btn-hero-secondary:hover {
            border-color: var(--fg-primary);
            background: var(--bg-section-alt);
        }

        .btn-hero i { width: 16px; height: 16px; }

        .hero-trust-signals {
            margin-top: 24px;
            display: flex;
            gap: 18px;
            justify-content: flex-start;
            font-size: 12.5px;
            color: var(--fg-tertiary);
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin-top: 56px;
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        .hero-stat {
            text-align: center;
            padding: 28px 40px;
            flex: 1;
        }

        .hero-stat + .hero-stat {
            border-left: 1px solid var(--border-subtle);
        }

        .hero-stat-value {
            font-family: var(--font-sans);
            font-size: 36px;
            font-weight: 800;
            color: var(--brand);
            letter-spacing: -0.03em;
            line-height: 1;
        }

        .hero-stat-label {
            font-size: 13px;
            color: var(--fg-tertiary);
            margin-top: 6px;
        }

        /* â”€â”€ SECTIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
    .hero { background: #ffffff !important; }
    .hero-bg-photo, .hero-bg-overlay { display: none !important; }
    .hero-stats { flex-direction: column; gap: 0; }
    .hero-stat + .hero-stat { border-left: none; border-top: 1px solid var(--border-subtle); }
    .hero-stat { padding: 20px; }
    .hero-actions { gap: 10px; }
    .btn-hero { width: 100%; justify-content: center; }
    .hero-login-mobile { display: inline-flex !important; }
}
@media (max-width: 940px) {
    .hero { padding: 0; min-height: 100vh; }
    .hero-content {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 24px;
        text-align: center;
    }
    .hero-bg-overlay {
            background: linear-gradient(
                to bottom,
                rgba(255,254,251,0.98) 0%,
                rgba(255,254,251,0.92) 40%,
                rgba(255,254,251,0.7) 70%,
                rgba(255,254,251,0.3) 100%
            );
        }
    .hero-copy {
        padding: 100px 0 40px;
        align-items: center;
        max-width: 100%;
    }
    .hero-copy .hero-subtitle { max-width: 100%; margin: 0 auto 28px; }
    .hero-copy .hero-actions { justify-content: center; }
    .hero-copy .hero-trust-signals { justify-content: center; }
    .hero-badge { margin: 0 auto 20px; }
    .hero-slider-btn { display: none; }
    .desktop-only { display: none !important; }
}
