/* =========================================================
   Walker Internet Services — Design System
   Static site, zero dependencies, system fonts only.
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }
img, picture, svg { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Tokens ---------- */
:root {
  --ink: #0B1D33;
  --ink-2: #13294B;
  --ink-3: #1C3A63;
  --paper: #F7F8FA;
  --white: #FFFFFF;
  --accent: #C9922E;
  --accent-2: #8A5E12;
  --accent-tint: #FBF1DF;
  --text: #1C2733;
  --text-muted: #5B6672;
  --text-on-dark: #EAF0F7;
  --text-on-dark-muted: #A9B7C9;
  --border: #E3E7EC;
  --border-dark: #24406B;
  --success: #2E7D4F;
  --success-tint: #E7F4EC;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11,29,51,0.06), 0 1px 1px rgba(11,29,51,0.04);
  --shadow: 0 8px 24px rgba(11,29,51,0.08), 0 2px 6px rgba(11,29,51,0.06);
  --shadow-lg: 0 24px 48px rgba(11,29,51,0.16), 0 8px 16px rgba(11,29,51,0.08);
  --max: 1200px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

/* ---------- Base ---------- */
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  position: relative;
}

/* Subtle film-grain texture over the whole site — adds depth without images */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%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");
}

/* ---------- Scroll progress bar (injected by main.js) ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 1001;
  background: linear-gradient(90deg, var(--accent), #E8B968);
  transition: width .1s linear;
}

/* ---------- Scroll-reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.16,.8,.3,1), transform .6s cubic-bezier(.16,.8,.3,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view { transition-delay: var(--reveal-delay, 0s); }

@keyframes floatY { 0%, 100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-18px) translateX(8px); } }
@keyframes floatY2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(16px); } }
@keyframes floatFeatured { 0%, 100% { transform: translateY(-8px); } 50% { transform: translateY(-16px); } }
@keyframes pulseGlow { 0%, 100% { box-shadow: 0 0 0 0 rgba(201,146,46,0.45); } 50% { box-shadow: 0 0 0 10px rgba(201,146,46,0); } }
@keyframes shineSweep { from { transform: translateX(-120%) skewX(-15deg); } to { transform: translateX(220%) skewX(-15deg); } }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; letter-spacing: -0.005em; color: var(--ink); }
h3, h4 { font-weight: 600; }
h1 { font-size: clamp(2.1rem, 1.6rem + 2.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 1.35rem + 1.2vw, 2.35rem); }
h3 { font-size: clamp(1.2rem, 1.1rem + 0.4vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text); }
.lede { font-size: clamp(1.05rem, 1rem + 0.3vw, 1.25rem); color: var(--text-muted); }

section { color: var(--text); }
strong { color: var(--ink); }

a.link { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
a.link:hover { color: var(--accent); }

/* ---------- Skip link & focus ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: var(--white);
  padding: 0.75rem 1.25rem; z-index: 1000; border-radius: 0 0 var(--radius-sm) 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

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

/* ---------- Layout ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
@media (max-width: 780px) {
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
}
.section-dark { background: var(--ink); color: var(--text-on-dark); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p, .section-dark .lede { color: var(--text-on-dark-muted); }
.section-tint { background: var(--white); }
.section-accent-tint { background: var(--accent-tint); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.center { text-align: center; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head.left { margin: 0 0 40px; text-align: left; }

.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent-2); background: var(--accent-tint);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.section-dark .eyebrow { color: var(--accent); background: rgba(201,146,46,0.14); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 1rem;
  border: 2px solid transparent; text-decoration: none; transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
  white-space: nowrap; overflow: hidden;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: #DBA33E; box-shadow: var(--shadow); }
.btn-primary::before {
  content: ""; position: absolute; top: 0; left: 0; width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: translateX(-120%) skewX(-15deg); pointer-events: none;
}
.btn-primary:hover::before { animation: shineSweep .85s ease; }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-2); }
.btn-outline { background: transparent; border-color: rgba(11,29,51,0.4); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); background: rgba(11,29,51,0.04); }
.section-dark .btn-outline,
.hero .btn-outline,
.page-hero .btn-outline,
.cta-banner .btn-outline { border-color: rgba(255,255,255,0.55); color: var(--white); }
.section-dark .btn-outline:hover,
.hero .btn-outline:hover,
.page-hero .btn-outline:hover,
.cta-banner .btn-outline:hover { border-color: var(--accent); background: rgba(255,255,255,0.08); }
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }
.btn-block { width: 100%; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---------- Header ---------- */
.topbar {
  background: var(--ink); color: var(--text-on-dark-muted); font-size: 0.85rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; gap: 12px; flex-wrap: wrap; }
