/* Custom Properties & Reset */
:root {
    --primary-blue: #2B4EAE;
    --gold: #C9962A;
    --white: #FFFFFF;
    --light-grey: #F8F8F8;
    --dark-navy: #1A2F6B;
    --dark-grey: #333333;
    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #1EBE5C;
    --gold-hover: #B58420;
    --btn-shadow: 0 4px 14px 0 rgba(0,0,0,0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

/* Typography */
h1, h2, h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

.dark-blue { color: var(--primary-blue); }
.white { color: var(--white); }

.section-headline {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-headline {
        font-size: 2.5rem;
    }
}

.body-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 600px) {
    .cta-group {
        flex-direction: row;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 320px;
    box-shadow: var(--btn-shadow);
}

@media (min-width: 600px) {
    .btn {
        width: auto;
    }
}

.btn-call {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-call:hover {
    background-color: rgba(201, 150, 42, 0.1);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: var(--white);
    animation: pulseGlow 2s infinite;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-green-hover);
    transform: translateY(-2px);
    animation: none;
}

/* Hero Top Logo Bar */
.hero-top-bar {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 3rem;
}

.hero-logo-wrapper {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 50%;
    border: 4px solid var(--gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
}

.hero-logo {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

@media (min-width: 768px) {
    .hero-logo-wrapper {
        width: 150px;
        height: 150px;
        padding: 1.5rem;
        border-width: 5px;
    }
}

/* Hero Section */
.hero {
    background-color: var(--primary-blue);
    padding: 2rem 0 5rem;
    position: relative;
    overflow: hidden;
}

/* Placeholder for background image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 900px) {
    .hero-content-wrapper {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
    }
    
    .hero-text-col {
        flex: 1;
        max-width: 600px;
    }
    
    .hero-image-col {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }
}

.hero-mockup {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.2);
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-mockup:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gold-badge {
    background-color: var(--gold);
    color: var(--dark-navy);
}

.hero-headline {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem;
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 3.5rem;
    }
}

.hero-subheadline {
    color: var(--white);
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0 0 2.5rem;
}

@media (min-width: 768px) {
    .hero-subheadline {
        font-size: 1.25rem;
    }
}

/* Timer */
.timer-card {
    display: inline-flex;
    gap: 1rem;
    background-color: var(--dark-navy);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.dark-timer {
    background-color: var(--dark-navy);
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.time-box span {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

@media (min-width: 500px) {
    .time-box span {
        font-size: 2.5rem;
    }
    .timer-card {
        padding: 1.5rem 2rem;
    }
}

.time-box small {
    color: var(--white);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    opacity: 0.8;
}

@media (max-width: 400px) {
    .timer-card {
        gap: 0.5rem;
        padding: 1rem;
    }
    .time-box {
        min-width: 50px;
    }
    .time-box span {
        font-size: 1.75rem;
    }
}

/* Problem Section */
.problem-section {
    background-color: var(--light-grey);
    padding: 5rem 0;
}

/* Guide Section */
.guide-section {
    background-color: var(--white);
    padding: 5rem 0;
}

.trust-icons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .trust-icons {
        flex-direction: row;
        justify-content: center;
        gap: 4rem;
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.trust-item:hover .icon-circle {
    transform: scale(1.1);
    background-color: var(--primary-blue);
    color: var(--white);
}

.trust-item span {
    font-weight: 700;
    color: var(--dark-navy);
    font-size: 1.125rem;
}

/* Plan Section */
.plan-section {
    background-color: var(--light-grey);
    padding: 5rem 0;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .steps-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.step-card {
    flex: 1;
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--dark-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.step-card p {
    color: var(--dark-grey);
    font-size: 1.05rem;
    font-weight: 500;
}

/* Offer Section */
.offer-section {
    background-color: var(--primary-blue);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1513694203232-719a280e022f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.offer-section .container {
    position: relative;
    z-index: 1;
}

.price-block {
    margin: 2rem 0 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.original-price {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: 600;
}

.promo-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-price {
    color: var(--gold);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .promo-price {
        font-size: 4.5rem;
    }
}

.cash-label {
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
}

.offer-badge {
    margin-top: 1rem;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 650px;
    margin: 3rem auto;
}

@media (min-width: 600px) {
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-card {
    background-color: var(--dark-navy);
    padding: 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
    background-color: #20367a;
}

.feature-card span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
}

.location-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

@media (min-width: 600px) {
    .location-highlights {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 500;
    font-size: 1.1rem;
}

.promo-deadline {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

/* Stakes Section */
.stakes-section {
    background-color: var(--white);
    padding: 5rem 0;
}

.stakes-section .timer-card {
    margin: 2rem 0;
}

/* Final CTA */
.final-cta {
    background-color: var(--primary-blue);
    padding: 5rem 0 6rem;
}

.final-cta .subtext {
    color: var(--white);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.contact-numbers {
    margin-top: 2rem;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.divider {
    opacity: 0.5;
}

/* Footer */
.site-footer {
    background-color: var(--dark-navy);
    padding: 4rem 0;
    color: var(--white);
}

.footer-logo {
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    object-fit: contain;
}

.footer-text {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-headline, .hero-subheadline, .timer-card {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
