/* ============================================================
   Invitty Cognitive Solutions — Design System
   Light theme · Teal (#14b8a6) + Deep Navy (#0a1f2e)
   ============================================================ */
:root {
  --teal: #0fb5a6;
  --teal-dark: #0a8f83;
  --teal-light: #e6f7f5;
  --teal-glow: rgba(15, 181, 166, 0.18);
  --navy: #0a1f2e;
  --navy-soft: #12344a;
  --ink: #16242f;
  --slate: #4b5d6b;
  --mist: #8aa0ae;
  --bg: #f7fafb;
  --card: #ffffff;
  --line: #e3ecef;
  --amber: #f59e0b;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(10, 31, 46, 0.06);
  --shadow-md: 0 6px 24px rgba(10, 31, 46, 0.08);
  --shadow-lg: 0 18px 50px rgba(10, 31, 46, 0.14);
  --font-head: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--teal); }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.18; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.18rem; font-weight: 600; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
section { padding: 72px 0; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: #cfe3e0;
  font-size: 0.82rem;
  padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: #7fe6db; font-weight: 600; }
.topbar .tb-loc { opacity: 0.85; }

/* ---------- Navigation ---------- */
header.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img, .brand svg { height: 42px; width: auto; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--navy); }
.brand-name span { color: var(--teal); }
.brand-tag { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mist); display: block; margin-top: -3px; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block; padding: 10px 13px; font-weight: 600; font-size: 0.92rem;
  color: var(--ink); border-radius: 9px; transition: 0.2s;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--teal-dark); background: var(--teal-light); }

.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 12px; min-width: 540px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; visibility: hidden; transition: 0.22s ease;
}
.dropdown.dropdown-sm { min-width: 300px; grid-template-columns: 1fr; }
li.has-drop:hover .dropdown, li.has-drop:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown a { display: flex; gap: 10px; align-items: flex-start; padding: 10px 12px; border-radius: 10px; transition: 0.15s; }
.dropdown a:hover { background: var(--teal-light); }
.dropdown .d-ic { font-size: 1.1rem; line-height: 1.3; }
.dropdown .d-t { font-weight: 600; font-size: 0.88rem; color: var(--navy); display: block; }
.dropdown .d-s { font-size: 0.74rem; color: var(--mist); display: block; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 11px; font-weight: 700; font-size: 0.95rem;
  font-family: var(--font-body); cursor: pointer; border: none; transition: 0.22s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: #fff !important; box-shadow: 0 6px 18px var(--teal-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px var(--teal-glow); }
.btn-ghost { background: #fff; color: var(--navy) !important; border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-dark) !important; }
.btn-dark { background: var(--navy); color: #fff !important; }
.btn-dark:hover { background: var(--navy-soft); }
.btn-wa { background: #22c55e; color: #fff !important; }
.btn-wa:hover { background: #16a34a; transform: translateY(-2px); }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }

.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.7rem; color: var(--navy); cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 480px at 85% -10%, var(--teal-glow), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(18, 52, 74, 0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  padding: 88px 0 80px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px; opacity: 0.5;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 30%, black 30%, transparent 75%);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 54px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); color: var(--teal-dark);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 100px; box-shadow: var(--shadow-sm); margin-bottom: 20px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px var(--teal-glow); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px var(--teal-glow); } 50% { box-shadow: 0 0 0 7px transparent; } }
.hero h1 .grad { background: linear-gradient(110deg, var(--teal-dark), var(--teal) 55%, #38bdf8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lede { font-size: 1.12rem; color: var(--slate); margin: 20px 0 30px; max-width: 56ch; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 26px; margin-top: 38px; flex-wrap: wrap; }
.ht-item strong { font-family: var(--font-head); font-size: 1.55rem; color: var(--navy); display: block; }
.ht-item span { font-size: 0.82rem; color: var(--mist); }

/* Hero visual card */
.hero-visual { position: relative; }
.hv-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: var(--radius-lg); padding: 30px; color: #d8e8e6;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.hv-card::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(127,230,219,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(127,230,219,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
}
.hv-head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; position: relative; z-index: 1; }
.hv-head .hv-dot { width: 10px; height: 10px; border-radius: 50%; }
.hv-rows { position: relative; z-index: 1; display: grid; gap: 10px; }
.hv-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(127,230,219,0.18);
  padding: 11px 14px; border-radius: 11px; font-size: 0.88rem;
}
.hv-row .ok { color: #4ade80; font-weight: 700; font-size: 0.78rem; }
.hv-float {
  position: absolute; background: #fff; border-radius: 13px; padding: 12px 16px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line); z-index: 2;
  font-size: 0.82rem; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 9px;
}
.hv-float.f1 { top: -16px; right: -10px; animation: float 5s ease-in-out infinite; }
.hv-float.f2 { bottom: -16px; left: -12px; animation: float 6s ease-in-out infinite reverse; }
.hv-float .big { font-size: 1.15rem; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* ---------- Brand marquee ---------- */
.marquee-wrap { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; overflow: hidden; }
.marquee-label { text-align: center; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mist); margin-bottom: 14px; font-weight: 700; }
.marquee { display: flex; gap: 14px; width: max-content; animation: scroll 48s linear infinite; }
.marquee:hover { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }
.chip {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: var(--bg); border: 1px solid var(--line); border-radius: 100px;
  padding: 8px 18px; font-weight: 600; font-size: 0.88rem; color: var(--slate);
}
.chip b { color: var(--teal-dark); }

/* ---------- Section heads ---------- */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.sec-head .kicker { color: var(--teal-dark); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; display: block; margin-bottom: 10px; }
.sec-head p { color: var(--slate); margin-top: 12px; }

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

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-sm); transition: 0.25s ease;
  position: relative; overflow: hidden; display: block;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(15,181,166,0.45); }
