/* ============================================================
   SlydrTech — International Marketing Agency
   Dark theme · no frameworks · fully responsive
   ============================================================ */

:root {
  --bg: #0a0e14;
  --bg-soft: #0f1420;
  --bg-card: #131a29;
  --bg-card-hover: #18213466;
  --border: #1f2a40;
  --text: #e8edf5;
  --text-muted: #a7b3c6;
  --accent: #4ade80;
  --accent-soft: rgba(74, 222, 128, 0.12);
  --accent-2: #38bdf8;
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1140px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  --font-head: "Sora", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 88px 0; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
}

.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 14px; }
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #06270f;
  box-shadow: 0 6px 24px rgba(74, 222, 128, 0.25);
}
.btn-primary:hover { box-shadow: 0 10px 32px rgba(74, 222, 128, 0.35); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-whatsapp {
  background: #25d366;
  color: #06270f;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 14, 20, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(10, 14, 20, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.18s ease;
}
.nav-links a:hover, .nav-links a.active, .nav-links a[aria-current="page"] { color: var(--text); }
.nav-links .btn { padding: 10px 20px; font-size: 0.88rem; }
.nav-links .btn-primary, .nav-links .btn-whatsapp { color: #06270f; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 102;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 6px auto;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: 170px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -240px; right: -180px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.13) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -300px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.09) 0%, transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  color: var(--text-muted);
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--accent-soft); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0.06); }
}

/* Sample dashboard mock */
.dashboard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  position: relative;
}
.dashboard-label {
  position: absolute;
  top: -12px; left: 22px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 12px;
}
.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.dashboard-top h3 { font-size: 0.95rem; font-weight: 600; }
.badge-rank {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 4px 12px;
}
.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 130px;
  margin-bottom: 20px;
}
.dash-bars span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(74, 222, 128, 0.25) 100%);
  animation: grow 1.1s ease both;
}
@keyframes grow { from { height: 0 !important; } }
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.dash-metric {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.dash-metric b { display: block; font-size: 1.05rem; font-family: var(--font-head); }
.dash-metric small { color: var(--text-muted); font-size: 0.72rem; }

/* ---------- Stats band ---------- */
.stats-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 44px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.stat b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--accent);
}
.stat span { color: var(--text-muted); font-size: 0.92rem; }

/* ---------- Cards / grids ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 222, 128, 0.4);
  background: var(--bg-card-hover);
}
.card .icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  background: var(--accent-soft);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
.card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.95rem; }
.card .list-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 18px;
}
.card ul { margin-top: 10px; }
.card ul li {
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}
.card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px 24px 28px;
}
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 18px; left: 24px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { color: var(--text-muted); font-size: 0.92rem; }

/* ---------- Founding Client Programme ---------- */
.founding {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}
.founding-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 999px;
  padding: 8px 18px;
  margin-top: 32px;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 20px 22px;
  cursor: pointer;
}
.faq-q::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  padding: 0 22px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, rgba(56, 189, 248, 0.08) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 64px 40px;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 14px; }
.cta-band p { color: var(--text-muted); max-width: 520px; margin: 0 auto 30px; }
.cta-band .hero-ctas { justify-content: center; margin-bottom: 0; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 160px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -260px; left: 50%;
  transform: translateX(-50%);
  width: 720px; height: 540px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.1) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 16px; position: relative; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 620px; margin: 0 auto; position: relative; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info .card { margin-bottom: 18px; }
.contact-info .card h3 { display: flex; align-items: center; gap: 10px; }

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-group label .req { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 13px 15px;
  transition: border-color 0.18s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-status { margin-top: 16px; font-size: 0.92rem; display: none; }
.form-status.ok { display: block; color: var(--accent); }
.form-status.err { display: block; color: #f87171; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-grid h4 { font-size: 0.95rem; margin-bottom: 16px; }
.footer-grid p, .footer-grid a {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.footer-grid li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .dash-bars span { animation: none; }
}

/* ---------- 404 ---------- */
.err-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}
.err-page h1 {
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--accent);
  line-height: 1;
}
.err-page p { color: var(--text-muted); margin: 16px 0 30px; }

