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

        :root {
            --brand: #1A56E8;
            --brand-dark: #0F3BB5;
            --brand-light: #EBF1FF;
            --accent: #F5A623;
            --dark: #0B0F1A;
            --dark2: #141929;
            --mid: #3A4156;
            --muted: #6B7490;
            --border: rgba(255, 255, 255, 0.08);
            --border-light: rgba(26, 86, 232, 0.12);
            --white: #FFFFFF;
            --off: #F7F8FC;
            --font-display: "Plus Jakarta Sans", Arial, sans-serif;
            --font-body: "DM Sans", Arial, sans-serif;
            --radius: 16px;
            --radius-sm: 10px;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--dark);
            background: var(--white);
            overflow-x: hidden;
        }

        /* ── NAV ── */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 0 5vw;
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-light);
            transition: background 0.3s;
        }

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

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

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

        .lang-switcher {
            display: flex;
            gap: 4px;
        }

        .lang-switcher a {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.04em;
            padding: 4px 10px;
            border-radius: 20px;
            text-decoration: none;
            color: var(--muted);
            transition: all 0.2s;
        }

        .lang-switcher a.active,
        .lang-switcher a:hover {
            background: var(--brand-light);
            color: var(--brand);
        }

        .btn-login {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 20px;
            border-radius: 24px;
            background: var(--dark);
            color: var(--white);
            text-decoration: none;
            transition: background 0.2s, transform 0.15s;
        }

        .btn-login:hover {
            background: var(--brand);
            transform: translateY(-1px);
        }

        /* ── HERO ── */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 5vw 80px;
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(ellipse 60% 70% at 70% 50%, rgba(26, 86, 232, 0.18) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245, 166, 35, 0.08) 0%, transparent 60%);
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            pointer-events: none;
            opacity: 0.04;
            background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        .hero-inner {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(26, 86, 232, 0.15);
            border: 1px solid rgba(26, 86, 232, 0.3);
            color: #7EA8FF;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 24px;
        }

        .hero-tag span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #7EA8FF;
            display: inline-block;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: 0.3
            }
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.4rem, 4.5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: var(--white);
            margin-bottom: 20px;
        }

        .hero h1 em {
            font-style: normal;
            color: var(--accent);
        }

        .hero-sub {
            font-size: 17px;
            line-height: 1.65;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 36px;
            max-width: 480px;
            font-weight: 300;
        }

        .hero-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 36px;
        }

        .pill {
            display: flex;
            align-items: center;
            gap: 7px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.75);
            font-size: 13px;
            font-weight: 400;
            padding: 7px 14px;
            border-radius: 24px;
        }

        .pill-icon {
            color: var(--accent);
            font-size: 14px;
        }

        .btn-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--brand);
            color: var(--white);
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 500;
            padding: 14px 28px;
            border-radius: 32px;
            text-decoration: none;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
        }

        .btn-cta:hover {
            background: var(--brand-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(26, 86, 232, 0.35);
        }

        .btn-cta svg {
            width: 16px;
            height: 16px;
        }

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

        .hero-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 28px;
            width: 100%;
            max-width: 360px;
            animation: float 5s ease-in-out infinite;
        }

        @keyframes float {

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

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

        .stat-row {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
        }

        .stat-box {
            flex: 1;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            padding: 16px;
            border: 1px solid rgba(255, 255, 255, 0.07);
        }

        .stat-num {
            font-family: var(--font-display);
            font-size: 28px;
            font-weight: 700;
            color: var(--white);
            line-height: 1;
        }

        .stat-num em {
            font-style: normal;
            color: var(--accent);
        }

        .stat-label {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.4);
            margin-top: 4px;
            letter-spacing: 0.04em;
        }

        .chart-bar {
            display: flex;
            align-items: flex-end;
            gap: 6px;
            height: 80px;
            margin-top: 20px;
        }

        .bar {
            flex: 1;
            border-radius: 4px 4px 0 0;
            background: rgba(26, 86, 232, 0.4);
            transition: height 0.3s;
        }

        .bar.active {
            background: var(--brand);
        }

        .bar:last-child {
            background: var(--accent);
        }

        .google-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: var(--white);
            border-radius: 14px;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
        }

        .google-badge img {
            height: 20px;
        }

        .google-badge-text {
            font-size: 12px;
            font-weight: 500;
            color: var(--dark);
        }

        .google-badge-sub {
            font-size: 11px;
            color: var(--muted);
        }

        /* ── STEPS ── */
        .steps {
            padding: 100px 5vw;
            background: var(--off);
        }

        .section-label {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--brand);
            margin-bottom: 12px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 700;
            color: var(--dark);
            line-height: 1.15;
            letter-spacing: -0.02em;
        }

        .steps-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .steps-header {
            margin-bottom: 56px;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .step-card {
            background: var(--white);
            border: 1px solid var(--border-light);
            border-radius: var(--radius);
            padding: 32px 28px;
            position: relative;
            overflow: hidden;
            transition: transform 0.25s, box-shadow 0.25s;
        }

        .step-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(26, 86, 232, 0.1);
        }

        .step-num {
            font-family: var(--font-display);
            font-size: 64px;
            font-weight: 800;
            color: var(--brand-light);
            line-height: 1;
            position: absolute;
            top: 16px;
            right: 20px;
        }

        .step-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--brand-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .step-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--brand);
        }

        .step-card h3 {
            font-family: var(--font-display);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .step-card p {
            font-size: 14px;
            line-height: 1.6;
            color: var(--muted);
        }

        /* ── SECTIONS (Why / What / Company) ── */
        .content-section {
            padding: 80px 5vw;
        }

        .content-section:nth-child(even) {
            background: var(--off);
        }

        .content-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .content-inner.reverse {
            direction: rtl;
        }

        .content-inner.reverse>* {
            direction: ltr;
        }

        .content-img {
            border-radius: var(--radius);
            overflow: hidden;
            aspect-ratio: 4/3;
        }

        .content-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .content-text p {
            font-size: 16px;
            line-height: 1.75;
            color: var(--mid);
            margin-bottom: 28px;
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1.5px solid var(--brand);
            color: var(--brand);
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            padding: 11px 22px;
            border-radius: 28px;
            text-decoration: none;
            transition: all 0.2s;
        }

        .btn-outline:hover {
            background: var(--brand);
            color: var(--white);
        }

        /* ── PRICING ── */
        .pricing {
            padding: 100px 5vw;
            background: var(--light);
        }

        .pricing-inner {
            max-width: 1140px;
            margin: 0 auto;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(var(--plan-count, 3), 1fr);
            gap: 24px;
            margin-top: 48px;
            align-items: stretch;
        }

        @media (max-width: 860px) {
            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }

        .pricing-card {
            background: var(--white);
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 20px;
            cursor: pointer;
            padding: 36px 32px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            position: relative;
            transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
        }

        .pricing-card:hover {
            box-shadow: 0 8px 40px rgba(26,86,232,0.10);
            transform: translateY(-2px);
        }

        .pricing-card--featured {
            border-color: var(--brand);
            box-shadow: 0 8px 40px rgba(26,86,232,0.15);
        }

        .pricing-card--selected {
            border-color: var(--brand);
            box-shadow: 0 14px 44px rgba(26,86,232,0.18);
        }

        .pricing-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--brand);
            color: var(--white);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 4px 16px;
            border-radius: 100px;
            white-space: nowrap;
        }

        .pricing-name {
            font-family: "Plus Jakarta Sans", Arial, sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark);
        }

        .pricing-price {
            font-family: "Plus Jakarta Sans", Arial, sans-serif;
            font-size: 2.4rem;
            font-weight: 800;
            color: var(--dark);
            line-height: 1;
        }

        .pricing-period {
            font-size: 1rem;
            font-weight: 400;
            color: var(--muted);
        }

        .pricing-usp {
            font-size: 0.9rem;
            color: var(--muted);
        }

        .pricing-desc {
            font-size: 0.9rem;
            color: var(--muted);
            line-height: 1.7;
            flex: 1;
        }

        .pricing-desc ul {
            padding-left: 18px;
            margin: 0;
        }

        .pricing-desc li {
            margin-bottom: 6px;
        }

        /* ── REGISTRATION ── */
        .registration {
            padding: 100px 5vw;
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .registration-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(26, 86, 232, 0.2) 0%, transparent 70%);
        }

        .registration-inner {
            position: relative;
            z-index: 1;
            max-width: 560px;
            margin: 0 auto;
            text-align: center;
        }

        .registration h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .registration-sub {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 44px;
        }

        .reg-form-box {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 36px;
        }

        .reg-form-box .success-msg,
        .reg-form-box .error-msg {
            display: none;
        }

        .google-btn {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: var(--white);
            color: var(--dark);
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 500;
            padding: 13px 24px;
            border-radius: 32px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s;
            margin-bottom: 20px;
        }

        .google-btn:hover {
            background: #F0F4FF;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .google-btn img {
            height: 20px;
        }

        .divider {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.3);
            margin-bottom: 20px;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
        }

        .input-field {
            width: 100%;
            background: rgba(255, 255, 255, 0.07);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 12px;
            padding: 13px 16px;
            color: var(--white);
            font-family: var(--font-body);
            font-size: 15px;
            margin-bottom: 12px;
            outline: none;
            transition: border-color 0.2s;
        }

        .input-field::placeholder {
            color: rgba(255, 255, 255, 0.3);
        }

        .input-field:focus {
            border-color: rgba(26, 86, 232, 0.6);
        }

        .btn-submit {
            width: 100%;
            background: var(--brand);
            color: var(--white);
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 500;
            padding: 14px;
            border-radius: 32px;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 4px;
        }

        .btn-submit:hover {
            background: var(--brand-dark);
            box-shadow: 0 6px 24px rgba(26, 86, 232, 0.4);
        }

        .reg-note {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.25);
            margin-top: 16px;
            line-height: 1.5;
        }

        /* State messages */
        .state-msg {
            padding: 28px;
            text-align: center;
        }

        .state-msg h3 {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 8px;
        }

        .state-msg p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.6;
        }

        .state-msg.error h3 {
            color: #FF7575;
        }

        /* ── FOOTER ── */
        footer {
            background: var(--dark2);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 40px 5vw;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }

        footer .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        footer .footer-logo img {
            height: 28px;
        }

        footer a {
            color: rgba(255, 255, 255, 0.4);
            font-size: 14px;
            text-decoration: none;
            transition: color 0.2s;
        }

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

        /* ── RESPONSIVE ── */
        @media (max-width: 768px) {
            .hero-inner {
                grid-template-columns: 1fr;
            }

            .hero-visual {
                display: none;
            }

            .content-inner {
                grid-template-columns: 1fr;
            }

            .content-inner.reverse {
                direction: ltr;
            }

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

        /* ── ANIMATIONS ── */
        .fade-up {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: none;
        }
