/* Reset & Base Styles */
:root {
    --primary-orange: #ff6b00;
    --primary-orange-hover: #e65100;
    --soft-yellow: #fff9c4;
    --joyful-yellow: #fffde7;
    --soft-blue: #e3f2fd;
    --text-dark: #1f2937;
    --text-gray: #4b5563;
    --white: #ffffff;
    --bg-light: #f9fafb;
    --success: #22c55e;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    padding-top: 40px; /* Space for sticky bar */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

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

/* Utilities */
.text-center { text-align: center; }
.text-orange { color: var(--primary-orange); }
.bg-light { background-color: var(--bg-light); }
.bg-joyful-yellow { background-color: var(--joyful-yellow); }
.bg-soft-blue { background-color: var(--soft-blue); }
.highlight { 
    color: var(--primary-orange); 
    font-weight: 800;
}

/* Sticky Bar */
.sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-orange);
    color: var(--white);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

/* Hero Section */
.hero {
    padding: 4rem 0 3rem;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, var(--bg-light));
}

.subheadline-top {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.headline {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin: 2rem auto;
    max-width: 800px;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--primary-orange);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 14px 0 rgba(255, 107, 0, 0.39);
    transition: transform 0.2s, background-color 0.2s;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-2px);
}

.large-cta {
    font-size: 1.5rem;
    padding: 1.5rem 3rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
    line-height: 1.2; /* Better line height for mobile wrapping */
}

/* Pulse Animation */
.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 107, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-gray);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards & Grid */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s;
}

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

/* Checklist Card */
.checklist-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.checklist {
    list-style: none;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.check-icon {
    color: var(--success);
    min-width: 24px;
}

/* Feature Card */
.feature-card {
    text-align: center;
}

.feature-card .icon-orange {
    color: var(--primary-orange);
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

/* Bonus Card */
.bonus-card {
    border: 2px solid transparent;
}

.bonus-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.bonus-price {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.bonus-total {
    grid-column: 1 / -1;
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
    box-shadow: var(--shadow-md);
}

.bonus-total h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Urgency Section */
.urgency-section {
    background: var(--text-dark);
    color: var(--white);
    padding: 1.5rem 0;
    /* Removed sticky and bottom to make it static in its section */
    position: relative;
    z-index: 900;
}

.urgency-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.urgency-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.countdown-timer-large {
    font-family: 'Poppins', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
}

/* Offer Section */
.offer-section {
    padding-bottom: 6rem; /* Space for sticky urgency bar */
}

.offer-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    text-align: center;
    border: 2px solid var(--primary-orange);
}

.offer-header h3 {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.price-display {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: var(--primary-orange);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 2rem;
    margin-top: 1rem;
}

.amount {
    font-size: 6rem;
}

.local-currency-note {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.offer-details {
    margin-bottom: 2rem;
    font-weight: 600;
}

.offer-content-box {
    text-align: left;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.bonus-list-offer {
    list-style: none;
    /* Removed border-top: 2px dashed #ddd; */
    padding-top: 1.5rem;
}

.bonus-list-offer li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* Testimonials */
.testimonial-card {
    text-align: left;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-img-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* Author Section */
.author-box {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.author-img-large {
    width: 300px;
    height: 300px; /* Made square */
    object-fit: cover;
    border-radius: 50%; /* Rounded frame */
}

.simple-list {
    list-style: none;
    margin-top: 1.5rem;
}

.simple-list li {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: var(--radius-md);
    background: var(--white);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-dark);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    display: none; /* Controlled by JS */
}

/* Guarantee */
.guarantee-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: left;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    color: var(--success);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-gray);
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: #9ca3af;
    padding: 3rem 0;
    text-align: center;
    margin-top: 4rem;
}

.disclaimer {
    font-size: 0.8rem;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .headline { font-size: 2rem; }
    .author-box { flex-direction: column; text-align: center; }
    .author-img-large { width: 100%; height: auto; }
    .guarantee-box { flex-direction: column; text-align: center; }
    .urgency-box { flex-direction: column; gap: 0.5rem; }
    .urgency-section { padding: 1rem 0; }
    .offer-card { padding: 1.5rem; }
    .price-display .amount { font-size: 4rem; }
}