.topbar a { color: var(--text-on-dark-muted); text-decoration: none; }
.topbar a:hover { color: var(--white); }
.topbar .topbar-links { display: flex; gap: 20px; flex-wrap: wrap; }
.placeholder-flag { color: var(--accent); font-weight: 700; }

.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 12px; flex-wrap: nowrap; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; min-width: 0; flex-shrink: 1; }
.brand-logo { height: 42px; width: auto; display: block; }

.footer-logo-card {
  display: inline-flex; align-items: center; background: var(--white); border-radius: var(--radius-sm);
  padding: 12px 18px;
}
.footer-brand-logo { height: 56px; width: auto; display: block; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav a.nav-link {
  position: relative; display: inline-flex; align-items: center; gap: 4px; padding: 10px 14px; border-radius: 8px;
  text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.96rem;
}
.main-nav a.nav-link:hover, .main-nav a.nav-link:focus-visible { background: var(--paper); color: var(--ink); }
.main-nav a.nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px; border-radius: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.main-nav a.nav-link:hover::after, .main-nav a.nav-link:focus-visible::after { transform: scaleX(1); }
.main-nav a.nav-link[aria-current]::after { transform: scaleX(1); }
.nav-item { position: relative; }
.nav-item .caret { font-size: 0.65em; margin-left: 2px; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 10px; min-width: 280px;
  display: grid; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; flex-direction: column; padding: 10px 12px; border-radius: 8px; text-decoration: none;
}
.dropdown a:hover, .dropdown a:focus-visible { background: var(--paper); }
.dropdown a .dd-title { font-weight: 700; color: var(--ink); font-size: 0.92rem; }
.dropdown a .dd-desc { font-size: 0.8rem; color: var(--text-muted); }
.dropdown .dd-all { border-top: 1px solid var(--border); margin-top: 6px; padding-top: 10px; }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-toggle {
  display: none; background: none; border: 2px solid var(--border); border-radius: 8px;
  width: 44px; height: 44px; padding: 0; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }

@media (max-width: 980px) {
  .main-nav { position: fixed; inset: 0 0 0 auto; width: min(340px, 88vw); background: var(--white); flex-direction: column;
    align-items: stretch; padding: 90px 20px 24px; transform: translateX(100%); transition: transform .2s ease; overflow-y: auto; box-shadow: var(--shadow-lg); z-index: 100; }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 4px 0 4px 14px; display: none; }
  .nav-item.open .dropdown { display: grid; }
  .nav-toggle { display: inline-flex; }
  .header-cta .btn-outline { display: none; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(11,29,51,0.4); opacity: 0; visibility: hidden; transition: opacity .2s ease; z-index: 90; }
  .nav-scrim.open { opacity: 1; visibility: visible; }
}

@media (max-width: 560px) {
  .site-header .container { padding-top: 10px; padding-bottom: 10px; }
  .brand-logo { height: 32px; }
  .header-cta .btn-primary { display: none; }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { background: var(--white); border-bottom: 1px solid var(--border); }
.breadcrumbs .container { padding-top: 14px; padding-bottom: 14px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumbs a { text-decoration: none; color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent-2); text-decoration: underline; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 6px; color: var(--border); }
.breadcrumbs li[aria-current] { color: var(--ink); font-weight: 600; }

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 120px; background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); color: var(--white);
  position: relative; overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), 0 100%);
}
.hero::after {
  content: ""; position: absolute; inset: auto -10% -40% auto; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,146,46,0.25), transparent 70%); pointer-events: none;
  animation: floatY 9s ease-in-out infinite;
}
.hero::before {
  content: ""; position: absolute; top: -120px; left: -80px; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%); pointer-events: none;
  animation: floatY2 11s ease-in-out infinite;
}
.hero .container {
  position: relative; z-index: 1;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 22px 22px; background-position: -10px -10px;
}
.hero .accent-word { color: var(--accent); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero .lede { color: var(--text-on-dark-muted); margin-bottom: 28px; max-width: 56ch; }
.hero-panel {
  background: rgba(255,255,255,0.06); border: 1px solid var(--border-dark); border-radius: var(--radius-lg);
  padding: 28px; backdrop-filter: blur(6px);
}
.hero-panel .stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }
.hero-panel .stat { border-top: 1px solid var(--border-dark); padding-top: 14px; }
.hero-panel .stat .num { font-size: 1.7rem; font-weight: 800; color: var(--accent); display: block; }
.hero-panel .stat .lbl { font-size: 0.82rem; color: var(--text-on-dark-muted); }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.hero-badge { font-size: 0.8rem; font-weight: 700; background: rgba(255,255,255,0.08); border: 1px solid var(--border-dark); padding: 8px 14px; border-radius: 999px; }

/* Simple page header (non-home hero) */
.page-hero {
  padding: 56px 0 88px; background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); color: var(--white);
  position: relative; overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), 0 100%);
}
.page-hero::after {
  content: ""; position: absolute; inset: -20% -8% auto auto; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,146,46,0.22), transparent 70%); pointer-events: none;
  animation: floatY 10s ease-in-out infinite;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lede { color: var(--text-on-dark-muted); max-width: 68ch; }
.page-hero .cta-row { margin-top: 28px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--border); }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; padding-top: 28px; padding-bottom: 28px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); font-size: 0.95rem; }
.trust-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ---------- Cards ---------- */
.card {
  position: relative; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: var(--radius) var(--radius) 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2)); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .icon { transition: transform .3s ease; }
.card:hover .icon { transform: scale(1.08) rotate(-4deg); }
.card .icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--accent-tint); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px;
}
.card .icon svg { width: 24px; height: 24px; color: var(--accent-2); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-muted); font-size: 0.95rem; }
.card ul { margin-top: 12px; display: grid; gap: 6px; }
.card ul li { font-size: 0.9rem; color: var(--text-muted); padding-left: 20px; position: relative; }
.card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 800; }
.card a.card-link { display: inline-block; margin-top: 16px; font-weight: 700; color: var(--accent-2); text-decoration: none; font-size: 0.9rem; }
.card a.card-link:hover { text-decoration: underline; }

.problem-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; display: flex; gap: 14px; align-items: flex-start; }
.problem-card .mark { font-size: 1.3rem; flex-shrink: 0; }
.problem-card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }
.problem-card strong { display: block; margin-bottom: 4px; }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; display: grid; gap: 20px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: flex-start; }
.step .step-num {
  counter-increment: step; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0;
}
.step .step-num::before { content: counter(step); }
.step h3 { margin-bottom: 4px; font-size: 1.1rem; }
.step p { color: var(--text-muted); font-size: 0.95rem; }

.process-grid { align-items: stretch; }
.process-card { display: flex; flex-direction: column; }
.process-illustration {
  background: var(--paper); border-radius: var(--radius-sm); margin: -4px -4px 18px; padding: 14px;
  display: flex; align-items: center; justify-content: center; min-height: 140px;
}
.process-illustration img { width: 100%; max-width: 190px; height: auto; }
.process-step-label {
  display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 6px;
}
.process-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.plan {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column; position: relative;
}
.plan.featured { border-color: var(--accent); box-shadow: var(--shadow-lg); background: var(--ink); color: var(--white); transform: translateY(-8px); }
.plan.featured h3, .plan.featured .plan-price { color: var(--white); }
.plan.featured .plan-desc { color: var(--text-on-dark-muted); }
.plan.featured ul li { color: var(--text-on-dark-muted); }
.plan.featured ul li::before { color: var(--accent); }
@media (max-width: 960px) { .plan.featured { transform: none; } }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--ink);
  font-size: 0.75rem; font-weight: 800; padding: 6px 16px; border-radius: 999px; letter-spacing: 0.03em; white-space: nowrap;
  animation: pulseGlow 2.6s ease-in-out infinite;
}
.plan.featured { animation: floatFeatured 6s ease-in-out infinite; }
@media (max-width: 960px) { .plan.featured { animation: none; } }
.plan-desc { color: var(--text-muted); font-size: 0.9rem; margin-top: 6px; min-height: 44px; }
.plan-price { font-size: 2.4rem; font-weight: 800; color: var(--ink); margin: 18px 0 4px; }
.plan-price span { font-size: 1rem; font-weight: 600; color: var(--text-muted); }
.plan.featured .plan-price span { color: var(--text-on-dark-muted); }
.plan ul { margin: 22px 0 26px; display: grid; gap: 10px; flex: 1; }
.plan ul li { font-size: 0.92rem; color: var(--text-muted); padding-left: 24px; position: relative; }
.plan ul li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 800; }
.plan ul li strong { color: inherit; }

.price-note { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-top: 28px; }

/* ---------- Full-width featured plan banner ---------- */
.plan-banner {
  background: var(--ink); color: var(--white);
  border: 1px solid var(--accent); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 44px 48px; display: flex; align-items: center; gap: 48px; position: relative;
}
.plan-banner .plan-badge { position: static; transform: none; display: inline-block; margin-bottom: 14px; }
.plan-banner-main { flex: 1 1 320px; min-width: 260px; }
.plan-banner-main h3 { color: var(--white); font-size: 1.6rem; }
.plan-banner-main .plan-desc { color: var(--text-on-dark-muted); min-height: 0; margin-top: 8px; }
.plan-banner-main .plan-price { color: var(--white); margin: 18px 0 22px; }
.plan-banner-main .plan-price span { color: var(--text-on-dark-muted); }
.plan-banner-main .btn { width: auto; }
.plan-banner-list { flex: 1 1 360px; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.plan-banner-list li { font-size: 0.95rem; color: var(--text-on-dark-muted); padding-left: 24px; position: relative; }
.plan-banner-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
@media (max-width: 800px) {
  .plan-banner { flex-direction: column; align-items: stretch; padding: 36px 28px; }
  .plan-banner-list { grid-template-columns: 1fr; }
  .plan-banner-main .btn { width: 100%; }
}

/* Compare table */
.compare-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); background: var(--white); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
table.compare th, table.compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
table.compare thead th { background: var(--ink); color: var(--white); font-weight: 700; }
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare td:first-child { color: var(--text-muted); }

/* Upfront vs Monthly comparison */
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 720px) { .versus { grid-template-columns: 1fr; } }
.versus-card { border-radius: var(--radius-lg); padding: 30px; }
.versus-card.old { background: var(--white); border: 1px solid var(--border); }
.versus-card.new { background: var(--ink); color: var(--white); border: 1px solid var(--border-dark); }
.versus-card h3 { margin-bottom: 14px; }
.versus-card.new h3 { color: var(--white); }
.versus-card ul { display: grid; gap: 10px; margin-top: 16px; }
.versus-card li { padding-left: 24px; position: relative; font-size: 0.95rem; }
.versus-card.old li::before { content: "＋"; position: absolute; left: 0; color: var(--text-muted); }
.versus-card.new li { color: var(--text-on-dark-muted); }
.versus-card.new li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.versus-price { font-size: 1.6rem; font-weight: 800; margin: 10px 0; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; color: var(--ink); display: flex;
  justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q-icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-2); display: flex; align-items: center; justify-content: center; font-weight: 800; transition: transform .2s ease; }
.faq-item[open] summary .q-icon { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 24px 22px; color: var(--text-muted); font-size: 0.96rem; }

/* ---------- Answer-first Q&A block ---------- */
.qa-block { margin-bottom: 40px; }
.qa-block:last-child { margin-bottom: 0; }
.qa-block h2, .qa-block h3 { margin-bottom: 12px; }
.qa-answer {
  font-size: 1.05rem; font-weight: 600; color: var(--ink); background: var(--accent-tint); border-left: 4px solid var(--accent);
  padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 16px;
}
.qa-block .detail { color: var(--text-muted); }
.qa-block .detail + .detail { margin-top: 12px; }

/* ---------- Testimonial (placeholder-only for now) ---------- */
.testimonial { background: var(--white); border: 1px dashed var(--border); border-radius: var(--radius); padding: 26px; }
.testimonial p.quote { font-style: italic; color: var(--text-muted); }
.testimonial .attrib { margin-top: 14px; font-weight: 700; color: var(--ink); font-size: 0.9rem; }
.needed-tag { display: inline-block; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-2); background: var(--accent-tint); padding: 4px 10px; border-radius: 999px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%); color: var(--white); border-radius: var(--radius-lg);
  padding: 48px; display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: var(--text-on-dark-muted); margin: 0; }