/* ---------- Pricing ---------- */
.price-card { position: relative; display: flex; flex-direction: column; }
.price-card .price {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  margin: 6px 0 2px;
}
.price-card .price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.price-card .price-inr {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.price-card .btn { margin-top: auto; justify-content: center; }
.price-card ul { margin-bottom: 24px; }
.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(74, 222, 128, 0.07) 0%, var(--bg-card) 60%);
}
.price-card .plan-tag {
  position: absolute;
  top: -13px; right: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #06270f;
  background: var(--accent);
  border-radius: 999px;
  padding: 4px 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(10, 14, 20, 0.98);
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 101;
  }
  .nav-links.open { opacity: 1; visibility: visible; }
  .nav-links a { font-size: 1.15rem; }
  .nav-links .btn { font-size: 1rem; padding: 12px 28px; }
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .cards-grid, .cards-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  section { padding: 64px 0; }
  .hero { padding: 130px 0 70px; }

  .cards-grid, .cards-grid.cols-2, .cards-grid.cols-4,
  .process-grid, .stats-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 24px; }
  .form-card { padding: 26px 20px; }
}

/* ============================================================
   Additions: skip link, floating WhatsApp, blog, legal, forms
   ============================================================ */

/* ---------- Skip-to-content (a11y) ---------- */
.skip-link {
  position: fixed;
  top: -60px;
  left: 12px;
  z-index: 1000;
  background: var(--accent);
  color: #06270f;
  font-family: var(--font-head);
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; outline: none; }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #06270f;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  animation: waPulse 2.6s infinite;
  transition: transform 0.18s ease;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25), 0 0 0 10px rgba(37, 211, 102, 0.08); }
}
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }

/* ---------- Honeypot + form consent ---------- */
.hp-field {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-consent {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}
.form-consent a { color: var(--accent); }

/* ---------- Footer legal row ---------- */
.footer-legal a:hover { color: var(--accent); }

/* ---------- Blog cards ---------- */
.post-card { display: flex; flex-direction: column; }
.post-card h3 { margin: 6px 0 10px; }
.post-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 999px;
  padding: 4px 12px;
}
.post-meta { color: var(--text-muted); font-size: 0.82rem; margin-top: auto; padding-top: 14px; }
.post-card.post-soon { opacity: 0.72; }
.post-card.post-soon:hover { transform: none; border-color: var(--border); background: var(--bg-card); }

/* ---------- Blog post (article) ---------- */
.post { padding: 130px 0 80px; }
.post-narrow { max-width: 760px; }
.breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 22px; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 6px; }
.post h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 14px 0 12px; }
.post-lead { font-size: 1.15rem; color: var(--text); margin: 22px 0; }
.post h2 { font-size: 1.35rem; margin: 34px 0 10px; }
.post p { color: var(--text-muted); margin-bottom: 14px; }
.post a:not(.btn) { color: var(--accent); }
.post strong { color: var(--text); }

/* ---------- Legal / prose pages ---------- */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.3rem; margin: 32px 0 10px; }
.legal p, .legal li { color: var(--text-muted); }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 14px; padding-left: 0; }
.legal li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
.legal li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.legal a { color: var(--accent); }
.legal strong { color: var(--text); }
.legal-updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; }
.legal-note {
  margin-top: 32px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}

/* ---------- Homepage AI highlight band ---------- */
.ai-highlight {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.10) 0%, rgba(56, 189, 248, 0.08) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px;
}
.ai-highlight h3 { font-size: clamp(1.3rem, 2.6vw, 1.6rem); margin: 6px 0 12px; }
.ai-highlight p { color: var(--text-muted); margin-bottom: 22px; }
.ai-highlight-tags { display: flex; flex-direction: column; gap: 12px; }
.ai-highlight-tags span {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
}
@media (max-width: 760px) {
  .ai-highlight { grid-template-columns: 1fr; padding: 28px 24px; gap: 24px; }
}

/* ---------- "AI" capability badge inside service lists ---------- */
.ai-pill {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #06270f;
  background: var(--accent);
  border-radius: 4px;
  padding: 1px 5px;
  margin-right: 6px;
  vertical-align: middle;
}

