        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #2d3748;
            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.95);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .screen.active {
            display: flex;
        }
        
        /* Typography */
        h1 {
            font-size: 32px;
            margin-bottom: 20px;
            text-align: center;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
        }
        
        p {
            font-size: 18px;
            margin-bottom: 30px;
            text-align: center;
            color: #4a5568;
        }
        
        .note {
            font-size: 16px;
            background: linear-gradient(135deg, #e6fffa, #f0fff4);
            padding: 15px;
            border-radius: 15px;
            margin: 20px 0;
            text-align: center;
            border-left: 5px solid #38b2ac;
            font-weight: 500;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        /* Buttons */
        .btn {
            display: block;
            width: 100%;
            padding: 20px 15px;
            margin-bottom: 15px;
            font-size: 18px;
            font-weight: 600;
            text-align: center;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            border-radius: 15px;
            cursor: pointer;
            text-decoration: none;
            min-height: 65px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 15px rgba(102, 126, 234, 0.3);
        }
        
        .btn:hover, .btn:focus {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
        }
        
        .btn-option {
            background: linear-gradient(135deg, #f7fafc, #edf2f7);
            color: #2d3748;
            border: 2px solid #e2e8f0;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .btn-option:hover, .btn-option:focus {
            background: linear-gradient(135deg, #edf2f7, #e2e8f0);
            border-color: #667eea;
            transform: translateY(-2px);
            box-shadow: 0 8px 15px rgba(102, 126, 234, 0.2);
        }
        
        .btn-pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.03); }
            100% { transform: scale(1); }
        }
        
        /* Sticky CTA */
        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #38b2ac, #319795);
            padding: 20px;
            text-align: center;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
            z-index: 100;
        }
        
        .sticky-cta a {
            display: block;
            font-size: 22px;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }
        
        .reassurance {
            font-size: 14px;
            color: #ffffff;
            text-align: center;
            margin-top: 10px;
            opacity: 0.9;
        }
        
        /* Testimonials */
        .testimonials {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin: 25px 0;
        }
        
        .testimonial-card {
            background: linear-gradient(135deg, #f7fafc, #edf2f7);
            padding: 20px;
            border-radius: 15px;
            border-left: 5px solid #667eea;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 8px;
            font-size: 16px;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: #4a5568;
        }
        
        /* Emoji Styling */
        .emoji {
            font-size: 28px;
            margin-right: 8px;
        }
        
        /* Urgency */
        .urgency {
            background: linear-gradient(135deg, #fed7d7, #feb2b2);
            border: 2px solid #fc8181;
            padding: 15px;
            border-radius: 15px;
            margin: 20px 0;
            text-align: center;
            font-weight: bold;
            color: #742a2a;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        /* Footer/Compliance */
        .compliance {
            font-size: 12px;
            color: #718096;
            text-align: center;
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
        }
        
        /* Hidden Fields */
        .hidden-fields {
            display: none;
        }
        
        /* Zip Code Input */
        .zip-input {
            width: 100%;
            padding: 20px;
            font-size: 20px;
            text-align: center;
            border: 3px solid #e2e8f0;
            border-radius: 15px;
            margin-bottom: 20px;
            background: #f7fafc;
            transition: all 0.3s ease;
        }
        
        .zip-input:focus {
            border-color: #667eea;
            outline: none;
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        
        /* Date Input */
        .date-input {
            width: 100%;
            padding: 20px;
            font-size: 20px;
            text-align: center;
            border: 3px solid #e2e8f0;
            border-radius: 15px;
            margin-bottom: 20px;
            background: #f7fafc;
            transition: all 0.3s ease;
        }
        
        .date-input:focus {
            border-color: #667eea;
            outline: none;
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }
        
        /* Progress Indicator */
        .progress {
            display: flex;
            justify-content: center;
            margin-bottom: 25px;
        }
        
        .progress-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
            margin: 0 8px;
            transition: all 0.3s ease;
        }
        
        .progress-dot.active {
            background: linear-gradient(135deg, #667eea, #764ba2);
            transform: scale(1.2);
            box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
        }
        
        /* Couple Image Container */
        .couple-container {
            text-align: center;
            margin: 25px 0;
            position: relative;
        }
        
        .couple-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #667eea;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }
        
        .couple-badge {
            position: absolute;
            bottom: 15px;
            right: 25%;
            background: linear-gradient(135deg, #38b2ac, #319795);
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: bold;
            box-shadow: 0 4px 8px rgba(56, 178, 172, 0.3);
        }
        
        /* Psychology Elements */
        .social-proof {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px 0;
            font-size: 16px;
            color: #4a5568;
        }
        
        .social-proof-avatars {
            display: flex;
            margin-right: 12px;
        }
        
        .avatar {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            margin-left: -12px;
            border: 3px solid white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .avatar:first-child {
            margin-left: 0;
        }
        
        .scarcity {
            background: linear-gradient(135deg, #fed7d7, #feb2b2);
            color: #742a2a;
            padding: 15px;
            border-radius: 15px;
            text-align: center;
            margin: 20px 0;
            font-weight: bold;
            border: 2px solid #fc8181;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .benefit-list {
            margin: 25px 0;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            margin-bottom: 18px;
            font-size: 16px;
        }
        
        .benefit-icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #38b2ac, #319795);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            box-shadow: 0 4px 8px rgba(56, 178, 172, 0.3);
        }
        
        /* Zipcode Social Proof */
        .zip-social-proof {
            background: linear-gradient(135deg, #e6fffa, #f0fff4);
            border: 3px solid #38b2ac;
            padding: 20px;
            border-radius: 15px;
            margin: 25px 0;
            text-align: center;
            font-size: 18px;
            font-weight: bold;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .zip-highlight {
            color: #38b2ac;
            font-weight: 900;
        }
        
        .local-savings {
            background: linear-gradient(135deg, #c6f6d5, #9ae6b4);
            border: 2px solid #68d391;
            padding: 15px;
            border-radius: 15px;
            margin: 20px 0;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
