:root {
    --brand: #E8614A;
    --brand-dark: #c94e38;
    --brand-light: #fdf0ee;
    --accent: #d44f38;
    --text-primary: #2d2d2d;
    --text-secondary: #4a4a4a;
    --text-muted: #888888;
    --bg: #f9f9f9;
    --white: #ffffff;
    --border: #ececec;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 16px rgba(232,97,74,.12);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.11);
    --radius: 12px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Noto Sans SC', sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 15px;
}


/* ── HERO ── */
.hero {
    background: linear-gradient(135deg, #b83a26 0%, #E8614A 55%, #f0806a 100%);
    color: #fff; text-align: center;
    padding: 80px 24px 90px;
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero h1 {
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700; line-height: 1.3;
    margin-bottom: 16px; position: relative;
}
.hero h1 em { color: #ffd166; font-style: normal; }
.hero p {
    font-size: clamp(15px, 2vw, 18px);
    opacity: .88; max-width: 620px; margin: 0 auto 36px;
    position: relative;
}
.hero-badges {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 10px; margin-bottom: 36px; position: relative;
}
.badge {
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 20px; padding: 5px 14px;
    font-size: 13px;
}
.hero-ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }
.btn-hero-primary {
    background:#ff6b2b;color:#fff;padding:14px 36px;border-radius:10px;font-size:16px;font-weight:700;text-decoration:none;box-shadow:0 4px 20px rgba(255,107,43,.4)
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(180,50,30,.45); }
.btn-hero-secondary {
    background: rgba(255,255,255,.15); color: #fff;
    padding: 14px 28px; border-radius: 10px;
    font-size: 15px; font-weight: 500; text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.4);
    transition: background .2s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.25); }

/* ── USP BAR ── */
.usp-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
.usp-inner {
    max-width: 1100px; margin: auto; padding: 0 24px;
    display: grid; grid-template-columns: repeat(3, 1fr);
}
.usp-item {
    padding: 24px 16px; text-align: center;
    border-right: 1px solid var(--border);
}
.usp-item:last-child { border-right: none; }
.usp-icon { font-size: 28px; margin-bottom: 8px; }
.usp-icon i { color: var(--brand); }
.usp-item h3 { font-size: 15px; font-weight: 700; color: var(--brand); }
.usp-item p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ── SECTION ── */
.section { max-width: 1100px; margin: 0 auto; padding: 64px 24px; }
/*.section-title {
    font-family: 'Noto Serif SC', serif;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700; margin-bottom: 8px;
}
.section-sub { color: var(--text-muted); margin-bottom: 40px; font-size: 15px; }*/
.section-divider { border: none; border-top: 2px solid var(--border); margin: 0 0 48px; }

/* ── PRICING CARDS ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.pricing-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: box-shadow .2s, transform .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(26,111,216,.12), var(--shadow-md);
}
.pricing-tag {
    position: absolute; top: -12px; left: 28px;
    background: var(--brand); color: #fff;
    font-size: 12px; font-weight: 700;
    padding: 3px 12px; border-radius: 12px;
}
.pricing-card h2 {
    font-size: 20px; font-weight: 700; margin-bottom: 6px;
}
.pricing-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.price-display { margin-bottom: 24px; }
.price-amount {
    font-family: 'Noto Serif SC', serif;
    font-size: 42px; font-weight: 700; color: var(--accent);
}
.price-note { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
    padding: 8px 0; font-size: 14px; color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 8px;
}
.pricing-features li:last-child { border-bottom: none; }
.check { color: #22c55e; font-size: 16px; flex-shrink: 0; }
.btn-primary {
    display: block; text-align: center;
    background: var(--brand); color: #fff;
    padding: 13px; border-radius: 8px;
    text-decoration: none; font-weight: 700; font-size: 15px;
    transition: background .2s;
}
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary {
    display: block; text-align: center;
    background: var(--brand-light); color: var(--brand);
    padding: 13px; border-radius: 8px;
    text-decoration: none; font-weight: 700; font-size: 15px;
    transition: background .2s;
}
.btn-secondary:hover { background: #d5e7f9; }

/* ── ADVANTAGES ── */
.adv-bg { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.adv-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: box-shadow .2s;
}
.adv-card:hover { box-shadow: var(--shadow-md); }
.adv-icon { font-size: 26px; margin-bottom: 10px; }
.adv-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.adv-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── TEMPLATES ── */
.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}
.template-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s;
}
.template-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.template-img { width: 100%; height: 160px; object-fit: cover; display: block; }
.template-cat {
    display: inline-block; margin: 12px 16px 0;
    background: var(--brand-light); color: var(--brand);
    font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px;
}
.template-card h3 { font-size: 15px; font-weight: 700; padding: 6px 16px 4px; }
.template-card p { font-size: 13px; color: var(--text-muted); padding: 0 16px 16px; line-height: 1.5; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

/* ── REVIEWS ── */
.reviews-bg { background: linear-gradient(180deg, #fdf0ee 0%, var(--bg) 100%); }
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}
.stars { color: #f59e0b; font-size: 16px; margin-bottom: 10px; }
.review-body { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--brand); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 14px; }
.author-title { font-size: 12px; color: var(--text-muted); }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
details {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}
details[open] { border-color: var(--brand); }
summary {
    padding: 18px 20px;
    font-size: 15px; font-weight: 600; cursor: pointer;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
}
summary::after { content: '+'; font-size: 20px; color: var(--brand); transition: transform .2s; }
details[open] summary::after { content: '−'; }
.faq-answer { padding: 0 20px 18px; font-size: 14px; color: var(--text-secondary); line-height: 1.8; }


/* ── responsive ── */
@media (max-width: 768px) {
    .usp-inner { grid-template-columns: 1fr; }
    .usp-item { border-right: none; border-bottom: 1px solid var(--border); }
    .usp-item:last-child { border-bottom: none; }
/*    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .nav-links { display: none; }*/
}
.hero-ctas a:hover {
    color: var(--white);
    text-decoration: none;
}
.btn-primary:hover {
    color: var(--white);
    text-decoration: none;
}