        
         .page-bg {
            position: fixed;
            inset: 0;
            z-index: -1;
            background: var(--app-gradient);
            background-color: #c3cfe2;
            display: none;
            
        }

        .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 100svh;
        }

        .w-layout-blockcontainer.container.w-container {
            display: none !important;
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.9rem;
            padding: 0 10px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: .5rem;
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: #000000;
        }

        .nav-btn {
            padding: 8px 18px;
            border-radius: 100px;
            background: #fff;
            border: 1px solid #e2e8f0;
            font-weight: 600;
            font-size: 0.85rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            cursor: pointer;
        }

        .main-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-bottom: 50px;
            flex-direction: column;
        }

        .stepper {
            width: 100%;
            max-width: 800px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Hero Group from Onboarding */
        .hero-center-group {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
            width: 100%;
        }

        .hero-center-group h1 {
            line-height: 1.25;
            /* 1.2–1.4 range */
            margin-bottom: 6px;
            /* smaller gap between lines */
        }

        .hero-center-group h1:last-of-type {
            margin-bottom: 14px;
            margin-top: 14px;
        }


        .sf-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #fff;
            padding: 6px 14px;
            border-radius: 100px;
            border: 1px solid #e2e8f0;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
        }

        .sf-badge img {
            width: 18px;
        }

        h1 {
            font-size: 2.5rem;
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        h1 span {
            color: var(--primary);
        }

        @media (max-width: 420px) {
            .hero-center-group h1 {
                font-size: 2.15rem;
            }
        }

        .sub-text {
            font-size: 1rem;
            color: var(--text-sub);
            max-width: 320px;
            margin-bottom: 32px;
            line-height: 1.5;
        }

        .cta-btn {
            background: var(--primary);
            color: white;
            width: 100%;
            max-width: 340px;
            padding: 18px;
            border-radius: 14px;
            font-size: 1.1rem;
            font-weight: 700;
            border: none;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.4);
            cursor: pointer;
            transition: transform 0.2s;
            flex-grow: 0 !important;
            /* Prevent stretching */
        }


        /* Form Styling Updates */
        .form-group {
            margin-bottom: 1rem;
            text-align: left;
            width: 100%;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            border-radius: 12px;
            border: 1.5px solid var(--input-border);
            background: rgba(255, 255, 255, 1);
            font-size: 1rem;
            outline: none;
            transition: all 0.2s ease;
        }

        .form-group input:focus,
        .form-group select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
            background: #fff;
        }

        .phone-form-group {
            position: relative;
            z-index: 30;
        }

        .phone-combo {
            width: 100%;
            display: grid;
            grid-template-columns: 132px 1fr;
            align-items: stretch;
            border: 1.5px solid var(--input-border);
            border-radius: 12px;
            background: #fff;
            overflow: hidden;
            transition: all 0.2s ease;
        }

        .phone-form-group.phone-open .phone-combo,
        .phone-combo:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
        }

        .phone-country-btn {
            min-height: 52px;
            border: 0;
            border-right: 1px solid #E2E8F0;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            padding: 0 10px;
            cursor: pointer;
            font-size: 0.95rem;
            color: var(--text-main);
            white-space: nowrap;
        }

        .phone-country-btn:hover {
            background: #F8FAFC;
        }

        .phone-country-flag {
            width: 24px;
            min-width: 24px;
            height: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .phone-country-flag-img {
            width: 22px;
            height: 16px;
            object-fit: cover;
            border-radius: 2px;
            box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
            display: block;
        }

        .phone-country-flag-fallback {
            display: none;
            font-size: 0.72rem;
            font-weight: 800;
            color: #0F172A;
            letter-spacing: -0.02em;
        }

        .phone-country-code {
            font-weight: 600;
        }

        .phone-country-arrow {
            color: #64748B;
            font-size: 0.7rem;
            margin-left: 2px;
        }

        .phone-combo input#contactPhoneInput {
            width: 100%;
            min-height: 52px;
            border: 0 !important;
            border-radius: 0 !important;
            background: #fff;
            font-size: 1rem;
            outline: none;
            box-shadow: none !important;
            padding: 14px 16px;
        }

        .phone-dropdown {
            display: none;
            width: 100%;
            margin-top: 8px;
            border: 1px solid #E2E8F0;
            border-radius: 14px;
            background: #fff;
            box-shadow: 0 16px 45px rgba(15, 23, 42, 0.16);
            overflow: hidden;
        }

        .phone-form-group.phone-open .phone-dropdown {
            display: block;
        }

        .phone-search-wrap {
            padding: 10px;
            border-bottom: 1px solid #EEF2F7;
            background: #fff;
        }

        .phone-search-wrap input#phoneCountrySearch {
            width: 100%;
            height: 44px;
            border: 1px solid #DCE3EE;
            border-radius: 10px;
            padding: 10px 12px;
            font-size: 0.95rem;
            outline: none;
            box-shadow: none !important;
        }

        .phone-search-wrap input#phoneCountrySearch:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1) !important;
        }

        .phone-country-list {
            max-height: 245px;
            overflow-y: auto;
            overflow-x: hidden;
            padding: 4px;
        }

        .phone-country-option {
            width: 100%;
            border: 0;
            background: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 10px;
            cursor: pointer;
            text-align: left;
            color: var(--text-main);
            font-size: 0.95rem;
        }

        .phone-country-option:hover,
        .phone-country-option.is-selected {
            background: rgba(124, 58, 237, 0.08);
        }

        .phone-country-option .country-name {
            flex: 1;
            min-width: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .phone-country-option .country-code {
            color: #64748B;
            font-weight: 600;
            white-space: nowrap;
        }

        .phone-no-results {
            padding: 14px;
            color: #64748B;
            font-size: 0.9rem;
            text-align: center;
        }

        @media (max-width: 480px) {
            .phone-combo {
                grid-template-columns: 118px 1fr;
            }

            .phone-country-btn {
                padding: 0 8px;
                gap: 5px;
                font-size: 0.9rem;
            }

            .phone-country-list {
                max-height: 225px;
            }
        }

        /* Testimonials & Ratings */
        .trust-block {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .avatar-group {
            display: flex;
        }

        .avatar-group img {
            width: 32px;
            height: 52px;
            border-radius: 50%;
            border: 2px solid #fff;
            margin-left: -10px;
        }

        .avatar-group img:first-child {
            margin-left: 0;
        }

        .trust-text {
            font-size: 0.85rem;
            font-weight: 600;
        }

        .rating {
            text-align: center;
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .stars {
            color: #fbbf24;
            font-size: 1rem;
        }

        .rating-val {
            font-weight: 700;
            font-size: 0.9rem;
        }

        .testimonial-card {
            background: #fff;
            padding: 16px;
            border-radius: 16px;
            border: 1px solid #f1f5f9;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            max-width: 380px;
            width: 100%;
            text-align: left;
            transition: opacity 0.4s ease, transform 0.4s ease;
            margin-bottom: 24px;
            min-height: 190px;
        }

        .user {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 10px;
        }

        .info {
            padding-top: 20px;
        }

        .user img {
            width: auto;
            height: 80px;
            max-width: 120px;
            object-fit: contain;
            border-radius: 0;
        }

        .user-name {
            font-size: 0.85rem;
            font-weight: 700;
        }

        .user-title {
            font-size: 0.75rem;
            color: var(--text-sub);
        }

        .quote {
            font-size: 0.8rem;
            font-style: italic;
            line-height: 1.4;
            min-height: calc(1.4em * 3);
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        .fade-out {
            opacity: 0;
            transform: translateY(5px);
        }

        /* Existing Card Styles Preserved/adapted */
        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            justify-content: center;
            width: 100%;
        }

        /* Make all option selections look consistent (row style) */
        .step-company_type .cards-container,
        .step-best_budget .cards-container,
        .step .cards-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 100%;
            max-width: 560px;
            margin: 0 auto 1.5rem;
        }

        .card {
            background: #fff;
            border-radius: 16px;
            padding: 2rem 1rem;
            cursor: pointer;
            transition: all .3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid #e2e8f0;
            text-align: center;
        }

        .card:hover {
            border-color: #9ca3af;
        }

        .card.selected {
            background: #6987d7;
            color: #fff;
            border-color: #6987d7;
        }

        .card.selected .card-label {
            color: white !important;
        }

        /* Row-style selectable cards (icon left, check right) */
        .card.choice-row {
            padding: 1rem 1.1rem;
            text-align: left;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            width: 100%;
            max-width: 560px;
            margin: 0 auto;
        }

        .choice-left {
            display: flex;
            align-items: center;
            gap: .9rem;
            min-width: 0;
        }

        .choice-icon {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            border: 1px solid #eef2f7;
            background: #f8fafc;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            font-size: 1.1rem;
        }

        .choice-label {
            display: flex;
            flex-direction: column;
            gap: 2px;
            font-weight: 700;
            color: #0f172a;
            letter-spacing: -0.2px;
            overflow: hidden;
        }

        .choice-label .line2 {
            font-weight: 600;
            color: #64748b;
            font-size: .9em;
        }

        .choice-check {
            width: 34px;
            height: 34px;
            border-radius: 999px;
            border: 2px solid #e2e8f0;
            background: #fff;
            flex: 0 0 auto;
            position: relative;
        }

        .choice-row.selected {
            background: #fff;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.14);
            color: inherit;
        }

        .choice-row.selected .choice-check {
            border-color: var(--primary);
            background: var(--primary);
        }

        .choice-row.selected .choice-check::after {
            content: "✓";
            position: absolute;
            inset: 0;
            display: grid;
            place-items: center;
            color: #fff;
            font-weight: 800;
            font-size: 1rem;
            line-height: 1;
        }

        .card-icon {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .card-text {
            display: flex;
            flex-direction: column;
            gap: .25rem;
        }

        .card-text span {
            white-space: nowrap;
        }

        .back-btn {
            background: transparent;
            border: 2px solid #e1e5e9;
            color: #666;
            padding: 10px 20px;
            border-radius: 10px;
            cursor: pointer;
            transition: all .3s;
            margin-right: 10px;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .back-btn:hover {
            border-color: #6366f1;
            color: #6366f1;
        }

        .continue-btn {
            background: var(--primary);
            color: #fff;
            padding: 10px 24px;
            border: none;
            border-radius: 10px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: background .3s;
            flex-grow: 1;
        }

        .continue-btn:hover {
            background-color: #6d28d9;
        }

        /* Video styles */
        .welcome-video {
            border-radius: 8px;
            width: 100%;
            max-width: 360px;
            aspect-ratio: 9 / 16;
            margin-bottom: 1rem;
            object-fit: cover;
        }

        /* Buttons container */
        .inline-btn-container {
            display: flex;
            width: 100%;
            max-width: 340px;
            margin-top: 20px;
        }

        /* Footer override */
        .global-footer {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1000;
            background: #fdfdfc;
            border-top: 1px solid #e0e0e0;
            padding: 20px 20px calc(20px + env(safe-area-inset-bottom, 0));
            box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
        }

        .step {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            animation: fadeIn .5s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }