:root{
  color-scheme: light;
  --bg:#F7F9FB;
  --bg-alt:#EEF2F6;
  --surface:#FFFFFF;
  --text:#1B1E24;
  --text-muted:#62676F;
  --accent:#3E5577;
  --accent-deep:#2A3A51;
  --accent-soft:#E5EAF2;
  --border:#DADCE0;
  --shadow: 0 1px 2px rgba(20,24,29,.04), 0 8px 24px -12px rgba(20,24,29,.12);

  --font-display: Charter,'Iowan Old Style','Palatino Linotype',Georgia,serif;
  --font-body: -apple-system,BlinkMacSystemFont,'Segoe UI','Helvetica Neue',Arial,sans-serif;
  --font-mono: -apple-system,BlinkMacSystemFont,'Segoe UI','Helvetica Neue',Arial,sans-serif;

  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 12px;
}
:root[data-theme="dark"]{
  --bg:#10141C; --bg-alt:#151A22; --surface:#1A1F29; --text:#EDEFF2;
  --text-muted:#94A0AE; --accent:#8098BB; --accent-deep:#B0C0D8;
  --accent-soft:#212836; --border:#2A303C;
  --shadow: 0 1px 2px rgba(0,0,0,.3), 0 8px 24px -12px rgba(0,0,0,.5);
}
:root[data-theme="light"]{
  --bg:#F7F9FB; --bg-alt:#EEF2F6; --surface:#FFFFFF; --text:#1B1E24;
  --text-muted:#62676F; --accent:#3E5577; --accent-deep:#2A3A51;
  --accent-soft:#E5EAF2; --border:#DADCE0;
  --shadow: 0 1px 2px rgba(20,24,29,.04), 0 8px 24px -12px rgba(20,24,29,.12);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; } }
::selection{ background:var(--accent); color:#fff; }
html{ scrollbar-color: var(--accent) transparent; }

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  font-size:1.0625rem;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

.wrap{ max-width:1180px; margin:0 auto; padding:0 1.75rem; }

h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:700;
  text-wrap:balance;
  margin:0;
  letter-spacing:.01em;
}
p{ margin:0; }
a{ color:inherit; }

.eyebrow{
  font-family:var(--font-display);
  font-style:italic;
  font-size:1rem;
  color:var(--accent);
  margin:0 0 .5em;
}

