:root {
    --primary-color: #2E3463;
    --accent-color: #E63946;
    --secondary-accent: #F4A261;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-gray: #6C757D;
    --border-color: #DEE2E6;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 16px; /* Preventing iOS zoom */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 600px;
}

.container-mid {
    max-width: 800px;
    margin: 0 auto;
}

/* --- COUNTDOWN BAR --- */
.countdown-bar {
    background-color: #d35400; /* Urgency Orange */
    color: var(--white);
    padding: 10px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-size: 0.95rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.countdown-bar p {
    margin: 0;
}

#timer {
    font-weight: 700;
    color: #fff;
    background: rgba(0,0,0,0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 1.1rem;
}

/* --- SCARCITY TEXTS --- */
.scarcity-hero {
    background-color: #fff8e1;
    border: 1px solid var(--secondary-accent);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #d35400;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

.scarcity-form {
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1rem;
}

.scarcity-footer {
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* --- URGENCY BADGE --- */
.urgency-badge {
    display: inline-block;
    background-color: #ffebee;
    color: #c62828;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    border: 1px solid #ffcdd2;
    vertical-align: middle;
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 40px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.logo {
    height: 40px; /* Adjust based on actual logo aspect ratio */
}

.pre-headline {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-gray);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.main-headline {
    font-size: 2rem; /* Mobile first */
    color: var(--primary-color);
    margin-bottom: 20px;
}

.sub-headline {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.mockup-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    width: 100%;
    max-width: 275px;
    margin-top: 20px;
}

.mockup-grid img {
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .mockup-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        max-width: 400px; /* 10% larger than 280px */
    }
    .mockup-grid img {
        width: 45%;
        max-width: none;
    }
}

@media (min-width: 768px) {
    .main-headline {
        font-size: 3rem;
    }
    
    .hero-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* --- VALUE PROPOSITION / WHAT'S INCLUDED --- */
.value-section {
    padding: 60px 0;
    background-color: var(--white);
}

.section-intro {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.benefits-list {
    max-width: 700px;
    margin: 0 auto 40px;
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.checkmark {
    flex-shrink: 0;
}

/* Included Table Styles */
.included-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.included-table th, 
.included-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.included-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.included-table tr:last-child td {
    border-bottom: none;
}

.included-table .icon-cell {
    width: 50px;
    text-align: center;
    font-size: 1.5rem;
}

.included-table .value-cell {
    text-align: right;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.total-value-row {
    background-color: #f1f3f5;
    font-weight: 800;
    color: var(--primary-color);
}

.total-value-text {
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
}

/* Mobile responsive table */
@media (max-width: 600px) {
    .included-table thead {
        display: none;
    }
    .included-table tr {
        display: block;
        border-bottom: 2px solid var(--border-color);
        margin-bottom: 10px;
    }
    .included-table td {
        display: block;
        text-align: center;
        padding: 10px;
        border-bottom: none;
    }
    .included-table .icon-cell {
        margin: 0 auto;
    }
    .included-table .value-cell {
        text-align: center;
        color: var(--accent-color);
    }
}

/* --- PROBLEM SECTION --- */
.problem-section {
    padding: 60px 0;
    background-color: #f1f3f5;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 30px;
}

.copy-block p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-text {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* --- FORM SECTION --- */
.form-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.form-box {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    color: var(--text-dark);
}

.form-headline {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.form-subtext {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1rem;
    color: var(--text-gray);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    height: 54px; /* Large tap target */
    padding: 10px 20px;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.2s;
    background-color: #fff;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    height: auto;
    min-height: 60px;
    padding: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    margin-top: 10px;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: normal;
}

.submit-btn:hover {
    background-color: #d62b39;
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background-color: var(--text-gray);
    cursor: not-allowed;
    transform: none;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.privacy-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

/* Success & Error Messages */
.hidden {
    display: none;
}

#success-message {
    text-align: center;
}

#success-message h3 {
    color: #28a745;
    margin-bottom: 20px;
}

.error-box {
    margin-top: 20px;
    padding: 15px;
    background-color: #ffebee;
    border: 1px solid #ffcdd2;
    border-radius: 4px;
    text-align: center;
    color: #c62828;
}

.contact-block {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* --- URGENCY SECTION --- */
.urgency-section {
    padding: 40px 0;
    background-color: var(--white);
}

.urgency-box {
    border: 2px solid var(--secondary-accent);
    background-color: #fff8e1; /* Very light orange/yellow */
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.urgency-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: #d35400;
    margin-bottom: 1rem;
}

.urgency-strong {
    font-weight: 700;
    margin-top: 1rem;
    display: block;
}

/* --- CREDIBILITY SECTION --- */
.credibility-section {
    padding: 40px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.credibility-section p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.credibility-section p:last-child {
    margin-bottom: 0;
}

.credibility-content {
    max-width: 800px;
    margin: 0 auto;
}

strong {
    font-weight: 700;
}

/* --- FINAL CTA SECTION --- */
.final-cta-section {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.scroll-btn {
    display: inline-block;
    padding: 20px 40px;
    background-color: var(--accent-color);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.2s, transform 0.1s;
}

.scroll-btn:hover {
    background-color: #d62b39;
    transform: translateY(-2px);
}

/* --- FOOTER --- */
.minimal-footer {
    padding: 30px 0;
    background-color: #1a1a1a;
    color: #888;
    text-align: center;
    font-size: 0.9rem;
}

.minimal-footer p {
    margin-bottom: 5px;
}

/* Utilities */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}