.cta-banner .cta-row { flex-shrink: 0; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.field .hint { font-size: 0.8rem; color: var(--text-muted); }
.field input, .field textarea, .field select {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: var(--white);
  font-size: 1rem; color: var(--text); width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field textarea { min-height: 110px; resize: vertical; }
.field.error input, .field.error textarea, .field.error select { border-color: #C0392B; }
.field .error-msg { color: #C0392B; font-size: 0.82rem; display: none; }
.field.error .error-msg { display: block; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.hp-field { position: absolute; left: -9999px; }
.form-success { display: none; background: var(--success-tint); border: 1px solid var(--success); color: #1E5A38; padding: 18px 20px; border-radius: var(--radius); margin-top: 16px; font-weight: 600; }
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--text-on-dark-muted); padding: 72px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 48px; border-bottom: 1px solid var(--border-dark); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--text-on-dark-muted); font-size: 0.9rem; margin-top: 14px; max-width: 32ch; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: var(--text-on-dark-muted); text-decoration: none; font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: 0.82rem; }
.footer-bottom a { color: var(--text-on-dark-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }
.footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- Misc ---------- */
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; }
.tag { font-size: 0.78rem; font-weight: 700; background: var(--accent-tint); color: var(--accent-2); padding: 5px 12px; border-radius: 999px; }
.divider { height: 1px; background: var(--border); margin: 48px 0; }
.related-links { display: grid; gap: 10px; }
.related-links a { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--accent-2); font-weight: 700; font-size: 0.95rem; }
.related-links a:hover { text-decoration: underline; }

.stat-block { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 780px) { .stat-block { grid-template-columns: 1fr 1fr; } }
.stat-block .num { font-size: 2.2rem; font-weight: 800; color: var(--accent); display: block; }
.stat-block .lbl { color: var(--text-on-dark-muted); font-size: 0.9rem; margin-top: 4px; }

.badge-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.badge-item { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 16px; font-weight: 700; font-size: 0.9rem; }
.badge-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); flex-shrink: 0; }

.content-needed { background: var(--accent-tint); border: 1px dashed var(--accent); color: var(--accent-2); padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 700; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }

.list-check { display: grid; gap: 12px; }
.list-check li { padding-left: 30px; position: relative; }
.list-check li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--success-tint); color: var(--success); font-size: 0.75rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }

/* Dark-background variant (e.g. hero panels) — gold checkmark instead of green */
.list-check-dark { color: var(--text-on-dark-muted); }
.list-check-dark li::before { background: rgba(201,146,46,0.18); color: var(--accent); }

.audit-form-wrap { max-width: 640px; margin: 0 auto; }

.article-body h2 { margin-top: 40px; margin-bottom: 14px; }
.article-body h3 { margin-top: 28px; margin-bottom: 10px; }
.article-body p { margin-bottom: 16px; color: var(--text); }
.article-body ul { margin: 0 0 16px; padding-left: 22px; display: block; list-style: disc; }
.article-body ol { margin: 0 0 16px; padding-left: 22px; display: block; list-style: decimal; }
.article-body ul li, .article-body ol li { margin-bottom: 8px; }
.article-meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--text-muted); font-size: 0.88rem; margin-bottom: 8px; }

.insight-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; height: 100%; }
.insight-card .tag { align-self: flex-start; margin-bottom: 12px; }
.insight-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.insight-card p { color: var(--text-muted); font-size: 0.92rem; flex: 1; }
.insight-card a.card-link { margin-top: 14px; }
.insight-card.soon { opacity: 0.6; }

.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .portfolio-grid { grid-template-columns: 1fr; } }
.portfolio-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-decoration: none; display: block; box-shadow: var(--shadow-sm); transition: box-shadow .25s ease, transform .25s ease; }
.portfolio-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.portfolio-thumb {
  aspect-ratio: 16/10; background: linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 100%);
  display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 800;
  font-size: 1.1rem; text-align: center; padding: 20px; position: relative; overflow: hidden;
}
.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .5s ease; }
.portfolio-card:hover .portfolio-thumb img { transform: scale(1.08); }
.portfolio-thumb .shot-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11,29,51,0.75) 100%);
  display: flex; align-items: flex-end; justify-content: center; padding: 16px;
  opacity: 0; transition: opacity .25s ease;
}
.portfolio-card:hover .shot-overlay { opacity: 1; }
.shot-overlay span { color: var(--white); font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }
.portfolio-info { padding: 18px 20px; }
.portfolio-info h3 { font-size: 1.05rem; margin-bottom: 4px; }
.portfolio-info p { color: var(--text-muted); font-size: 0.88rem; }
.portfolio-info .visit { display: inline-block; margin-top: 10px; font-size: 0.85rem; font-weight: 700; color: var(--accent-2); }

.case-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 28px; }
.case-block .case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
@media (max-width: 780px) { .case-block .case-grid { grid-template-columns: 1fr; } }
.case-block .case-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 8px; }

.town-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 640px) { .town-list { grid-template-columns: repeat(2, 1fr); } }
.town-list li { padding: 10px 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; }
