/* ============================================================
   SAWIRI SYSTEMS — styles.css
   Inspired by wavelinknetworks.co.ke (dark navy + magenta)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --navy-950: #060b1a;
  --navy-900: #0a1328;
  --navy-850: #0d1a36;
  --navy-800: #10203f;
  --navy-700: #1a2f5c;

  --pink: #e0228e;
  --pink-dark: #c11c84;
  --pink-light: #ff5fb7;
  --magenta: #c11c84;
  --cyan: #25d7f0;

  --ink: #0d1f3a;
  --body: #45536e;
  --line: #e6ebf4;
  --light-bg: #f6f8fb;
  --white: #ffffff;

  --grad: linear-gradient(100deg, var(--pink-light) 0%, var(--pink) 45%, var(--magenta) 100%);
  --grad-soft: linear-gradient(120deg, rgba(224,34,142,.14), rgba(37,215,240,.10));

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 18px rgba(13,31,58,.06);
  --shadow-md: 0 14px 40px rgba(13,31,58,.10);
  --shadow-glow: 0 10px 40px rgba(224,34,142,.35);

  --font-display: "Sora", "Inter", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --container: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.15; letter-spacing: -.02em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 300;
  background: var(--pink); color: #fff; padding: 10px 18px; border-radius: 10px; font-weight: 600;
}
.skip-link:focus { left: 8px; }

::selection { background: var(--pink); color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(224,34,142,.45); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: var(--pink-light); color: var(--pink-light); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--pink); border-color: rgba(224,34,142,.45); }
.btn-outline:hover { background: var(--grad); border-color: transparent; color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.btn-light { background: #fff; color: var(--pink-dark); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.25); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: #fff; color: var(--pink-dark); transform: translateY(-3px); }
.btn-lg { padding: 16px 34px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-phone { background: var(--grad); color: #fff; padding: 11px 22px; font-size: 14px; box-shadow: var(--shadow-glow); }
.btn-phone:hover { transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  background: rgba(6,11,26,.55);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled { background: rgba(6,11,26,.92); box-shadow: 0 10px 40px rgba(0,0,0,.35); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { color: var(--pink-light); filter: drop-shadow(0 4px 14px rgba(224,34,142,.5)); }
.brand-text {
  font-family: var(--font-display); font-weight: 800; font-size: 21px; color: #fff; letter-spacing: -.02em;
}
.brand-text em { font-style: normal; color: var(--pink-light); }

.nav-links { display: flex; gap: 6px; }
.nav-links a {
  position: relative; color: rgba(255,255,255,.82); font-weight: 500; font-size: 15px;
  padding: 9px 14px; border-radius: 10px; transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--grad); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: #fff; }
.nav-links a.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 10px; }
.nav-toggle span { width: 24px; height: 2.5px; background: #fff; border-radius: 3px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  display: none; background: rgba(6,11,26,.98); border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 24px 28px;
}
.mobile-menu.open { display: block; animation: fadeDown .3s var(--ease); }
.mobile-menu nav { display: flex; flex-direction: column; margin-bottom: 18px; }
.mobile-menu nav a {
  position: relative; color: #fff; font-weight: 600; font-size: 17px;
  padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s, padding-left .25s var(--ease);
}
.mobile-menu nav a:hover, .mobile-menu nav a.active { color: var(--pink-light); }
.mobile-menu nav a.active { padding-left: 14px; }
.mobile-menu nav a.active::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 18px; border-radius: 3px; background: var(--grad);
}
@keyframes fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff;
  background: radial-gradient(1200px 700px at 75% -10%, #1a2f5c 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  padding: 176px 0 0;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(900px 600px at 50% 20%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(900px 600px at 50% 20%, #000 30%, transparent 75%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; animation: float 9s ease-in-out infinite; }
.orb-a { width: 480px; height: 480px; background: rgba(224,34,142,.32); top: -140px; right: -120px; }
.orb-b { width: 380px; height: 380px; background: rgba(37,215,240,.16); bottom: -120px; left: -80px; animation-delay: -4s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-26px); } }

.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  padding: 9px 16px; border-radius: 999px; font-size: 13.5px; font-weight: 600; color: #dfe7f5;
  margin-bottom: 26px; backdrop-filter: blur(6px);
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--pink-light);
  box-shadow: 0 0 0 0 rgba(255,95,183,.6); animation: pulse 2s infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,95,183,.55); } 70% { box-shadow: 0 0 0 9px rgba(255,95,183,0); } 100% { box-shadow: 0 0 0 0 rgba(255,95,183,0); } }

.hero h1 {
  font-size: clamp(38px, 4.6vw, 60px); font-weight: 800; color: #fff; line-height: 1.08; margin-bottom: 22px;
}
.grad-text {
  background: linear-gradient(95deg, var(--pink-light), var(--pink) 55%, var(--cyan));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 18px; color: #b7c2d8; max-width: 34em; margin-bottom: 34px; }
.hero-sub strong { color: #fff; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.hero-trust { display: flex; align-items: center; gap: 12px; color: #b7c2d8; font-size: 14.5px; }
.hero-trust strong { color: #fff; }
.stars { color: #ffc24b; letter-spacing: 2px; font-size: 15px; }

/* Hero visual */
.hero-visual { position: relative; }
.net-card {
  position: relative; z-index: 2;
  background: linear-gradient(160deg, rgba(26,47,92,.85), rgba(13,26,54,.9));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px; padding: 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  animation: cardIn 1s var(--ease) both;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: none; } }
