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

body {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
    color: #161d0d;
    background: #f7f9ef;
    line-height: 1.6;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 20px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
}

.hero-logo {
    width: 120px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 260px;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: #7ea24d;
    color: #fff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ── Quiz ─────────────────────────────────────────── */
.quiz-section {
    padding: 60px 20px;
    max-width: 640px;
    margin: 0 auto;
}

.quiz-section h2 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: #161d0d;
}

.quiz-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 32px;
    font-size: 15px;
}

.quiz-progress {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.quiz-progress-dot {
    flex: 1;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    transition: background 0.3s;
}

.quiz-progress-dot.active {
    background: #7ea24d;
}

.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-option {
    padding: 16px 20px;
    background: #fff;
    border: 2px solid #e0e5d6;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    transition: border-color 0.2s, background 0.2s;
    text-align: left;
}

.quiz-option:hover {
    border-color: #7ea24d;
    background: #f0f5e8;
}

.quiz-option.selected {
    border-color: #7ea24d;
    background: #f0f5e8;
}

.quiz-option-emoji {
    margin-right: 8px;
}

/* ── Result ───────────────────────────────────────── */
.quiz-result {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.quiz-result.active {
    display: block;
}

.quiz-result h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #161d0d;
}

.quiz-result p {
    color: #555;
    margin-bottom: 24px;
    font-size: 15px;
}

.result-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* ── Phone form ───────────────────────────────────── */
.phone-form {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.phone-form.active {
    display: block;
}

.phone-form h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.phone-form p {
    color: #555;
    margin-bottom: 20px;
    font-size: 14px;
}

.phone-input-group {
    display: flex;
    gap: 10px;
    max-width: 360px;
    margin: 0 auto 16px;
}

.phone-input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid #e0e5d6;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.phone-input:focus {
    border-color: #7ea24d;
}

.phone-submit {
    padding: 14px 24px;
    background: #7ea24d;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.phone-submit:hover {
    background: #6b8c42;
}

.phone-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.phone-success.active {
    display: block;
}

.phone-success h3 {
    font-size: 22px;
    color: #7ea24d;
    margin-bottom: 12px;
}

/* ── Social proof ─────────────────────────────────── */
.social-proof {
    padding: 60px 20px;
    background: #fff;
}

.social-proof-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.social-proof h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 32px;
}

.proof-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.proof-card {
    background: #f7f9ef;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.proof-card-number {
    font-size: 32px;
    font-weight: 700;
    color: #7ea24d;
    margin-bottom: 4px;
}

.proof-card-text {
    font-size: 13px;
    color: #555;
}

.proof-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    border-radius: 12px;
    overflow: hidden;
}

.proof-photos img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.proof-photos img.center-crop {
    object-position: center 45%;
}

/* ── Final CTA ────────────────────────────────────── */
.final-cta {
    padding: 60px 20px;
    text-align: center;
    background: #23290d;
    color: #fff;
}

.final-cta h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-size: 14px;
}

.final-cta .btn-primary {
    margin-bottom: 12px;
}

.contact-line {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 16px;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 480px) {
    .hero h1 { font-size: 24px; margin-bottom: 12px; }
    .hero p { font-size: 14px; margin-bottom: 20px; }
    .hero-logo { width: 100px; margin-bottom: 16px; }
    .btn { min-width: 100%; padding: 14px 20px; }
    .quiz-section h2 { font-size: 20px; }
    .proof-photos { grid-template-columns: 1fr; }
    .proof-photos img { height: 200px; }
    .phone-input-group { flex-direction: column; }
}
