
        /* Apple-esque Custom Utilities */
        :root {
            --bg-body: #050505;
            --text-primary: #f5f5f7;
            --text-secondary: #a1a1a6;
            --accent-blue: #2997ff;
            --accent-blue-hover: #0071e3;
            --card-bg: #121212;
            --glass-border: rgba(255, 255, 255, 0.08);
        }

        body {
            background-color: var(--bg-body);
            color: var(--text-primary);
            font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* Typography Physics */
        .headline {
            letter-spacing: -0.04em;
            line-height: 1.05;
            font-weight: 700;
        }
.iti--inline-dropdown .iti__country-list{
    color:black !important;
}
        .subheadline {
            color: var(--text-secondary);
            font-weight: 400;
            letter-spacing: -0.01em;
            line-height: 1.5;
        }

        /* Animation: Scroll Reveal with Scale */
        .fade-in-section {
            opacity: 0;
            transform: translateY(30px) scale(0.98);
            transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
            will-change: transform, opacity;
        }

        .fade-in-section.is-visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        /* Navigation Glass */
        .glass-nav {
            background: rgba(0, 0, 0, 0.75);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        /* Buttons: "Control Center" Style */
        .btn-apple {
            background-color: white;
            color: black;
            transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.4s ease;
        }
        .btn-apple:hover {
            transform: scale(1.02);
            box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
        }

        .btn-blue {
            background-color: var(--accent-blue);
            color: #fff;
            transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        }
        .btn-blue:hover {
            background-color: var(--accent-blue-hover);
            transform: scale(1.02);
            box-shadow: 0 0 30px rgba(41, 151, 255, 0.3);
        }

        /* Bento Cards: Glass & Depth */
        .bento-card {
            background-color: var(--card-bg);
            border: 1px solid var(--glass-border);
            border-radius: 28px;
            overflow: hidden;
            position: relative;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s;
        }
        @media (min-width: 768px) {
            .bento-card { border-radius: 32px; }
        }
        .bento-card:hover {
            transform: scale(1.01);
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* Image/Video Cover Utility */
        .media-cover {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.6;
            transition: opacity 0.5s ease;
        }
        .bento-card:hover .media-cover {
            opacity: 0.8;
        }

        /* Input "Haptic" Glow */
        .input-group {
            position: relative;
            margin-bottom: 2rem;
        }
        .input-line {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid #333;
            padding: 12px 0;
            color: white;
            font-size: 1.1rem;
            transition: border-color 0.3s ease;
            outline: none;
            border-radius: 0;
        }
        .input-line:focus {
            border-bottom-color: #2997ff;
            box-shadow: 0 4px 12px -2px rgba(41, 151, 255, 0.1);
        }
        .input-label-float {
            position: absolute;
            top: 12px;
            left: 0;
            font-size: 1.1rem;
            color: #666;
            pointer-events: none;
            transition: 0.2s ease all;
        }
        .input-line:focus ~ .input-label-float,
        .input-line:not(:placeholder-shown) ~ .input-label-float {
            top: -16px;
            font-size: 0.75rem;
            color: #2997ff;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        /* Goal Chips */
        .goal-chip {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 99px;
            padding: 8px 16px;
            font-size: 0.85rem;
            color: #a1a1a6;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .goal-chip:hover {
            background: rgba(255,255,255,0.1);
            color: white;
        }
        .goal-chip.selected {
            background: #2997ff;
            border-color: #2997ff;
            color: white;
        }

        /* Map Dark Mode */
        .map-dark {
            filter: grayscale(100%) invert(100%) contrast(120%);
            opacity: 0.6;
            mix-blend-mode: screen;
        }

        /* FAQ Accordion */
        details {
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        details summary {
            list-style: none;
            cursor: pointer;
            padding: 1.5rem 0;
            transition: color 0.3s ease;
        }
        details summary::-webkit-details-marker { display: none; }
        details summary:hover { color: #2997ff; }
        
        details[open] summary ~ * {
            animation: sweep .3s ease-in-out;
        }
        @keyframes sweep {
            0%    {opacity: 0; transform: translateY(-10px)}
            100%  {opacity: 1; transform: translateY(0)}
        }

        /* Marquee Animation */
        .marquee-container {
            mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
            width: 100%;
            overflow: hidden;
        }
        .marquee-content {
            display: flex;
            gap: 2rem;
            animation: scroll 40s linear infinite;
            width: max-content;
        }
        .marquee-content:hover {
            animation-play-state: paused;
        }
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .star-rating { color: #FFD700; font-size: 1.0rem; letter-spacing: 2px; }
        
        /* Table Scroll Mask */
        .scroll-mask {
            mask-image: linear-gradient(to right, black 85%, transparent 100%);
            -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
        }

        /* QUIZ STYLES */
        .quiz-option {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
        }
        .quiz-option:hover {
            border-color: rgba(255,255,255,0.3);
            background: rgba(255,255,255,0.08);
            transform: scale(1.02);
        }
        .quiz-option.selected {
            border-color: #2997ff;
            background: rgba(41, 151, 255, 0.1);
            box-shadow: 0 0 20px rgba(41, 151, 255, 0.15);
        }
        .step-indicator {
            height: 4px;
            background: rgba(255,255,255,0.1);
            border-radius: 2px;
            overflow: hidden;
        }
        .step-progress {
            height: 100%;
            background: #2997ff;
            transition: width 0.5s ease;
        }
        .quiz-slide {
            transition: opacity 0.4s ease, transform 0.4s ease;
            opacity: 0;
            transform: translateX(20px);
        }
        .quiz-slide.hidden {
            display: none;
        }
        .quiz-slide.active {
            display: block;
            opacity: 1;
            transform: translateX(0);
        }

#btn-get-started{
background: white !important;
border-radius:50px !important;
Color:black !important;s
    
}
    