*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #F5F3EE;
  --text: #111110;
  --accent: #C8E63C;
  --accent-soft: #DEE8C4;
  --muted: #6B6B68;
  --border: #E0DDD6;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-sans); line-height: 1.6; overflow-x: hidden; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.25rem 3rem; display: flex; align-items: center; justify-content: space-between; background: rgba(245,243,238,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.nav-logo img { height: 32px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em; transition: opacity .2s; }
.nav-links a:hover { opacity: 0.6; }
.nav-cta { background: var(--text); color: var(--bg); padding: 0.6rem 1.4rem; border-radius: 2rem; font-size: 0.875rem; font-weight: 500; text-decoration: none; transition: background .2s; }
.nav-cta:hover { background: #333; }

footer { padding: 2.5rem 3rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 1rem; }
.footer-logo img { height: 24px; }
.footer-copy { font-size: 0.8rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.8rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--text); }

.page-hero { min-height: 50vh; padding: 9rem 3rem 5rem; display: flex; flex-direction: column; justify-content: center; border-bottom: 1px solid var(--border); }
.page-hero .eyebrow { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 2rem; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 500; line-height: 1.12; max-width: 750px; margin-bottom: 1.5rem; }
.page-hero h1 em { font-style: italic; color: var(--muted); }
.page-hero .intro { font-size: 1.125rem; color: var(--muted); max-width: 560px; line-height: 1.7; }

section { padding: 5rem 3rem; border-bottom: 1px solid var(--border); }
.section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 2.5rem; display: flex; align-items: center; gap: 1rem; }
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); max-width: 60px; }
.section-inner { max-width: 720px; }
h2 { font-family: var(--font-serif); font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 500; line-height: 1.2; margin-bottom: 1.5rem; }
h2 em { font-style: italic; color: var(--muted); }
h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; margin-bottom: 0.75rem; }
p { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.card { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.card h3 { margin-bottom: 0.5rem; }
.card p { font-size: 0.9375rem; }
.card .card-tag { display: inline-block; background: var(--accent-soft); color: var(--text); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 1rem; margin-bottom: 0.75rem; }

.steps { margin-top: 2.5rem; }
.step { display: grid; grid-template-columns: 60px 1fr; gap: 1.5rem; padding: 1.75rem 0; border-bottom: 1px solid var(--border); align-items: start; }
.step-num { font-family: var(--font-serif); font-size: 2.25rem; color: var(--accent-soft); font-weight: 500; line-height: 1; }
.step h4 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; margin-bottom: 0.4rem; }
.step p { font-size: 0.9375rem; margin-bottom: 0; }

.highlight { background: var(--text); color: var(--bg); }
.highlight .section-label { color: rgba(245,243,238,0.5); }
.highlight .section-label::after { background: rgba(245,243,238,0.2); }
.highlight h2, .highlight h3 { color: var(--bg); }
.highlight h2 em { color: var(--accent); }
.highlight p { color: rgba(245,243,238,0.7); }

.price-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 2.5rem; margin-top: 2.5rem; text-align: center; }
.price-val { font-family: var(--font-serif); font-size: 3.5rem; font-weight: 600; color: var(--accent); margin-bottom: 0.5rem; }
.price-label { font-size: 0.9375rem; color: rgba(245,243,238,0.6); }

.cta-section { background: var(--accent-soft); padding: 5rem 3rem; text-align: center; border-bottom: 1px solid var(--border); }
.cta-section h2 { max-width: 600px; margin: 0 auto 1rem; }
.cta-section p { max-width: 500px; margin: 0 auto 2rem; }
.btn-primary { display: inline-block; background: var(--text); color: var(--bg); padding: 0.875rem 2rem; border-radius: 2rem; font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: background .2s; }
.btn-primary:hover { background: #333; }
.btn-secondary { display: inline-block; background: transparent; color: var(--text); padding: 0.875rem 2rem; border-radius: 2rem; font-size: 0.9rem; font-weight: 500; text-decoration: none; border: 1.5px solid var(--border); transition: border-color .2s; }
.btn-secondary:hover { border-color: var(--text); }

.faq-list { margin-top: 2rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { padding: 1.25rem 0; font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--muted); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 0 1.25rem; font-size: 0.9375rem; color: var(--muted); line-height: 1.8; max-width: 640px; }

.internal-links { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.internal-links h3 { font-size: 1rem; color: var(--muted); font-family: var(--font-sans); font-weight: 500; margin-bottom: 1rem; }
.internal-links a { display: inline-block; margin-right: 1.5rem; margin-bottom: 0.5rem; font-size: 0.875rem; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: border-color .2s; }
.internal-links a:hover { border-color: var(--text); }

ul.check-list { list-style: none; margin: 1.5rem 0; }
ul.check-list li { padding: 0.5rem 0; padding-left: 1.75rem; position: relative; font-size: 0.9375rem; color: var(--muted); line-height: 1.7; }
ul.check-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--accent); font-weight: 600; }

.breadcrumb { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--text); }

.article-list { padding: 0 3rem 3rem; }
.article-card { padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.article-card:first-child { padding-top: 0; }
.article-date { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.75rem; font-family: var(--font-sans); }
.article-card h2 { font-family: var(--font-serif); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 500; line-height: 1.25; margin-bottom: 0.75rem; }
.article-card h2 a { color: var(--text); text-decoration: none; transition: opacity .2s; }
.article-card h2 a:hover { opacity: 0.6; }
.article-card p { font-size: 0.9375rem; color: var(--muted); line-height: 1.7; max-width: 640px; }
.read-more { display: inline-block; margin-top: 0.75rem; font-size: 0.875rem; font-weight: 500; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--border); padding-bottom: 2px; transition: border-color .2s; }
.read-more:hover { border-color: var(--text); }

.article-body { max-width: 720px; padding: 0 3rem; }
.article-body h2 { margin-top: 2.5rem; }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin: 1.25rem 0; padding-left: 1.5rem; }
.article-body li { font-size: 0.9375rem; color: var(--muted); line-height: 1.8; margin-bottom: 0.5rem; }
.article-body blockquote { border-left: 3px solid var(--accent); padding: 1rem 1.5rem; margin: 1.5rem 0; background: rgba(200,230,60,0.06); border-radius: 0 8px 8px 0; }
.article-body blockquote p { margin-bottom: 0; }
.article-body a { color: var(--text); font-weight: 500; text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; transition: text-decoration-color .2s; }
.article-body a:hover { text-decoration-color: var(--text); }

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  section, .cta-section { padding: 3rem 1.5rem; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .cards-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; }
}
