/* === SUNAROM.ICU — style.css === */
/* Color palette: Emerald Green */

:root {
    --primary:       #1a7a5e;
    --primary-dark:  #135c46;
    --primary-light: #28a87f;
    --accent:        #e8f5f0;
    --accent2:       #d0ede4;
    --text:          #1c2b26;
    --text-muted:    #4a6258;
    --white:         #ffffff;
    --bg:            #f5faf8;
    --border:        #b5d9cc;
    --shadow:        0 4px 24px rgba(26,122,94,0.10);
    --radius:        14px;
    --radius-sm:     8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

/* === CONTAINER === */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* === HEADER === */
.site-header {
    background: var(--white);
    border-bottom: 2px solid var(--accent2);
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 12px rgba(26,122,94,0.07);
}
.site-header .container {
    display: flex; align-items: center;
    justify-content: space-between;
    padding-top: 14px; padding-bottom: 14px;
}
.logo {
    font-size: 1.7rem; font-weight: 800;
    color: var(--primary); letter-spacing: -0.5px;
}
.logo:hover { color: var(--primary-dark); }

/* === BURGER MENU === */
#menu-toggle { display: none; }
.hamburger {
    display: flex; flex-direction: column;
    gap: 5px; cursor: pointer;
    padding: 6px; z-index: 200;
}
.hamburger .line {
    width: 26px; height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s;
}
.navigation ul { display: flex; gap: 32px; list-style: none; }
.navigation a {
    font-weight: 600; font-size: 0.97rem;
    color: var(--text); padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.navigation a:hover { color: var(--primary); border-bottom-color: var(--primary); }

/* === MOBILE NAV === */
.mobile-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    border-top: 2px solid var(--accent2);
    box-shadow: 0 8px 24px rgba(26,122,94,0.10);
    z-index: 150;
    padding: 16px 0;
}
#menu-toggle:checked ~ .mobile-nav { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav li a {
    display: block; padding: 12px 24px;
    font-weight: 600; color: var(--text);
    border-bottom: 1px solid var(--accent2);
    transition: background 0.2s;
}
.mobile-nav li:last-child a { border-bottom: none; }
.mobile-nav li a:hover { background: var(--accent); color: var(--primary); }

@media (min-width: 768px) {
    .hamburger { display: none; }
    .navigation { display: block !important; }
    .mobile-nav { display: none !important; }
}
@media (max-width: 767px) {
    .navigation { display: none; }
}

/* === HERO === */
.hero {
    position: relative;
    background: var(--primary-dark);
    min-height: 520px;
    display: flex; align-items: center;
    overflow: hidden;
    padding: 64px 0;
}
.hero-bg {
    position: absolute; inset: 0;
    background: url('img/bg.jpg') center/cover no-repeat;
    opacity: 0.22;
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 620px;
}
.hero-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--white);
    font-size: 0.82rem; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 16px; border-radius: 50px;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900; color: var(--white);
    line-height: 1.18; margin-bottom: 20px;
}
.hero p {
    font-size: 1.13rem; color: rgba(255,255,255,0.88);
    margin-bottom: 32px; max-width: 520px;
}
.btn {
    display: inline-block;
    background: var(--primary-light);
    color: var(--white);
    font-weight: 700; font-size: 1rem;
    padding: 14px 36px; border-radius: var(--radius);
    border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: var(--primary); transform: translateY(-2px); color: var(--white); }
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* Floating card on hero */
.hero-float-card {
    position: absolute; right: 5%; bottom: 40px; z-index: 3;
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px 28px;
    box-shadow: var(--shadow);
    max-width: 260px;
}
.hero-float-card .stat { font-size: 2rem; font-weight: 900; color: var(--primary); }
.hero-float-card .stat-label { font-size: 0.88rem; color: var(--text-muted); }
@media (max-width: 900px) { .hero-float-card { display: none; } }

/* === SECTIONS === */
.section { padding: 72px 0; }
.section-alt { background: var(--accent); }
.section-dark { background: var(--primary-dark); }
.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.3rem);
    font-weight: 800; color: var(--primary);
    margin-bottom: 12px; text-align: center;
}
.section-subtitle {
    text-align: center; color: var(--text-muted);
    font-size: 1.05rem; max-width: 620px;
    margin: 0 auto 48px;
}
.divider {
    width: 56px; height: 4px;
    background: var(--primary-light);
    border-radius: 2px;
    margin: 12px auto 32px;
}

/* === PROBLEM BLOCK === */
.problem-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 768px) { .problem-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .problem-grid { grid-template-columns: 1fr 1fr 1fr; } }

.problem-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-light);
    transition: transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(26,122,94,0.13); }