.card .c-ic {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; background: var(--teal-light); margin-bottom: 16px;
}
.card h3 { margin-bottom: 6px; }
.card p { color: var(--slate); font-size: 0.92rem; }
.card .c-brands { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; }
.mini-chip { font-size: 0.72rem; font-weight: 600; background: var(--bg); border: 1px solid var(--line); border-radius: 100px; padding: 3px 10px; color: var(--slate); }
.card .c-link { display: inline-block; margin-top: 14px; font-weight: 700; font-size: 0.88rem; color: var(--teal-dark); }
.card:hover .c-link { color: var(--teal); }

/* ---------- Why / features ---------- */
.feat { display: flex; gap: 16px; align-items: flex-start; }
.feat .f-ic {
  flex: 0 0 46px; height: 46px; border-radius: 12px; background: var(--teal-light);
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
}
.feat h3 { font-size: 1.02rem; margin-bottom: 4px; }
.feat p { font-size: 0.88rem; color: var(--slate); }

/* ---------- Dark band ---------- */
.band-dark {
  background:
    radial-gradient(700px 380px at 90% 0%, rgba(15,181,166,0.16), transparent 55%),
    linear-gradient(160deg, var(--navy), var(--navy-soft));
  color: #d8e8e6; border-radius: var(--radius-lg);
  padding: 56px 48px; position: relative; overflow: hidden;
}
.band-dark h2 { color: #fff; }
.band-dark p { color: #9fc0bd; }

/* ---------- Reviews ---------- */
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); }
.stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 12px; font-size: 0.95rem; }
.review-card blockquote { font-size: 0.93rem; color: var(--slate); font-style: normal; }
.review-who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review-who .avatar {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--teal), var(--navy-soft)); color: #fff; font-weight: 700; font-family: var(--font-head);
}
.review-who b { display: block; color: var(--navy); font-size: 0.92rem; }
.review-who span { font-size: 0.78rem; color: var(--mist); }

/* ---------- Coverage ---------- */
.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.city {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 13px 16px; font-weight: 600; font-size: 0.9rem; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; transition: 0.2s;
}
.city:hover { border-color: var(--teal); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.city span { font-size: 0.72rem; color: var(--mist); font-weight: 700; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(700px 360px at 90% -20%, var(--teal-glow), transparent 60%),
    linear-gradient(180deg, #ffffff, var(--bg));
  border-bottom: 1px solid var(--line);
  padding: 60px 0 52px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px; opacity: 0.4;
  mask-image: radial-gradient(ellipse 70% 80% at 70% 20%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 70% 20%, black 20%, transparent 70%);
}
.page-hero .container { position: relative; }
.crumbs { font-size: 0.8rem; color: var(--mist); margin-bottom: 16px; }
.crumbs a { color: var(--teal-dark); font-weight: 600; }
.page-hero p.lede { color: var(--slate); font-size: 1.05rem; max-width: 70ch; margin-top: 14px; }

/* ---------- Two-col layout w/ sticky form ---------- */
.layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.sticky-side { position: sticky; top: 92px; }

/* ---------- Content prose ---------- */
.prose h2 { margin: 38px 0 14px; font-size: 1.55rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 26px 0 10px; }
.prose p { color: var(--slate); margin-bottom: 14px; }
.prose ul { margin: 0 0 16px 20px; color: var(--slate); }
.prose ul li { margin-bottom: 8px; }
.prose strong { color: var(--navy); }

/* ---------- Brand showcase ---------- */
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 20px 0 8px; }
.brand-tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; transition: 0.2s; text-align: left;
}
.brand-tile:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.brand-tile .bt-logo {
  width: 40px; height: 40px; border-radius: 10px; font-weight: 800; color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head); margin-bottom: 10px; font-size: 0.85rem;
}
.brand-tile b { color: var(--navy); display: block; font-size: 0.95rem; }
.brand-tile span { font-size: 0.78rem; color: var(--mist); }