.net-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.net-ssid { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 600; font-size: 15px; }
.wifi-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.net-live { font-size: 12px; font-weight: 700; color: #7df0b0; letter-spacing: 1px; }
.speed-row { display: flex; align-items: center; gap: 26px; margin-bottom: 22px; }
.gauge {
  --g: 82%;
  width: 108px; height: 108px; border-radius: 50%; flex: none;
  background: conic-gradient(var(--pink) var(--g), rgba(255,255,255,.09) 0);
  display: grid; place-items: center; position: relative;
}
.gauge::before {
  content: ""; position: absolute; inset: 10px; border-radius: 50%;
  background: #0e1c3c;
}
.gauge span { position: relative; font-family: var(--font-display); font-size: 27px; font-weight: 800; color: #fff; line-height: 1; }
.gauge em { position: relative; font-style: normal; font-size: 11px; color: var(--pink-light); font-weight: 600; display: block; text-align: center; margin-top: 3px; }
.speed-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; flex: 1; }
.speed-meta strong { display: block; color: #fff; font-size: 15px; }
.meta-label { font-size: 12px; color: #8fa0bd; }
.bar-chart {
  display: flex; align-items: flex-end; gap: 6px; height: 64px; margin-bottom: 20px;
  padding: 12px 14px; background: rgba(255,255,255,.04); border-radius: 14px; border: 1px solid rgba(255,255,255,.07);
}
.bar-chart span {
  flex: 1; height: var(--h); border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--pink-light), var(--pink-dark));
  animation: grow 1.2s var(--ease) both; transform-origin: bottom;
}
.bar-chart span:nth-child(even) { background: linear-gradient(180deg, #4ad8ee, #0f7f96); }
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.net-foot { display: flex; gap: 22px; color: #b7c2d8; font-size: 13.5px; font-weight: 500; }
.net-foot span { display: inline-flex; align-items: center; gap: 8px; }
.tick {
  display: inline-block; width: 17px; height: 17px; border-radius: 50%; flex: none;
  background: rgba(125,240,176,.16); border: 1px solid rgba(125,240,176,.5); position: relative;
}
.tick::after {
  content: ""; position: absolute; left: 4px; top: 3px; width: 7px; height: 4px;
  border-left: 2px solid #7df0b0; border-bottom: 2px solid #7df0b0; transform: rotate(-45deg);
}
.float-chip {
  position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px); color: #fff; font-weight: 600; font-size: 13.5px;
  padding: 11px 18px; border-radius: 999px; box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.float-chip svg { color: var(--cyan); }
.chip-a { top: -22px; left: -18px; animation: bob 5s ease-in-out infinite; }
.chip-b { bottom: 30%; right: -26px; animation: bob 6s ease-in-out infinite .8s; }
.chip-c { bottom: -18px; left: 12%; animation: bob 5.5s ease-in-out infinite .4s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Inner page hero (no visual / centered copy) ---------- */
.hero.hero--page { padding: 168px 0 84px; }
.hero--page .hero-inner { grid-template-columns: 1fr; gap: 0; }
.hero--page .hero-copy { max-width: 780px; margin: 0 auto; text-align: center; }
.hero--page .hero-sub { margin-left: auto; margin-right: auto; }
.hero--page .hero-cta { justify-content: center; }
.hero--page .hero-trust { justify-content: center; }

/* ---------- Home explore grid ---------- */
.explore-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.explore-card { display: block; }
.explore-card h3 { font-size: 18px; margin-bottom: 8px; }
.explore-card p { font-size: 14.5px; margin-bottom: 16px; }
.explore-card .txt-link {
  display: inline-block; color: var(--pink); font-weight: 600; font-size: 14px;
  transition: letter-spacing .25s var(--ease);
}
.explore-card:hover .txt-link { letter-spacing: .4px; }

/* Hero stats bar */
.hero-stats {
  position: relative; margin-top: 74px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 30px 0 34px;
}
.stat { text-align: center; padding: 0 12px; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.1); }
.stat-num {
  display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3vw, 38px);
  color: #fff; line-height: 1.1;
}
.stat-label { display: block; margin-top: 4px; color: #93a3c0; font-size: 13.5px; font-weight: 500; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--grad); color: #fff; overflow: hidden; padding: 13px 0;
}
.marquee-track {
  display: flex; gap: 0; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  display: inline-flex; align-items: center; gap: 26px; padding-right: 26px;
  font-family: var(--font-display); font-weight: 700; font-size: 14.5px; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
}
.marquee-track span::after { content: "✦"; font-size: 11px; opacity: .7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS / SHARED
   ============================================================ */
.section { padding: 104px 0; }
.section.dark {
  background: radial-gradient(1100px 600px at 85% -10%, #16284d 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  color: #b7c2d8;
}
.section.dark h2, .section.dark h3 { color: #fff; }
.section.light { background: var(--white); }

.sec-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.sec-head-left { margin: 0 0 52px; text-align: left; max-width: 640px; }
.kicker {
  display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 12.5px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--pink);
  background: rgba(224,34,142,.09); border: 1px solid rgba(224,34,142,.22);
  padding: 7px 15px; border-radius: 999px; margin-bottom: 18px;
}
.sec-head h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 800; margin-bottom: 16px; }
.sec-head p { font-size: 17px; }

/* Keep the "What We Offer" heading on one continuous line */
.sec-head .nowrap-line {
  white-space: nowrap;
  font-size: clamp(15px, 4.6vw, 33px);
}

/* Reveal on scroll (kept BEFORE card hovers so hover transforms win) */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

/* Cards */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(224,34,142,.35); }
.card-icon {
  display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 15px;
  background: var(--grad-soft); color: var(--pink); margin-bottom: 20px;
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.why-card:hover .card-icon, .svc-card:hover .card-icon {
  background: var(--grad); color: #fff; transform: rotate(-6deg) scale(1.06);
  box-shadow: var(--shadow-glow);
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { font-size: 15px; }


/* ============================================================
   WHY SAWIRI
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-list { margin-bottom: 64px; }
.svc-item {
  display: grid; grid-template-columns: 70px 1fr 40px; gap: 22px; align-items: center;
  padding: 26px 18px; border-radius: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s, padding-left .3s var(--ease);
}
.svc-item:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.svc-item:hover { background: rgba(255,255,255,.045); padding-left: 30px; }
.svc-num {
  font-family: var(--font-display); font-weight: 800; font-size: 30px;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .9;
}
.svc-txt h3 { font-size: 20px; margin-bottom: 5px; }
.svc-txt p { font-size: 15px; color: #93a3c0; max-width: 60ch; }
.svc-arrow {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.2); color: #fff; transition: background .3s, color .3s, transform .3s var(--ease);
}
.svc-item:hover .svc-arrow { background: var(--grad); border-color: transparent; transform: rotate(45deg); }

.svc-cards { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-bottom: 64px; }
.svc-card .txt-link {
  display: inline-block; margin-top: 14px; font-weight: 600; font-size: 14px; color: var(--pink);
  transition: letter-spacing .25s var(--ease), color .2s;
}
.svc-card:hover .txt-link { letter-spacing: .4px; }

.stat-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg);
  padding: 34px 20px; background: rgba(255,255,255,.03);
}
.stat-band .stat-num { font-size: clamp(24px, 2.6vw, 34px); }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column; padding: 30px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(224,34,142,.4); }
.price-name {
  font-size: 17px; font-weight: 700; letter-spacing: .03em; margin-bottom: 10px;
  color: var(--pink); text-transform: uppercase;
}
.price-amt {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 2.4vw, 34px);
  color: var(--ink); line-height: 1.05; margin-bottom: 20px;
}
.price-cur { font-size: .55em; font-weight: 700; color: var(--body); vertical-align: super; margin-right: 2px; }
.price-per { font-size: .42em; font-weight: 600; color: var(--body); }
.price-feats { flex: 1; margin-bottom: 26px; }
.price-feats li {
  display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: var(--body); padding: 6.5px 0;
}
.price-feats .tick { width: 15px; height: 15px; background: rgba(224,34,142,.1); border-color: rgba(224,34,142,.4); }
.price-feats .tick::after { left: 3.5px; top: 2.5px; width: 6px; height: 3.5px; }
.price-grid .price-pop {
  border: 2px solid var(--pink); box-shadow: 0 20px 60px rgba(224,34,142,.18);
  transform: scale(1.03);
}
.price-grid .price-pop:hover { transform: scale(1.03) translateY(-8px); }
.price-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: .06em; padding: 6px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: var(--shadow-glow);
}
.price-note { text-align: center; margin-top: 34px; font-size: 15px; }
.price-note a { color: var(--pink); font-weight: 700; }

/* ============================================================
   PROCESS
   ============================================================ */
.steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  margin-bottom: 46px; counter-reset: step;
}
.step {
  position: relative; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
  padding: 34px 22px 26px; background: rgba(255,255,255,.03);
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.step:hover { transform: translateY(-6px); background: rgba(255,255,255,.06); border-color: rgba(224,34,142,.45); }
.step-num {
  position: absolute; top: -18px; left: 20px;
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 17px;
  box-shadow: var(--shadow-glow);
}
.step h3 { font-size: 16.5px; margin: 12px 0 8px; }
.step p { font-size: 14px; color: #93a3c0; }
.step p a { color: var(--pink-light); font-weight: 600; }
.steps-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ENTERPRISE / TABS
   ============================================================ */
.tabs {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 34px;
}
.tab-btn {
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  color: var(--body); background: var(--white); border: 1.5px solid var(--line);
  padding: 12px 24px; border-radius: 999px;
  transition: all .25s var(--ease);
}
.tab-btn:hover { border-color: rgba(224,34,142,.5); color: var(--pink); transform: translateY(-2px); }
.tab-btn.active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: var(--shadow-glow); }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp .45s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.tab-body {
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 46px; background: var(--white); box-shadow: var(--shadow-md);
}
.tab-body > * { min-width: 0; }
.tab-content h3 { font-size: 27px; margin-bottom: 12px; }
.tab-content > p { font-size: 16px; max-width: 56ch; margin-bottom: 20px; }
.tab-list { margin-bottom: 28px; }
.tab-list li {
  display: flex; align-items: flex-start; gap: 12px; font-size: 15px;
  padding: 6px 0; color: var(--body);
}
.tab-list .tick { margin-top: 3px; }
.tab-art {
  display: grid; place-items: center; width: 190px; height: 190px;
  border-radius: 30px; background: var(--grad-soft); flex: none;
}
.tab-art-icon svg {
  width: 62px; height: 62px; color: var(--pink);
  filter: drop-shadow(0 8px 24px rgba(224,34,142,.35));
}

/* ============================================================
   COVERAGE
   ============================================================ */
.coverage-chips { display: flex; flex-wrap: wrap; gap: 13px; max-width: 720px; margin-bottom: 26px; }
.chip {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  color: #dfe7f5; font-weight: 600; font-size: 14.5px;
  padding: 11px 22px; border-radius: 999px;
  transition: all .25s var(--ease);
}
.chip:hover { background: var(--grad); border-color: transparent; color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.chip-more {
  border-style: dashed; color: var(--pink-light);
  background: rgba(224,34,142,.08); border-color: rgba(224,34,142,.45);
}
.coverage-note { font-size: 15.5px; }
.coverage-note::before { content: "\260E"; color: var(--pink-light); margin-right: 9px; font-size: 16px; }

/* Coverage chips on light sections (e.g. coverage inside the services page) */
.section.light .chip {
  background: rgba(224,34,142,.06);
  border-color: rgba(224,34,142,.24);
  color: var(--ink);
}
.section.light .chip:hover { background: var(--grad); border-color: transparent; color: #fff; }
.section.light .chip-more {
  border-style: dashed; color: var(--pink);
  background: rgba(224,34,142,.08); border-color: rgba(224,34,142,.45);
}
.section.light .coverage-note::before { color: var(--pink); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { display: grid; grid-template-columns: 400px 1fr; gap: 56px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: border-color .3s, box-shadow .3s;
}
.faq-item[open] { border-color: rgba(224,34,142,.4); box-shadow: var(--shadow-md); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  list-style: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 16.5px; color: var(--ink);
  padding: 22px 26px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--pink); }
.faq-chev {
  flex: none; font-size: 22px; color: var(--pink); line-height: 1;
  transition: transform .35s var(--ease);
}
.faq-item[open] .faq-chev { transform: rotate(180deg); }
.faq-body { padding: 0 26px 24px; font-size: 15px; max-width: 70ch; }
.faq-body p { margin-bottom: 8px; }
.faq-body a { color: var(--pink); font-weight: 600; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative; padding: 90px 0;
  background: linear-gradient(110deg, var(--pink-dark) 0%, var(--pink) 45%, #b10f7c 100%);
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(700px 320px at 50% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(700px 320px at 50% 50%, #000, transparent 80%);
}
.cta-inner { position: relative; text-align: center; color: #fff; }
.cta-inner h2 { color: #fff; font-size: clamp(30px, 3.8vw, 46px); margin-bottom: 14px; }
.cta-inner p { font-size: 17px; margin-bottom: 34px; opacity: .92; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   TAGLINE BAND
   ============================================================ */
.tagline-band { background: var(--white); padding: 54px 0; }
.tagline-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 24px;
}
.tagline-word {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(24px, 3.4vw, 38px); letter-spacing: -.01em;
  color: var(--ink);
}
.tagline-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); opacity: .5; flex: none; }
.tagline-brand {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ============================================================
   MARKDOWN PAGE CONTENT (semi-dynamic)
   ============================================================ */
/* Uses the standard .section padding + .sec-head rhythm so the dynamic
   content matches every other section on the site. */
.md-section .sec-head { margin-bottom: 0; }
.md-render {
  max-width: 780px; margin: 0 auto;
  color: var(--body);
}
.md-render h1, .md-render h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 44px); font-weight: 800;
  color: var(--ink); line-height: 1.15; letter-spacing: -.02em;
  margin: 0 0 16px;
}
.md-render h3, .md-render h4 {
  font-family: var(--font-display);
  color: var(--ink); line-height: 1.2; letter-spacing: -.02em;
  margin: 34px 0 10px;
}
.md-render h3 { font-size: 20px; font-weight: 700; }
.md-render h4 { font-size: 17px; font-weight: 700; }
.md-render p { font-size: 17px; color: var(--body); line-height: 1.65; margin-bottom: 18px; }
.md-render ul, .md-render ol { margin: 0 0 22px; padding-left: 26px; }
.md-render li { font-size: 16px; color: var(--body); margin-bottom: 9px; line-height: 1.6; }
.md-render li strong { color: var(--ink); }
.md-render ul li::marker { color: var(--pink); }
.md-render ol li::marker { color: var(--pink); font-weight: 700; }
.md-render a {
  color: var(--pink); font-weight: 600; text-decoration: underline;
  text-underline-offset: 3px; transition: color .2s;
}
.md-render a:hover { color: var(--pink-dark); }
.md-render blockquote {
  margin: 28px 0; padding: 18px 24px;
  background: var(--grad-soft);
  border-left: 4px solid var(--pink);
  border-radius: 0 14px 14px 0;
}
.md-render blockquote p { margin: 0; font-size: 17px; font-weight: 500; color: var(--ink); }
.md-render code {
  background: var(--light-bg); border: 1px solid var(--line);
  border-radius: 6px; padding: 2px 7px; font-size: .9em; color: var(--pink-dark);
}
.md-render hr { border: 0; border-top: 1px solid var(--line); margin: 34px 0; }

/* No-JS fallback banner — only rendered when JavaScript is disabled,
   so visitors always see an explanation instead of a bare page. */
.noscript-banner {
  position: relative; z-index: 200;
  padding: 14px 20px;
  background: #fff3f0; color: #7c1d12;
  border-bottom: 1px solid rgba(124,29,18,.15);
  font-family: var(--font-body); font-size: 14px; line-height: 1.5;
  text-align: center;
}
.noscript-banner strong { font-family: var(--font-display); font-weight: 600; }
/* Defensive: <noscript> content only exists in the DOM when JS is off
   (so no-js stays set), but if JS ever runs late this hides the banner. */
html:not(.no-js) .noscript-banner { display: none; }

/* Why page: six promises as numbered smart tiles (inspired by the
   Simple Process .steps grid on the services page) */
.md-tiles .sec-head { margin-bottom: 44px; }
.md-tiles .md-render { max-width: none; margin: 0; }
.md-tiles .md-render h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; color: var(--ink);
  text-align: center; margin: 0 0 36px;
}
.md-tiles .md-render ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  counter-reset: promise;
}
.md-tiles .md-render li {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 42px 22px 26px;
  margin: 0;
  counter-increment: promise;
  font-size: 15px; color: var(--body); line-height: 1.65;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.md-tiles .md-render li::before {
  content: counter(promise, decimal-leading-zero);
  position: absolute; top: -16px; left: 20px;
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--grad); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  box-shadow: var(--shadow-glow);
}
.md-tiles .md-render li:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224,34,142,.4);
}
.md-tiles .md-render li strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700; font-size: 17px;
  color: var(--ink);
  margin-bottom: 8px;
}
.md-tiles .md-render blockquote {
  max-width: 640px; margin: 36px auto 0;
}

/* Services page: Our Approach — "What makes our services different"
   rendered as numbered feature cards matching the site's card language
   (Why-page tiles / svc-cards), plus a callout band for the CTA copy. */
.md-services .sec-head { margin-bottom: 44px; }
.md-services .md-render { max-width: none; margin: 0; }
.md-services .md-render h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; color: var(--ink);
  text-align: center; margin: 0 0 36px;
}
.md-services .md-render ul {
  list-style: none; padding: 0; margin: 0 0 56px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
  counter-reset: approach;
}
.md-services .md-render ul + h3 { margin-top: 8px; }
.md-services .md-render li {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 42px 22px 26px;
  margin: 0;
  counter-increment: approach;
  font-size: 15px; color: var(--body); line-height: 1.65;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.md-services .md-render li::before {
  content: counter(approach, decimal-leading-zero);
  position: absolute; top: -16px; left: 20px;
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--grad); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  box-shadow: var(--shadow-glow);
}
.md-services .md-render li:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(224,34,142,.4);
}
.md-services .md-render li strong {
  display: block; font-family: var(--font-display);
  font-weight: 700; font-size: 17px; color: var(--ink); margin-bottom: 8px;
}
.md-services .md-render h3 + p {
  max-width: 720px; margin: 0 auto 44px;
  text-align: center; font-size: 16px;
  background: var(--grad-soft);
  border: 1px solid rgba(224,34,142,.16);
  border-radius: var(--radius-lg);
  padding: 30px 34px;
}
.md-services .md-render h3 + p a {
  display: inline-block; margin: 2px 4px;
  background: rgba(224,34,142,.09); border: 1px solid rgba(224,34,142,.28);
  border-radius: 999px; padding: 4px 14px;
  text-decoration: none; font-weight: 600;
  transition: background .25s, color .25s, border-color .25s, transform .25s var(--ease);
}
.md-services .md-render h3 + p a:hover {
  background: var(--grad); border-color: transparent; color: #fff;
  transform: translateY(-2px);
}
.md-services .md-render blockquote {
  max-width: 640px; margin: 0 auto;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.contact-info h2 { color: #fff; font-size: clamp(28px, 3vw, 38px); margin-bottom: 14px; }
.contact-info > p { font-size: 16.5px; margin-bottom: 34px; }
.contact-list { display: flex; flex-direction: column; gap: 22px; }
.contact-list li { display: flex; gap: 18px; align-items: flex-start; }
.c-ico {
  flex: none; width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-soft); border: 1px solid rgba(224,34,142,.35);
  color: var(--pink-light); font-size: 19px;
}
.c-label { display: block; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: #8fa0bd; margin-bottom: 2px; }
.contact-list a, .contact-list span:last-child { color: #fff; font-weight: 600; font-size: 16px; }
.contact-list a:hover { color: var(--pink-light); }

.contact-form {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 38px;
  backdrop-filter: blur(8px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; color: #dfe7f5; margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.14);
  border-radius: 13px; color: #fff; font-family: inherit; font-size: 15px;
  padding: 13px 16px; transition: border-color .25s, background .25s, box-shadow .25s;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #7b8cab; }
.form-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #b7c2d8 50%), linear-gradient(135deg, #b7c2d8 50%, transparent 50%); background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.form-field select option { color: var(--ink); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--pink); background: rgba(224,34,142,.07);
  box-shadow: 0 0 0 4px rgba(224,34,142,.14);
}
.form-status { margin-top: 14px; font-size: 14.5px; font-weight: 600; text-align: center; min-height: 22px; }
.form-status.ok { color: #7df0b0; }
.form-status.err { color: #ff8fa3; }
.form-status .form-resend {
  display: block; margin: 12px auto 0;
  padding: 9px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent; color: inherit;
  font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: .02em;
  cursor: pointer;
  transition: background .25s, color .25s, transform .25s var(--ease);
}
.form-status .form-resend:hover,
.form-status .form-resend:focus-visible {
  background: currentColor; color: #fff;
  transform: translateY(-1px);
  outline: none;
}

/* Contact section on a white background (contact page) */
#contact.section.light .contact-info h2 { color: var(--ink); }
#contact.section.light .c-label { color: var(--body); }
#contact.section.light .contact-list a,
#contact.section.light .contact-list span:last-child { color: var(--ink); }
#contact.section.light .contact-list a:hover { color: var(--pink); }
#contact.section.light .c-ico { color: var(--pink); border-color: rgba(224,34,142,.35); }
#contact.section.light .contact-form {
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}
#contact.section.light .form-field label { color: var(--ink); }
#contact.section.light .form-field input,
#contact.section.light .form-field select,
#contact.section.light .form-field textarea {
  background: var(--light-bg);
  border-color: var(--line);
  color: var(--ink);
}
#contact.section.light .form-field input::placeholder,
#contact.section.light .form-field textarea::placeholder { color: #93a3c0; }
#contact.section.light .form-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--body) 50%), linear-gradient(135deg, var(--body) 50%, transparent 50%);
}
#contact.section.light .form-field input:focus,
#contact.section.light .form-field select:focus,
#contact.section.light .form-field textarea:focus {
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(224,34,142,.14);
}
#contact.section.light .form-status.ok { color: #16a34a; }
#contact.section.light .form-status.err { color: #dc2626; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-950); color: #93a3c0; padding: 74px 0 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px;
  padding-bottom: 56px;
}
.footer-brand p { font-size: 14.5px; max-width: 34ch; margin: 16px 0 22px; }
.brand-footer .brand-text { font-size: 19px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  color: #fff; font-size: 15.5px; font-weight: 700; margin-bottom: 8px;
  letter-spacing: .02em;
}
.footer-col a, .footer-col span { font-size: 14.5px; color: #93a3c0; transition: color .2s, transform .2s var(--ease); width: fit-content; }
.footer-col a:hover { color: var(--pink-light); transform: translateX(4px); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  border-top: 1px solid rgba(255,255,255,.07); padding: 22px 24px; font-size: 13.5px;
}

/* WhatsApp chat bubble */
.wa-bubble {
  position: fixed; left: 26px; bottom: 26px; z-index: 150;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(145deg, #3ee573 0%, #25d366 55%, #18a94e 100%);
  color: #fff;
  box-shadow:
    0 12px 32px rgba(37,211,102,.45),
    inset 0 1px 0 rgba(255,255,255,.4),
    inset 0 -2px 6px rgba(0,84,34,.28);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-bubble::after {
  content: ""; position: absolute; inset: -2px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.55);
  animation: waPing 2.6s var(--ease) infinite;
}
.wa-bubble:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 46px rgba(37,211,102,.55),
    inset 0 1px 0 rgba(255,255,255,.4),
    inset 0 -2px 6px rgba(0,84,34,.28);
}
.wa-bubble:focus-visible {
  outline: 3px solid rgba(37,211,102,.55); outline-offset: 3px;
}
.wa-icon {
  width: 30px; height: 30px;
  color: #fff;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,.22));
}
@keyframes waPing {
  0% { transform: scale(.9); opacity: .9; }
  70%, 100% { transform: scale(1.4); opacity: 0; }
}
.wa-label {
  position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--navy-900); color: #fff;
  font-family: var(--font-display); font-weight: 600; font-size: 13px;
  padding: 9px 16px; border-radius: 999px; white-space: nowrap;
  opacity: 0; visibility: hidden; pointer-events: none;
  box-shadow: var(--shadow-md);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.wa-label::after {
  content: ""; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--navy-900);
}
.wa-bubble:hover .wa-label { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }

/* Back to top */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 150;
  width: 50px; height: 50px; border-radius: 50%; border: 0;
  background: var(--grad); color: #fff; font-size: 20px;
  box-shadow: var(--shadow-glow);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: all .3s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-4px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .md-tiles .md-render ul { grid-template-columns: repeat(2, 1fr); }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { max-width: 560px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-cards { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .price-pop { transform: none; }
  .price-pop:hover { transform: translateY(-8px); }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 28px 20px; }
  .tab-body { grid-template-columns: 1fr; }
  .tab-art { justify-self: center; }
  .faq-wrap { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  /* 3 feature cards: drop straight to 1 column to avoid an orphan in 2-col */
  .md-services .md-render ul { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: 84px 0; }
  .hero { padding-top: 148px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 640px) {
  .md-tiles .md-render ul { grid-template-columns: 1fr; }
  .tagline-inner { flex-direction: column; gap: 8px; }
  .tagline-dot { display: none; }
  .explore-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .svc-cards { grid-template-columns: 1fr; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 26px 0; }
  .stat:nth-child(3) { border-left: 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .tab-body { grid-template-columns: 1fr; padding: 30px 24px; }
  .svc-item { grid-template-columns: 52px 1fr; }
  .svc-arrow { display: none; }
  .tab-art { width: 120px; height: 120px; }
  .tab-art-icon svg { width: 44px; height: 44px; }
  .float-chip { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .btn-phone span { display: none; }
  .btn-phone { padding: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* No-JS fallback: never hide reveal content when scripts are disabled */
html.no-js .reveal { opacity: 1; transform: none; }