.problem-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.problem-card p { font-size: 0.97rem; color: var(--text-muted); }

/* === STATS BAR === */
.stats-bar {
    background: var(--primary);
    padding: 40px 0;
}
.stats-row { display: grid; grid-template-columns: 1fr; gap: 24px; text-align: center; }
@media (min-width: 600px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }
.stat-item .num { font-size: 2.4rem; font-weight: 900; color: var(--white); }
.stat-item .label { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* === SPLIT BLOCK === */
.split-block { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 768px) { .split-block { grid-template-columns: 1fr 1fr; } }
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split-img img { width: 100%; object-fit: cover; max-height: 400px; }
.split-text h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.split-text p { color: var(--text-muted); margin-bottom: 14px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.pill {
    background: var(--accent2);
    color: var(--primary-dark);
    font-weight: 600; font-size: 0.88rem;
    padding: 6px 16px; border-radius: 50px;
}

/* === BENEFITS TIMELINE === */
.timeline { position: relative; padding-left: 0; }
.timeline-item {
    display: grid; grid-template-columns: 1fr; gap: 12px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-light);
    position: relative;
}
@media (min-width: 768px) {
    .timeline { padding-left: 40px; }
    .timeline::before {
        content: '';
        position: absolute; left: 0; top: 0; bottom: 0;
        width: 4px; background: var(--accent2); border-radius: 2px;
    }
    .timeline-item { grid-template-columns: 80px 1fr; align-items: start; }
    .timeline-item::before {
        content: '';
        position: absolute; left: -49px; top: 26px;
        width: 18px; height: 18px;
        background: var(--primary); border-radius: 50%;
        border: 3px solid var(--white);
        box-shadow: 0 0 0 3px var(--primary-light);
    }
}
.timeline-num {
    font-size: 2.2rem; font-weight: 900;
    color: var(--accent2); line-height: 1;
}
.timeline-body h3 { font-size: 1.08rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.timeline-body p { color: var(--text-muted); font-size: 0.96rem; }

/* === REVIEWS === */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 640px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    position: relative;
}
.review-card::before {
    content: '\201C';
    position: absolute; top: 12px; left: 20px;
    font-size: 4rem; color: var(--accent2);
    line-height: 1; font-family: Georgia, serif;
}
.review-text { font-style: italic; color: var(--text-muted); margin-bottom: 16px; padding-top: 28px; }
.review-author { font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.review-city { font-size: 0.85rem; color: var(--text-muted); }
.stars { color: #f4a72a; font-size: 1.1rem; margin-bottom: 8px; }

/* === FORM === */
.form-wrap {
    max-width: 800px; margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 36px;
    box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-group label {
    display: block; font-weight: 600; font-size: 0.93rem;
    color: var(--text); margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.97rem; color: var(--text);
    background: var(--bg);
    transition: border-color 0.2s;
    font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none; border-color: var(--primary);
    background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-full { grid-column: 1 / -1; }
.form-submit { text-align: center; margin-top: 10px; }
.form-submit .btn { padding: 14px 56px; font-size: 1.05rem; }

/* === FAQ (ACCORDION) === */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(26,122,94,0.06);
    overflow: hidden;
}
.faq-question {
    width: 100%; background: none; border: none;
    text-align: left; padding: 18px 24px;
    font-size: 1rem; font-weight: 700;
    color: var(--primary); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px;
}
.faq-question .ico { font-size: 1.3rem; transition: transform 0.3s; }
.faq-question.open .ico { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s;
    padding: 0 24px;
    color: var(--text-muted); font-size: 0.97rem;
}
.faq-answer.open { max-height: 400px; padding: 0 24px 18px; }

/* === VALUES === */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 22px;
    text-align: center;
    box-shadow: var(--shadow);
}
.value-icon { font-size: 2.4rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.value-card p { font-size: 0.92rem; color: var(--text-muted); }

/* === PROGRAM MODULES === */
.module-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
    display: grid; grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 768px) {
    .module-card { grid-template-columns: 72px 1fr; align-items: start; gap: 24px; }
}
.module-num {
    width: 60px; height: 60px;
    background: var(--primary);
    color: var(--white); font-size: 1.5rem; font-weight: 900;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.module-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.module-body p { color: var(--text-muted); margin-bottom: 10px; }
.module-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.module-tag {
    background: var(--accent2); color: var(--primary-dark);
    font-size: 0.82rem; font-weight: 600;
    padding: 4px 12px; border-radius: 50px;
}

/* === TABLE === */
.info-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.info-table th {
    background: var(--primary);
    color: var(--white); padding: 12px 16px;
    text-align: left; font-size: 0.93rem;
}
.info-table td {
    padding: 11px 16px; border-bottom: 1px solid var(--border);
    font-size: 0.95rem; color: var(--text-muted);
}
.info-table tr:nth-child(even) td { background: var(--accent); }

/* === CTA BANNER === */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    padding: 56px 40px;
    text-align: center;
    color: var(--white);
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 14px; }
.cta-banner p { font-size: 1.05rem; opacity: 0.88; margin-bottom: 28px; max-width: 540px; margin-left: auto; margin-right: auto; }
.btn-white {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    padding: 14px 44px; border-radius: var(--radius);
    display: inline-block;
    transition: box-shadow 0.2s, transform 0.15s;
}
.btn-white:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.13); transform: translateY(-2px); color: var(--primary-dark); }

/* === CONTACT INFO === */
.contact-info-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .contact-info-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 22px;
    box-shadow: var(--shadow);
    text-align: center;
}
.contact-box .ico { font-size: 2rem; margin-bottom: 12px; }
.contact-box h3 { font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.contact-box p, .contact-box a { color: var(--text-muted); font-size: 0.96rem; }
.contact-box a:hover { color: var(--primary); }

/* === FOOTER === */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.80);
    padding: 56px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 36px; margin-bottom: 40px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .logo { color: var(--white); font-size: 1.5rem; }
