
:root {
  /* VOLO Solutions Ltd — official navy, gold and ivory system */
  --navy: #08254d;
  --navy-2: #123b70;
  --navy-3: #061a39;
  --ink: #172a43;
  --muted: #66758a;
  --cream: #f7f3ea;
  --cream-2: #fcfaf5;
  --white: #ffffff;
  --gold: #d5a329;
  --gold-light: #f2ce67;
  --gold-dark: #a66d0f;
  --gold-soft: #fff5d9;
  --navy-soft: #eef2f8;
  --line: #dce3ec;
  --danger: #a94738;
  --shadow-sm: 0 10px 30px rgba(8,37,77,.09);
  --shadow-lg: 0 22px 60px rgba(8,37,77,.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: min(1180px, calc(100% - 40px));
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--gold-light); color: var(--navy); }
:focus-visible { outline: 3px solid rgba(213,163,41,.55); outline-offset: 3px; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 {
  margin: 0 0 .65em;
  color: var(--navy);
  line-height: 1.12;
}
h1, h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.025em;
}
h3, h4 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(3rem, 6.4vw, 6rem); }
h2 { font-size: clamp(2.35rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: var(--container); margin-inline: auto; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-cream { background: var(--cream-2); }
.section-navy { background: var(--navy); color: rgba(255,255,255,.82); }
.section-navy h2, .section-navy h3, .section-navy h4 { color: var(--white); }
.section-navy .eyebrow { color: var(--gold-light); }
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.stack { display: grid; gap: 18px; }
.center { text-align: center; }
.narrow { max-width: 760px; }
.center.narrow { margin-inline: auto; }
.muted { color: var(--muted); }
.text-white { color: white; }
.lead { font-size: clamp(1.08rem, 2vw, 1.25rem); color: var(--muted); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content:""; width: 30px; height: 2px; background: currentColor; box-shadow: 12px 0 0 rgba(213,163,41,.22); }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font-size: .78rem;
  font-weight: 700;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: var(--navy); box-shadow: 0 12px 24px rgba(8,37,77,.20); }
.btn-primary:hover { background: var(--navy-2); box-shadow: 0 16px 30px rgba(8,37,77,.24); }
.btn-gold { color: var(--navy-3); background: linear-gradient(135deg,var(--gold-light),var(--gold)); box-shadow: 0 12px 24px rgba(166,109,15,.18); }
.btn-gold:hover { background: linear-gradient(135deg,#f6d97d,#d9aa3a); box-shadow: 0 16px 30px rgba(166,109,15,.23); }
.btn-outline { border-color: var(--line); background: var(--white); color: var(--navy); }
.btn-outline:hover { border-color: var(--gold); color: var(--navy); box-shadow: 0 10px 22px rgba(8,37,77,.08); }
.btn-light { color: var(--navy); background: var(--white); }
.btn-link { min-height: auto; padding: 0; color: var(--gold-dark); }
.btn-link:hover { transform: none; color: var(--navy); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: inline-grid; place-items: center;
  color: var(--navy); background: var(--gold-soft);
  font-weight: 900; font-size: 1rem;
}
.icon.gold { color: var(--gold-dark); background: #fff3d5; }
.icon.blue { color: var(--navy); background: var(--navy-soft); }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 9999;
  padding: 12px 16px; background: white; color: var(--navy); border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.topbar { background: var(--navy); color: rgba(255,255,255,.82); font-size: .82rem; border-bottom: 1px solid rgba(213,163,41,.55); }
.topbar-inner { min-height: 38px; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.topbar a { color: white; font-weight: 700; }
.topbar-links { display:flex; gap:18px; align-items:center; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(220,227,236,.9);
  backdrop-filter: blur(16px);
}
.navbar { min-height: 82px; display:flex; align-items:center; justify-content:space-between; gap: 22px; }
.brand img { width: 250px; }
.nav-links { display:flex; align-items:center; gap: 28px; }
.nav-links a {
  color: #3f4d5b;
  font-size: .92rem;
  font-weight: 750;
  position: relative;
}
.nav-links a::after {
  content:""; position:absolute; left:0; right:0; bottom:-10px; height:2px;
  transform: scaleX(0); background: var(--gold); transform-origin:left; transition:.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-actions { display:flex; align-items:center; gap:10px; }
.menu-toggle {
  display:none; width:46px; height:46px; border-radius:12px; border:1px solid var(--line); background:white;
}
.menu-toggle span { display:block; width:20px; height:2px; background:var(--navy); margin:4px auto; transition:.2s ease; }

.hero {
  position: relative; overflow:hidden;
  padding: 88px 0 96px;
  background:
    radial-gradient(circle at 12% 10%, rgba(214,168,75,.15), transparent 25%),
    radial-gradient(circle at 92% 35%, rgba(8,37,77,.08), transparent 28%),
    linear-gradient(180deg, #fff, #fbfaf6);
}
.hero-grid { display:grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items:center; }
.hero h1 span { color: var(--gold-dark); text-shadow: 0 12px 34px rgba(213,163,41,.13); }
.hero-copy .lead { max-width: 690px; margin-bottom: 28px; }
.hero-points { display:flex; flex-wrap:wrap; gap: 14px 24px; margin-top:28px; }
.hero-point { display:flex; align-items:center; gap:10px; font-weight:750; color:#435263; font-size:.92rem; }
.tick { width:22px; height:22px; display:grid; place-items:center; border-radius:50%; color:var(--navy); background:var(--gold); font-size:.7rem; font-weight:900; box-shadow:0 5px 12px rgba(166,109,15,.18); }
.hero-visual { position:relative; }
.hero-visual::after {
  content:""; position:absolute; inset:auto -22px -22px auto; width:170px; height:170px;
  background-image: radial-gradient(var(--gold) 1.5px, transparent 1.5px); background-size:14px 14px; opacity:.35; z-index:-1;
}
.hero-visual img { border-radius: 34px; border:1px solid rgba(213,163,41,.28); box-shadow: var(--shadow-lg); }
.float-card {
  position:absolute; right:-24px; bottom:38px; width:230px;
  padding:18px; background:white; border:1px solid var(--line); border-radius:18px; box-shadow:var(--shadow-lg);
}
.float-card strong { display:block; color:var(--navy); margin-bottom:4px; }
.float-card small { color:var(--muted); }

.trust-strip { border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:white; }
.trust-grid { min-height:94px; display:grid; grid-template-columns:1.1fr repeat(3,1fr); align-items:center; gap:22px; }
.trust-title { color:var(--muted); font-size:.82rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.trust-item { display:flex; gap:12px; align-items:center; color:var(--navy); font-weight:800; }
.trust-item span { color:var(--gold-dark); }

.section-heading { display:flex; align-items:end; justify-content:space-between; gap:34px; margin-bottom:48px; }
.section-heading > div:first-child { max-width:760px; }
.section-heading p { max-width:530px; color:var(--muted); }

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 2px 0 rgba(8,37,77,.01);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform:translateY(-5px); border-color:rgba(213,163,41,.55); box-shadow:var(--shadow-sm); }
.card h3 { margin-top:20px; }
.card p { color:var(--muted); }
.card-footer { margin-top:24px; padding-top:18px; border-top:1px solid var(--line); }
.card-list { display:grid; gap:10px; margin-top:18px; }
.card-list li { display:flex; gap:10px; color:#4e5c6b; font-size:.93rem; }
.card-list li::before { content:"✓"; color:var(--gold-dark); font-weight:900; }

.audience-card { position:relative; min-height:260px; overflow:hidden; }
.audience-card::after {
  content:""; position:absolute; width:150px; height:150px; border:28px solid rgba(214,168,75,.13);
  border-radius:50%; right:-54px; bottom:-70px;
}
.audience-number { color:var(--gold-dark); font-weight:900; font-size:.8rem; letter-spacing:.1em; }

.process-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:18px; counter-reset:step; }
.process-step { position:relative; padding:26px 22px; border-radius:18px; background:white; border:1px solid var(--line); }
.process-step::before {
  counter-increment:step; content:counter(step, decimal-leading-zero);
  display:block; margin-bottom:36px; color:var(--gold-dark); font-weight:900; letter-spacing:.08em;
}
.process-step:not(:last-child)::after {
  content:""; position:absolute; top:38px; right:-18px; width:18px; border-top:1px dashed #a9b3bd;
}
.process-step h3 { font-size:1.05rem; letter-spacing:-.02em; }
.process-step p { font-size:.88rem; color:var(--muted); margin:0; }

.feature-panel {
  display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; align-items:center;
  padding:54px; border-radius:var(--radius-lg); background:var(--navy); color:rgba(255,255,255,.77);
}
.feature-panel h2 { color:white; }
.feature-panel .lead { color:rgba(255,255,255,.72); }
.feature-list { display:grid; gap:15px; }
.feature-item { display:flex; gap:15px; padding:18px; border:1px solid rgba(255,255,255,.12); border-radius:16px; background:rgba(255,255,255,.04); }
.feature-item b { display:block; color:white; margin-bottom:3px; }
.feature-item p { margin:0; font-size:.9rem; color:rgba(255,255,255,.67); }

.sector-grid { display:grid; grid-template-columns:repeat(12,1fr); gap:20px; }
.sector-card { grid-column:span 4; min-height:230px; position:relative; padding:28px; border-radius:20px; overflow:hidden; background:var(--cream-2); border:1px solid var(--line); }
.sector-card:nth-child(1), .sector-card:nth-child(5) { grid-column:span 7; }
.sector-card:nth-child(2), .sector-card:nth-child(6) { grid-column:span 5; }
.sector-card::after { content:""; position:absolute; width:170px; height:170px; border-radius:50%; right:-70px; bottom:-85px; background:rgba(213,163,41,.11); }
.sector-card .icon { margin-bottom:42px; }
.sector-card p { color:var(--muted); max-width:520px; }

.cta-banner {
  display:flex; align-items:center; justify-content:space-between; gap:40px;
  padding:54px; border-radius:var(--radius-lg);
  background:linear-gradient(135deg,var(--navy),#123b70);
  color:rgba(255,255,255,.78); overflow:hidden; position:relative;
}
.cta-banner::after { content:""; position:absolute; width:300px; height:300px; border:55px solid rgba(214,168,75,.11); border-radius:50%; right:-130px; top:-120px; }
.cta-banner > * { position:relative; z-index:1; }
.cta-banner h2 { color:white; max-width:720px; }
.cta-banner p { max-width:690px; }
.cta-actions { display:flex; flex-wrap:wrap; gap:12px; flex-shrink:0; }

.page-hero {
  padding:82px 0 72px;
  background:
    radial-gradient(circle at 85% 20%, rgba(213,163,41,.14), transparent 25%),
    linear-gradient(180deg,#fff,#fbfaf6);
  border-bottom:1px solid var(--line);
}
.page-hero-grid { display:grid; grid-template-columns:1fr .65fr; gap:70px; align-items:end; }
.page-hero h1 { font-size:clamp(2.7rem,5vw,4.8rem); max-width:860px; }
.page-hero p { color:var(--muted); font-size:1.1rem; }
.breadcrumbs { display:flex; gap:8px; align-items:center; color:var(--muted); font-size:.85rem; margin-bottom:20px; }
.breadcrumbs a { color:var(--gold-dark); font-weight:800; }

.service-detail {
  display:grid; grid-template-columns:80px 1fr; gap:24px;
  padding:32px 0; border-bottom:1px solid var(--line);
}
.service-detail:last-child { border-bottom:0; }
.service-detail h3 { margin-bottom:10px; }
.service-detail p { color:var(--muted); }
.service-columns { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:20px; }
.mini-panel { padding:20px; border-radius:14px; background:var(--cream-2); border:1px solid var(--line); }
.mini-panel b { display:block; color:var(--navy); margin-bottom:8px; }
.mini-panel ul { display:grid; gap:8px; color:var(--muted); font-size:.9rem; }
.mini-panel li::before { content:"•"; color:var(--gold-dark); margin-right:8px; }

.engagement-card { border-top:5px solid var(--gold); }
.engagement-card:nth-child(2) { border-top-color:var(--navy-2); }
.engagement-card:nth-child(3) { border-top-color:var(--gold-dark); }
.engagement-card:nth-child(4) { border-top-color:var(--navy); }

.notice {
  padding:22px 24px; border-radius:16px; border-left:4px solid var(--gold); background:#fff8e9; color:#66542c;
}
.notice strong { color:#493914; }

.opportunity-toolbar { display:flex; justify-content:space-between; align-items:center; gap:20px; margin-bottom:28px; }
.filters { display:flex; flex-wrap:wrap; gap:9px; }
.opportunity-meta { display:flex; flex-wrap:wrap; gap:8px; }
.empty-state { padding:55px; text-align:center; border:1px dashed #bfc9d2; border-radius:24px; background:var(--cream-2); }
.empty-state .icon { margin:0 auto 20px; }

.about-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.metric { padding:24px; border:1px solid var(--line); border-radius:16px; background:white; }
.metric strong { display:block; color:var(--navy); font-size:1.15rem; margin-bottom:6px; }
.metric span { color:var(--muted); font-size:.9rem; }

.do-dont { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.check-panel { padding:30px; border-radius:20px; border:1px solid var(--line); background:white; }
.check-panel.good { border-top:5px solid var(--gold-dark); }
.check-panel.caution { border-top:5px solid var(--gold); }
.check-panel ul { display:grid; gap:12px; color:var(--muted); }
.check-panel li { display:flex; gap:10px; }
.check-panel.good li::before { content:"✓"; color:var(--gold-dark); font-weight:900; }
.check-panel.caution li::before { content:"—"; color:var(--gold-dark); font-weight:900; }

.contact-layout { display:grid; grid-template-columns:.7fr 1.3fr; gap:54px; align-items:start; }
.contact-card { padding:28px; border-radius:20px; background:var(--navy); color:rgba(255,255,255,.72); }
.contact-card h2, .contact-card h3 { color:white; }
.contact-list { display:grid; gap:18px; margin:26px 0; }
.contact-list a, .contact-list .contact-item { display:flex; align-items:center; gap:14px; color:white; font-weight:750; }
.contact-list span { width:40px; height:40px; display:grid; place-items:center; background:rgba(255,255,255,.09); border-radius:12px; flex:0 0 auto; }
.form-shell { padding:34px; border:1px solid var(--line); border-radius:24px; box-shadow:var(--shadow-sm); background:white; }
.form-tabs { display:grid; grid-template-columns:1fr 1fr; gap:8px; padding:6px; margin-bottom:28px; border-radius:14px; background:var(--cream-2); }
.form-tab { border:0; padding:12px; border-radius:10px; color:var(--muted); background:transparent; font-weight:800; }
.form-tab.active { background:white; color:var(--navy); box-shadow:0 3px 10px rgba(8,37,77,.08); }
.form-tab:focus-visible { outline:3px solid rgba(213,163,41,.45); outline-offset:2px; }
.form-panel { display:none; }
.form-panel.active { display:block; }
.consent-field label { display:flex; align-items:flex-start; gap:10px; font-weight:600; line-height:1.5; }
.consent-field input { width:18px; height:18px; margin-top:2px; flex:0 0 auto; }
.consent-field a { color:var(--navy-2); text-decoration:underline; text-underline-offset:2px; }
.form-note { margin:24px 0 0; padding-top:18px; border-top:1px solid var(--line); color:var(--muted); font-size:.9rem; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field { display:grid; gap:7px; }
.field.full { grid-column:1/-1; }
.field label { color:var(--navy); font-size:.84rem; font-weight:800; }
.field input, .field textarea, .field select {
  width:100%; min-height:50px; padding:12px 14px; border:1px solid #cfd7de; border-radius:11px; background:white; color:var(--ink); outline:none;
}
.field textarea { min-height:130px; resize:vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color:var(--gold-dark); box-shadow:0 0 0 3px rgba(213,163,41,.14); }

/* Keep consent checkboxes compact; the generic form input rule above must not stretch them. */
.consent-field { display:block; }
.consent-field label { width:100%; display:grid; grid-template-columns:20px minmax(0,1fr); align-items:start; gap:12px; cursor:pointer; }
.consent-field input[type="checkbox"] {
  width:20px; height:20px; min-height:20px; margin:1px 0 0; padding:0;
  border:1px solid #aeb9c6; border-radius:5px; box-shadow:none; accent-color:var(--navy); flex:none;
}
.consent-field span { min-width:0; }
.website-field {
  position:absolute!important; left:-10000px!important; top:auto!important;
  width:1px!important; height:1px!important; overflow:hidden!important;
}
.form-status.success { color:#257246; }
.form-status.error { color:var(--danger); }
.form-actions .btn[disabled] { opacity:.68; cursor:wait; transform:none; }

.whatsapp-float {
  position:fixed;
  right:calc(18px + env(safe-area-inset-right, 0px));
  bottom:calc(18px + env(safe-area-inset-bottom, 0px));
  z-index:1200;
  width:64px;
  height:64px;
  min-width:64px;
  min-height:64px;
  padding:0;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:transparent;
  color:#ffffff;
  border:0;
  box-shadow:0 12px 26px rgba(8,37,77,.22);
  transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  touch-action:manipulation;
  overflow:visible;
}
.whatsapp-float:hover {
  transform:translateY(-2px) scale(1.03);
  box-shadow:0 16px 34px rgba(8,37,77,.28);
}
.whatsapp-float:active { transform:scale(.97); }
.whatsapp-float:focus-visible { outline:3px solid rgba(213,163,41,.75); outline-offset:4px; }
.whatsapp-float img {
  display:block;
  width:100%;
  height:100%;
  border-radius:18px;
}
.whatsapp-float span {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
  border:0;
}
.field .hint { font-size:.77rem; color:var(--muted); }
.form-actions { margin-top:22px; display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.form-status { min-height:24px; color:var(--gold-dark); font-weight:700; font-size:.88rem; }

.faq { border-top:1px solid var(--line); }
.faq-item { border-bottom:1px solid var(--line); }
.faq-button { width:100%; display:flex; justify-content:space-between; align-items:center; gap:20px; padding:22px 0; border:0; background:transparent; text-align:left; color:var(--navy); font-weight:850; }
.faq-button span:last-child { font-size:1.4rem; transition:.2s ease; }
.faq-button[aria-expanded="true"] span:last-child { transform:rotate(45deg); }
.faq-panel { display:none; padding:0 0 22px; color:var(--muted); max-width:850px; }
.faq-panel.open { display:block; }

.legal { max-width:860px; }
.legal h2 { margin-top:44px; font-size:1.8rem; }
.legal h3 { margin-top:28px; font-size:1.25rem; }
.legal ul { list-style:disc; padding-left:22px; margin:12px 0 20px; }
.legal p, .legal li { color:#4f5d6a; }
.legal .updated { display:inline-block; margin-bottom:28px; color:var(--muted); font-size:.88rem; }

.site-footer { padding:70px 0 26px; background:linear-gradient(145deg,#061a39,#08254d); color:rgba(255,255,255,.68); }
.footer-grid { display:grid; grid-template-columns:1.4fr repeat(3,1fr); gap:44px; }
.footer-brand img { width:230px; opacity:1; }
.footer-brand p { max-width:430px; margin-top:18px; }
.site-footer h4 { color:white; font-size:.95rem; letter-spacing:0; margin-bottom:18px; }
.footer-links { display:grid; gap:10px; font-size:.9rem; }
.footer-links a:hover { color:white; }
.footer-bottom { margin-top:52px; padding-top:22px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; gap:24px; font-size:.82rem; }
.footer-bottom-links { display:flex; gap:18px; }
.footer-note { margin-top:24px; padding:14px 16px; border:1px solid rgba(255,255,255,.1); border-radius:12px; font-size:.78rem; color:rgba(255,255,255,.52); }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 980px) {
  .nav-links {
    position:fixed; inset:121px 0 auto 0; display:none; padding:28px 20px 36px; background:white; border-bottom:1px solid var(--line);
    box-shadow:var(--shadow-lg); flex-direction:column; align-items:flex-start; gap:18px;
  }
  .nav-links.open { display:flex; }
  .nav-actions .btn { display:none; }
  .menu-toggle { display:block; }
  .hero-grid, .page-hero-grid, .contact-layout, .feature-panel { grid-template-columns:1fr; }
  .hero-visual { max-width:680px; }
  .float-card { right:12px; }
  .grid-4 { grid-template-columns:repeat(2,1fr); }
  .grid-3 { grid-template-columns:repeat(2,1fr); }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .process-step:not(:last-child)::after { display:none; }
  .sector-card, .sector-card:nth-child(1), .sector-card:nth-child(2), .sector-card:nth-child(5), .sector-card:nth-child(6) { grid-column:span 6; }
  .cta-banner { align-items:flex-start; flex-direction:column; }
  .footer-grid { grid-template-columns:1.3fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column:2/4; }
}
@media (max-width: 720px) {
  .whatsapp-float {
    right:calc(14px + env(safe-area-inset-right, 0px));
    bottom:calc(14px + env(safe-area-inset-bottom, 0px));
    width:58px;
    height:58px;
    min-width:58px;
    min-height:58px;
    border-radius:16px;
  }
  .whatsapp-float img { border-radius:16px; }
  :root { --container:min(100% - 28px, 1180px); }
  .section { padding:76px 0; }
  .section-sm { padding:52px 0; }
  .topbar-inner { justify-content:center; }
  .topbar-links { display:none; }
  .navbar { min-height:72px; }
  .brand img { width:196px; }
  .nav-links { inset:110px 0 auto 0; }
  .hero { padding:64px 0 70px; }
  .hero-grid { gap:44px; }
  .hero h1 { font-size:clamp(2.55rem,13vw,4.2rem); }
  .hero-points { display:grid; }
  .float-card { position:relative; right:auto; bottom:auto; width:100%; margin-top:14px; }
  .trust-grid { grid-template-columns:1fr; padding:24px 0; gap:14px; }
  .section-heading { align-items:flex-start; flex-direction:column; margin-bottom:34px; }
  .grid-2, .grid-3, .grid-4, .about-metrics, .do-dont, .form-grid { grid-template-columns:1fr; }
  .process-grid { grid-template-columns:1fr; }
  .feature-panel, .cta-banner { padding:30px 24px; }
  .sector-card, .sector-card:nth-child(1), .sector-card:nth-child(2), .sector-card:nth-child(5), .sector-card:nth-child(6) { grid-column:1/-1; }
  .page-hero { padding:58px 0 52px; }
  .service-detail { grid-template-columns:1fr; }
  .service-columns { grid-template-columns:1fr; }
  .opportunity-toolbar { align-items:flex-start; flex-direction:column; }
  .contact-layout { gap:28px; }
  .form-shell { padding:24px 18px; }
  .field.full { grid-column:auto; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > :first-child, .footer-grid > :last-child { grid-column:1/-1; }
  .footer-bottom { flex-direction:column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto!important; transition:none!important; animation:none!important; }
  .reveal { opacity:1; transform:none; }
}

/* Brand-specific finishing details */
.site-footer::before { content:""; display:block; height:2px; margin-top:-70px; margin-bottom:68px; background:linear-gradient(90deg,transparent,var(--gold),transparent); opacity:.75; }
.footer-note { box-shadow: inset 3px 0 0 rgba(213,163,41,.55); }
.brand { flex-shrink:0; }
.brand img, .footer-brand img { height:auto; }


/* SEO service pages and insight articles */
.seo-intro { border-bottom:1px solid var(--line); background:var(--white); }
.prose-wide { max-width:960px; }
.prose-wide h2 { font-size:clamp(2rem,4vw,3.35rem); }
.prose-wide p, .prose p { color:#4f5d6a; }
.prose a { color:var(--navy-2); font-weight:750; text-decoration:underline; text-decoration-color:rgba(213,163,41,.75); text-underline-offset:3px; }
.content-layout { display:grid; grid-template-columns:minmax(0,1fr) 330px; gap:70px; align-items:start; }
.prose { max-width:820px; }
.prose > h2, .prose > section > h2 { margin-top:44px; font-size:clamp(1.8rem,3.4vw,2.65rem); }
.prose > h2:first-child, .prose > section:first-child > h2 { margin-top:0; }
.check-list { display:grid; gap:12px; margin:20px 0 30px; }
.check-list li { display:flex; gap:12px; color:#4f5d6a; }
.check-list li::before { content:"✓"; color:var(--gold-dark); font-weight:900; flex:0 0 auto; }
.sidebar-card { position:sticky; top:142px; padding:30px; border:1px solid var(--line); border-radius:22px; background:var(--cream-2); box-shadow:var(--shadow-sm); }
.sidebar-card h2 { font-size:2rem; }
.sidebar-card .btn { width:100%; margin-top:10px; }
.sidebar-contact { display:grid; gap:8px; margin-top:24px; padding-top:20px; border-top:1px solid var(--line); font-size:.87rem; font-weight:750; color:var(--navy); word-break:break-word; }
.process-grid-4 { grid-template-columns:repeat(4,1fr); }
.service-more { margin-top:18px; }
.related-link { display:block; }
.related-link h3 { margin-top:0; }
.related-link .btn { margin-top:10px; }
.insight-card h2 { margin-top:20px; font-size:1.85rem; }
.insight-card h2 a:hover { color:var(--gold-dark); }
.article-heading { max-width:960px; }
.article-hero .lead { max-width:850px; }
.article-meta { display:flex; flex-wrap:wrap; gap:10px 22px; color:var(--muted); font-size:.84rem; font-weight:750; }
.article-prose section { padding-bottom:10px; }
@media (max-width:980px) {
  .content-layout { grid-template-columns:1fr; gap:42px; }
  .sidebar-card { position:static; }
  .process-grid-4 { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:720px) {
  .process-grid-4 { grid-template-columns:1fr; }
  .sidebar-card { padding:24px; }
  .article-meta { display:grid; gap:4px; }
}
