/* Vantage Consultants — landing page
   Fonts: Barlow Condensed (display) + Barlow (text), loaded in index.html
   Brand gradient: linear-gradient(to left, #3533cd, #212121) */

:root {
  --accent: #3533cd;
  --accent-100: #eeeefc;
  --accent-200: #d9d8f8;
  --accent-300: #b8b7f1;
  --accent-400: #8f8de8;
  --accent-700: #2a28a4;
  --ink: #17171b;
  --paper: #f6f6f8;
  --line: rgba(23, 23, 27, 0.12);
  --line-dark: rgba(255, 255, 255, 0.16);
  --display: "Barlow Condensed", system-ui, sans-serif;
  --text: "Barlow", system-ui, sans-serif;
  --gradient: linear-gradient(to left, #3533cd, #212121);
  --edge: clamp(20px, 5vw, 72px);
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink);
  font-family: var(--text); font-size: 16px; line-height: 1.6; font-weight: 400;
  text-wrap: pretty; -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { font-family: var(--display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.04; margin: 0; }
p { margin: 0; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-700); }
img { display: block; max-width: 100%; }
svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
::selection { background: rgba(53, 51, 205, 0.22); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.shell { max-width: 1350px; margin: 0 auto; }
.kicker { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.kicker-light { color: #a9a8ff; }
.note { font-size: 12.5px; margin-top: 22px; color: rgba(23, 23, 27, 0.45); }

/* — buttons — */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 0; border-radius: 999px; padding: 14px 26px; cursor: pointer;
  font-family: var(--text); font-weight: 600; font-size: 15.5px; line-height: 1;
  transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;
}
.btn svg { width: 16px; height: 16px; flex: none; }
.btn-lg { padding: 17px 32px; font-size: 16.5px; }
.btn-block { width: 100%; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--accent-400); color: #fff; transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--accent); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-700); }
.btn-outline { background: none; border: 1px solid var(--line-dark); color: #fff; font-weight: 500; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.4); }

/* — image media & placeholders — */
.ph {
  position: relative; aspect-ratio: var(--ratio, 4/3); width: 100%; height: 100%;
  display: grid; place-items: center; text-align: center;
  background: repeating-linear-gradient(135deg, rgba(53,51,205,.06) 0 10px, rgba(53,51,205,.02) 10px 20px);
  color: rgba(23, 23, 27, 0.5);
}
.ph-label { font-size: 12.5px; line-height: 1.5; padding: 12px; }
.ph-label em { font-style: normal; opacity: .6; }
.media { position: relative; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); }
.media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-wide img { aspect-ratio: 16 / 9; }
.hero-media .media:not(.media-wide) img { aspect-ratio: 4 / 3; height: 100%; }

/* — header — */
.nav-header {
  position: relative;
  z-index: 50;
  padding: 8px 0 55px;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2.6vw, 34px);
  padding: 12px 24px;
  background: rgba(23, 23, 27, 0.45);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; color: #fff; }
.brand-name { font-family: var(--display); font-weight: 600; font-size: 24px; letter-spacing: 0.01em; }
.brand-name em { font-style: normal; font-weight: 400; font-size: 20px; color: rgba(255, 255, 255, 0.9); }
.nav-links { display: flex; gap: clamp(12px, 2vw, 28px); }
.nav-links a { font-size: 14.5px; font-weight: 500; color: rgba(255, 255, 255, 0.72); white-space: nowrap; }
.nav-links a:hover { color: #fff; }

.nav-contact {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #ffffff;
  color: #0f172a !important;
  border-radius: 999px;
  padding: 10px 22px;
  font-family: var(--text);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-phone-btn:hover {
  opacity: 0.93;
  transform: translateY(-1px);
}
.nav-phone-btn svg {
  fill: #0f172a;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: #ffffff !important;
  border-radius: 999px;
  padding: 10px 22px;
  font-family: var(--text);
  font-size: 14.5px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none !important;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.btn-whatsapp:hover {
  background: #20bd5a;
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: none !important;
}

/* — hero trust card — */
.hero-trust-card {
  height: 100%;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.trust-kicker {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a9a8ff;
  display: block;
}
.hero-trust-card h4 {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  margin: 6px 0 14px;
  color: #fff;
}
.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-list li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-list .chk {
  color: #10b981;
  font-weight: 700;
  font-size: 14px;
}

/* — hero — */
.hero { position: relative; overflow: hidden; padding-top: 25px; padding-bottom: 60px; background: var(--gradient); color: #fff; }
.hero-glow { position: absolute; top: -22%; left: 38%; width: min(760px, 90%); height: 120%; pointer-events: none; background: radial-gradient(circle at 50% 50%, rgba(120, 118, 255, .55), rgba(53, 51, 205, 0) 62%); animation: sheen 18s ease-in-out infinite; }
.hero-grid-lines { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 88px 88px; -webkit-mask-image: radial-gradient(circle at 30% 40%, #000, transparent 78%); mask-image: radial-gradient(circle at 30% 40%, #000, transparent 78%); }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.chip { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px; border: 1px solid var(--line-dark); border-radius: 999px; background: rgba(255,255,255,.06); font-size: 13px; color: rgba(255,255,255,.86); }
.chip i { width: 7px; height: 7px; border-radius: 999px; background: #7f7dff; }
.hero h1 { font-size: clamp(42px, 5.6vw, 68px); margin: 16px 0 0; }
.hero h1 .grad { display: block; background: linear-gradient(90deg, #fff 20%, #a9a8ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { font-size: clamp(16px, 1.3vw, 19px); line-height: 1.62; font-weight: 400; margin-top: 26px; max-width: 52ch; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 36px; }
.stats { display: flex; flex-wrap: wrap; gap: clamp(22px, 3.4vw, 48px); margin: 44px 0 0; padding-top: 26px; border-top: 1px solid var(--line-dark); }
.stats dt { font-family: var(--display); font-weight: 600; font-size: clamp(30px, 2.6vw, 40px); line-height: 1; font-variant-numeric: tabular-nums; }
.stats dd { margin: 8px 0 0; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.58); }
.hero-media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; }
.hero-media .media, .hero-media .ph { border-color: var(--line-dark); }
.media-wide { grid-column: 1 / -1; }

.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  backdrop-filter: blur(10px);
  color: #fff;
  white-space: nowrap;
}
.google-badge-logo {
  height: 20px;
  width: auto;
  display: block;
}
.google-badge-stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 1;
}
.google-badge-info {
  font-family: var(--text);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}
.google-badge-info strong {
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}
.hero-chips { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 35px;}
.hero-chips span { display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--line-dark); border-radius: 999px; padding: 9px 16px 9px 14px; font-size: 13.5px; background: rgba(255,255,255,.05); color: rgba(255,255,255,.82); }
.hero-chips i { flex: none; font-style: normal; font-weight: 700; font-size: 12.5px; line-height: 1; color: #34d399; }

/* — ticker — */
.ticker { display: flex; width: max-content; padding: 15px 0; background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.08); animation: marquee 40s linear infinite; }
.ticker-row { display: flex; }
.ticker-row span { display: flex; align-items: center; gap: 26px; padding-right: 26px; font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.78); white-space: nowrap; }
.ticker-row i { width: 5px; height: 5px; border-radius: 999px; background: #6c6af0; }

/* — section shells — */
.section { 
  padding-top: 80px;
  padding-bottom: 80px;
}
.section-flush { padding-top: clamp(20px, 3vw, 44px); padding-bottom: clamp(56px, 6vw, 96px); }
.section-white { background: #fff;}
.section-gradient { position: relative; overflow: hidden; background: var(--gradient); color: #fff; }
.section-gradient .shell { position: relative; }
.glow { position: absolute; pointer-events: none; animation: sheen 22s ease-in-out infinite; }
.glow-right { right: -10%; top: -30%; width: min(620px, 80%); height: 130%; background: radial-gradient(circle at 50% 50%, rgba(130,128,255,.42), rgba(53,51,205,0) 65%); }
.glow-left { left: -8%; bottom: -60%; width: min(680px, 90%); height: 150%; background: radial-gradient(circle at 50% 50%, rgba(130,128,255,.4), rgba(53,51,205,0) 64%); }
.section-head { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px, 4vw, 72px); align-items: end; }
.section-head h2 { font-size: clamp(32px, 3.9vw, 58px); margin-top: 16px; }
.section-head p { font-size: 17px; line-height: 1.66; font-weight: 400; color: rgba(23,23,27,.7); }
.section-head-light { margin-top: 16px; }
.section-head-light h2 { margin-top: 0; }
.section-head-light p { color: rgba(255,255,255,.72); }

/* — services (sticky stack) — */
.stack { display: flex; flex-direction: column; gap: clamp(20px, 2.4vw, 32px); margin-top: clamp(44px, 5vw, 80px); }
.service {
  position: sticky; top: calc(96px + var(--i) * 22px);
  display: grid; grid-template-columns: 1fr 1.15fr;
  border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; overflow: hidden;
  transition: border-color .3s ease;
}
.service-flip .service-media { order: 2; }
.service-media { position: relative; min-height: 300px; }
.service-media .ph, .service-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.service-body { padding: clamp(26px, 3vw, 46px); }
.service-meta { display: flex; align-items: center; gap: 12px; }
.service-meta .num { font-family: var(--display); font-weight: 600; font-size: 14px; letter-spacing: .1em; color: var(--accent); }
.service-meta .rule { flex: 1; height: 1px; background: var(--line); }
.service-meta .tag { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(23,23,27,.5); }
.service h3 { font-size: clamp(26px, 2.7vw, 38px); margin-top: 22px; }
.service-body > p { margin-top: 14px; font-size: 16px; line-height: 1.66; font-weight: 400; max-width: 50ch; color: rgba(23,23,27,.68); }
.pills { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 24px 0 0; padding: 0; }
.pills li { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 999px; padding: 9px 15px; font-size: 14px; color: rgba(23,23,27,.82); transition: border-color .2s ease, background .2s ease; }
.pills li::before { content: ""; width: 5px; height: 5px; border-radius: 999px; background: var(--accent); }
.pills li:hover { border-color: var(--accent-300); background: var(--accent-100); }
.service .btn { margin-top: 30px; }

/* — why-us cards — */
.cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(18px, 2vw, 26px); margin-top: clamp(40px, 4.6vw, 68px); }
.card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px 24px 28px; background: var(--paper); transition: border-color .28s ease, transform .28s ease, background .28s ease; }
.card:hover { border-color: var(--accent-300); background: #fff; transform: translateY(-4px); }
.card .badge { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--accent-100); color: var(--accent-700); font-family: var(--display); font-weight: 600; font-size: 16px; }
.card h4 { font-size: 23px; margin-top: 20px; }
.card p { margin-top: 10px; font-size: 15px; line-height: 1.62; font-weight: 400; color: rgba(23,23,27,.66); }
.card-plain { margin-top: 26px; background: #fff; }
.card-plain h4 { font-size: 21px; margin: 0; }
.card-plain p { margin: 8px 0 18px; }

/* — industries — */
.tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 2vw, 24px); margin-top: clamp(40px, 4.6vw, 68px); }
.tile { position: relative; margin: 0; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); }
.tile img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 16 / 11; transition: transform .4s ease; }
.tile:hover img { transform: scale(1.04); }
.tile figcaption { position: absolute; inset: auto 0 0 0; padding: 34px 18px 16px; background: linear-gradient(to top, rgba(23,23,27,.88), rgba(23,23,27,0)); color: #fff; font-family: var(--display); font-weight: 600; font-size: 19px; pointer-events: none; }
.chips-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(16px, 2vw, 24px); }
.ind-chip { flex: 1 1 190px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 18px 20px; background: #fff; font-family: var(--display); font-weight: 600; font-size: 19px; transition: border-color .25s ease, color .25s ease; }
.ind-chip em { font-family: var(--text); font-style: normal; font-weight: 500; font-size: 12.5px; color: rgba(23,23,27,.38); }
.ind-chip:hover { border-color: var(--accent-300); color: var(--accent-700); }

/* — process timeline — */
.rail { --rail-gap: clamp(14px, 1.8vw, 26px); list-style: none; margin: clamp(40px, 4.6vw, 68px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--rail-gap); }
.rail-step { position: relative; }
.rail-step:not(:last-child)::before { content: ""; position: absolute; top: 25px; left: 62px; right: calc(-1 * var(--rail-gap)); height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.36), rgba(255,255,255,.09)); }
.rail-node { position: relative; display: grid; place-items: center; width: 50px; height: 50px; border-radius: 999px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.07); backdrop-filter: blur(6px); font-family: var(--display); font-weight: 600; font-size: 17px; letter-spacing: .04em; color: #fff; transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s ease; }
.rail-node::after { content: ""; position: absolute; inset: -5px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); opacity: 0; transition: opacity .3s ease; }
.rail-step:hover .rail-node { background: #fff; border-color: #fff; color: var(--ink); transform: translateY(-3px); }
.rail-step:hover .rail-node::after { opacity: 1; }
.rail-tag { display: block; margin-top: 22px; font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #a9a8ff; }
.rail-step h4 { font-size: 21px; margin-top: 10px; }
.rail-step p { margin-top: 10px; font-size: 14.5px; line-height: 1.62; font-weight: 400; color: rgba(255,255,255,.7); }

.process-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: clamp(30px, 3vw, 46px); font-size: 14.5px; color: rgba(255,255,255,.66); }

/* — reviews — */
.reviews-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 28px; }
.reviews-head h2 { font-size: clamp(30px, 3.4vw, 50px); margin-top: 16px; max-width: 24ch; }
.score { display: flex; align-items: center; gap: 16px; border: 1px solid var(--line); border-radius: 18px; padding: 16px 22px; }
.score strong { font-family: var(--display); font-weight: 600; font-size: 38px; line-height: 1; }
.score span { font-size: 13.5px; line-height: 1.45; color: rgba(23,23,27,.6); }
.score-logo { height: 22px; width: auto; }
.avatar { flex: none; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 999px; background: var(--accent-100); color: var(--accent-700); font-family: var(--display); font-weight: 600; font-size: 15px; }

/* testimonial spotlight */
.tspot { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(18px, 2.2vw, 30px); margin-top: clamp(34px, 4vw, 56px); align-items: stretch; }
.tspot-stage { position: relative; overflow: hidden; display: flex; flex-direction: column; border-radius: var(--radius-lg); padding: clamp(28px, 3.4vw, 54px); background: var(--ink); color: #fff; }
.tspot-aura { position: absolute; right: -130px; top: -190px; width: 470px; height: 470px; border-radius: 999px; pointer-events: none; background: radial-gradient(circle at 50% 50%, rgba(96, 94, 240, .58), rgba(53, 51, 205, 0) 68%); animation: sheen 20s ease-in-out infinite; }
.tspot-mark { position: absolute; right: clamp(18px, 2.6vw, 40px); top: -34px; font-family: var(--display); font-weight: 700; font-size: 210px; line-height: 1; color: rgba(255,255,255,.07); pointer-events: none; user-select: none; }
.tspot-slides { position: relative; display: grid; flex: 1; }
.tspot-slide { grid-area: 1 / 1; margin: 0; display: flex; flex-direction: column; opacity: 0; transform: translateY(18px); pointer-events: none; transition: opacity .5s ease, transform .55s cubic-bezier(.22,.61,.36,1); }
.tspot-slide.is-active { opacity: 1; transform: none; pointer-events: auto; }
.tspot-topic { align-self: flex-start; padding: 7px 15px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(255,255,255,.06); font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #a9a8ff; }
.tspot-slide blockquote { margin: clamp(20px, 2.4vw, 30px) 0 0; max-width: 26ch; font-family: var(--display); font-weight: 500; font-size: clamp(25px, 2.7vw, 38px); line-height: 1.18; letter-spacing: -.015em; color: #fff; }
.tspot-slide figcaption { position: relative; margin-top: auto; padding-top: clamp(26px, 3vw, 42px); display: flex; align-items: center; gap: 14px; }
.avatar-lg { width: 52px; height: 52px; font-size: 17px; background: rgba(255,255,255,.13); color: #fff; }
.tspot-cap strong { display: block; font-family: var(--display); font-weight: 600; font-size: 19px; line-height: 1.2; color: #fff; }
.tspot-cap em { font-style: normal; font-size: 13.5px; color: rgba(255,255,255,.58); }
.tspot-stars { margin-left: auto; font-size: 14px; letter-spacing: 2px; color: #f59e0b; }
.tspot-verified { position: relative; display: flex; align-items: center; gap: 10px; margin-top: clamp(22px, 2.4vw, 30px); padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); font-size: 13px; color: rgba(255,255,255,.58); }
.tspot-verified img { width: auto; height: 15px; }
.tspot-count { margin-left: auto; font-variant-numeric: tabular-nums; }
.tspot-count b { font-weight: 600; color: #fff; }

.tspot-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.tspot-list li { flex: 1; display: flex; }
.tspot-tab { position: relative; overflow: hidden; width: 100%; display: flex; align-items: center; gap: 13px; padding: 16px 18px; text-align: left; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; cursor: pointer; font-family: var(--text); transition: border-color .25s ease, background .25s ease, transform .25s ease; }
.tspot-tab:hover { border-color: var(--accent-300); transform: translateX(-3px); }
.tspot-tab.is-active { border-color: var(--accent); background: var(--accent-100); }
.tspot-who strong { display: block; font-family: var(--display); font-weight: 600; font-size: 17px; line-height: 1.2; color: var(--ink); }
.tspot-who em { font-style: normal; font-size: 12.5px; color: rgba(23,23,27,.55); }
.tspot-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: rgba(23,23,27,.08); opacity: 0; }
.tspot-tab.is-active .tspot-progress { opacity: 1; }
.tspot-progress i { display: block; width: 0; height: 100%; background: var(--accent); }
.tspot-tab.is-active .tspot-progress i { animation: tprog var(--tspot-dur, 7s) linear forwards; }

/* — FAQ — */
.faq-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.faq-aside { position: sticky; top: clamp(24px, 6vh, 64px); }
.faq-layout h2 { font-size: clamp(32px, 3.9vw, 58px); margin-top: 16px; }
.faq-media { margin: 34px 0 0; border-radius: 22px; }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc-item { border: 1px solid var(--line); border-radius: 18px; background: #fff; overflow: hidden; transition: border-color .25s ease; }
.acc-item:hover { border-color: var(--accent-300); }
.acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px; border: 0; background: none; cursor: pointer; text-align: left; font-family: var(--display); font-weight: 600; font-size: 20px; line-height: 1.22; letter-spacing: -0.01em; color: var(--ink); transition: color .2s ease; }
.acc-head:hover { color: var(--accent-700); }
.acc-icon { position: relative; flex: none; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 999px; background: var(--accent-100); transition: transform .3s ease; }
.acc-icon i { position: absolute; background: var(--accent-700); border-radius: 2px; }
.acc-icon i:first-child { width: 14px; height: 1.6px; }
.acc-icon i:last-child { width: 1.6px; height: 14px; transition: opacity .3s ease; }
.acc-item.is-open .acc-icon { transform: rotate(135deg); }
.acc-body { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .35s ease, opacity .3s ease; }
.acc-item.is-open .acc-body { opacity: 1; }
.acc-body p { padding: 0 22px 24px; font-size: 15.5px; line-height: 1.66; font-weight: 400; color: rgba(23,23,27,.7); }

/* — CTA band (section 7) — */
.section-cta { position: relative; overflow: hidden; }
.cta-band { position: relative; text-align: center; }
.cta-band-aura { position: absolute; left: 50%; top: -46%; width: min(780px, 130%); height: 340px; transform: translateX(-50%); pointer-events: none; background: radial-gradient(ellipse at 50% 50%, rgba(53,51,205,.14), rgba(53,51,205,0) 70%); }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(34px, 4.4vw, 60px); margin-top: 18px; }
.cta-band > p { margin: 20px auto 0; max-width: 62ch; font-size: clamp(16px, 1.25vw, 18px); line-height: 1.66; font-weight: 400; color: rgba(23,23,27,.66); }
.cta-band-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 30px; margin-top: clamp(30px, 3.4vw, 40px); }
.cta-band-call { display: inline-flex; align-items: center; gap: 14px; color: var(--ink); }
.cta-band-call:hover { color: var(--accent-700); }
.cta-band-call .ci { width: 46px; height: 46px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: #fff; color: var(--accent); transition: border-color .25s ease, background .25s ease; }
.cta-band-call .ci svg { width: 19px; height: 19px; fill: currentColor; stroke: none; }
.cta-band-call:hover .ci { border-color: var(--accent-300); background: var(--accent-100); }
.cta-band-call-txt { text-align: left; font-family: var(--display); font-weight: 600; font-size: 20px; line-height: 1.1; }
.cta-band-call-txt em { display: block; margin-bottom: 5px; font-family: var(--text); font-style: normal; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(23,23,27,.45); }
.cta-band-marks { list-style: none; margin: clamp(30px, 3.4vw, 42px) 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 30px; font-size: 14px; color: rgba(23,23,27,.6); }
.cta-band-marks li { display: inline-flex; align-items: center; gap: 9px; }
.cta-band-marks li::before { content: ""; flex: none; width: 15px; height: 15px; border-radius: 999px; background: var(--accent-100); border: 1px solid var(--accent-300); }

/* — closing CTA — */
.cta-plate { position: relative; overflow: hidden; border-radius: 32px; padding: clamp(36px, 5vw, 88px); background: var(--gradient); color: #fff; }
.cta-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 4vw, 72px); align-items: start; }
.cta-inner h2 { font-size: clamp(32px, 4.2vw, 62px); line-height: 1.02; }
.contact-list { list-style: none; margin: clamp(28px, 3vw, 40px) 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; align-items: center; gap: 16px; }
.ci { flex: none; display: grid; place-items: center; width: 46px; height: 46px; border-radius: var(--radius-sm); background: rgba(255,255,255,.08); border: 1px solid var(--line-dark); color: #c9c8ff; }
.ci svg { width: 19px; height: 19px; }
.contact-list em { display: block; font-style: normal; font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #a9a8ff; margin-bottom: 4px; }
.contact-list span:last-child { font-size: 16px; line-height: 1.5; font-weight: 400; color: rgba(255,255,255,.88); }
.form-card { border: 1px solid var(--line-dark); border-radius: var(--radius-lg); padding: clamp(24px, 2.8vw, 36px); background: rgba(255,255,255,.07); backdrop-filter: blur(8px); }
.lead-form h3 { font-size: clamp(22px, 2.2vw, 28px); }
.lead-form > p { margin: 8px 0 24px; font-size: 14.5px; line-height: 1.6; font-weight: 400; color: rgba(255,255,255,.68); }
/* underline fields: placeholder is the only label, so the accent rule carries focus */
.field { position: relative; display: block; margin-bottom: 26px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-bottom: 26px; }
.field-row .field { margin-bottom: 0; }
.field::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: #fff; transform: scaleX(0); transform-origin: left;
  transition: transform .38s cubic-bezier(.22,.61,.36,1);
}
.field:focus-within::after { transform: scaleX(1); }
.lead-form input, .lead-form textarea {
  display: block; width: 100%;
  border: 0; border-bottom: 1px solid rgba(255,255,255,.26); border-radius: 0;
  padding: 12px 2px; background: transparent; color: #fff;
  font-family: var(--text); font-size: 16px; font-weight: 400; line-height: 1.5;
  letter-spacing: 0; text-transform: none;
  transition: border-color .3s ease;
}
.lead-form input:focus, .lead-form textarea:focus { outline: none; border-bottom-color: rgba(255,255,255,.4); }
.lead-form input::placeholder, .lead-form textarea::placeholder { color: rgba(255,255,255,.52); transition: color .25s ease; }
.lead-form input:focus::placeholder, .lead-form textarea:focus::placeholder { color: rgba(255,255,255,.34); }
.lead-form textarea { resize: vertical; min-height: 84px; }
/* keep autofill from repainting the transparent field */
.lead-form input:-webkit-autofill,
.lead-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 100px transparent inset;
  transition: background-color 9999s ease-in-out 0s;
}
.lead-form .btn { margin-top: 8px; }
.lead-form small { display: block; margin-top: 16px; font-size: 12px; line-height: 1.5; color: rgba(255,255,255,.5); }

.lead-form-light .field::after { background: var(--accent); }
.lead-form-light input, .lead-form-light textarea { border-bottom-color: rgba(23,23,27,.16); color: var(--ink); }
.lead-form-light input:focus, .lead-form-light textarea:focus { border-bottom-color: rgba(23,23,27,.26); }
.lead-form-light input::placeholder, .lead-form-light textarea::placeholder { color: rgba(23,23,27,.46); }
.lead-form-light input:focus::placeholder, .lead-form-light textarea:focus::placeholder { color: rgba(23,23,27,.3); }
.lead-form-light input:-webkit-autofill,
.lead-form-light input:-webkit-autofill:focus { -webkit-text-fill-color: var(--ink); }
.lead-form-light small { color: rgba(23,23,27,.5); }
.form-done .tick { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 999px; background: rgba(255,255,255,.16); font-size: 20px; }
.form-done strong { display: block; margin-top: 18px; font-family: var(--display); font-weight: 600; font-size: 26px; }
.form-done p { margin-top: 10px; font-size: 15.5px; line-height: 1.6; font-weight: 400; color: rgba(255,255,255,.74); }
.modal-card .form-done .tick { background: var(--accent-100); color: var(--accent-700); }
.modal-card .form-done p { color: rgba(23,23,27,.68); }

/* — footer — */
.footer { padding: 15px }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(26px, 4vw, 60px); }
.footer-grid > div:first-child p { margin-top: 14px; max-width: 34ch; font-size: 15px; line-height: 1.62; font-weight: 400; color: rgba(255,255,255,.62); }
.footer h5 { font-family: var(--text); font-size: 12.5px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 14px; }
.footer-grid > div > a, .footer-grid > div > span { display: block; margin-bottom: 10px; font-size: 15px; color: rgba(255,255,255,.8); }
.footer-grid > div > span { font-weight: 400; color: rgba(255,255,255,.7); }
.footer-grid > div > a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12.5px; color: rgba(255,255,255,.5); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.6); }
.disclaimer { font-size: 14px; text-align: center; line-height: 1.5; color: rgba(0,0,0,.8); }

/* — floating actions: minimal dock — */
.fdock {
  position: fixed;
  right: clamp(14px, 2.4vw, 26px);
  bottom: clamp(14px, 2.4vw, 26px);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.fdock-btn {
  display: flex; align-items: center; height: 54px;
  border-radius: 999px; text-decoration: none; color: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(23, 23, 27, .74);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 10px 28px rgba(15, 15, 25, .26);
  transition: background .28s ease, border-color .28s ease, transform .28s ease, box-shadow .28s ease;
}
.fdock-btn:hover, .fdock-btn:focus-visible { color: #fff; transform: translateY(-2px); }
.fdock-label {
  max-width: 0; opacity: 0; padding-left: 0; overflow: hidden; white-space: nowrap;
  font-size: 14px; font-weight: 600;
  transition: max-width .38s cubic-bezier(.22,.61,.36,1), opacity .24s ease, padding-left .38s cubic-bezier(.22,.61,.36,1);
}
.fdock-btn:hover .fdock-label, .fdock-btn:focus-visible .fdock-label { max-width: 170px; opacity: 1; padding-left: 21px; }
.fdock-ico { position: relative; flex: none; display: grid; place-items: center; width: 54px; height: 54px; }
.fdock-ico svg { width: 22px; height: 22px; }
.fdock-wa .fdock-ico { color: #25D366; }
.fdock-wa svg { fill: currentColor; stroke: none; }
.fdock-wa:hover, .fdock-wa:focus-visible { background: #25D366; border-color: #25D366; box-shadow: 0 10px 28px rgba(37, 211, 102, .34); }
.fdock-wa:hover .fdock-ico, .fdock-wa:focus-visible .fdock-ico { color: #fff; }
.fdock-call .fdock-ico { color: #fff; }
.fdock-call svg { fill: none; stroke: #fff; }
.fdock-call:hover, .fdock-call:focus-visible { background: var(--accent); border-color: var(--accent); box-shadow: 0 10px 28px rgba(53, 51, 205, .36); }
.fdock-call:hover .fdock-ico, .fdock-call:focus-visible .fdock-ico { color: #fff; }
.fdock-ping { position: absolute; inset: 13px; border-radius: 999px; border: 1px solid #25D366; opacity: 0; animation: ping 3s cubic-bezier(.22,.61,.36,1) infinite; }
.fdock-wa:hover .fdock-ping { animation: none; opacity: 0; }

/* — modal — */
.modal { position: fixed; inset: 0; z-index: 80; display: flex; align-items: flex-start; justify-content: center; padding: clamp(16px, 5vh, 64px) clamp(16px, 4vw, 48px); overflow: auto; }
.modal[hidden] { display: none; }
.modal-backdrop { position: fixed; inset: 0; background: rgba(15,15,20,.7); backdrop-filter: blur(6px); }
.modal-card { position: relative; margin: auto 0; width: min(560px, 100%); border: 1px solid var(--line); border-radius: 26px; background: #fff; padding: clamp(26px, 3.5vw, 42px); animation: pop .3s cubic-bezier(.22,.61,.36,1); }
.modal-card h3 { font-size: clamp(26px, 3vw, 36px); margin-top: 14px; }
.modal-card > p { margin: 12px 0 26px; font-size: 15.5px; line-height: 1.62; font-weight: 400; color: rgba(23,23,27,.68); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper); cursor: pointer; font-size: 18px; line-height: 1; color: var(--ink); transition: background .2s ease; }
.modal-close:hover { background: var(--accent-100); }

/* — reveal-on-scroll — */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); }
[data-reveal].is-in { opacity: 1; transform: none; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes sheen { 0%, 100% { transform: translate3d(-12%, -8%, 0) scale(1); opacity: .55; } 50% { transform: translate3d(10%, 6%, 0) scale(1.18); opacity: .8; } }
@keyframes pop { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes ping { 0% { transform: scale(.72); opacity: .7; } 70%, 100% { transform: scale(1.95); opacity: 0; } }
@keyframes tprog { from { width: 0; } to { width: 100%; } }

/* — responsive — */
@media (max-width: 1180px) {
  .cards, .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rail-step h4 { font-size: 19px; }
  .rail-step p { font-size: 13.5px; }
}
@media (max-width: 980px) {
  .hero-inner, .section-head, .faq-layout, .cta-inner, .service, .tspot { grid-template-columns: 1fr; }
  .faq-aside { position: static; }
  .tspot-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tspot-tab:hover { transform: none; }
  /* timeline flips to a vertical rail */
  .rail { grid-template-columns: 1fr; gap: 0; }
  .rail-step { display: grid; grid-template-columns: 50px 1fr; column-gap: 20px; padding-bottom: 30px; }
  .rail-step:last-child { padding-bottom: 0; }
  .rail-node { grid-column: 1; grid-row: 1 / span 3; align-self: start; }
  .rail-step:not(:last-child)::before { top: 60px; bottom: 10px; left: 25px; right: auto; width: 1px; height: auto; background: linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,.08)); }
  .rail-tag { margin-top: 3px; }
  .rail-step h4 { font-size: 22px; }
  .rail-step p { font-size: 14.5px; max-width: 60ch; }
  .section-head { gap: 20px; align-items: start; }
  .service { position: static; }
  .service-flip .service-media { order: 0; }
  .service-media { min-height: 260px; }
  .nav-bar { flex-wrap: wrap; padding: 12px 18px; }
  .nav-links { order: 3; width: 100%; overflow-x: auto; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.08); }
  .nav-contact { margin-left: auto; }
}
@media (max-width: 720px) {
  .cards, .tiles, .field-row, .tspot-list { grid-template-columns: 1fr; }
  .hero-media { grid-template-columns: 1fr; }
  .cta-plate { border-radius: 22px; }
  .stats { gap: 20px; }
  .tspot-mark { font-size: 130px; bottom: -38px; }
  .cta-band-actions { flex-direction: column; align-items: stretch; }
  .cta-band-actions .btn { width: 100%; }
  .cta-band-call { justify-content: center; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .fdock { gap: 10px; }
  .fdock-btn { height: 48px; }
  .fdock-ico { width: 48px; height: 48px; }
  .fdock-ico svg { width: 20px; height: 20px; }
  .tspot-slide figcaption { flex-wrap: wrap; }
  .tspot-stars { width: 100%; margin: 10px 0 0 66px; }
  .nav-links { display: none; }
  .nav-phone span { display: none; }
  .google-rating-badge { flex-wrap: wrap; justify-content: center; text-align: center; border-radius: 20px; padding: 10px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .ticker, .rating-card, .glow, .hero-glow, .tspot-aura { animation: none; }
  .fdock-ping { display: none; }
  .tspot-slide { transition: opacity .2s ease; transform: none; }
  .tspot-tab.is-active .tspot-progress i { animation: none; width: 100%; }
}

.pb-0 {
  padding-bottom: 0 !important;
}
.d-lg-block {
  display: block;
}
.error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}
.iti {
  width: 100% !important;
  display: block;
}
/* phone-error sits absolutely under the field so it doesn't push the
   underline down when it appears */
.phone-error {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 4px;
  white-space: normal;
}
/* intl-tel-input: our fields have no box, just an underline, so the flag +
   dial-code button needs its own contrast per form theme */
.lead-form .iti input { padding-left: 68px; }
.lead-form .iti__selected-dial-code { color: rgba(255, 255, 255, .75); }
.lead-form .iti__arrow { border-top-color: rgba(255, 255, 255, .55); }
.lead-form .iti__arrow--up { border-bottom-color: rgba(255, 255, 255, .55); }
.lead-form-light .iti__selected-dial-code { color: var(--ink); }
.lead-form-light .iti__arrow { border-top-color: rgba(23, 23, 27, .55); }
.lead-form-light .iti__arrow--up { border-bottom-color: rgba(23, 23, 27, .55); }
.iti__country-list { border-radius: 10px; overflow: hidden; font-family: var(--text); }