.footer-brand p { margin-top: 12px; font-size: 0.93rem; line-height: 1.65; }
.footer-col h4 { font-size: 0.97rem; font-weight: 700; color: var(--white); margin-bottom: 14px; letter-spacing: 0.3px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.72); font-size: 0.93rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 24px;
    display: flex; flex-wrap: wrap; gap: 12px;
    justify-content: space-between; align-items: center;
    font-size: 0.88rem;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--white); }

/* === THANK PAGE === */
.thank-hero {
    text-align: center; padding: 80px 20px 48px;
}
.thank-icon { font-size: 5rem; margin-bottom: 20px; }
.thank-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--primary); font-weight: 900; margin-bottom: 14px; }
.thank-hero p { color: var(--text-muted); max-width: 540px; margin: 0 auto; }

.quick-links { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
@media (min-width: 640px) { .quick-links { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .quick-links { grid-template-columns: repeat(4, 1fr); } }
.quick-link-card {
    background: var(--white); border-radius: var(--radius);
    padding: 22px 18px; text-align: center; box-shadow: var(--shadow);
    transition: transform 0.2s;
}
.quick-link-card:hover { transform: translateY(-4px); }
.quick-link-card .ico { font-size: 2rem; margin-bottom: 8px; }
.quick-link-card h4 { font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.quick-link-card p { font-size: 0.87rem; color: var(--text-muted); }

/* === LEGAL PAGES === */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--primary); font-weight: 900; margin-bottom: 10px; }
.legal-content h2 { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin: 32px 0 10px; }
.legal-content p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.75; }
.legal-content ul { margin: 10px 0 14px 20px; }
.legal-content ul li { color: var(--text-muted); margin-bottom: 6px; }
.legal-badge {
    display: inline-block; background: var(--accent2);
    color: var(--primary-dark); font-size: 0.82rem; font-weight: 700;
    padding: 4px 14px; border-radius: 50px; margin-bottom: 20px;
}

/* === COOKIE BANNER === */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--primary-dark);
    color: rgba(255,255,255,0.9);
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    transform: translateY(0); transition: transform 0.4s ease;
    border-top: 3px solid var(--primary-light);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 0.94rem; }
#cookie-banner a { color: var(--primary-light); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept {
    background: var(--primary-light); color: var(--white);
    border: none; padding: 9px 22px; border-radius: var(--radius-sm);
    font-weight: 700; cursor: pointer; font-size: 0.93rem;
    transition: background 0.2s;
}
.cookie-btn-accept:hover { background: var(--primary); }
.cookie-btn-decline {
    background: transparent; color: rgba(255,255,255,0.75);
    border: 1.5px solid rgba(255,255,255,0.35);
    padding: 9px 22px; border-radius: var(--radius-sm);
    font-weight: 600; cursor: pointer; font-size: 0.93rem;
    transition: border-color 0.2s, color 0.2s;
}
.cookie-btn-decline:hover { border-color: var(--white); color: var(--white); }
@media (max-width: 600px) {
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .cookie-btns { width: 100%; }
    .cookie-btn-accept, .cookie-btn-decline { flex: 1; text-align: center; }
}

/* === UTILITY === */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.hidden { display: none; }
.relative { position: relative; }

/* === ACCORDION JS === */
.faq-question { font-family: inherit; }