.btn{
  font-family:var(--font-mono);
  font-size:.82rem;
  letter-spacing:.04em;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.6em;
  padding:.95em 1.7em;
  border-radius:var(--radius-sm);
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .2s cubic-bezier(.2,.7,.3,1), background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
a.btn::after{ content:"→"; display:inline-block; transition:transform .2s cubic-bezier(.2,.7,.3,1); }
a.btn:hover::after{ transform:translateX(3px); }
.btn:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; }
.btn-primary{ background:var(--accent); color:#fff; box-shadow:0 1px 2px rgba(14,26,43,.08), 0 10px 24px -10px color-mix(in srgb, var(--accent) 55%, transparent); }
.btn-primary:hover{ background:var(--accent-deep); transform:translateY(-2px); box-shadow:0 4px 8px rgba(14,26,43,.1), 0 16px 32px -12px color-mix(in srgb, var(--accent) 60%, transparent); }
.btn-ghost{ background:transparent; color:var(--text); border-color:var(--border); }
.btn-ghost:hover{ border-color:var(--accent); color:var(--accent); transform:translateY(-2px); }

/* ---------- Nav ---------- */
header.site{
  position:sticky; top:0; z-index:40;
  background:color-mix(in srgb, var(--bg) 97%, transparent);
  backdrop-filter:blur(6px);
  border-bottom:1px solid color-mix(in srgb, var(--border) 70%, transparent);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:1.1rem 0;
}
.logo{ display:flex; align-items:center; gap:.6rem; text-decoration:none; color:var(--text); }
.logo svg{ width:26px; height:26px; flex:none; }
.logo-word{ font-family:var(--font-display); font-weight:700; font-size:1.05rem; letter-spacing:.03em; }
.nav-links{ display:flex; align-items:center; gap:2rem; list-style:none; margin:0; padding:0; }
.nav-links a{
  text-decoration:none; color:var(--text-muted); font-family:var(--font-mono);
  font-size:.8rem; letter-spacing:.03em; transition:color .15s ease;
}
.nav-links a:hover{ color:var(--accent); }
.nav-cta{ display:flex; align-items:center; gap:1rem; }
.nav-toggle{ display:none; background:none; border:1px solid var(--border); border-radius:var(--radius-sm); padding:.5rem .65rem; color:var(--text); cursor:pointer; }
@media (max-width: 880px){
  .nav-links{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .nav-cta .btn-ghost{ display:none; }
}
#mobile-panel{
  display:none; border-top:1px solid var(--border); padding:1rem 0 1.4rem;
}
#mobile-panel.open{ display:block; }
#mobile-panel ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:1rem; }
#mobile-panel a{ text-decoration:none; color:var(--text); font-family:var(--font-mono); font-size:.9rem; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  background:var(--bg);
  color:var(--text);
  overflow:hidden;
  isolation:isolate;
  border-bottom:1px solid var(--border);
}
.hero::after{
  content:"";
  position:absolute; inset:0; z-index:1; pointer-events:none;
  opacity:.03; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-inner{
  position:relative; z-index:1;
  padding:6.5rem 0 5.5rem;
  display:grid; gap:2.2rem;
  max-width:760px;
}
.hero .eyebrow{ color:var(--accent); }
.hero h1{
  font-size:clamp(2.35rem, 5vw, 3.9rem);
  line-height:1.06;
  color:var(--text);
}
.hero h1 em{ font-style:italic; color:var(--accent); }
.hero-lead{
  font-family:var(--font-body);
  font-size:1.2rem;
  color:var(--text-muted);
  max-width:46ch;
  line-height:1.65;
}
.hero-actions{ display:flex; gap:1rem; flex-wrap:wrap; margin-top:.4rem; }

/* ---------- Page hero (non-home pages) ---------- */
.page-hero{
  position:relative; background:var(--bg); color:var(--text);
  border-bottom:1px solid var(--border); padding:6rem 0 3.5rem;
}
.page-hero .wrap{ max-width:760px; }
.page-hero h1{ font-size:clamp(2rem,4vw,2.9rem); line-height:1.12; margin-top:.4rem; }
.page-hero p{ color:var(--text-muted); font-size:1.1rem; margin-top:1rem; max-width:60ch; }

/* ---------- Section scaffolding ---------- */
section{ padding:6rem 0; }
#webcheck, #booking{ padding:3.8rem 0; }
.section-head{ max-width:640px; margin:0 0 3.2rem; }
.section-head h2{ font-size:clamp(1.7rem,3vw,2.35rem); line-height:1.15; }
.section-head p{ color:var(--text-muted); margin-top:.9rem; font-size:1.05rem; }
.alt{ background:var(--bg-alt); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }

.reveal{ opacity:0; transform:translateY(14px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ---------- Web check (lead magnet) ---------- */
.webcheck-form{ display:flex; gap:1.1rem; align-items:flex-end; flex-wrap:wrap; max-width:760px; }
.webcheck-form .field{ flex:1 1 200px; }
.webcheck-form .btn{ flex:none; }
.webcheck-note{ margin-top:.9rem; font-size:.85rem; color:var(--text-muted); max-width:760px; }
.form-status{ flex-basis:100%; font-size:.9rem; min-height:1.3em; }
.form-status[data-state="ok"]{ color:#2E9E5B; }
.form-status[data-state="err"]{ color:#D14343; }
@media (max-width:600px){
  .webcheck-form{ flex-direction:column; align-items:stretch; }
  .webcheck-form .btn{ width:100%; }
}

/* ---------- Services ---------- */
.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.service{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:2rem; display:flex; flex-direction:column; gap:.9rem;
  transition:transform .2s ease, border-color .2s ease;
}
.service:hover{ transform:translateY(-3px); border-color:var(--accent); }
.service-icon{ width:34px; height:34px; color:var(--accent); }
.service-icon svg{ width:100%; height:100%; display:block; }
.service .num{ display:none; }
.service h3{ font-size:1.15rem; }
.service p{ color:var(--text-muted); font-size:.98rem; }
@media (max-width:880px){ .services-grid{ grid-template-columns:1fr; } }

/* ---------- Process ---------- */
.process{ display:grid; grid-template-columns:repeat(5,1fr); gap:1.75rem; counter-reset:step; }
.step{ position:relative; padding-top:1.6rem; border-top:2px solid var(--border); }
.step .step-no{ font-family:var(--font-mono); font-size:.78rem; color:var(--accent); display:block; margin-bottom:.7rem; }
.step h4{ font-size:1.02rem; margin-bottom:.5rem; }
.step p{ color:var(--text-muted); font-size:.92rem; }
@media (max-width:880px){ .process{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .process{ grid-template-columns:1fr; } }

/* ---------- Guarantee ---------- */
.guarantee-card{
  display:flex; align-items:flex-start; gap:1.6rem;
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:2.4rem; box-shadow:var(--shadow); max-width:900px;
  margin-top:3rem;
}
.guarantee-icon{ width:44px; height:44px; flex:none; color:var(--accent); }
.guarantee-icon svg{ width:100%; height:100%; display:block; }
.guarantee-card h3{ font-size:1.25rem; margin-bottom:.6rem; }
.guarantee-card p{ color:var(--text-muted); font-size:.98rem; }
.guarantee-points{ display:flex; gap:1.6rem; flex-wrap:wrap; margin-top:1.2rem; }
.guarantee-points span{ font-family:var(--font-mono); font-size:.78rem; color:var(--text); display:flex; align-items:center; gap:.5em; }
.guarantee-points svg{ width:16px; height:16px; color:var(--accent); flex:none; }
@media (max-width:600px){ .guarantee-card{ flex-direction:column; padding:1.8rem; } }

/* ---------- Portfolio ---------- */
.cases{ display:flex; flex-direction:column; border-top:1px solid var(--border); }
.case{
  display:grid; grid-template-columns:110px 1fr auto; gap:2rem; align-items:center;
  padding:2.1rem 0; border-bottom:1px solid var(--border);
  transition:background .2s ease;
}
.case-visual{
  background:var(--accent-soft); border-radius:var(--radius);
  padding:.9rem; color:var(--accent);
}
.case-visual svg{ width:100%; height:40px; display:block; }
.case-tag{ font-size:.72rem; color:var(--text-muted); text-transform:uppercase; letter-spacing:.08em; }
.case h3{ font-size:1.2rem; margin-top:.35rem; }
.case p{ color:var(--text-muted); font-size:.94rem; margin-top:.4rem; max-width:46ch; }
.case-link{
  display:inline-block; margin-top:.7rem; text-decoration:none;
  font-family:var(--font-mono); font-size:.78rem; letter-spacing:.03em; color:var(--accent);
  transition:transform .15s ease;
}
.case-link:hover{ transform:translateX(3px); }
.case .metric{
  font-family:var(--font-display); font-size:1.8rem; color:var(--accent);
  text-align:right; white-space:nowrap;
}
.case .metric span{ display:block; font-family:var(--font-body); font-size:.8rem; color:var(--text-muted); margin-top:.2rem; }
@media (max-width:760px){
  .case{ grid-template-columns:64px 1fr; }
  .case .metric{ grid-column:1 / -1; text-align:left; display:flex; align-items:baseline; gap:.5em; }
  .case .metric span{ margin-top:0; }
}

/* ---------- About ---------- */
.about{ display:grid; grid-template-columns:1.1fr .9fr; gap:3.5rem; align-items:start; }
.about-copy p{ color:var(--text-muted); font-size:1.05rem; margin-bottom:1.1rem; }
.about-copy p:last-child{ margin-bottom:0; }
.founder-signature{ font-family:var(--font-display); color:var(--text) !important; font-size:1rem !important; margin-top:1.4rem !important; }
.founder-signature span{ display:block; font-family:var(--font-mono); font-size:.72rem !important; color:var(--text-muted); margin-top:.2rem; letter-spacing:.03em; }
.about-facts-wrap{ position:relative; overflow:hidden; border-radius:var(--radius); }
.about-deco{ position:absolute; top:-18px; right:-18px; width:140px; height:140px; color:var(--accent); opacity:.07; pointer-events:none; }
.about-facts{ display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; position:relative; }
.fact{ background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:1.5rem; }
.fact b{ display:block; font-family:var(--font-display); font-size:1.5rem; color:var(--accent); }
.fact span{ color:var(--text-muted); font-size:.85rem; }
@media (max-width:880px){ .about{ grid-template-columns:1fr; } }

/* ---------- Team ---------- */
.team-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
.team-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:1.9rem; display:flex; flex-direction:column; gap:1.1rem;
  box-shadow:var(--shadow); text-decoration:none; color:inherit;
  transition:transform .2s ease, border-color .2s ease;
}
.team-card:hover{ transform:translateY(-3px); border-color:var(--accent); }
.team-photo{ width:100%; aspect-ratio:1/1; border-radius:var(--radius); object-fit:cover; display:block; }
.team-role{ font-family:var(--font-mono); font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; color:var(--accent); }
.team-card h3{ font-size:1.15rem; margin-top:.3rem; }
.team-card p{ color:var(--text-muted); font-size:.95rem; }
.team-more{
  font-family:var(--font-mono); font-size:.78rem; color:var(--accent);
  margin-top:-.4rem; transition:transform .15s ease; display:inline-block;
}
.team-card:hover .team-more{ transform:translateX(3px); }
@media (max-width:600px){ .team-grid{ grid-template-columns:1fr; } }

/* ---------- Team bio page ---------- */
.team-bio-header{ display:flex; align-items:center; gap:1.4rem; margin:1.6rem 0 2rem; }
.team-bio-photo{ width:96px; height:96px; border-radius:var(--radius); object-fit:cover; flex-shrink:0; }
.team-bio-header h2{ font-size:1.5rem; margin-top:.2rem; }
@media (max-width:480px){ .team-bio-header{ gap:1rem; } .team-bio-photo{ width:72px; height:72px; } }

/* ---------- Testimonials ---------- */
.quotes{ display:grid; grid-template-columns:repeat(3,1fr); gap:2.4rem 2rem; }
.quote{ display:flex; flex-direction:column; gap:1.3rem; padding-left:1.2rem; border-left:2px solid var(--border); }
.quote blockquote{ margin:0; font-family:var(--font-display); font-size:1.2rem; line-height:1.5; }
.quote blockquote::before{ content:"“"; color:var(--accent); font-family:var(--font-display); font-size:1.6em; line-height:0; display:inline-block; vertical-align:-.3em; margin-right:.1em; }
.quote cite{ font-style:normal; display:flex; align-items:center; gap:.9rem; }
.quote-avatar{ display:none; }
.quote-meta{ display:flex; flex-direction:column; gap:.15rem; }
.quote-meta b{ font-family:var(--font-display); font-size:.92rem; }
.quote-meta span{ font-family:var(--font-mono); font-size:.75rem; color:var(--text-muted); }
@media (max-width:880px){ .quotes{ grid-template-columns:1fr; } }

/* ---------- Pricing ---------- */
.pricing-note{ max-width:640px; }
.pricing-note .btn{ margin-top:.6rem; }

/* ---------- Booking ---------- */
.booking-card{
  display:grid; grid-template-columns:1fr auto; gap:2.5rem; align-items:center;
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:2.6rem; box-shadow:var(--shadow);
}
.booking-meta{ display:flex; gap:.9rem; flex-wrap:wrap; margin:1rem 0 1.2rem; }
.booking-meta span{
  font-family:var(--font-mono); font-size:.75rem; letter-spacing:.04em;
  color:var(--text-muted); border:1px solid var(--border); border-radius:999px;
  padding:.35rem .8rem; display:inline-flex; align-items:center; gap:.4em;
}
.booking-card h3{ font-size:1.4rem; margin-bottom:0; }
.booking-card p.desc{ color:var(--text-muted); font-size:.98rem; max-width:52ch; }
.booking-cta{ display:flex; flex-direction:column; align-items:flex-start; gap:.7rem; }

.booking-cta small{ font-family:var(--font-mono); font-size:.72rem; color:var(--text-muted); }
@media (max-width:760px){
  .booking-card{ grid-template-columns:1fr; text-align:left; }
  .booking-cta{ align-items:stretch; }
  .booking-cta .btn{ width:100%; }
}

/* ---------- Dedicated booking page ---------- */
.book-page{ padding:3.2rem 0 6rem; max-width:760px; }
#view-book .book-page{ max-width:1180px; }
.back-link{
  display:inline-flex; align-items:center; gap:.5em; text-decoration:none;
  font-family:var(--font-mono); font-size:.8rem; color:var(--text-muted);
  transition:color .15s ease;
}
.back-link:hover{ color:var(--accent); }
.booking-embed{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:1.25rem; box-shadow:var(--shadow);
}
#booking-embed-target{ min-height:700px; }
#booking-embed-target iframe{ width:100%; height:100%; min-height:700px; border:0; display:block; }
.embed-fallback{
  margin-top:1rem; padding-top:1rem; border-top:1px solid var(--border);
  font-size:.9rem; color:var(--text-muted); text-align:center;
}
.embed-fallback a{ color:var(--accent); text-decoration:underline; }

.legal-body h3{ font-family:var(--font-display); font-size:1.05rem; margin:2rem 0 .6rem; }
.legal-body h3:first-child{ margin-top:0; }
.legal-body p{ color:var(--text-muted); margin-bottom:1rem; max-width:65ch; }
.legal-body a{ color:var(--accent); }

/* ---------- Case study page ---------- */
#view-case-webshop .book-page{ max-width:900px; }
.case-study-stats{
  display:grid; grid-template-columns:repeat(4,1fr); gap:1rem;
  margin:2.2rem 0;
}
.case-study-stats .fact{ padding:1.25rem 1.4rem; }
.case-study-stats .fact b{ font-size:1.4rem; }
@media (max-width:760px){ .case-study-stats{ grid-template-columns:1fr 1fr; } }
@media (max-width:480px){ .case-study-stats{ grid-template-columns:1fr; } }

.case-study-media{ display:grid; grid-template-columns:1fr 1fr; gap:1.4rem; margin:2.4rem 0; }
@media (max-width:700px){ .case-study-media{ grid-template-columns:1fr; } }
.browser-mock{ margin:0; }
.browser-mock figcaption{
  font-family:var(--font-mono); font-size:.72rem; text-transform:uppercase; letter-spacing:.08em;
  color:var(--text-muted); margin-bottom:.6rem;
}
.browser-mock-frame{
  border:1px solid var(--border); border-radius:var(--radius); overflow:hidden;
  background:var(--surface); box-shadow:var(--shadow);
}
.browser-mock-chrome{ display:flex; gap:.35rem; padding:.65rem .8rem; border-bottom:1px solid var(--border); }
.browser-mock-chrome span{ width:8px; height:8px; border-radius:50%; background:var(--border); display:block; }
.browser-mock-body{ padding:1rem; display:flex; flex-direction:column; gap:.5rem; }
.browser-mock-body .bar{ height:.55rem; border-radius:2px; background:var(--accent-soft); }
.browser-mock--before .bar{ background:var(--border); }
.browser-mock--before .browser-mock-body{ gap:.4rem; }
.browser-mock-cta{ height:1.6rem; border-radius:var(--radius-sm); background:var(--accent); margin-top:.4rem; width:40%; }
.browser-mock--before .browser-mock-cta{ background:var(--text-muted); width:65%; }

.case-study-body h3{ font-family:var(--font-display); font-size:1.2rem; margin:2.2rem 0 .8rem; }
.case-study-body h3:first-child{ margin-top:0; }
.case-study-body p{ color:var(--text-muted); margin-bottom:1rem; max-width:65ch; line-height:1.65; }
.case-study-quote{
  border-left:2px solid var(--border); padding-left:1.2rem; margin:1.6rem 0;
  font-family:var(--font-display); font-size:1.1rem; font-style:italic; color:var(--text);
  max-width:60ch;
}
.case-study-cta{
  margin-top:2.6rem; padding-top:2rem; border-top:1px solid var(--border);
  display:flex; align-items:center; gap:1.2rem; flex-wrap:wrap;
}

/* ---------- Insights / blog ---------- */
.insights-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1.6rem; }
@media (max-width:760px){ .insights-grid{ grid-template-columns:1fr; } }
.insight-card{
  display:flex; flex-direction:column; gap:.8rem;
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:2rem; text-decoration:none; color:inherit;
  transition:transform .2s ease, border-color .2s ease;
}
.insight-card:hover{ transform:translateY(-3px); border-color:var(--accent); }
.insight-meta{ font-family:var(--font-mono); font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; color:var(--text-muted); }
.insight-card h3{ font-size:1.25rem; line-height:1.25; }
.insight-card p{ color:var(--text-muted); font-size:.98rem; }
.insight-read-more{
  margin-top:auto; padding-top:.4rem; font-family:var(--font-mono); font-size:.78rem; color:var(--accent);
}

.article-page{ padding:3.2rem 0 6rem; max-width:720px; }
.article-header{ margin:1.6rem 0 2.4rem; }
.article-header .insight-meta{ margin-bottom:.8rem; }
.article-header h1{ font-size:clamp(1.9rem,4vw,2.6rem); line-height:1.16; }
.article-lead{ color:var(--text-muted); font-size:1.15rem; margin-top:1rem; line-height:1.6; max-width:60ch; }
.article-body h2{ font-family:var(--font-display); font-size:1.4rem; margin:2.4rem 0 .9rem; line-height:1.25; }
.article-body h2:first-child{ margin-top:0; }
.article-body p{ color:var(--text-muted); margin-bottom:1.1rem; max-width:65ch; line-height:1.7; font-size:1.02rem; }
.article-body ul{ margin:0 0 1.1rem; padding-left:1.3rem; max-width:65ch; }
.article-body li{ color:var(--text-muted); margin-bottom:.5rem; line-height:1.65; }
.article-body strong{ color:var(--text); }
.article-cta{
  margin-top:3rem; padding:2rem; background:var(--bg-alt); border:1px solid var(--border);
  border-radius:var(--radius-lg); display:flex; align-items:center; justify-content:space-between;
  gap:1.5rem; flex-wrap:wrap;
}
.article-cta h4{ font-size:1.1rem; }
.article-cta p{ color:var(--text-muted); font-size:.95rem; margin-top:.3rem; max-width:40ch; }

/* ---------- Cookie banner ---------- */
.cookie-banner{
  position:fixed; left:0; right:0; bottom:0; z-index:60;
  background:var(--surface); border-top:1px solid var(--border);
  box-shadow:0 -8px 24px -12px rgba(14,26,43,.25);
}
.cookie-banner-inner{
  padding:1rem 1.75rem; display:flex; align-items:center; justify-content:space-between;
  gap:1.5rem; flex-wrap:wrap;
}
.cookie-banner-inner p{ font-size:.85rem; color:var(--text-muted); margin:0; max-width:60ch; }
.cookie-banner-inner a{ color:var(--accent); text-decoration:underline; }
.cookie-banner .btn{ flex:none; padding:.6em 1.3em; }
.cookie-banner-actions{ display:flex; gap:.7rem; flex:none; }
@media (max-width:560px){
  .cookie-banner-inner{ flex-direction:column; align-items:stretch; }
  .cookie-banner-actions{ flex-direction:column; }
  .cookie-banner .btn{ width:100%; }
}

/* ---------- FAQ ---------- */
.faq-list{ max-width:800px; }
.faq-item{ border-bottom:1px solid var(--border); }
.faq-item summary{
  cursor:pointer; list-style:none; padding:1.4rem 0; display:flex; justify-content:space-between; gap:1rem;
  font-family:var(--font-display); font-size:1.02rem; align-items:center;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{
  content:"+"; font-family:var(--font-mono); color:var(--accent); font-size:1.3rem; flex:none;
  transition:transform .2s ease;
}
.faq-item[open] summary::after{ transform:rotate(45deg); }
.faq-item p{ padding:0 0 1.5rem; color:var(--text-muted); max-width:65ch; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:3.5rem; }
.contact-info{ display:flex; flex-direction:column; gap:1.6rem; }
.contact-info a{ text-decoration:none; }
.contact-line{ display:flex; flex-direction:column; gap:.3rem; }
.contact-line span{ font-family:var(--font-mono); font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; color:var(--text-muted); }
.contact-line strong{ font-size:1.15rem; font-weight:400; font-family:var(--font-body); }
.contact-line a strong{ transition:color .15s ease; }
.contact-line a:hover strong{ color:var(--accent); }

form.contact-form{ display:flex; flex-direction:column; gap:1.2rem; }
.field{ display:flex; flex-direction:column; gap:.4rem; }
.field label{ font-family:var(--font-mono); font-size:.72rem; text-transform:uppercase; letter-spacing:.06em; color:var(--text-muted); }
.field input, .field textarea{
  font-family:var(--font-body); font-size:1rem; padding:.85rem .9rem; background:var(--surface);
  border:1px solid var(--border); border-radius:var(--radius-sm); color:var(--text); resize:vertical;
  transition:border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus{ outline:none; border-color:var(--accent); box-shadow:0 0 0 3px var(--accent-soft); }
.contact-form .btn{ align-self:flex-start; }
@media (max-width:880px){ .contact-grid{ grid-template-columns:1fr; } }

/* ---------- Footer ---------- */
footer{ background:var(--bg-alt); color:var(--text-muted); padding:3.5rem 0 2rem; border-top:1px solid var(--border); }
.footer-top{ display:flex; justify-content:space-between; gap:2rem; flex-wrap:wrap; padding-bottom:2.5rem; border-bottom:1px solid var(--border); }
.footer-top .logo-word{ color:var(--text); }
.footer-nav{ display:flex; gap:2.5rem; flex-wrap:wrap; }
.footer-nav h5{ font-family:var(--font-mono); font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; color:var(--text-muted); margin:0 0 .9rem; font-weight:400; }
.footer-nav ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:.6rem; }
.footer-nav a{ text-decoration:none; color:var(--text-muted); font-size:.9rem; }
.footer-nav a:hover{ color:var(--accent); }
.footer-nav a.social-link{ display:inline-flex; align-items:center; gap:.55em; }
.footer-nav a.social-link svg{ width:15px; height:15px; flex:none; }
.footer-bottom{ display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; padding-top:1.6rem; font-family:var(--font-mono); font-size:.75rem; color:var(--text-muted); }

/* ---------- Trustpilot ---------- */
.trustpilot-badge{
  display:inline-flex; align-items:center; gap:.6em; margin-top:1rem;
  text-decoration:none; font-family:var(--font-mono); font-size:.8rem;
  color:var(--text-muted);
}
.trustpilot-stars{ display:inline-flex; gap:2px; flex:none; }
.trustpilot-stars svg{ width:15px; height:15px; }
.footer-bottom .trustpilot-badge{ margin-top:0; color:var(--text-muted); }
