/* landing/css/style.css */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #4C9A45;
    --primary-dark: #3B7B4B;
    --text-dark: #2C352E;
    --text-light: #5A6A60;
    --bg-light: #E9F1EA;
    --white: #FFFFFF;
    --border: #D1E5D5;
}

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

h1, h2, h3, h4, h5, .logo, .btn-primary, .quiz-btn {
    font-family: 'Nunito', sans-serif;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5.5rem 0; border-bottom: 1px solid var(--border); }
.bg-light { background-color: var(--bg-light); }
.bg-green { background-color: var(--primary); }
.center { text-align: center; }
.text-white { color: var(--white) !important; }

/* HEADER */
.header { border-bottom: 1px solid var(--border); padding: 1rem 0; }
.logo { font-size: 1.5rem; font-weight: 900; color: var(--text-dark); }

/* TYPOGRAPHY */
.section-title { font-size: 2.2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 1rem; line-height: 1.2; }
.section-subtitle { font-size: 1.2rem; color: var(--text-light); margin-bottom: 2.5rem; }

/* HERO */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
@media(min-width: 768px) {
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.hero-image { width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); display: block; margin: 0 auto; }
.hero-title { font-size: 2.5rem; font-weight: 900; margin-bottom: 1rem; line-height: 1.1; }
.hero-promise { font-size: 1.25rem; font-weight: 600; margin-bottom: 1.5rem; color: var(--text-dark); }
.price-block { margin-bottom: 1.5rem; }
.price-current { font-size: 2rem; font-weight: 900; color: var(--primary-dark); }

/* BUTTONS */
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 1.25rem 2rem;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(76, 154, 69, 0.3);
    transition: transform 0.2s, background-color 0.2s;
    width: 100%;
    max-width: 400px;
    text-transform: uppercase;
}
.btn-primary:hover { transform: translateY(-2px); background-color: var(--primary-dark); }
.btn-primary.alt { background-color: var(--white); color: var(--primary); }
.btn-primary.alt:hover { background-color: #f0f0f0; }
.guarantee-text { font-size: 0.85rem; color: var(--text-light); margin-top: 0.75rem; font-weight: 600; }

/* GRIDS */
.grid-cards-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media(min-width: 768px) { .grid-cards-3 { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .grid-cards-3 { grid-template-columns: repeat(3, 1fr); } }

.problem-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* MINI QUIZ */
.quiz-section { background: var(--white); }
.quiz-container { max-width: 600px; margin: 0 auto; background: #E9F1EA; border: 1px solid #C8E0CD; border-radius: 16px; padding: 2.5rem 2rem; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.quiz-step h3 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.quiz-options { display: flex; flex-direction: column; gap: 0.75rem; }
.quiz-btn {
    background: var(--white);
    border: 2px solid var(--border);
    padding: 1rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
}
.quiz-btn:hover { border-color: var(--primary); background: #f0f7f1; }

/* HOW IT WORKS */
.steps-container { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width: 600px) { .steps-container { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 900px) { .steps-container { grid-template-columns: repeat(4, 1fr); } }

.step-box { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; text-align: center; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
.step-num { width: 40px; height: 40px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin: 0 auto 1rem auto; font-size: 1.2rem; }
.step-box h4 { margin-bottom: 0.5rem; font-size: 1.2rem; color: var(--text-dark); }

/* SCRIPT PREVIEWS */
.script-previews { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.script-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
}
.script-situation { font-family: 'Nunito', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 1rem; border-bottom: 2px solid var(--border); padding-bottom: 0.5rem; text-transform: uppercase; }
.script-line { margin-bottom: 0.5rem; font-size: 1.05rem; display: flex; align-items: baseline; }
.script-line span:first-child { font-weight: 800; text-transform: uppercase; flex: 0 0 70px; display: inline-block; }
.script-say span:first-child { color: var(--primary); }
.script-then span:first-child { color: var(--text-dark); }

/* WHAT'S INSIDE */
.inside-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media(min-width: 600px) { .inside-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
.feature-list { list-style: none; }
.feature-list li { margin-bottom: 1rem; font-size: 1.1rem; display: flex; align-items: flex-start; }
.check { color: var(--primary); font-weight: bold; margin-right: 0.5rem; }

/* PDF PREVIEWS */
.preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 950px; margin: 0 auto; }
@media(min-width: 768px) { .preview-grid { grid-template-columns: repeat(4, 1fr); } }
.pdf-preview { width: 100%; border-radius: 8px; border: 1px solid #ccc; box-shadow: 0 8px 24px rgba(0,0,0,0.12); transition: transform 0.3s ease; }
.pdf-preview:hover { transform: translateY(-5px); }

/* TRUST SECTION */
.trust-card { background: var(--white); padding: 2rem; border-radius: 12px; border: none; box-shadow: 0 4px 15px rgba(0,0,0,0.04); text-align: center; }
.trust-card h4 { margin-bottom: 0.5rem; font-size: 1.2rem; color: var(--primary); }

/* WHO SECTION */
.who-box { background: var(--bg-light); border: 2px solid var(--border); border-radius: 16px; padding: 3rem 2rem; max-width: 800px; margin: 0 auto; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq-item h4 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--text-dark); }

/* FOOTER */
.footer { background: #F5F5F5; padding: 2rem 0; font-size: 0.85rem; color: var(--text-light); text-align: left; border-top: 1px solid #E0E0E0; }

/* MOBILE ADJUSTMENTS */
@media(max-width: 767px) {
    .section { padding: 4rem 0; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .btn-primary { padding: 1rem 1.5rem; font-size: 1.1rem; }
    .quiz-container { padding: 1.5rem 1rem; }
    .preview-grid { grid-template-columns: 1fr 1fr; }
}

.final-cta { border-bottom: none; }
