/* Theme - Matching main site colors */
:root {
    --container: 1200px;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 10px 30px rgba(2, 6, 23, 0.07);
    --shadow-lg: 0 20px 40px rgba(2, 6, 23, 0.1);
    --border: #e2e8f0;
    --text: #0f172a;
    --muted: #475569;
    --bg: #ffffff;
    --alt: #f8fafc;
    /* BLUE palette matching main site */
    --primary: #2563eb;
    --primary-600: #1d4ed8;
    --primary-50: #eff6ff;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --success: #10b981;
    --warning: #f59e0b;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container {
    width: min(var(--container),92%);
    margin-inline: auto;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .hero:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
        background-size: cover;
    }

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(32px, 4.5vw, 48px);
    margin: 0 0 16px;
    line-height: 1.1;
}

.grad {
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

/* Countdown Section */
.countdown-section {
    margin: 40px 0 32px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    padding: 12px 16px;
    border-radius: var(--radius);
    min-width: 70px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.countdown-label {
    font-size: 0.8rem;
    color: #cbd5e1;
    margin-top: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-note {
    font-size: 0.9rem;
    color: #cbd5e1;
    text-align: center;
    margin-top: 12px;
}

    .countdown-note strong {
        color: white;
    }

/* CTA Section */
.cta-section {
    margin-top: 40px;
}

    .cta-section .lead {
        color: #cbd5e1;
        margin: 0 0 32px;
        font-size: 1.25rem;
        line-height: 1.6;
    }

.cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    border: 0;
    border-radius: var(--radius);
    padding: 14px 24px;
    background: var(--primary);
    color: #fff;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

    .button:hover {
        background: var(--primary-600);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
        color: #fff;
    }

.button-preorder {
    background: var(--primary);
    color: #fff !important;
}

    .button-preorder:hover {
        background: var(--primary-600);
        color: #fff !important;
    }

.button.full-width {
    width: 100%;
    padding: 16px;
    font-size: 1.125rem;
}

.secure-button {
    font-size: 1.1rem;
    font-weight: 800;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

    .secure-button:hover {
        background: linear-gradient(135deg, var(--primary-600) 0%, #1e40af 100%);
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
    }

/* Sections */
.section {
    padding: 80px 0;
}

    .section.alt {
        background: var(--alt);
    }

    .section.dark {
        background: var(--dark);
        color: white;
    }

    .section h2 {
        font-size: clamp(28px, 4vw, 42px);
        margin: 0 0 16px;
        text-align: center;
    }

.section-sub {
    color: var(--muted);
    margin: 0 auto 40px;
    text-align: center;
    max-width: 600px;
    font-size: 1.125rem;
}

.section-dark .section-sub {
    color: #cbd5e1;
}

/* Pre-order Form */
.preorder-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.preorder-form {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

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

    .form-group h3 {
        margin: 0 0 20px;
        font-size: 1.25rem;
        color: var(--text);
        border-bottom: 1px solid var(--border);
        padding-bottom: 8px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--text);
    }

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font: inherit;
    transition: all 0.3s ease;
}

    .form-control:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    }

.package-selector {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

.package-option {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: #fff;
}

    .package-option:hover {
        border-color: var(--primary);
    }

    .package-option.selected {
        border-color: var(--primary);
        background: var(--primary-50);
    }

        .package-option.selected:before {
            content: '✓';
            position: absolute;
            top: 10px;
            right: 10px;
            width: 24px;
            height: 24px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.package-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

    .package-price span {
        font-size: 0.875rem;
        color: var(--muted);
        font-weight: 500;
        display: block;
    }

/* MORE VISIBLE regular price */
.package-desc {
    color: var(--dark); /* darker text for prominence */
    margin: 0 0 12px;
    font-size: 0.95rem;
    font-weight: 700;
    background: var(--primary-50); /* subtle highlight */
    border-left: 3px solid var(--primary);
    padding: 8px 12px;
    border-radius: 8px;
}

/* Features list */
.package-features {
    margin: 0 0 12px;
    padding: 0;
}

    .package-features li {
        list-style: none;
        padding: 4px 0;
        position: relative;
        padding-left: 20px;
        font-size: 0.875rem;
    }

        .package-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }

.package-savings {
    display: inline-block;
    background: var(--success);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Smaller, under-savings price lock */
.price-lock {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: 8px 10px; /* smaller */
    border-radius: 8px;
    margin: 8px 0 0; /* sits right under savings */
    font-size: 0.8rem; /* smaller text */
    line-height: 1.4;
}

    .price-lock i {
        font-size: 0.95rem;
    }

.summary-box {
    background: var(--alt);
    border-radius: var(--radius);
    padding: 24px;
    margin: 32px 0 24px;
}

    .summary-box h4 {
        margin: 0 0 16px;
        font-size: 1.125rem;
    }

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

    .summary-row:last-child {
        border-bottom: none;
        font-weight: 700;
        font-size: 1.125rem;
    }

.summary-total {
    color: var(--primary);
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin-bottom: 24px;
}

    .checkbox input {
        margin-top: 4px;
    }

    .checkbox a {
        color: var(--primary);
        text-decoration: none;
    }

        .checkbox a:hover {
            text-decoration: underline;
        }

.vat-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: var(--radius);
    padding: 16px;
    margin: 20px 0;
    font-size: 0.875rem;
    color: #856404;
    text-align: center;
    line-height: 1.5;
}

    .vat-note i {
        color: #f39c12;
        margin-right: 8px;
    }

.form-note {
    font-size: 0.875rem;
    color: var(--muted);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

/* Benefits */
.preorder-benefits {
    position: sticky;
    top: 100px;
}

.benefits-list {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    margin: 0 0 8px;
    font-size: 1.125rem;
}

.benefit-content p {
    margin: 0;
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.5;
}

.guarantee-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
    color: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.guarantee-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.guarantee-content h4 {
    margin: 0 0 8px;
    font-size: 1.125rem;
}

.guarantee-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Support */
.support-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.support-option {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

    .support-option:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

.support-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.support-option h4 {
    margin: 0 0 12px;
    font-size: 1.25rem;
}

.support-option p {
    margin: 0 0 8px;
    color: var(--muted);
}

.support-hours {
    font-size: 0.8rem;
    color: var(--muted);
    font-style: italic;
    margin: 8px 0 0 !important;
    line-height: 1.4;
}

.support-option a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

    .support-option a:hover {
        text-decoration: underline;
    }

/* Footer */
.site-footer {
    background: var(--dark);
    color: #94a3b8;
    padding: 60px 0 30px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    margin-bottom: 20px;
}

.brand-logo {
    height: 60px;
    display: block;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 400px;
}

.footer-links h4 {
    color: white;
    margin: 0 0 16px;
    font-size: 1.125rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .footer-links a:hover {
        color: white;
    }

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #334155;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

    .footer-bottom p {
        margin: 0;
    }

.footer-social {
    display: flex;
    gap: 16px;
}

    .footer-social a {
        color: #94a3b8;
        font-size: 1.25rem;
        transition: color 0.2s ease;
    }

        .footer-social a:hover {
            color: white;
        }

/* Responsive */
@media (max-width: 1024px) {
    .preorder-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .preorder-benefits {
        position: static;
    }

    .support-options {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .preorder-form {
        padding: 24px;
    }

    .package-header {
        flex-direction: column;
        gap: 8px;
    }

    .countdown-timer {
        gap: 12px;
    }

    .countdown-number {
        font-size: 2rem;
        min-width: 60px;
        padding: 10px 12px;
    }

    .countdown-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .countdown-timer {
        gap: 8px;
    }

    .countdown-item {
        min-width: 65px;
    }

    .countdown-number {
        font-size: 1.5rem;
        min-width: 50px;
        padding: 8px 10px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .countdown-header {
        font-size: 1rem;
    }
}
