    <style>
        /* ===================== RESET & VARIABLES ===================== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --primary: #0B6E99;
            --primary-deep: #084B6A;
            --primary-light: #1A9FD4;
            --accent-teal: #2EC4B6;
            --accent-warm: #F5C26B;
            --bg-cream: #FAFBFD;
            --bg-warm: #F6F4F0;
            --bg-hero: linear-gradient(165deg, #F0F8FC 0%, #E8F4F8 30%, #FBF9F6 70%, #F6F4F0 100%);
            --text-primary: #1A2B3C;
            --text-secondary: #5A6B7C;
            --text-light: #8A9BAC;
            --white: #FFFFFF;
            --shadow-sm: 0 2px 8px rgba(11, 110, 153, 0.06);
            --shadow-md: 0 8px 30px rgba(11, 110, 153, 0.1);
            --shadow-lg: 0 20px 60px rgba(11, 110, 153, 0.12);
            --shadow-xl: 0 30px 80px rgba(11, 110, 153, 0.15);
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 28px;
            --radius-xl: 36px;
            --font-display: 'Playfair Display', Georgia, serif;
            --font-body: 'DM Sans', -apple-system, sans-serif;
            --transition: cubic-bezier(0.22, 1, 0.36, 1);
        }

        html { scroll-behavior: smooth; font-size: 16px; }

        body {
            font-family: var(--font-body);
            color: var(--text-primary);
            background: var(--bg-cream);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

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

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

        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-40px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(40px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes scaleIn {
            from { opacity: 0; transform: scale(0.92); }
            to { opacity: 1; transform: scale(1); }
        }

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

        @keyframes float-slow {
            0%, 100% { transform: translateY(0px) rotate(-2deg); }
            50% { transform: translateY(-8px) rotate(2deg); }
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.3); }
            50% { box-shadow: 0 0 30px 10px rgba(46, 196, 182, 0.1); }
        }

        @keyframes shimmer {
            0% { background-position: -200% center; }
            100% { background-position: 200% center; }
        }

        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes blob-move {
            0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
            50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
        }

        .js-ready .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .js-ready .reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
        }
        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .js-ready .reveal-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
        }
        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .js-ready .reveal-scale {
            opacity: 0;
            transform: scale(0.92);
            transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
        }
        .reveal-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* Stagger delays */
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }
        .delay-5 { transition-delay: 0.5s; }

        /* ===================== NAVIGATION ===================== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: all 0.4s var(--transition);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 10px rgba(11, 110, 153, 0.06);
        }

        .nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(11, 110, 153, 0.1);
            padding: 10px 0;
        }

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

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.15rem;
            color: var(--primary-deep);
        }

        .nav-logo img {
            width: 36px;
            height: 36px;
            border-radius: 10px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
            margin-left: auto;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-secondary);
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: width 0.3s var(--transition);
        }

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

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

        .nav-cta {
            background: var(--primary);
            color: var(--white) !important;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.88rem;
            transition: all 0.3s var(--transition);
            box-shadow: 0 4px 15px rgba(11, 110, 153, 0.25);
        }

        .nav-cta::after { display: none !important; }

        .nav-cta:hover {
            background: var(--primary-deep);
            transform: translateY(-1px);
            box-shadow: 0 6px 25px rgba(11, 110, 153, 0.35);
        }

        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .nav-hamburger span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .nav-hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .nav-hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .nav-hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ===================== HERO ===================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: var(--bg-hero);
            position: relative;
            overflow: hidden;
            padding: 120px 0 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(46, 196, 182, 0.08) 0%, transparent 70%);
            animation: blob-move 15s infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(11, 110, 153, 0.06) 0%, transparent 70%);
            animation: blob-move 20s infinite reverse;
        }

        /* Decorative dots */
        .hero-dots {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .hero-dot {
            position: absolute;
            border-radius: 50%;
            opacity: 0.15;
        }

        .hero-dot:nth-child(1) { width: 6px; height: 6px; background: var(--primary); top: 20%; left: 10%; animation: float 6s infinite; }
        .hero-dot:nth-child(2) { width: 8px; height: 8px; background: var(--accent-teal); top: 60%; left: 5%; animation: float 8s infinite 1s; }
        .hero-dot:nth-child(3) { width: 4px; height: 4px; background: var(--primary-light); top: 30%; right: 15%; animation: float 7s infinite 2s; }
        .hero-dot:nth-child(4) { width: 10px; height: 10px; background: var(--accent-warm); top: 70%; right: 8%; animation: float 9s infinite 0.5s; }
        .hero-dot:nth-child(5) { width: 5px; height: 5px; background: var(--primary); top: 85%; left: 20%; animation: float 10s infinite 3s; }

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

        .hero-text {
            animation: fadeInUp 1s var(--transition);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(11, 110, 153, 0.08);
            border: 1px solid rgba(11, 110, 153, 0.12);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 28px;
            animation: fadeInDown 0.8s var(--transition);
        }

        .hero-badge .dot {
            width: 7px;
            height: 7px;
            background: var(--accent-teal);
            border-radius: 50%;
            animation: pulse-glow 2s infinite;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            font-weight: 700;
            line-height: 1.12;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .hero h1 span {
            display: block;
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent-teal) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-family: var(--font-display);
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            font-weight: 500;
            color: var(--primary);
            margin-bottom: 24px;
            letter-spacing: -0.01em;
        }

        .hero-desc {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--text-secondary);
            max-width: 520px;
            margin-bottom: 36px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
            color: var(--white);
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: all 0.4s var(--transition);
            box-shadow: 0 8px 30px rgba(11, 110, 153, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
            transition: left 0.6s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(11, 110, 153, 0.4);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            color: var(--primary);
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            border: 2px solid rgba(11, 110, 153, 0.15);
            cursor: pointer;
            transition: all 0.4s var(--transition);
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            background: rgba(11, 110, 153, 0.04);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        /* Store Buttons in Hero */
        .store-buttons-hero {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 36px;
        }

        .store-btn-hero {
            height: auto;
            transition: all 0.3s var(--transition);
            cursor: pointer;
            border-radius: 8px;
            overflow: hidden;
        }

        .store-btn-hero img {
            height: 60px;
            width: auto;
            display: block;
        }

        .store-btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .hero-social-proof {
            display: flex;
            gap: 36px;
            flex-wrap: wrap;
        }

        .proof-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.88rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .proof-item .icon {
            font-size: 1.1rem;
        }

        .proof-item strong {
            color: var(--text-primary);
        }

        /* Hero phones */
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 500px;
            animation: scaleIn 1.2s var(--transition);
        }

        .phone-mockup {
            position: relative;
            width: 240px;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            background: var(--white);
            border: 6px solid #1a1a1a;
            transition: transform 0.5s var(--transition);
        }

        .phone-mockup::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 24px;
            background: #1a1a1a;
            border-radius: 0 0 16px 16px;
            z-index: 2;
        }

        .phone-mockup img {
            width: 100%;
            display: block;
        }

        .phone-main {
            z-index: 3;
            animation: float 6s infinite;
        }

        .phone-left {
            position: absolute;
            left: -40px;
            top: 60px;
            z-index: 2;
            width: 200px;
            transform: rotate(-6deg);
            opacity: 0.85;
            animation: float-slow 8s infinite;
        }

        .phone-right {
            position: absolute;
            right: -40px;
            top: 40px;
            z-index: 2;
            width: 200px;
            transform: rotate(6deg);
            opacity: 0.85;
            animation: float-slow 8s infinite 2s;
        }

        /* ===================== SECTION STYLES ===================== */
        section {
            padding: 100px 0;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.82rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .section-label::before {
            content: '';
            width: 28px;
            height: 2px;
            background: var(--accent-teal);
            border-radius: 2px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.15;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .section-desc {
            font-size: 1.08rem;
            line-height: 1.7;
            color: var(--text-secondary);
            max-width: 600px;
        }

        /* ===================== FOR INDIVIDUALS ===================== */
        .individuals {
            background: var(--white);
            position: relative;
        }

        .individuals::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(11, 110, 153, 0.1), transparent);
        }

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

        .individuals-content { padding-right: 20px; }

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

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            font-size: 0.98rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .feature-check {
            width: 28px;
            height: 28px;
            min-width: 28px;
            background: linear-gradient(135deg, rgba(46, 196, 182, 0.12), rgba(11, 110, 153, 0.08));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 1px;
        }

        .feature-check svg {
            width: 14px;
            height: 14px;
            stroke: var(--accent-teal);
            stroke-width: 3;
            fill: none;
        }

        .individuals-visual {
            display: flex;
            justify-content: center;
            position: relative;
        }

        .individuals-phone {
            width: 280px;
            border-radius: 36px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            background: var(--white);
            border: 6px solid #1a1a1a;
            position: relative;
            transition: transform 0.5s var(--transition);
        }

        .individuals-phone::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 24px;
            background: #1a1a1a;
            border-radius: 0 0 16px 16px;
            z-index: 2;
        }

        .individuals-phone:hover {
            transform: translateY(-8px) rotate(1deg);
        }

        .individuals-phone img { width: 100%; }

        .btn-cta {
            margin-top: 36px;
        }

        /* ===================== APP SHOWCASE ===================== */
        .showcase {
            background: linear-gradient(180deg, var(--bg-cream) 0%, #EDF6F9 50%, var(--bg-cream) 100%);
            overflow: hidden;
            padding: 80px 0;
        }

        .showcase-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .showcase-scroll {
            display: flex;
            gap: 32px;
            padding: 20px 40px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .showcase-scroll::-webkit-scrollbar { display: none; }

        .showcase-card {
            flex: 0 0 auto;
            width: 260px;
            scroll-snap-align: center;
            text-align: center;
            transition: transform 0.5s var(--transition);
        }

        .showcase-card:hover {
            transform: translateY(-10px);
        }

        .showcase-phone {
            width: 240px;
            margin: 0 auto;
            border-radius: 32px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            background: var(--white);
            border: 5px solid #1a1a1a;
            position: relative;
            margin-bottom: 20px;
        }

        .showcase-phone::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 20px;
            background: #1a1a1a;
            border-radius: 0 0 14px 14px;
            z-index: 2;
        }

        .showcase-phone img { width: 100%; }

        .showcase-label {
            font-size: 0.92rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .showcase-sublabel {
            font-size: 0.82rem;
            color: var(--text-light);
            margin-top: 4px;
        }

        /* ===================== FOR PROFESSIONALS ===================== */
        .professionals {
            background: linear-gradient(165deg, #0B3D5C 0%, #084B6A 40%, #0B6E99 100%);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .professionals::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(46, 196, 182, 0.1) 0%, transparent 60%);
            animation: blob-move 18s infinite;
        }

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

        .professionals-visual {
            order: -1;
        }

        .pro-mockup-container {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .pro-phone {
            width: 280px;
            border-radius: 36px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
            background: var(--white);
            border: 6px solid #2a2a2a;
            position: relative;
        }

        .pro-phone::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 24px;
            background: #2a2a2a;
            border-radius: 0 0 16px 16px;
            z-index: 2;
        }

        .pro-phone img { width: 100%; }

        .pro-float-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.18);
            padding: 16px 22px;
            border-radius: var(--radius-md);
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--white);
            animation: float 6s infinite;
        }

        .pro-float-card.card-1 {
            top: 20px;
            right: -20px;
        }

        .pro-float-card.card-2 {
            bottom: 40px;
            left: -20px;
            animation-delay: 2s;
        }

        .professionals .section-label {
            color: var(--accent-teal);
        }

        .professionals .section-label::before {
            background: var(--accent-teal);
        }

        .professionals .section-title {
            color: var(--white);
        }

        .professionals .section-desc {
            color: rgba(255, 255, 255, 0.75);
        }

        .pro-benefits {
            list-style: none;
            margin-top: 32px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .pro-benefits li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
        }

        .pro-check {
            width: 28px;
            height: 28px;
            min-width: 28px;
            background: rgba(46, 196, 182, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pro-check svg {
            width: 14px;
            height: 14px;
            stroke: var(--accent-teal);
            stroke-width: 3;
            fill: none;
        }

        .btn-pro {
            background: linear-gradient(135deg, var(--accent-teal), #25A99D);
            color: var(--white);
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 36px;
            transition: all 0.4s var(--transition);
            box-shadow: 0 8px 30px rgba(46, 196, 182, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-pro::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
            transition: left 0.6s ease;
        }

        .btn-pro:hover::before {
            left: 100%;
        }

        .btn-pro:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(46, 196, 182, 0.4);
        }

        /* ===================== HOW IT WORKS ===================== */
        .how-it-works {
            background: var(--white);
        }

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

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

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 44px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-teal), var(--primary), var(--accent-teal), var(--primary));
            opacity: 0.2;
            z-index: 0;
        }

        .step-card {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 56px;
            height: 56px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, var(--primary), var(--primary-deep));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--white);
            box-shadow: 0 8px 25px rgba(11, 110, 153, 0.25);
            transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition);
        }

        .step-card:hover .step-number {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(11, 110, 153, 0.35);
        }

        .step-icon {
            font-size: 2rem;
            margin-bottom: 12px;
        }

        .step-title {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .step-desc {
            font-size: 0.88rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ===================== SOCIAL PROOF ===================== */
        .social-proof {
            background: var(--bg-cream);
            position: relative;
        }

        .social-proof-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .stats-row {
            display: flex;
            justify-content: center;
            gap: 64px;
            margin-bottom: 60px;
        }

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

        .stat-number {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 4vw, 3rem);
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--accent-teal));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            font-size: 0.88rem;
            color: var(--text-secondary);
            font-weight: 500;
            margin-top: 4px;
        }

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

        .testimonial-card {
            background: var(--white);
            padding: 32px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(11, 110, 153, 0.06);
            transition: all 0.4s var(--transition);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 16px;
            right: 24px;
            font-family: var(--font-display);
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.08;
            line-height: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
            border-color: rgba(11, 110, 153, 0.12);
        }

        .testimonial-stars {
            color: var(--accent-warm);
            font-size: 0.9rem;
            margin-bottom: 16px;
            letter-spacing: 2px;
        }

        .testimonial-text {
            font-size: 0.98rem;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 20px;
            font-style: italic;
        }

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

        .testimonial-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--accent-teal));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            color: var(--white);
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text-primary);
        }

        .testimonial-role {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        /* Infinite Scrolling Testimonials */
        .testimonials-scroll-wrapper {
            margin-top: 48px;
            overflow: hidden;
            position: relative;
            padding: 20px 0;
        }

        .testimonials-scroll-wrapper::before,
        .testimonials-scroll-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 100px;
            z-index: 2;
            pointer-events: none;
        }

        .testimonials-scroll-wrapper::before {
            left: 0;
            background: linear-gradient(to right, var(--bg-cream), transparent);
        }

        .testimonials-scroll-wrapper::after {
            right: 0;
            background: linear-gradient(to left, var(--bg-cream), transparent);
        }

        .testimonials-scroll-track {
            display: flex;
            gap: 24px;
            animation: infiniteScroll 60s linear infinite;
            width: max-content;
        }

        .testimonials-scroll-track:hover {
            animation-play-state: paused;
        }

        @keyframes infiniteScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .testimonials-scroll-track .testimonial-card {
            min-width: 380px;
            max-width: 380px;
            flex-shrink: 0;
        }

        /* ===================== FINAL CTA ===================== */
        .final-cta {
            background: linear-gradient(165deg, #F0F8FC 0%, #E8F4F8 100%);
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            bottom: -150px;
            right: -150px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(46, 196, 182, 0.06) 0%, transparent 60%);
        }

        .cta-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .cta-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-card {
            background: var(--white);
            padding: 48px 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            text-align: center;
            border: 1px solid rgba(11, 110, 153, 0.06);
            transition: all 0.4s var(--transition);
            position: relative;
            overflow: hidden;
        }

        .cta-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            border-radius: 4px 4px 0 0;
        }

        .cta-card.card-individual::after {
            background: linear-gradient(90deg, var(--primary), var(--accent-teal));
        }

        .cta-card.card-professional::after {
            background: linear-gradient(90deg, var(--accent-teal), var(--accent-warm));
        }

        .cta-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .cta-card-icon {
            font-size: 2.4rem;
            margin-bottom: 20px;
        }

        .cta-card h3 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .cta-card p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 28px;
        }

        /* ===================== STORE BUTTONS ===================== */
        .store-buttons {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .store-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #1a1a1a;
            color: var(--white);
            padding: 12px 24px;
            border-radius: 12px;
            font-size: 0.85rem;
            transition: all 0.3s var(--transition);
        }

        .store-btn:hover {
            background: #333;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .store-btn svg {
            width: 22px;
            height: 22px;
            fill: white;
        }

        .store-btn-text {
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        .store-btn-text small {
            font-size: 0.65rem;
            opacity: 0.8;
            font-weight: 400;
        }

        .store-btn-text span {
            font-weight: 600;
            font-size: 0.92rem;
            line-height: 1.2;
        }

        /* ===================== FOOTER ===================== */
        footer {
            background: #0A1F2E;
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 30px;
        }

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

        .footer-brand {
            max-width: 320px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--white);
            margin-bottom: 16px;
        }

        .footer-logo img {
            width: 32px;
            height: 32px;
            border-radius: 8px;
        }

        .footer-brand p {
            font-size: 0.88rem;
            line-height: 1.7;
            opacity: 0.7;
        }

        .footer-col h4 {
            color: var(--white);
            font-size: 0.9rem;
            font-weight: 700;
            margin-bottom: 18px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

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

        .footer-col a {
            font-size: 0.88rem;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .footer-col a:hover {
            opacity: 1;
            color: var(--accent-teal);
        }

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

        .footer-disclaimer {
            font-size: 0.78rem;
            opacity: 0.5;
            line-height: 1.7;
            max-width: 700px;
        }

        .footer-copy {
            font-size: 0.82rem;
            opacity: 0.5;
            white-space: nowrap;
        }

        /* ===================== CONTACT ===================== */
        .contact {
            background: var(--white);
            position: relative;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(11, 110, 153, 0.1), transparent);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: start;
        }

        .contact-details {
            margin-top: 36px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-detail-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: linear-gradient(135deg, rgba(46, 196, 182, 0.1), rgba(11, 110, 153, 0.08));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .contact-detail-label {
            font-size: 0.82rem;
            color: var(--text-light);
            font-weight: 500;
            margin-bottom: 2px;
        }

        .contact-detail-value {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        a.contact-detail-value {
            color: var(--primary);
            transition: color 0.3s ease;
        }

        a.contact-detail-value:hover {
            color: var(--primary-deep);
        }

        .contact-form-wrapper {
            background: var(--bg-cream);
            border-radius: var(--radius-lg);
            padding: 40px;
            border: 1px solid rgba(11, 110, 153, 0.06);
            box-shadow: var(--shadow-sm);
            position: relative;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

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

        .form-group label {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            font-family: var(--font-body);
            font-size: 0.92rem;
            padding: 14px 18px;
            border: 1.5px solid rgba(11, 110, 153, 0.12);
            border-radius: var(--radius-sm);
            background: var(--white);
            color: var(--text-primary);
            transition: all 0.3s var(--transition);
            outline: none;
            width: 100%;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-light);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(11, 110, 153, 0.08);
        }

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

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .btn-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
            color: var(--white);
            padding: 16px 36px;
            border-radius: 50px;
            font-family: var(--font-body);
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            cursor: pointer;
            transition: all 0.4s var(--transition);
            box-shadow: 0 8px 30px rgba(11, 110, 153, 0.25);
            align-self: flex-start;
            position: relative;
            overflow: hidden;
        }

        .btn-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
            transition: left 0.6s ease;
        }

        .btn-submit:hover::before {
            left: 100%;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(11, 110, 153, 0.35);
        }

        .btn-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .btn-submit-loading svg {
            animation: spin 1s linear infinite;
        }

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

        .form-success {
            text-align: center;
            padding: 48px 24px;
            animation: fadeInUp 0.6s var(--transition);
        }

        .success-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, var(--accent-teal), #25A99D);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--white);
            font-weight: 700;
            box-shadow: 0 8px 30px rgba(46, 196, 182, 0.3);
        }

        .form-success h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .form-success p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ===================== RESPONSIVE ===================== */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 48px;
                text-align: center;
            }
            .hero-desc { margin: 0 auto 36px; }
            .hero-buttons { justify-content: center; }
            .hero-social-proof { justify-content: center; }
            .hero-visual { min-height: 400px; }

            .individuals-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .individuals-content { padding-right: 0; text-align: center; }
            .individuals-visual { order: -1; }

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

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

            .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

            .footer-grid { grid-template-columns: 1fr; text-align: center; }
            .footer-brand { max-width: 100%; }
            .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

            .contact-grid { grid-template-columns: 1fr; gap: 48px; }
            .contact-info { text-align: center; }
            .contact-details { align-items: center; }
            .contact-form-wrapper { padding: 32px; }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                justify-content: center;
                align-items: center;
                gap: 28px;
                z-index: 999;
            }
            .nav-links.active a { font-size: 1.2rem; }
            .nav-hamburger { display: flex; }

            .hero { padding: 100px 0 60px; min-height: auto; }
            .phone-left, .phone-right { display: none; }
            .phone-main { width: 220px; }
            .hero-visual { min-height: 350px; }

            section { padding: 70px 0; }

            .hero-buttons { flex-direction: column; align-items: center; }
            .btn-primary, .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }
            .store-buttons-hero { flex-direction: column; align-items: center; width: 100%; }
            .store-btn-hero { max-width: 200px; }

            .cta-cards { grid-template-columns: 1fr; }
            .stats-row { gap: 32px; }
            .steps-grid { grid-template-columns: 1fr; }

            .pro-float-card { display: none; }
            .form-row { grid-template-columns: 1fr; }

            /* Testimonials scroll on mobile */
            .testimonials-scroll-track .testimonial-card {
                min-width: 300px;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 2rem; }
            .section-title { font-size: 1.7rem; }
            .stats-row { flex-direction: column; gap: 24px; }
            .hero-social-proof { flex-direction: column; align-items: center; gap: 12px; }
        }

        /* ===================== SMOOTH SCROLL OFFSET ===================== */
        [id] {
            scroll-margin-top: 80px;
        }

        /* ===================== CUSTOM SCROLLBAR ===================== */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-cream); }
        ::-webkit-scrollbar-thumb { background: rgba(11, 110, 153, 0.2); border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: rgba(11, 110, 153, 0.4); }
    </style>
