/* ═══════════════════════════════════════════════════
   TRAFFIKR — style.css  (shared across all 6 page templates)
   Apple-inspired. Dark. Premium startup aesthetic.

   Canonical, single source of truth for the shared design
   system: reset, tokens, light theme, buttons, nav, page-hero,
   ticker, cards, cta-strip, footer, whatsapp-fab, scroll-reveal,
   and the shared responsive rules.

   Page-unique content (about-story, svc-full, pricing, blog
   grid, contact form/FAQ, hero/services-preview/bento/process/
   testimonials on the homepage, etc.) lives in a small scoped
   <style> block inside each page-*.php template — see that
   file's own inline "PAGE-SPECIFIC" style block.
═══════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════
   TRAFFIKR — style.css  (shared across all pages)
   Apple-inspired. Dark. Premium startup aesthetic.
═══════════════════════════════════════════════════ */

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #000000;
  --white:       #ffffff;
  --gray-50:     #f9f9f9;
  --gray-100:    #f2f2f2;
  --gray-200:    #e0e0e0;
  --gray-400:    #aaaaaa;
  --gray-600:    #666666;
  --gray-900:    #1a1a1a;

  --accent:      #0071e3;
  --accent-lt:   #2997ff;
  --accent-dk:   #004fc0;

  --c-blue:      #0071e3;
  --c-purple:    #7c3aed;
  --c-pink:      #ec4899;
  --c-teal:      #0d9488;
  --c-orange:    #ea580c;
  --c-green:     #16a34a;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;

  --ease:        cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* THEME TOKENS (flip in [data-theme="light"]) */
  --bg:          #000000;
  --bg-rgb:      0,0,0;
  --fg:          #ffffff;
  --fg-rgb:      255,255,255;
  --surface-1:   #0a0a0a;   /* section--dark / section--alt bg */
  --surface-2:   #0d0d0d;   /* card backgrounds */
  --surface-3:   #1a1a1a;   /* dropdown option bg */
}

/* ── LIGHT THEME ────────────────────────────────── */
[data-theme="light"] {
  --bg:          #ffffff;
  --bg-rgb:      255,255,255;
  --fg:          #14141a;
  --fg-rgb:      20,20,26;
  --surface-1:   #f7f7f8;
  --surface-2:   #ffffff;
  --surface-3:   #f0f0f2;
}
[data-theme="light"] .nav.scrolled { border-color: rgba(var(--fg-rgb),0.08); }
[data-theme="light"] .contact-form-wrap,
[data-theme="light"] .team-card,
[data-theme="light"] .contact-method,
[data-theme="light"] .blog-newsletter { box-shadow: 0 1px 3px rgba(0,0,0,0.06); }


html { scroll-behavior: smooth; font-size: 16px; }

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

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ── CONTAINER ──────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── UTILITY ────────────────────────────────────── */
@media (max-width: 768px) { .hide-mobile { display: none !important; } }


/* ══════════════════════════════════════════════════
   SEARCH BUTTON & OVERLAY
══════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: all 0.22s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}
.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent-lt); transform: scale(1.02); }
.btn--outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(var(--fg-rgb),0.25);
  transition: all 0.22s var(--ease);
}
.btn--outline:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: scale(1.02);
}
/* FIX 1: Neutral outline — no blue fill on hover (opt-in via extra class) */
.btn--outline-neutral:hover {
  background: rgba(var(--fg-rgb), 0.06);
  border-color: rgba(var(--fg-rgb), 0.4);
  color: var(--fg);
}
.btn--ghost { color: var(--accent-lt); background: transparent; }
.btn--ghost:hover { color: var(--fg); }
.btn--lg { padding: 15px 28px; font-size: 16px; }

/* ══════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s var(--ease), border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(var(--bg-rgb),0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-color: rgba(var(--fg-rgb),0.08);
  box-shadow: 0 1px 0 rgba(var(--fg-rgb),0.05), 0 8px 24px rgba(var(--bg-rgb),0.35);
}
.nav__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

/* ── SERVICES DROPDOWN (simple) ───────────────────── */
.nav__item--dropdown { position: relative; }
.nav__item--dropdown::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; min-width: 220px; height: 10px; }
.nav__dropdown-trigger {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; color: rgba(var(--fg-rgb),0.65);
  padding: 6px 12px; border-radius: 6px;
  transition: color 0.2s; text-decoration: none;
}
.nav__dropdown-trigger:hover, .nav__item--dropdown:hover .nav__dropdown-trigger { color: var(--fg); }
.nav__dropdown-trigger svg { transition: transform 0.2s var(--ease); }
.nav__item--dropdown:hover .nav__dropdown-trigger svg { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 220px;
  background: rgba(var(--bg-rgb), 0.96);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid rgba(var(--fg-rgb), 0.1);
  border-radius: var(--r-md); padding: 6px;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  z-index: 999;
}
.nav__item--dropdown:hover .nav__dropdown {
  opacity: 1; pointer-events: all;
  transform: translateY(0);
}
.nav__dropdown a {
  font-size: 13px; color: rgba(var(--fg-rgb),0.7);
  padding: 9px 12px; border-radius: 6px;
  text-decoration: none; transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav__dropdown a:hover { background: rgba(var(--fg-rgb),0.06); color: var(--fg); }
.nav__dropdown-divider { height: 1px; background: rgba(var(--fg-rgb),0.08); margin: 6px 4px; }
.nav__dropdown a.nav__dropdown-all { color: var(--accent-lt); font-weight: 500; }

.nav__mobile .mega-mob-trigger {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; font-size: 16px; color: rgba(var(--fg-rgb),0.7);
  border-bottom: 1px solid rgba(var(--fg-rgb),0.06);
  background: none; border-left: none; border-right: none; border-top: none;
  width: 100%; font-family: var(--font); cursor: pointer;
  transition: color 0.2s;
}
.nav__mobile .mega-mob-trigger:hover { color: var(--fg); }
.nav__mobile .mega-mob-trigger svg { transition: transform 0.2s; }
.nav__mobile .mega-mob-trigger.open svg { transform: rotate(180deg); }
.nav__mobile .mega-mob-list {
  display: none; flex-direction: column;
  padding: 8px 0 4px 12px; gap: 2px;
}
.nav__mobile .mega-mob-list.open { display: flex; }
.nav__mobile .mega-mob-list a {
  font-size: 14px; padding: 8px 0; color: rgba(var(--fg-rgb),0.6);
  border-bottom: none !important; display: flex; align-items: center; gap: 8px;
}
.nav__mobile .mega-mob-list a:hover { color: var(--fg); }

.nav__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg);
  justify-self: start;
}

.nav__logo img.logo-mark { height: 30px; width: auto; display: block; }
[data-theme="light"] .js-logo-mark--ondark { display: none !important; }
[data-theme="light"] .js-logo-mark--onlight { display: block !important; }
.footer__brand .nav__logo img.logo-mark { height: 36px; }

.footer__logo { display: inline-block; }
.footer__logo img.footer-logo-img { height: 130px; width: auto; display: block; }
@media (max-width: 640px) { .footer__logo img.footer-logo-img { height: 108px; } }
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  justify-content: center;
}
.nav__links a {
  font-size: 13px;
  color: rgba(var(--fg-rgb),0.65);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--fg); }
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-self: end;
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--fg);
  background: rgba(var(--fg-rgb),0.06);
  border: 1px solid rgba(var(--fg-rgb),0.1);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.theme-toggle:hover { background: rgba(var(--fg-rgb),0.12); transform: scale(1.05); }
.theme-toggle__icon { width: 16px; height: 16px; }
.theme-toggle__icon--sun { display: none; }
[data-theme="light"] .theme-toggle__icon--moon { display: none; }
[data-theme="light"] .theme-toggle__icon--sun { display: block; }
.theme-toggle--mobile {
  width: auto;
  height: auto;
  border-radius: 980px;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-family: var(--font);
}
.nav__mobile-theme-row { padding-top: 8px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--fg);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav__mobile {
  display: none;
  padding: 1rem 2rem 1.5rem;
  background: rgba(var(--bg-rgb),0.96);
  border-top: 1px solid rgba(var(--fg-rgb),0.08);
}
.nav__mobile.open { display: block; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 0.25rem; }
.nav__mobile a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: rgba(var(--fg-rgb),0.7);
  border-bottom: 1px solid rgba(var(--fg-rgb),0.06);
  transition: color 0.2s;
}
.nav__mobile a:hover { color: var(--fg); }
.mob-cta {
  display: inline-block !important;
  margin-top: 1rem;
  background: var(--accent);
  color: var(--white) !important;
  padding: 12px 24px !important;
  border-radius: 980px;
  text-align: center;
  border: none !important;
}

/* ══════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════ */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.25;
}
.page-hero__orb--1 {
  width: 500px; height: 500px;
  top: -200px; left: -100px;
}
.page-hero__orb--2 {
  width: 400px; height: 400px;
  bottom: -150px; right: -50px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-lt);
  background: rgba(0,113,227,0.12);
  border: 1px solid rgba(0,113,227,0.3);
  padding: 6px 16px;
  border-radius: 980px;
  margin-bottom: 1.75rem;
}
.page-hero__title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 1.25rem;
}
.page-hero__title .grad {
  background: linear-gradient(135deg, var(--accent-lt) 0%, #a855f7 55%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(var(--fg-rgb),0.55);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

/* ══════════════════════════════════════════════════
   SECTIONS — SHARED
══════════════════════════════════════════════════ */
.section { padding: 96px 0; }
.section--alt { background: var(--surface-1); }
.section--dark { background: var(--surface-1); }

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-lt);
  margin-bottom: 1rem;
  display: block;
}
.section__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.section__desc {
  font-size: 1rem;
  color: rgba(var(--fg-rgb),0.5);
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════ */
.ticker {
  overflow: hidden;
  background: rgba(var(--fg-rgb),0.025);
  border-top: 1px solid rgba(var(--fg-rgb),0.05);
  border-bottom: 1px solid rgba(var(--fg-rgb),0.05);
  padding: 14px 0;
}
.ticker__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}
.ticker__track span {
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--fg-rgb),0.35);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.ticker__dot { color: var(--accent-lt) !important; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════
   CARDS — shared
══════════════════════════════════════════════════ */
.card {
  background: var(--surface-2);
  border: 1px solid rgba(var(--fg-rgb),0.07);
  border-radius: var(--r-xl);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.card:hover {
  border-color: rgba(var(--fg-rgb),0.15);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  background: var(--surface-1);
  border-top: 1px solid rgba(var(--fg-rgb),0.06);
  padding: 5rem 0 2.5rem;
  width: 100%;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer__brand p {
  font-size: 14px;
  color: rgba(var(--fg-rgb),0.38);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 260px;
}
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
}
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(var(--fg-rgb),0.04);
  border: 1px solid rgba(var(--fg-rgb),0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(var(--fg-rgb),0.45);
  transition: background 0.2s, color 0.2s;
}
.social-icon:hover { background: rgba(var(--fg-rgb),0.1); color: var(--fg); }
.social-icon svg { width: 15px; height: 15px; }
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__col a {
  font-size: 13px;
  color: rgba(var(--fg-rgb),0.38);
  transition: color 0.2s;
}
.footer__col a:hover { color: rgba(var(--fg-rgb),0.8); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(var(--fg-rgb),0.06);
}
.footer__bottom p { font-size: 13px; color: rgba(var(--fg-rgb),0.28); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a {
  font-size: 13px;
  color: rgba(var(--fg-rgb),0.28);
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(var(--fg-rgb),0.7); }

/* ══════════════════════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s var(--ease-spring), box-shadow 0.25s;
  color: var(--white);
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.whatsapp-fab svg { width: 26px; height: 26px; }

/* ══════════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }
.reveal--d3 { transition-delay: 0.24s; }
.reveal--d4 { transition-delay: 0.32s; }


/* ══════════════════════════════════════════════════
   CTA STRIP — shared (used on Home / About / Services / Service-single)
══════════════════════════════════════════════════ */
/* Homepage — CTA strip */
.cta-strip {
  background: linear-gradient(135deg, rgba(0,113,227,0.12) 0%, rgba(124,58,237,0.1) 100%);
  border: 1px solid rgba(0,113,227,0.2);
  border-radius: var(--r-xl);
  padding: 4rem 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.cta-strip h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
}
.cta-strip p {
  font-size: 1rem;
  color: rgba(var(--fg-rgb),0.5);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-strip__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════
   FAQ ACCORDION — shared (used on Contact / Service-single)
   Toggle behavior lives in traffikr-js/main.js. The hover
   color defaults to --accent-lt; pages with their own accent
   (e.g. service-single's --svc-accent) override just that one
   declaration in their page-specific <style> block.
══════════════════════════════════════════════════ */
.faq-item {
  border-bottom: 1px solid rgba(var(--fg-rgb),0.07);
  padding: 1rem 0;
}
.faq-q {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent-lt); }
.faq-q span { font-size: 18px; color: rgba(var(--fg-rgb),0.3); transition: transform 0.25s; }
.faq-a {
  font-size: 13.5px;
  color: rgba(var(--fg-rgb),0.42);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease), padding 0.35s;
}
.faq-a.open { max-height: 200px; padding-top: 0.75rem; }
.faq-item.open .faq-q span { transform: rotate(45deg); }


/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-preview__grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__card--wide { grid-column: span 2; }
  .bento__card--tall { grid-row: auto; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full__grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process tablet: 2×2 layout, arrow only between cols */
  .process__steps {
    grid-template-columns: 1fr 60px 1fr;
    grid-template-rows: auto auto;
    row-gap: 3rem;
  }
  .process__steps .process__step:nth-child(1) { grid-column: 1; grid-row: 1; }
  .process__steps .process__arrow:nth-child(2) { grid-column: 2; grid-row: 1; }
  .process__steps .process__step:nth-child(3) { grid-column: 3; grid-row: 1; }
  .process__steps .process__arrow:nth-child(4) { display: none; }
  .process__steps .process__step:nth-child(5) { grid-column: 1; grid-row: 2; }
  .process__steps .process__arrow:nth-child(6) { display: none; }
  .process__steps .process__step:nth-child(7) { grid-column: 3; grid-row: 2; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 64px 0; }
  .nav__links, .nav__actions { display: none; }
  .nav__hamburger { display: flex; justify-self: end; }
  .nav__inner { grid-template-columns: 1fr auto; }

  .hero { padding: 100px 0 60px; }
  .hero__stats { grid-template-columns: 1fr; padding: 1.5rem; gap: 1.25rem; }
  .hero__stat-divider { display: none; }

  .services-preview__grid { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento__card--wide { grid-column: auto; }
  .testi-grid { grid-template-columns: 1fr; }

  /* Process mobile: vertical timeline (circle node + connecting line),
     matches page-service-single.php pattern — no rotated SVGs. */
  .process__steps {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .process__arrow { display: none !important; }
  .process__steps .process__step {
    display: block;
    grid-column: auto;
    grid-row: auto;
    text-align: left;
    padding: 0 0 2rem 3.25rem;
    margin: 0;
    position: relative;
    min-height: 34px;
  }
  .process__step-num {
    width: 34px;
    height: 34px;
    font-size: 12px;
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
  }
  .process__step::after {
    content: '';
    position: absolute;
    left: 16px;
    top: 34px;
    bottom: -4px;
    width: 1px;
    background: rgba(var(--fg-rgb),0.15);
  }
  .process__step:last-child { padding-bottom: 0; }
  .process__step:last-child::after { display: none; }

  .services-full__grid { grid-template-columns: 1fr; }
  .svc-full__list { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-story { grid-template-columns: 1fr; gap: 3rem; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-group--full { grid-column: auto; }
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { text-align: center; justify-content: center; }
  .footer__nav { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .cta-strip { padding: 2.5rem 1.5rem; }
  .container { padding: 0 1rem; }
  .srv-card, .svc-full, .bento__card { padding: 1.5rem; }
  .process__steps { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
html:not(.theme-switching)*,html:not(.theme-switching)*::before,html:not(.theme-switching)*::after{transition:background-color .3s ease,color .3s ease,border-color .3s ease !important}