/* ---------- FAQ ---------- */
.faq { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 10px; overflow: hidden; }
.faq summary {
  cursor: pointer; padding: 17px 20px; font-weight: 600; color: var(--navy);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.3rem; color: var(--teal); font-weight: 400; transition: 0.2s; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding: 0 20px 18px; color: var(--slate); font-size: 0.93rem; }

/* ---------- Enquiry form ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-md);
}
.form-card.accent { border-top: 4px solid var(--teal); }
.form-card h3 { margin-bottom: 4px; }
.form-card .form-sub { font-size: 0.85rem; color: var(--mist); margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 0.92rem; color: var(--ink); background: var(--bg);
  transition: 0.18s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px var(--teal-glow); }
.field textarea { resize: vertical; min-height: 88px; }
.form-actions { display: grid; gap: 10px; margin-top: 18px; }
.form-note { font-size: 0.75rem; color: var(--mist); text-align: center; margin-top: 10px; }
.form-msg { display: none; padding: 12px 16px; border-radius: 10px; font-size: 0.88rem; font-weight: 600; margin-top: 12px; }
.form-msg.ok { display: block; background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.form-msg.err { display: block; background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }

/* ---------- CTA banner ---------- */
.cta-banner { text-align: center; }
.cta-banner .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ---------- Blog ---------- */
.post-card { display: flex; flex-direction: column; }
.post-card .p-cover {
  height: 170px; border-radius: 13px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  display: flex; align-items: center; justify-content: center; font-size: 2.6rem;
  position: relative; overflow: hidden;
}
.post-card .p-cover::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(127,230,219,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(127,230,219,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
}
.post-meta { font-size: 0.76rem; color: var(--mist); margin-bottom: 8px; display: flex; gap: 10px; align-items: center; }
.post-meta .cat { background: var(--teal-light); color: var(--teal-dark); font-weight: 700; padding: 2px 10px; border-radius: 100px; }

/* ---------- Article ---------- */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body .prose { font-size: 1.02rem; }

/* ---------- LinkedIn section ---------- */
.li-band { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; }
.li-embeds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }
.li-embeds iframe { width: 100%; min-height: 420px; border: 1px solid var(--line); border-radius: var(--radius); }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--navy); color: #9fb8c4; margin-top: 60px; }
.foot-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 38px; padding: 56px 0 40px; }
.foot-main h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.foot-main ul { list-style: none; }
.foot-main li { margin-bottom: 9px; }
.foot-main a { color: #9fb8c4; font-size: 0.88rem; }
.foot-main a:hover { color: #7fe6db; }
.foot-about p { font-size: 0.88rem; margin: 14px 0 18px; }
.socials { display: flex; gap: 9px; }
.socials a {
  width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; color: #cfe3e0;
  border: 1px solid rgba(127,230,219,0.16); transition: 0.2s;
}
.socials a:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.foot-contact li { display: flex; gap: 10px; font-size: 0.88rem; align-items: flex-start; }
.foot-keywords {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; font-size: 0.72rem;
  color: #5e7785; line-height: 2;
}
.foot-keywords a { color: #6d8997; }
.foot-keywords a:hover { color: #7fe6db; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; font-size: 0.8rem; display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.foot-bottom a { color: #9fb8c4; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%; background: #22c55e; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(34,197,94,0.4); transition: 0.2s;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }

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

/* ---------- Tables ---------- */
.tbl { width: 100%; border-collapse: collapse; font-size: 0.9rem; margin: 16px 0; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.tbl th { background: var(--navy); color: #fff; text-align: left; padding: 12px 16px; font-family: var(--font-head); font-size: 0.85rem; }
.tbl td { padding: 11px 16px; border-bottom: 1px solid var(--line); color: var(--slate); }
.tbl tr:last-child td { border-bottom: none; }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 14px; margin: 18px 0; }
.step { display: flex; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.step::before {
  counter-increment: step; content: counter(step);
  flex: 0 0 38px; height: 38px; border-radius: 50%; background: var(--teal-light); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: var(--font-head);
}
.step b { color: var(--navy); display: block; margin-bottom: 2px; }
.step p { font-size: 0.88rem; color: var(--slate); }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .layout { grid-template-columns: 1fr; }
  .sticky-side { position: static; }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-main { grid-template-columns: 1fr 1fr; }
  .li-embeds { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  section { padding: 52px 0; }
  .nav-links {
    position: fixed; inset: 70px 0 auto 0; background: #fff; flex-direction: column;
    align-items: stretch; padding: 18px; gap: 2px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg); display: none; max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; min-width: 0; grid-template-columns: 1fr; box-shadow: none; border: none; padding: 0 0 0 14px; display: none; }
  li.has-drop.open .dropdown { display: grid; }
  .nav-toggle { display: block; }
  .nav-cta .btn-ghost { display: none; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-main { grid-template-columns: 1fr; }
  .band-dark { padding: 36px 24px; }
  .topbar .tb-loc { display: none; }
}
