/* === Premium Brand Colors === */
:root {
    --bg-color: #fdfaf6;       /* Soft Peach/Cream */
    --brand-gold: #c5a059;     /* Elegant Gold */
    --brand-dark: #2c2c2c;     /* Soft Black for contrast */
    --accent-pink: #e8a89b;    /* Soft Rose Pink */
    --white: #ffffff;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--brand-dark);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* === Header === */
.header {
    text-align: center;
    padding: 20px;
    font-size: 22px;
    font-weight: 700;
    color: var(--brand-gold);
    letter-spacing: 3px;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* === Hero Section === */
.hero {
    max-width: 700px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.scarcity-badge {
    display: inline-block;
    background-color: #ffeaea;
    color: #d93025;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    border: 1px solid #ffd0d0;
}

.hero h1 {
    font-size: 38px;
    color: var(--brand-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.subtitle {
    font-size: 19px;
    color: #555;
    margin-bottom: 30px;
}

/* === Timer Design === */
.timer-container {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    margin-bottom: 35px;
    border: 1px solid #f0f0f0;
}

.timer-title {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: bold;
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-box span {
    background-color: var(--brand-dark);
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 8px;
    min-width: 45px;
}

.time-box small {
    margin-top: 8px;
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
}

/* === Features List === */
.features {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px auto;
}

.features li {
    font-size: 16px;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
}

.features li span {
    margin-right: 12px;
    font-size: 18px;
}

/* === CTA Button === */
.hidden-checkbox {
    display: none;
}

.cta-btn {
    display: inline-block;
    background-color: var(--brand-gold);
    color: var(--white);
    padding: 18px 45px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.3);
}

.cta-btn:hover {
    background-color: #b38f4d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.guarantee {
    font-size: 14px;
    color: #888;
    margin-top: 15px;
}

/* === Modal / Pop-up === */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.hidden-checkbox:checked ~ .modal {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 420px;
    position: relative;
    text-align: center;
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
    transition: 0.2s;
}

.close-btn:hover {
    color: #333;
}

.modal-content h2 {
    color: var(--brand-dark);
    margin-top: 0;
}

.modal-content p {
    color: #666;
    margin-bottom: 25px;
}

.whatsapp-btn {
    display: block;
    background-color: #25D366; /* Official WhatsApp Green */
    color: var(--white);
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background-color: #20bd5a;
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .hero h1 { font-size: 28px; }
    .subtitle { font-size: 16px; }
    .cta-btn { width: 85%; padding: 15px 20px; font-size: 16px; }
    .time-box span { font-size: 22px; padding: 8px 12px; }
}
/* === Minimalist Footer === */
.footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
    border-top: 1px solid #eaeaea;
    font-size: 13px;
    color: #999;
    background-color: var(--white);
}

.footer p {
    margin: 5px 0;
}

.footer-links {
    cursor: pointer;
    transition: 0.3s;
}

.footer-links:hover {
    color: var(--brand-gold);
}
