        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f0 100%);
            color: #2d5a2d;
            line-height: 1.5;
            padding: 20px;
            max-width: 500px;
            margin: 0 auto;
        }
        
        /* Screen Management */
        .screen {
            display: none;
            min-height: calc(100vh - 40px);
            flex-direction: column;
            justify-content: center;
        }
        
        .screen.active {
            display: flex;
        }
        
        /* Typography */
        h1 {
            font-size: 28px;
            margin-bottom: 15px;
            text-align: center;
            color: #1a4d1a;
        }
        
        p {
            font-size: 18px;
            margin-bottom: 30px;
            text-align: center;
            color: #4a7c4a;
        }
        
        .note {
            font-size: 16px;
            background-color: #f0fff0;
            padding: 12px;
            border-radius: 12px;
            margin: 15px 0;
            text-align: center;
            border-left: 4px solid #28a745;
            box-shadow: 0 2px 8px rgba(40, 167, 69, 0.1);
        }
        
        /* Buttons */
        .btn {
            display: block;
            width: 100%;
            padding: 18px 15px;
            margin-bottom: 12px;
            font-size: 20px;
            font-weight: bold;
            text-align: center;
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            text-decoration: none;
            min-height: 60px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
        }
        
        .btn:hover, .btn:focus {
            background: linear-gradient(135deg, #218838 0%, #1ea085 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(40, 167, 69, 0.3);
        }
        
        .btn-option {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            color: #28a745;
            border: 2px solid #28a745;
        }
        
        .btn-option:hover, .btn-option:focus {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            border-color: #20c997;
        }
        
        .btn-pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }
        
        /* Sticky CTA */
        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            padding: 15px;
            text-align: center;
            box-shadow: 0 -4px 16px rgba(40, 167, 69, 0.3);
            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: 15px;
            margin: 20px 0;
        }
        
        .testimonial-card {
            background: linear-gradient(135deg, #f0fff0 0%, #e8f5e8 100%);
            padding: 15px;
            border-radius: 12px;
            border-left: 4px solid #28a745;
            box-shadow: 0 2px 8px rgba(40, 167, 69, 0.1);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 5px;
            color: #2d5a2d;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: #4a7c4a;
        }
        
        /* Emoji Styling */
        .emoji {
            font-size: 24px;
            margin-right: 5px;
        }
        
        /* Urgency */
        .urgency {
            background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
            border: 1px solid #ffc107;
            padding: 12px;
            border-radius: 12px;
            margin: 15px 0;
            text-align: center;
            font-weight: bold;
            color: #856404;
            box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
        }
        
        /* Footer/Compliance */
        .compliance {
            font-size: 12px;
            color: #6c757d;
            text-align: center;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #dee2e6;
        }
        
        /* Hidden Fields */
        .hidden-fields {
            display: none;
        }
        
        /* Zip Code Input */
        .zip-input {
            width: 100%;
            padding: 18px;
            font-size: 20px;
            text-align: center;
            border: 2px solid #28a745;
            border-radius: 12px;
            margin-bottom: 15px;
            background: #ffffff;
            color: #2d5a2d;
        }
        
        .zip-input:focus {
            border-color: #20c997;
            outline: none;
            box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
        }
        
        /* Date Input */
        .date-input {
            width: 100%;
            padding: 18px;
            font-size: 20px;
            text-align: center;
            border: 2px solid #28a745;
            border-radius: 12px;
            margin-bottom: 15px;
            background: #ffffff;
        }
        
        .date-input:focus {
            border-color: #20c997;
            outline: none;
            box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
        }
        
        /* Progress Indicator */
        .progress {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .progress-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #d4edda;
            margin: 0 5px;
            border: 2px solid #c3e6cb;
        }
        
        .progress-dot.active {
            background-color: #28a745;
            border-color: #20c997;
        }
        
        /* Couple Image Container */
        .couple-container {
            text-align: center;
            margin: 20px 0;
            position: relative;
        }
        
        .couple-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #28a745;
            box-shadow: 0 4px 12px rgba(40, 167, 69, 0.2);
        }
        
        .couple-badge {
            position: absolute;
            bottom: 10px;
            right: 25%;
            background: #20c997;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
        }
        
        /* Psychology Elements */
        .social-proof {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 15px 0;
            font-size: 16px;
            color: #4a7c4a;
        }
        
        .social-proof-avatars {
            display: flex;
            margin-right: 10px;
        }
        
        .avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #28a745;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            margin-left: -10px;
            border: 2px solid white;
        }
        
        .avatar:first-child {
            margin-left: 0;
        }
        
        .scarcity {
            background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
            color: #721c24;
            padding: 10px;
            border-radius: 12px;
            text-align: center;
            margin: 15px 0;
            font-weight: bold;
            border: 1px solid #f5c6cb;
        }
        
        .benefit-list {
            margin: 20px 0;
        }
        
        .benefit-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        .benefit-icon {
            width: 30px;
            height: 30px;
            background-color: #28a745;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            flex-shrink: 0;
        }
        
        /* Zipcode Social Proof */
        .zip-social-proof {
            background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
            border: 2px solid #28a745;
            padding: 15px;
            border-radius: 12px;
            margin: 20px 0;
            text-align: center;
            font-size: 18px;
            font-weight: bold;
            color: #155724;
            box-shadow: 0 2px 8px rgba(40, 167, 69, 0.1);
        }
        
        .zip-highlight {
            color: #28a745;
            font-weight: 900;
        }
        
        .local-savings {
            background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
            border: 1px solid #c3e6cb;
            padding: 12px;
            border-radius: 12px;
            margin: 15px 0;
            text-align: center;
            color: #155724;
            box-shadow: 0 2px 8px rgba(40, 167, 69, 0.1);
        }