:root{
  --bg:#06130F;
  --surface:#0B221B;
  --text:#ECFDF5;
  --muted:#A7D6C7;
  --brand:#10B981;
  --brand2:#A78BFA;
  --accent:#FDE68A;
  --line:rgba(255,255,255,.10);
  --white:#FFFFFF;
  --radius:18px;
  --radius-sm:12px;
  --shadow:0 18px 40px rgba(0,0,0,.22);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:"Manrope",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  background:
    radial-gradient(1200px 500px at 20% -10%,rgba(16,185,129,.18),transparent 60%),
    radial-gradient(1000px 420px at 100% 0%,rgba(167,139,250,.16),transparent 58%),
    var(--bg);
  color:var(--text);
  line-height:1.65;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{width:min(1140px,92%);margin-inline:auto}
.section{padding:4rem 0}
.section-title{font-family:"Fraunces",Georgia,serif;font-size:clamp(1.6rem,2.2vw,2.3rem);margin:0 0 .75rem}
.section-intro{color:var(--muted);margin:0 0 2rem}
.surface{
  background:linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,.01));
  border:1px solid var(--line);
  border-radius:var(--radius);
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(10px);
  background:rgba(6,19,15,.76);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:1rem;
  min-height:76px;
}
.logo{display:flex;align-items:center;gap:.6rem;font-weight:800;white-space:nowrap;font-size:1rem}
.logo svg{width:22px;height:22px;color:var(--brand)}
.desktop-nav{display:none;justify-content:center;gap:1.2rem;align-items:center}
.desktop-nav a{padding:.4rem .55rem;border-radius:8px;color:var(--muted)}
.desktop-nav a[aria-current="page"], .desktop-nav a:hover{color:var(--text);background:rgba(255,255,255,.05)}
.site-header .header-cta{display:none}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  border-radius:999px;border:1px solid transparent;padding:.74rem 1.2rem;font-weight:700;
  transition:transform .2s ease,background .2s ease,border-color .2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:linear-gradient(135deg,var(--brand),#0cc194);color:#02281f}
.btn-secondary{background:transparent;border-color:var(--line);color:var(--text)}
.btn-accent{background:var(--accent);color:#3b2d04}

.menu-toggle{
  justify-self:end;background:transparent;border:1px solid var(--line);color:var(--white);
  width:42px;height:42px;border-radius:10px;display:grid;place-items:center;cursor:pointer;
}
.menu-toggle svg{width:20px;height:20px}
.mobile-panel{
  display:none;
  border-top:1px solid var(--line);
  background:rgba(11,34,27,.95);
}
.mobile-panel.is-open{display:block}
.mobile-panel nav{display:grid;padding:1rem 4%;gap:.5rem}
.mobile-link{padding:.7rem .8rem;border-radius:10px;color:var(--muted)}
.mobile-link[aria-current="page"],.mobile-link:hover{background:rgba(255,255,255,.06);color:var(--text)}
.mobile-panel .btn{margin-top:.35rem}

.hero{padding:4rem 0 2.5rem}
.hero-grid{display:grid;gap:1.6rem;align-items:center}
.hero h1{font-family:"Fraunces",Georgia,serif;font-size:clamp(2rem,4.2vw,3.35rem);line-height:1.15;margin:0 0 1rem}
.hero p{color:var(--muted);margin:0 0 1.3rem;max-width:56ch}
.hero-actions{display:flex;flex-wrap:wrap;gap:.8rem}
.trust-chips{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1.1rem}
.chip{padding:.42rem .7rem;border-radius:999px;border:1px solid var(--line);background:rgba(255,255,255,.03);font-size:.88rem}
.hero-media{overflow:hidden;border-radius:24px;border:1px solid var(--line)}
.hero-media img{width:100%;height:100%;aspect-ratio:4/3;object-fit:cover}

.grid{display:grid;gap:1rem}
.topics-grid{grid-template-columns:repeat(auto-fit,minmax(180px,1fr))}
.topic-card{padding:1rem}
.topic-card h3{margin:.25rem 0 .45rem;font-size:1.02rem}
.topic-card p{margin:0;color:var(--muted);font-size:.94rem}
.icon-badge{width:38px;height:38px;border-radius:50%;display:grid;place-items:center;background:rgba(16,185,129,.2);color:var(--accent)}

.tips-grid{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.tip-card{padding:1rem}
.tip-card p{margin:.6rem 0 0;color:var(--muted)}

.articles-grid{grid-template-columns:repeat(auto-fit,minmax(230px,1fr))}
.article-card{overflow:hidden}
.article-card img{width:100%;height:190px;object-fit:cover}
.article-content{padding:1rem}
.article-content h3{margin:0 0 .45rem;font-size:1.02rem}
.article-content p{margin:0 0 .8rem;color:var(--muted);font-size:.94rem}
.link{color:var(--accent);font-weight:700}

.testimonial-grid,.faq-preview-grid{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.quote-card,.faq-preview-card{padding:1rem}
.quote-card p,.faq-preview-card p{margin:0;color:var(--muted)}
.quote-card strong{display:block;margin-top:.7rem}

.banner{
  padding:1.35rem;display:flex;flex-wrap:wrap;justify-content:space-between;gap:1rem;align-items:center;
}
.banner p{margin:0;color:var(--muted)}

.page-hero{padding:3rem 0 1.5rem}
.page-hero h1{font-family:"Fraunces",Georgia,serif;font-size:clamp(2rem,4vw,3rem);margin:0 0 .8rem}
.page-hero p{margin:0;color:var(--muted);max-width:70ch}

.media-split{display:grid;gap:1rem;align-items:stretch;margin:1.2rem 0 0}
.media-split .copy{padding:1rem}
.media-split img{width:100%;height:100%;min-height:240px;aspect-ratio:4/3;object-fit:cover;border-radius:var(--radius);border:1px solid var(--line)}

.checklist{display:grid;gap:.6rem;padding-left:1.1rem;color:var(--muted)}

.plans-grid{grid-template-columns:repeat(auto-fit,minmax(210px,1fr))}
.plan-card{overflow:hidden}
.plan-card img{width:100%;height:180px;object-fit:cover}
.plan-card .copy{padding:1rem}
.plan-card h3{margin:0 0 .45rem}
.plan-card p{margin:0;color:var(--muted)}

.tool-card{padding:1.2rem}
.tool-card form{display:grid;gap:.75rem}
label{font-weight:700;font-size:.92rem}
input,select,textarea{
  width:100%;padding:.72rem .8rem;border-radius:10px;border:1px solid var(--line);
  background:rgba(255,255,255,.02);color:var(--text);font:inherit;
}
input::placeholder,textarea::placeholder{color:#8db6aa}
.field-note{color:var(--muted);font-size:.9rem}
.result{margin-top:.6rem;padding:.75rem .85rem;border-radius:10px;background:rgba(16,185,129,.12);border:1px solid rgba(16,185,129,.35);font-weight:700}
.error{color:#fecaca;font-size:.88rem;min-height:1rem}

.faq-list{display:grid;gap:.7rem}
.faq-item{border:1px solid var(--line);border-radius:12px;overflow:hidden;background:rgba(255,255,255,.02)}
.faq-btn{
  width:100%;text-align:left;padding:1rem;background:transparent;border:0;color:var(--text);font:inherit;
  font-weight:700;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:1rem;
}
.faq-btn span{color:var(--accent)}
.faq-panel{padding:0 1rem 1rem;color:var(--muted)}
.faq-panel[hidden]{display:none}

.contact-grid{display:grid;gap:1rem}
.info-card{padding:1rem}
.info-card p{color:var(--muted)}

.site-footer{border-top:1px solid var(--line);margin-top:3rem;padding-top:2rem;background:rgba(0,0,0,.15)}
.footer-grid{display:grid;gap:1rem;grid-template-columns:repeat(auto-fit,minmax(190px,1fr))}
.site-footer h3,.site-footer h4{margin:.2rem 0 .8rem}
.site-footer p,.site-footer li,.site-footer a{color:var(--muted);font-size:.95rem}
.site-footer ul{margin:0;padding:0;list-style:none;display:grid;gap:.5rem}
.socials{display:flex;gap:.55rem;margin-top:.7rem}
.socials a{width:34px;height:34px;border-radius:50%;display:grid;place-items:center;border:1px solid var(--line)}
.socials svg{width:16px;height:16px}
.footer-bottom{border-top:1px solid var(--line);margin-top:1.2rem;padding:1rem 0 1.4rem;color:var(--muted);font-size:.9rem;display:flex;flex-wrap:wrap;gap:.6rem;justify-content:space-between}

.scroll-top{
  position:fixed;right:18px;bottom:18px;width:42px;height:42px;border-radius:50%;border:1px solid var(--line);
  background:var(--surface);color:var(--text);display:none;cursor:pointer;z-index:900;
}
.scroll-top.show{display:block}

.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

:focus-visible{outline:2px solid var(--accent);outline-offset:2px}

@media (min-width:860px){
  .desktop-nav{display:flex}
  .site-header .header-cta{display:inline-flex}
  .menu-toggle{display:none}
  .mobile-panel{display:none !important}
  .hero-grid{grid-template-columns:1.05fr .95fr}
  .media-split{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1.2fr .8fr}
}

@media (max-width:420px){
  .logo{font-size:.92rem}
  .header-inner{min-height:72px}
  .section{padding:3.2rem 0}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important;transition:none !important;animation:none !important}
}
