/* =========================================================
   SP Integrated Services — rich landing styles
   ========================================================= */

:root {
  --navy:        #0a2540;
  --navy-2:      #102a4c;
  --navy-deep:   #061a2e;
  --ink:         #1a2433;
  --muted:       #5b6776;
  --line:        #e6ebf2;
  --bg:          #ffffff;
  --bg-alt:      #f5f8fc;

  --accent:      #f5a623;   /* warm amber */
  --accent-2:    #ef8e1a;
  --green:       #1f9d55;
  --green-light: #3ecf8e;
  --blue:        #2b6cb0;
  --blue-light:  #4a8bd9;

  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   22px;

  --shadow-sm:   0 1px 2px rgba(10,37,64,.06);
  --shadow-md:   0 12px 30px -12px rgba(10,37,64,.18);
  --shadow-lg:   0 30px 60px -20px rgba(10,37,64,.28);

  --max:         1200px;
  --font-body:   'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head:   'Playfair Display', Georgia, 'Times New Roman', serif;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; background: none; border: 0; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: linear-gradient(180deg, #0a2540 0%, #061a2e 100%);
  color: #d6e0ee;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(245,166,35,.12), transparent 60%),
    radial-gradient(600px 300px at 100% 100%, rgba(74,139,217,.10), transparent 60%);
  pointer-events: none;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}
.section-head h2 { margin-top: 8px; }
.section-sub { color: var(--muted); font-size: 1.05rem; margin-top: 14px; }
.section-head.light h2 { color: #fff; }
.section-head.light .eyebrow { color: var(--accent); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.align-center { align-items: center; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 .4em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; }
h5 { font-size: .9rem; font-family: var(--font-body); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 16px; }

.text-grad {
  background: linear-gradient(90deg, #ef8e1a, #f5a623 60%, #fbbf57);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-grad-amber {
  background: linear-gradient(90deg, #fbbf57, #f5a623);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 6px;
}
.eyebrow-line {
  display: inline-block;
  width: 22px; height: 2px;
  background: currentColor;
}
.eyebrow-line-light { background: var(--accent); }

p { margin: 0 0 1em; color: #364254; }
.section-dark p { color: #b8c4d4; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .15s ease, border-color .15s ease;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, #fbbf57 0%, #ef8e1a 100%);
  color: var(--navy);
  box-shadow: 0 10px 24px -10px rgba(239,142,26,.6);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(239,142,26,.75);
  text-decoration: none;
}
.btn-ghost {
  background: rgba(10,37,64,.04);
  color: var(--navy);
  border-color: rgba(10,37,64,.12);
}
.btn-ghost:hover {
  background: rgba(10,37,64,.08);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: #fff;
  text-decoration: none;
}
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-deep);
  color: #b8c4d4;
  font-size: .82rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  height: 36px;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar-item a { color: #d6e0ee; }
.topbar-item a:hover { color: var(--accent); text-decoration: none; }
.topbar-pill {
  background: rgba(245,166,35,.15);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .04em;
  font-size: .72rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.brand:hover { text-decoration: none; }
.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 8px 20px -10px rgba(10,37,64,.4);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 700; font-size: 1.05rem; font-family: var(--font-head); }
.brand-name-accent { color: var(--accent); }
.brand-tag {
  font-size: .72rem;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
}
.brand-light .brand-name { color: #fff; }
.brand-light .brand-tag { color: #9fb0c8; }

.primary-nav ul { display: flex; gap: 30px; }
.primary-nav a {
  color: var(--navy);
  font-weight: 500;
  font-size: .94rem;
  position: relative;
  padding: 6px 0;
}
.primary-nav a:hover { text-decoration: none; color: var(--blue); }
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav-toggle span {
  width: 18px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
  padding: 90px 0 140px;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .8;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.blob-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245,166,35,.55), transparent 70%);
  top: -120px; right: -80px;
}
.blob-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(74,139,217,.5), transparent 70%);
  bottom: 40px; left: -100px;
}
.blob-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(62,207,142,.45), transparent 70%);
  top: 30%; right: 30%;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.badge-rated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .82rem;
  color: var(--navy);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.hero-copy .lede {
  font-size: 1.15rem;
  color: #3a4658;
  max-width: 560px;
  margin-top: 16px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 44px;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  flex-wrap: wrap;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
}
.hero-trust strong {
  display: block;
  font-family: var(--font-head);
  color: var(--navy);
  font-size: 1.1rem;
}
.hero-trust span {
  display: block;
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 360px;
}
.hv-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hv-main {
  transform: rotate(-1.5deg);
}
.hv-main svg { display: block; width: 100%; height: auto; }
.hv-chip {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  font-size: .85rem;
  animation: float 5s ease-in-out infinite;
}
.hv-chip strong { display: block; color: var(--navy); font-weight: 600; }
.hv-chip small { display: block; color: var(--muted); font-size: .72rem; }
.hv-chip-1 { top: -16px; right: 20px; animation-delay: 0s; }
.hv-chip-2 { bottom: 40px; left: -10px; animation-delay: 1.5s; }
.hv-chip-3 { bottom: -20px; right: 40px; animation-delay: 3s; background: linear-gradient(135deg,#fff 0%,#f5f8fc 100%); }
.chip-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot-blue  { background: var(--blue-light); }
.dot-green { background: var(--green-light); }
.dot-amber { background: var(--accent); }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%;
  height: 80px;
  display: block;
}

/* ---------- Accreditations strip ---------- */
.accred {
  background: var(--navy);
  color: #cfd9e8;
  padding: 32px 0;
  position: relative;
  margin-top: -1px;
}
.accred-inner { text-align: center; }
.accred-label {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
  color: var(--accent);
  margin-bottom: 22px;
  font-weight: 700;
}
.accred-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}
.badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: left;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.badge:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(245,166,35,.4);
  transform: translateY(-2px);
}
.badge svg {
  width: 26px; height: 26px;
  flex-shrink: 0;
}
.badge-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg,#fbbf57,#ef8e1a);
  color: var(--navy);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.badge-text strong {
  display: block;
  color: #fff;
  font-size: .9rem;
  font-weight: 600;
}
.badge-text small {
  display: block;
  color: #9fb0c8;
  font-size: .72rem;
  letter-spacing: .03em;
}

/* ---------- Service cards ---------- */
.services { gap: 24px; }
.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(74,139,217,.04));
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.service-card[data-tone="amber"]::before { background: linear-gradient(180deg, transparent, rgba(245,166,35,.06)); }
.service-card[data-tone="green"]::before { background: linear-gradient(180deg, transparent, rgba(31,157,85,.06)); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(43,108,176,.25);
}
.service-card:hover::before { opacity: 1; }

