        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: #ffffff;
            line-height: 1.6;
            padding: 20px;
            max-width: 500px;
            margin: 0 auto;
            min-height: 100vh;
        }
        
        /* Screen Management */
        .screen {
            display: none;
            min-height: calc(100vh - 40px);
            flex-direction: column;
            justify-content: center;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 25px;
            padding: 35px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .screen.active {
            display: flex;
        }
        
        /* Typography */
        h1 {
            font-size: 36px;
            margin-bottom: 25px;
            text-align: center;
            background: linear-gradient(135deg, #ff6b6b, #ffd93d, #6bcf7f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
            text-shadow: 0 0 30px rgba(255, 107, 107, 0.3);
        }
        
        p {
            font-size: 18px;
            margin-bottom: 30px;
            text-align: center;
            color: #b8c5d6;
        }
        
        .note {
            font-size: 16px;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(107, 207, 127, 0.1));
            padding: 18px;
            border-radius: 20px;
            margin: 25px 0;
            text-align: center;
            border: 2px solid rgba(255, 107, 107, 0.3);
            font-weight: 600;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
            color: #ffffff;
        }
        
        /* Buttons */
        .btn {
            display: block;
            width: 100%;
            padding: 22px 15px;
            margin-bottom: 18px;
            font-size: 18px;
            font-weight: 700;
            text-align: center;
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
            color: white;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            text-decoration: none;
            min-height: 70px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
        }
        
        .btn:hover, .btn:focus {
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
            background: linear-gradient(135deg, #ff5252, #ff7979);
        }
        
        .btn-option {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            color: #ffffff;
            border: 2px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }
        
        .btn-option:hover, .btn-option:focus {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            border-color: #ff6b6b;
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(255, 107, 107, 0.3);
        }
        
        .btn-pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* Sticky CTA */
        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
            padding: 25px;
            text-align: center;
            box-shadow: 0 -10px 30px rgba(255, 107, 107, 0.4);
            z-index: 100;
        }
        
        .sticky-cta a {
            display: block;
            font-size: 24px;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }
        
        .reassurance {
            font-size: 14px;
            color: #ffffff;
            text-align: center;
            margin-top: 12px;
            opacity: 0.9;
        }
        
        /* Testimonials */
        .testimonials {
            display: flex;
            flex-direction: column;
            gap: 25px;
            margin: 30px 0;
        }
        
        .testimonial-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            padding: 25px;
            border-radius: 20px;
            border: 2px solid rgba(255, 107, 107, 0.3);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 10px;
            font-size: 16px;
            color: #ffffff;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: #b8c5d6;
        }
        
        /* Emoji Styling */
        .emoji {
            font-size: 32px;
            margin-right: 10px;
            filter: drop-shadow(0 0 10px rgba(255, 107, 107, 0.5));
        }
        
        /* Urgency */
        .urgency {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.2));
            border: 2px solid rgba(255, 193, 7, 0.5);
            padding: 18px;
            border-radius: 20px;
            margin: 25px 0;
            text-align: center;
            font-weight: bold;
            color: #ffd93d;
            box-shadow: 0 8px 15px rgba(255, 193, 7, 0.2);
        }
        
        /* Footer/Compliance */
        .compliance {
            font-size: 12px;
            color: #8a9ba8;
            text-align: center;
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        /* Hidden Fields */
        .hidden-fields {
            display: none;
        }
        
        /* Zip Code Input */
        .zip-input {
            width: 100%;
            padding: 22px;
            font-size: 20px;
            text-align: center;
            border: 3px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            margin-bottom: 25px;
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            transition: all 0.3s ease;
        }
        
        .zip-input:focus {
            border-color: #ff6b6b;
            outline: none;
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.2);
        }
        
        .zip-input::placeholder {
            color: #8a9ba8;
        }
        
        /* Date Input */
        .date-input {
            width: 100%;
            padding: 22px;
            font-size: 20px;
            text-align: center;
            border: 3px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            margin-bottom: 25px;
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            transition: all 0.3s ease;
        }
        
        .date-input:focus {
            border-color: #ff6b6b;
            outline: none;
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.2);
        }
        
        /* Progress Indicator */
        .progress {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .progress-dot {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            margin: 0 10px;
            transition: all 0.4s ease;
        }
        
        .progress-dot.active {
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
            transform: scale(1.3);
            box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
        }
        
        /* Couple Image Container */
        .couple-container {
            text-align: center;
            margin: 30px 0;
            position: relative;
        }
        
        .couple-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #ff6b6b;
            box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
        }
        
        .couple-badge {
            position: absolute;
            bottom: 20px;
            right: 25%;
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
            color: white;
            padding: 10px 18px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: bold;
            box-shadow: 0 8px 15px rgba(255, 107, 107, 0.4);
        }
        
        /* Psychology Elements */
        .social-proof {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 25px 0;
            font-size: 16px;
            color: #b8c5d6;
        }
        
        .social-proof-avatars {
            display: flex;
            margin-right: 15px;
        }
        
        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            margin-left: -15px;
            border: 3px solid rgba(26, 26, 46, 0.8);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }
        
        .avatar:first-child {
            margin-left: 0;
        }
        
        .scarcity {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 87, 87, 0.2));
            color: #ff6b6b;
            padding: 18px;
            border-radius: 20px;
            text-align: center;
            margin: 25px 0;
            font-weight: bold;
            border: 2px solid rgba(255, 107, 107, 0.4);
            box-shadow: 0 8px 15px rgba(255, 107, 107, 0.2);
        }
        
        .benefit-list {
            margin: 30px 0;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            font-size: 16px;
        }
        
        .benefit-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            flex-shrink: 0;
            box-shadow: 0 8px 15px rgba(255, 107, 107, 0.3);
        }
        
        /* Zipcode Social Proof */
        .zip-social-proof {
            background: linear-gradient(135deg, rgba(107, 207, 127, 0.2), rgba(76, 175, 80, 0.2));
            border: 3px solid rgba(107, 207, 127, 0.5);
            padding: 25px;
            border-radius: 20px;
            margin: 30px 0;
            text-align: center;
            font-size: 18px;
            font-weight: bold;
            box-shadow: 0 8px 15px rgba(107, 207, 127, 0.2);
            color: #ffffff;
        }
        
        .zip-highlight {
            color: #6bcf7f;
            font-weight: 900;
            text-shadow: 0 0 10px rgba(107, 207, 127, 0.5);
        }
        
        .local-savings {
            background: linear-gradient(135deg, rgba(107, 207, 127, 0.2), rgba(76, 175, 80, 0.2));
            border: 2px solid rgba(107, 207, 127, 0.5);
            padding: 18px;
            border-radius: 20px;
            margin: 25px 0;
            text-align: center;
            box-shadow: 0 8px 15px rgba(107, 207, 127, 0.2);
            color: #ffffff;
        }
