        /* 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, #2c1810 0%, #1a0e0a 100%);
            background-attachment: fixed;
            color: #f8f9fa;
            line-height: 1.5;
            padding: 20px;
            max-width: 500px;
            margin: 0 auto;
            min-height: 100vh;
        }
        
        /* Card Layout */
        .card {
            background: linear-gradient(135deg, #4a3458 0%, #362347 100%);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(138, 43, 226, 0.3);
        }
        
        .result-card {
            background: linear-gradient(135deg, #5a4268 0%, #453557 100%);
        }
        
        /* 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: #e1bee7;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        p {
            font-size: 18px;
            margin-bottom: 30px;
            text-align: center;
            color: #d1c4e9;
        }
        
        .note {
            font-size: 16px;
            background: linear-gradient(135deg, rgba(138, 43, 226, 0.2) 0%, rgba(75, 0, 130, 0.2) 100%);
            padding: 12px;
            border-radius: 15px;
            margin: 15px 0;
            text-align: center;
            border-left: 4px solid #8a2be2;
            color: #e1bee7;
            box-shadow: 0 2px 8px rgba(138, 43, 226, 0.2);
        }
        
        /* 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, #8a2be2 0%, #9932cc 100%);
            color: white;
            border: none;
            border-radius: 15px;
            cursor: pointer;
            text-decoration: none;
            min-height: 60px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .btn:hover, .btn:focus {
            background: linear-gradient(135deg, #7b1fa2 0%, #8e24aa 100%);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(138, 43, 226, 0.6);
        }
        
        .btn-option {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            color: #e1bee7;
            border: 2px solid #8a2be2;
            box-shadow: 0 4px 15px rgba(138, 43, 226, 0.2);
        }
        
        .btn-option:hover, .btn-option:focus {
            background: linear-gradient(135deg, #8a2be2 0%, #9932cc 100%);
            color: white;
            border-color: #9932cc;
            box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
        }
        
        .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, #8a2be2 0%, #9932cc 100%);
            padding: 15px;
            text-align: center;
            box-shadow: 0 -6px 20px rgba(138, 43, 226, 0.4);
            z-index: 100;
            border-top: 1px solid rgba(138, 43, 226, 0.5);
        }
        
        .sticky-cta a {
            display: block;
            font-size: 22px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .reassurance {
            font-size: 14px;
            color: #e1bee7;
            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, rgba(138, 43, 226, 0.15) 0%, rgba(75, 0, 130, 0.15) 100%);
            padding: 15px;
            border-radius: 15px;
            border-left: 4px solid #8a2be2;
            box-shadow: 0 4px 12px rgba(138, 43, 226, 0.2);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 5px;
            color: #e1bee7;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: #d1c4e9;
        }
        
        /* Emoji Styling */
        .emoji {
            font-size: 24px;
            margin-right: 5px;
        }
        
        /* Urgency */
        .urgency {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 152, 0, 0.2) 100%);
            border: 1px solid rgba(255, 193, 7, 0.4);
            padding: 12px;
            border-radius: 15px;
            margin: 15px 0;
            text-align: center;
            font-weight: bold;
            color: #ffecb3;
            box-shadow: 0 2px 8px rgba(255, 193, 7, 0.2);
        }
        
        /* Footer/Compliance */
        .compliance {
            font-size: 12px;
            color: #b39ddb;
            text-align: center;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid rgba(138, 43, 226, 0.3);
        }
        
        /* Hidden Fields */
        .hidden-fields {
            display: none;
        }
        
        /* Zip Code Input */
        .zip-input {
            width: 100%;
            padding: 18px;
            font-size: 20px;
            text-align: center;
            border: 2px solid #8a2be2;
            border-radius: 15px;
            margin-bottom: 15px;
            background: rgba(255, 255, 255, 0.1);
            color: #f8f9fa;
            backdrop-filter: blur(10px);
        }
        
        .zip-input::placeholder {
            color: #d1c4e9;
        }
        
        .zip-input:focus {
            border-color: #9932cc;
            outline: none;
            box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.3);
            background: rgba(255, 255, 255, 0.15);
        }
        
        /* Date Input */
        .date-input {
            width: 100%;
            padding: 18px;
            font-size: 20px;
            text-align: center;
            border: 2px solid #8a2be2;
            border-radius: 15px;
            margin-bottom: 15px;
            background: rgba(255, 255, 255, 0.1);
            color: #f8f9fa;
        }
        
        .date-input:focus {
            border-color: #9932cc;
            outline: none;
            box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.3);
        }
        
        /* Progress Indicator */
        .progress {
            display: flex;
            justify-content: center;
            margin-bottom: 25px;
        }
        
        .progress-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background-color: rgba(138, 43, 226, 0.3);
            margin: 0 6px;
            border: 2px solid rgba(138, 43, 226, 0.5);
            transition: all 0.3s ease;
        }
        
        .progress-dot.active {
            background-color: #8a2be2;
            border-color: #9932cc;
            box-shadow: 0 0 10px rgba(138, 43, 226, 0.6);
        }
        
        /* 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 #8a2be2;
            box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
        }
        
        .couple-badge {
            position: absolute;
            bottom: 10px;
            right: 25%;
            background: #9932cc;
            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: #d1c4e9;
        }
        
        .social-proof-avatars {
            display: flex;
            margin-right: 10px;
        }
        
        .avatar {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #8a2be2;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            margin-left: -10px;
            border: 2px solid #4a3458;
        }
        
        .avatar:first-child {
            margin-left: 0;
        }
        
        .scarcity {
            background: linear-gradient(135deg, rgba(244, 67, 54, 0.2) 0%, rgba(211, 47, 47, 0.2) 100%);
            color: #ffcdd2;
            padding: 10px;
            border-radius: 15px;
            text-align: center;
            margin: 15px 0;
            font-weight: bold;
            border: 1px solid rgba(244, 67, 54, 0.4);
        }
        
        .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: #8a2be2;
            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, rgba(138, 43, 226, 0.2) 0%, rgba(156, 39, 176, 0.2) 100%);
            border: 2px solid #8a2be2;
            padding: 15px;
            border-radius: 15px;
            margin: 20px 0;
            text-align: center;
            font-size: 18px;
            font-weight: bold;
            color: #e1bee7;
            box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
        }
        
        .zip-highlight {
            color: #ce93d8;
            font-weight: 900;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .local-savings {
            background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(56, 142, 60, 0.2) 100%);
            border: 1px solid rgba(76, 175, 80, 0.4);
            padding: 12px;
            border-radius: 15px;
            margin: 15px 0;
            text-align: center;
            color: #c8e6c9;
            box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
        }