.service-card.highlight {
  background: linear-gradient(160deg, #0a2540 0%, #133a6b 100%);
  border-color: transparent;
  color: #d6e0ee;
  box-shadow: var(--shadow-lg);
}
.service-card.highlight h3 { color: #fff; }
.service-card.highlight p,
.service-card.highlight .mini-list li { color: #b8c4d4; }
.service-card.highlight .mini-list li::before { background: var(--accent); }

.ribbon {
  position: absolute;
  top: 14px; right: -32px;
  background: var(--accent);
  color: var(--navy);
  font-weight: 700;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 36px;
  transform: rotate(35deg);
  box-shadow: 0 4px 10px -3px rgba(245,166,35,.6);
}

.service-art {
  width: 80px; height: 80px;
  margin-bottom: 18px;
}
.service-art svg { width: 100%; height: 100%; }
.service-card h3 { margin-bottom: 8px; }
.mini-list {
  margin: 14px 0 18px;
  display: grid;
  gap: 6px;
}
.mini-list li {
  position: relative;
  padding-left: 18px;
  font-size: .9rem;
  color: var(--muted);
}
.mini-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
}
.card-link {
  font-weight: 600;
  font-size: .9rem;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap .15s ease;
}
.card-link:hover { gap: 8px; text-decoration: none; }
.card-link-light { color: var(--accent); }

/* ---------- Stats ---------- */
.stats {
  background: linear-gradient(135deg, #f5f8fc 0%, #fff 100%);
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease;
}
.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  margin-top: 8px;
  color: var(--muted);
  font-size: .9rem;
  letter-spacing: .02em;
}

/* ---------- About ---------- */
.about-art {
  position: relative;
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-floater {
  position: absolute;
  bottom: -22px;
  right: -10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}
.floater-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fbbf57, #ef8e1a);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
}
.about-floater strong { display: block; color: var(--navy); }
.about-floater small { display: block; color: var(--muted); font-size: .78rem; }

.check-list {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: #2c3a4f;
  font-size: .95rem;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 5px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.company-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.company-meta > div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.company-meta span {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 600;
}
.company-meta strong {
  display: block;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 600;
}

/* ---------- Process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  counter-reset: process;
}
.process::before {
  content: '';
  position: absolute;
  top: 38px; left: 8%; right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(10,37,64,.18) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.process-step {
  position: relative;
  padding: 28px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  z-index: 1;
  transition: transform .2s ease, box-shadow .2s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf57, #ef8e1a);
  color: var(--navy);
  font-weight: 800;
  font-family: var(--font-head);
  display: grid;
  place-items: center;
  margin: -42px auto 14px;
  border: 4px solid #fff;
  box-shadow: 0 6px 14px -4px rgba(245,166,35,.5);
}
.process-icon {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: rgba(74,139,217,.12);
  color: var(--blue);
  display: grid;
  place-items: center;
}
.process-step h4 { margin-bottom: 6px; color: var(--navy); }
.process-step p { color: var(--muted); font-size: .9rem; margin-bottom: 0; }

/* ---------- Testimonials ---------- */
.testimonials { gap: 24px; }
.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.testi::before {
  content: '“';
  position: absolute;
  top: 12px; right: 22px;
  font-family: var(--font-head);
  font-size: 5rem;
  line-height: 1;
  color: rgba(245,166,35,.18);
}
.testi:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testi-stars {
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.testi p {
  color: #2c3a4f;
  font-size: .98rem;
  line-height: 1.6;
}
.testi-by {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-head);
}
.testi-by strong { display: block; color: var(--navy); font-size: .92rem; }
.testi-by small { display: block; color: var(--muted); font-size: .78rem; }

/* ---------- Areas ---------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}
.area-grid li {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 16px 18px;
  text-align: center;
  font-weight: 500;
  color: #e3ebf6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.area-grid li:hover {
  background: rgba(245,166,35,.1);
  border-color: rgba(245,166,35,.4);
  transform: translateY(-2px);
}
.areas-foot {
  text-align: center;
  margin-top: 32px;
  color: #b8c4d4;
  position: relative;
  z-index: 1;
}
.areas-foot a { color: var(--accent); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.faq { display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq-item[open] {
  border-color: rgba(245,166,35,.4);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(245,166,35,.15);
  position: relative;
  flex-shrink: 0;
  transition: transform .2s ease, background .2s ease;
}
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--accent);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 2px;
}
.faq-toggle::before { width: 12px; height: 2px; }
.faq-toggle::after  { width: 2px; height: 12px; transition: transform .2s ease; }
.faq-item[open] .faq-toggle::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-body {
  padding: 0 22px 20px;
  color: #364254;
  line-height: 1.65;
  font-size: .95rem;
}

/* ---------- CTA strip ---------- */
.cta-strip {
  position: relative;
  color: #fff;
  padding: 70px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(245,166,35,.25), transparent 60%),
    radial-gradient(700px 400px at 100% 100%, rgba(74,139,217,.25), transparent 60%),
    linear-gradient(135deg, #0a2540 0%, #133a6b 100%);
}
.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-inner h2 { color: #fff; margin: 0; }
.cta-inner p  { color: #cfd9e8; margin: 6px 0 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { gap: 50px; }
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}
.contact-cards li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease;
}
.contact-cards li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.contact-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-cards small {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 2px;
  font-weight: 600;
}
.contact-cards a, .contact-cards span {
  color: var(--navy);
  font-weight: 600;
  font-size: .95rem;
}
.contact-cards a:hover { color: var(--blue); text-decoration: none; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.form-heading { margin-bottom: 20px; font-size: 1.4rem; }
.contact-form .field { margin-bottom: 16px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #aab4c2; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,166,35,.18);
}
.contact-form textarea { resize: vertical; }
.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
  margin: 12px 0 0;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--navy-deep);
  color: #b8c4d4;
  padding: 72px 0 24px;
  overflow: hidden;
}
.footer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 0% 0%, rgba(245,166,35,.08), transparent 60%),
    radial-gradient(600px 400px at 100% 100%, rgba(74,139,217,.08), transparent 60%);
  pointer-events: none;
}
.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-footer ul { display: grid; gap: 8px; }
.site-footer a { color: #b8c4d4; }
.site-footer a:hover { color: var(--accent); text-decoration: none; }
.footer-blurb { color: #9fb0c8; margin-top: 14px; max-width: 320px; }

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  place-items: center;
  color: #cfd9e8;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.socials a:hover {
  background: rgba(245,166,35,.15);
  color: var(--accent);
  border-color: rgba(245,166,35,.4);
  transform: translateY(-2px);
}
.socials svg { width: 18px; height: 18px; }

.footer-foot {
  position: relative;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .82rem;
  color: #7e8da3;
}
.footer-foot p { margin: 0; color: inherit; }

/* ---------- Floating CTA ---------- */
.floating-cta {
  position: fixed;
  bottom: 22px; right: 22px;
  background: linear-gradient(135deg, #fbbf57, #ef8e1a);
  color: var(--navy);
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 30px -8px rgba(239,142,26,.55);
  z-index: 60;
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-cta:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 20px 36px -10px rgba(239,142,26,.7);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hv-main { transform: none; max-width: 520px; margin: 0 auto; }
  .hero-visual { min-height: auto; max-width: 520px; margin: 0 auto; }
  .accred-row { grid-template-columns: repeat(3, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .process::before { display: none; }
  .area-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-wrap { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .section { padding: 80px 0; }
}

@media (max-width: 700px) {
  .topbar-inner { gap: 12px; }
  .topbar-item:not(.topbar-pill) { display: none; }
  .nav { height: 68px; }
  .primary-nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .primary-nav.open {
    display: block;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px 24px;
    z-index: 40;
  }
  .primary-nav.open ul {
    flex-direction: column;
    gap: 14px;
  }

  .hero { padding: 60px 0 100px; }
  .hero-trust { gap: 20px; }
  .accred-row { grid-template-columns: 1fr 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr; gap: 36px; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .check-list { grid-template-columns: 1fr; }
  .company-meta { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 44px; }
  .floating-cta span { display: none; }
  .floating-cta { padding: 14px; }
}