/* ============================================================
   AEO / GEO components
   These blocks exist so AI assistants (ChatGPT, Gemini,
   Perplexity, Google AI Overviews) can lift a clean, factual
   answer straight off the page and cite us.
   ============================================================ */

/* ---------- Answer box: the short, quotable answer ---------- */
.answer-box {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.07), rgba(56, 189, 248, 0.05));
  border: 1px solid rgba(74, 222, 128, 0.28);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin: 0 auto 48px;
  max-width: 860px;
}
.answer-box h2,
.answer-box h3 {
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.answer-box p { color: var(--text); font-size: 1.02rem; }
.answer-box p + p { margin-top: 12px; }
.answer-box strong { color: var(--accent); font-weight: 600; }

/* ---------- Key facts list: scannable, machine-readable pairs ---------- */
.key-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px auto;
  max-width: 940px;
}
.key-facts > div {
  background: var(--bg-card);
  padding: 20px 22px;
}
.key-facts dt {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.key-facts dd {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
  margin: 0;
}

/* ---------- Q&A content blocks ---------- */
.qa-block { max-width: 820px; margin: 0 auto; }
.qa-block > div + div { margin-top: 38px; }
.qa-block h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: var(--text);
}
.qa-block p { color: var(--text-muted); }
.qa-block p + p { margin-top: 12px; }
.qa-block strong { color: var(--text); }
.qa-block a:not(.btn) { color: var(--accent); }

/* ---------- Comparison / spec table ---------- */
.table-wrap { overflow-x: auto; margin: 32px 0; -webkit-overflow-scrolling: touch; }
.spec-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec-table caption {
  caption-side: top;
  text-align: left;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding-bottom: 12px;
}
.spec-table th,
.spec-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.spec-table thead th {
  font-family: var(--font-head);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--bg-soft);
}
.spec-table tbody th {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.spec-table td { color: var(--text-muted); }
.spec-table tbody tr:last-child th,
.spec-table tbody tr:last-child td { border-bottom: none; }

/* ---------- Trust row ---------- */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.trust-row span b { color: var(--text); font-weight: 600; }

/* ---------- Article table of contents ---------- */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 30px 0;
}
.toc h2 {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.toc ol { padding-left: 20px; color: var(--text-muted); }
.toc li { margin-bottom: 7px; font-size: 0.95rem; }
.toc a { color: var(--text-muted); }
.toc a:hover { color: var(--accent); }

/* ---------- Author / freshness byline (E-E-A-T signal) ---------- */
.byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 26px 0 30px;
}
.byline b { color: var(--text); font-weight: 600; }
.byline .sep { opacity: 0.4; }

/* ---------- Section anchor links ---------- */
.anchor-h {
  scroll-margin-top: 96px;
}

@media (max-width: 680px) {
  .answer-box { padding: 22px 20px; }
  .key-facts { grid-template-columns: 1fr; }
}

/* ---------- Heading-level fixes (semantics unchanged visually) ---------- */
.footer-grid .footer-head {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.dashboard-top .dashboard-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ---------- Inline prose links ----------
   Links inside a block of text must not rely on colour alone to be
   recognisable — underline them so they read as links to everyone. */
.legal a,
.post p a:not(.btn),
.post li a:not(.btn),
.qa-block p a:not(.btn),
.answer-box a:not(.btn),
.form-consent a,
.faq-a a:not(.btn) {
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}
.legal a:hover,
.post p a:not(.btn):hover,
.qa-block p a:not(.btn):hover,
.answer-box a:not(.btn):hover,
.form-consent a:hover {
  text-decoration-thickness: 2px;
}

/* Breadcrumb links sit inline with plain text separators, so colour alone
   is not enough to mark them as links. */
.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}
.breadcrumb a:hover { text-decoration-thickness: 2px; }

/* Phone / email shown as a real, selectable detail on contact cards. */
.contact-detail {
  margin-top: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
}
.contact-detail a { color: var(--accent); }
.contact-detail a:hover { text-decoration: underline; text-underline-offset: 0.18em; }
