/* =========================================================
   SABB Insurance Brokers Limited — Premium Website Styles
   Pure CSS. No frameworks.
   ========================================================= */

:root {
  --navy: #0a2e6d;
  --navy-deep: #061d47;
  --navy-soft: #143a82;
  --gold: #c89b3c;
  --gold-light: #e6c170;
  --gold-soft: #f3dca0;
  --white: #ffffff;
  --ink: #0b1530;
  --muted: #5b6478;
  --bg: #f7f9fc;
  --bg-2: #eef2f8;
  --border: rgba(10, 46, 109, 0.12);
  --glass: rgba(255, 255, 255, 0.55);
  --glass-dark: rgba(10, 46, 109, 0.55);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(10, 46, 109, 0.08);
  --shadow-md: 0 12px 32px rgba(10, 46, 109, 0.12);
  --shadow-lg: 0 30px 60px rgba(10, 46, 109, 0.18);
  --grad-brand: linear-gradient(135deg, #0a2e6d 0%, #143a82 55%, #1d4ca6 100%);
  --grad-gold: linear-gradient(135deg, #c89b3c 0%, #e6c170 100%);
  --grad-hero: radial-gradient(1200px 800px at 80% -10%, rgba(200,155,60,0.25), transparent 60%),
               radial-gradient(900px 700px at -10% 30%, rgba(29,76,166,0.45), transparent 60%),
               linear-gradient(160deg, #061d47 0%, #0a2e6d 60%, #143a82 100%);
  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Playfair Display", "Georgia", serif;
}

/* Desktop Navbar Quote Button */
.nav-quote-btn {
    background: #D4AF37;
    color: #0A2E6D;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.nav-quote-btn:hover {
    background: #E0B84B;
    transform: translateY(-2px);
}

/* Mobile Floating Quote Button */
.mobile-quote-btn {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {

    .nav-quote-btn {
        display: none;
    }

    .mobile-quote-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: 20px;
        left: 20px;
        z-index: 9999;

        background: #D4AF37;
        color: #0A2E6D;
        text-decoration: none;
        font-weight: 600;
        font-size: 13px;

        padding: 10px 16px;
        border-radius: 30px;

        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        transition: 0.3s ease;
    }

    .mobile-quote-btn:hover {
        background: #E0B84B;
    }
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .5rem;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; color: var(--muted); }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Loading screen ----- */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--grad-hero);
  display: grid; place-items: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; color: #fff; }
.loader-logo {
  width: 88px; height: 88px; margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.15);
  border-top-color: var(--gold);
  animation: spin 1.1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-text { font-family: var(--font-display); letter-spacing: .3em; font-size: .85rem; opacity: .85; }

/* ----- Mouse glow ----- */
#cursor-glow {
  position: fixed; top: 0; left: 0;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,155,60,.18), transparent 60%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  transition: transform .15s ease-out;
  mix-blend-mode: screen;
}

/* ----- Navbar ----- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 14px 0;
  transition: all .35s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 6px 24px rgba(10,46,109,.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 60px; width: auto; }
.brand-text { display: none; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: .92rem; font-weight: 500; color: var(--ink);
  position: relative; padding: 6px 0;
  transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active::after, .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: inline-flex; }
.menu-btn { display: none; width: 42px; height: 42px; border-radius: 10px; align-items: center; justify-content: center; background: var(--navy); color: #fff; }
.menu-btn svg { width: 22px; height: 22px; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  transition: all .3s ease;
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-gold); color: var(--navy-deep); box-shadow: 0 10px 24px rgba(200,155,60,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(200,155,60,.45); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-link { color: var(--navy); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.btn-link::after { content: "→"; transition: transform .25s; }
.btn-link:hover { color: var(--gold); }
.btn-link:hover::after { transform: translateX(4px); }

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  background: var(--grad-hero);
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--gold-light);
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.hero h1 { color: #fff; margin: 22px 0 18px; }
.hero h1 .accent { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 1.15rem; color: rgba(255,255,255,.78); max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 560px; }
.hero-stat {
  padding: 18px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  backdrop-filter: blur(14px);
}
.hero-stat .n { font-family: var(--font-display); font-size: 1.8rem; color: var(--gold-light); }
.hero-stat .l { font-size: .75rem; color: rgba(255,255,255,.7); letter-spacing: .08em; text-transform: uppercase; }

/* Hero visual */
.hero-visual { position: relative; height: 520px; }
.shield {
  position: absolute; inset: 0; margin: auto;
  width: 380px; height: 460px;
  display: grid; place-items: center;
  border-radius: 50% 50% 22% 22% / 40% 40% 18% 18%;
  background: linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(20px);
  animation: float 7s ease-in-out infinite;
  box-shadow: 0 40px 80px rgba(0,0,0,.35);
}
.shield::after {
  content: ""; position: absolute; inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--gold), transparent 50%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1.5px;
  opacity: .8;
}
.shield svg { width: 140px; height: 140px; color: var(--gold-light); }
.float-card {
  position: absolute;
  padding: 14px 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  backdrop-filter: blur(18px);
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  display: flex; align-items: center; gap: 12px;
  animation: float 6s ease-in-out infinite;
}
.float-card .ic {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--grad-gold); color: var(--navy-deep);
}
.float-card strong { display: block; font-size: .9rem; }
.float-card span { font-size: .72rem; color: rgba(255,255,255,.7); }
.fc-1 { top: 30px; left: -10px; animation-delay: -2s; }
.fc-2 { bottom: 60px; right: -20px; animation-delay: -4s; }
.fc-3 { bottom: -20px; left: 40px; animation-delay: -1s; }

.float-dot {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 18px var(--gold);
  animation: float 5s ease-in-out infinite;
}
.fd-1 { top: 18%; right: 12%; }
.fd-2 { bottom: 22%; left: 6%; animation-delay: -2s; }
.fd-3 { top: 60%; right: 0; animation-delay: -1s; background: #fff; box-shadow: 0 0 18px #fff; }

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

/* ----- Sections base ----- */
section { position: relative; padding: 110px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head .eyebrow { color: var(--gold); background: rgba(200,155,60,.1); border-color: rgba(200,155,60,.25); }
.section-head p { margin-top: 10px; font-size: 1.05rem; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ----- About ----- */
#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.about-visual {
  position: relative;
  padding: 32px;
  background: var(--grad-brand);
  border-radius: 26px;
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 100% 0%, rgba(200,155,60,.35), transparent 60%);
}
.about-visual h3 { color: var(--gold-light); font-family: var(--font-display); position: relative; }
.about-visual ul { list-style: none; padding: 0; margin: 18px 0 0; position: relative; }
.about-visual li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.85); }
.about-visual li:last-child { border: 0; }
.about-visual li svg { width: 20px; height: 20px; color: var(--gold-light); flex-shrink: 0; }

.mvv { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.mvv-card {
  padding: 22px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all .3s;
}
.mvv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.mvv-card .ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-brand); color: var(--gold-light); margin-bottom: 12px; }
.mvv-card h4 { font-family: var(--font-display); color: var(--navy); margin: 0 0 6px; font-size: 1.05rem; }
.mvv-card p { font-size: .9rem; margin: 0; }

/* ----- Why Choose Us ----- */
#why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card {
  position: relative;
  padding: 32px 26px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all .4s ease;
}
.why-card::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-brand);
  opacity: 0; transition: opacity .4s ease;
  z-index: 0;
}
.why-card > * { position: relative; z-index: 1; transition: color .4s ease; }
.why-card .ic {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(10,46,109,.08), rgba(200,155,60,.12));
  color: var(--navy);
  margin-bottom: 18px;
  transition: all .4s;
}
.why-card .ic svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.why-card p { font-size: .92rem; margin: 0; }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.why-card:hover::before { opacity: 1; }
.why-card:hover h3, .why-card:hover p { color: #fff; }
.why-card:hover .ic { background: var(--grad-gold); color: var(--navy-deep); }

/* ----- Services ----- */
#services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  position: relative;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #f7f9fc);
  border: 1px solid var(--border);
  transition: all .35s ease;
  overflow: hidden;
}
.svc-card::after {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--grad-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card .ic {
  width: 50px; height: 50px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--grad-brand); color: var(--gold-light);
}
.svc-card .ic svg { width: 24px; height: 24px; }
.svc-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.svc-card p { font-size: .9rem; margin-bottom: 16px; min-height: 60px; }

/* ----- Compliance Timeline ----- */
#compliance {
  background: var(--grad-brand);
  color: #fff;
  overflow: hidden;
}
#compliance::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 500px at 90% 10%, rgba(200,155,60,.2), transparent 60%);
}
#compliance .section-head h2 { color: #fff; }
#compliance .section-head p { color: rgba(255,255,255,.75); }
#compliance .section-head .eyebrow { color: var(--gold-light); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); }

.timeline { position: relative; max-width: 920px; margin: 0 auto; padding: 20px 0; }
.timeline::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(180deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}
.tl-item {
  position: relative;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
  margin-bottom: 30px;
}
.tl-item .dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 6px rgba(200,155,60,.2);
  position: relative; z-index: 2;
}
.tl-card {
  padding: 22px 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  backdrop-filter: blur(14px);
}
.tl-card h3 { color: var(--gold-light); font-family: var(--font-display); font-size: 1.15rem; margin: 0 0 8px; }
.tl-card p { color: rgba(255,255,255,.78); font-size: .92rem; margin: 0; }
.tl-item:nth-child(odd) .tl-card:first-of-type { grid-column: 1; text-align: right; }
.tl-item:nth-child(odd) .tl-card:last-of-type { display: none; }
.tl-item:nth-child(even) .tl-card:first-of-type { display: none; }
.tl-item:nth-child(even) .tl-card:last-of-type { grid-column: 3; }

/* ----- Claims Process ----- */
#claims { background: var(--bg); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  position: relative;
}
.step {
  position: relative;
  padding: 28px 22px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all .3s;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step .num {
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 16px;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  background: var(--grad-brand); color: var(--gold-light);
  box-shadow: 0 10px 24px rgba(10,46,109,.25);
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: .88rem; margin: 0; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 50px; right: -20px;
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ----- Stats ----- */
#stats { background: var(--navy-deep); color: #fff; padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.5rem); color: var(--gold-light); }
.stat .num::after { content: "+"; color: var(--gold); }
.stat .l { font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.7); }

/* ----- Testimonials ----- */
#testimonials { background: var(--white); overflow: hidden; }
.t-wrap { position: relative; max-width: 880px; margin: 0 auto; }
.t-track { display: flex; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.t-slide { min-width: 100%; padding: 0 6px; }
.t-card {
  padding: 40px;
  background: linear-gradient(160deg, rgba(255,255,255,.7), rgba(238,242,248,.5));
  border: 1px solid var(--border);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.t-card .quote { font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); line-height: 1.6; }
.t-card .who { margin-top: 22px; }
.t-card .who strong { color: var(--navy); }
.t-card .who span { display: block; color: var(--muted); font-size: .85rem; }
.t-card .stars { color: var(--gold); margin-bottom: 16px; letter-spacing: 4px; }
.t-dots { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.t-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); transition: all .3s; cursor: pointer; }
.t-dot.active { background: var(--gold); width: 28px; border-radius: 6px; }

/* ----- FAQ ----- */
#faq { background: var(--bg); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all .25s;
}
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  font-weight: 600; color: var(--navy); text-align: left;
  font-size: 1rem;
}
.faq-q .pm { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--bg); color: var(--navy); transition: all .3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .pm { background: var(--grad-gold); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s; padding: 0 24px; color: var(--muted); }
.faq-item.open .faq-a { max-height: 320px; padding: 0 24px 22px; }

/* ----- Contact ----- */
#contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; }
.contact-info {
  padding: 36px;
  background: var(--grad-brand);
  color: #fff;
  border-radius: 22px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-info::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 100% 100%, rgba(200,155,60,.3), transparent 60%);
}
.contact-info h3, .contact-info p { color: #fff; position: relative; }
.contact-info h3 { font-family: var(--font-display); color: var(--gold-light); }
.contact-info p { color: rgba(255,255,255,.78); }
.ci-list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 18px; position: relative; }
.ci-list li { display: flex; gap: 14px; align-items: flex-start; }
.ci-list .ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; flex-shrink: 0; color: var(--gold-light); }
.ci-list strong { color: #fff; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; }
.ci-list a, .ci-list span { color: rgba(255,255,255,.9); font-size: .95rem; }
.ci-list a:hover { color: var(--gold-light); }
.socials { display: flex; gap: 10px; margin-top: 28px; position: relative; }
.socials a {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: #fff; transition: all .3s;
}
.socials a:hover { background: var(--gold); color: var(--navy-deep); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

.contact-form {
  padding: 36px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: .95rem; color: var(--ink);
  background: var(--bg);
  transition: all .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,155,60,.15);
  background: #fff;
}
.field textarea { min-height: 110px; resize: vertical; }
.map-box {
  margin-top: 24px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #112233; /* Safe backdrop shade structure value anchor color parameter */
  position: relative;
}

/* Ensure the iframe tracking component fills out the dimensional architecture limits flawlessly */
.map-box iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Premium Floating Minimal Office Location Badge Panel styling layout overlay configuration rule properties */
.office-suite-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 5;
  background: rgba(6, 28, 35, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  pointer-events: none; /* Stops the badge layer element cursor area blocking click tracking control behaviors */
}
/* Center-aligns your custom animation pin perfectly over the live map frame window */
.map-pin-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none; /* Allows users to still drag the map behind it */
  z-index: 4;
}
/* ----- Footer ----- */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding: 70px 0 24px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 50% -50%, rgba(200,155,60,.15), transparent 60%);
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; position: relative; }
.foot-brand img { height: 56px; background: #fff; padding: 8px 12px; border-radius: 10px; }
.foot-brand p { margin-top: 16px; font-size: .9rem; max-width: 320px; }
.foot-col h4 { color: #fff; font-family: var(--font-display); font-size: 1rem; margin-bottom: 16px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: .9rem; transition: color .2s; }
.foot-col a:hover { color: var(--gold-light); }
.foot-bottom {
  margin-top: 50px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: .82rem; position: relative;
}
.foot-bottom .tag { color: var(--gold-light); }

/* ----- Back to top ----- */
#toTop {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad-gold); color: var(--navy-deep);
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: all .35s ease;
}
#toTop.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
#toTop:hover { transform: translateY(-4px); }

/* ----- Particles ----- */
#particles { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(200,155,60,.35);
  animation: rise linear infinite;
}
@keyframes rise {
  from { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  to { transform: translateY(-120vh); opacity: 0; }
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 420px; margin-top: 30px; }
  .why-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 76px; left: 16px; right: 16px;
    background: #fff; padding: 22px; border-radius: 16px;
    box-shadow: var(--shadow-lg); gap: 14px;
  }
  .nav-cta { display: none; }
  .menu-btn { display: grid; }
  .hero { padding: 120px 0 60px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .why-grid, .services-grid, .stats-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none !important; }
  .timeline::before { left: 16px; }
  .tl-item { grid-template-columns: 36px 1fr !important; gap: 16px; }
  .tl-item .dot { margin-left: 8px; }
  .tl-item .tl-card { grid-column: 2 !important; text-align: left !important; display: block !important; }
  .tl-item .tl-card:last-of-type:first-of-type { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  section { padding: 80px 0; }
}
@media (max-width: 480px) {
  .why-grid, .services-grid, .stats-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .shield { width: 280px; height: 340px; }
  .shield svg { width: 100px; height: 100px; }
  .fc-2 { right: 0; }
}

#admin-padlock-link:hover .padlock-icon {
  background: rgba(255, 215, 0, 0.25) !important;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5) !important;
  transform: scale(1.1);
}

#admin-padlock-link:active .padlock-icon {
  transform: scale(0.95);
}


/* =========================================================
   LEADERSHIP & EXPERTISE
   ========================================================= */

.leadership-expertise {
  margin-top: 32px;
}


/* heading */

.expertise-heading {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-bottom: 16px;

  color: var(--navy);

  font-size: 0.72rem;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.expertise-line {
  flex: 1;

  height: 1px;

  background: linear-gradient(
    90deg,
    rgba(10, 46, 109, 0.15),
    transparent
  );
}


/* qualification grid */

.qualification-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 10px;
}


/* individual qualification */

.qualification-item {
  position: relative;

  display: flex;
  align-items: flex-start;

  gap: 13px;

  min-height: 78px;

  padding: 14px 15px;

  border: 1px solid rgba(10, 46, 109, 0.08);

  border-radius: 12px;

  background: #fafbfd;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.qualification-item:hover {
  transform: translateY(-2px);

  border-color: rgba(200, 155, 60, 0.35);

  background: #fff;

  box-shadow:
    0 10px 25px rgba(6, 29, 71, 0.06);
}


/* number */

.qualification-number {
  flex-shrink: 0;

  display: grid;
  place-items: center;

  width: 29px;
  height: 29px;

  border-radius: 8px;

  background: rgba(200, 155, 60, 0.10);

  color: var(--gold);

  font-size: 0.63rem;

  font-weight: 800;
}


/* text */

.qualification-content {
  display: flex;
  flex-direction: column;

  gap: 5px;
}

.qualification-content strong {
  color: var(--navy);

  font-size: 0.78rem;

  line-height: 1.35;

  font-weight: 800;
}

.qualification-content span {
  color: var(--muted);

  font-size: 0.68rem;

  line-height: 1.4;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .leadership-expertise {
    margin-top: 25px;
  }

  .qualification-item {
    min-height: 72px;

    padding: 12px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .leadership-expertise {
    margin-top: 25px;
  }

  .expertise-heading {
    justify-content: center;

    font-size: 0.68rem;
  }

  .qualification-grid {
    grid-template-columns: 1fr;

    gap: 8px;
  }

  .qualification-item {
    text-align: left;
  }

  .qualification-content strong {
    font-size: 0.76rem;
  }

  .qualification-content span {
    font-size: 0.66rem;
  }

}




/* =========================================================
   SABB INSURANCE
   SINGLE LEADERSHIP BOARD
   ========================================================= */

.leadership-section {
  position: relative;

  padding: 110px 0 100px;

  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(200, 155, 60, 0.10),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 88%,
      rgba(10, 46, 109, 0.05),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f9fc 100%
    );

  overflow: hidden;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.leadership-heading {
  max-width: 760px;

  margin: 0 auto 55px;

  text-align: center;
}

.leadership-heading .eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 16px;

  color: var(--gold);

  font-size: 0.76rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.16em;
}

.leadership-heading .eyebrow::before,
.leadership-heading .eyebrow::after {
  content: "";

  width: 28px;

  height: 1px;

  background: var(--gold);

  opacity: 0.65;
}

.leadership-heading h2 {
  margin: 0 0 18px;

  color: var(--navy);

  font-size: clamp(2.3rem, 4vw, 3.8rem);

  line-height: 1.08;

  letter-spacing: -0.04em;

  font-weight: 800;
}

.leadership-heading h2 span {
  color: var(--gold);
}

.leadership-heading p {
  max-width: 670px;

  margin: 0 auto;

  color: var(--muted);

  font-size: 1rem;

  line-height: 1.8;
}


/* =========================================================
   MAIN SINGLE CARD
   ========================================================= */

.leadership-board {
  position: relative;

  width: 100%;

  border:
    1px solid
    rgba(10, 46, 109, 0.10);

  border-radius: 30px;

  background:
    rgba(255, 255, 255, 0.97);

  box-shadow:
    0 15px 40px
    rgba(6, 29, 71, 0.06),
    0 35px 90px
    rgba(6, 29, 71, 0.09);

  overflow: hidden;
}


/* Top gold line */

.leadership-board::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;

  height: 3px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--gold),
      transparent
    );
}


/* =========================================================
   CARD HEADER
   ========================================================= */

.leadership-board-header {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 30px 35px;

  border-bottom:
    1px solid
    rgba(10, 46, 109, 0.08);
}

.board-eyebrow {
  display: block;

  margin-bottom: 6px;

  color: var(--gold);

  font-size: 0.65rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.15em;
}

.leadership-board-header h3 {
  margin: 0;

  color: var(--navy);

  font-size: 1.35rem;

  font-weight: 800;
}


/* Leader count */

.board-mark {
  display: flex;

  align-items: center;

  gap: 10px;

  padding: 8px 13px;

  border:
    1px solid
    rgba(200, 155, 60, 0.20);

  border-radius: 10px;

  background:
    rgba(200, 155, 60, 0.06);
}

.board-mark strong {
  color: var(--gold);

  font-size: 1.1rem;

  font-weight: 900;
}

.board-mark span {
  color: var(--navy);

  font-size: 0.65rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}


/* =========================================================
   THREE PROFILES
   ========================================================= */

.leadership-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);
}


/* =========================================================
   PROFILE
   ========================================================= */

.executive-profile {
  position: relative;

  padding: 32px 30px 38px;

  border-right:
    1px solid
    rgba(10, 46, 109, 0.08);
}

.executive-profile:last-child {
  border-right: 0;
}


/* Featured first profile */

.featured-leader {
  background:
    linear-gradient(
      180deg,
      rgba(200, 155, 60, 0.025),
      transparent
    );
}


/* =========================================================
   PHOTO
   ========================================================= */

.executive-photo {
  position: relative;

  width: 100%;

  aspect-ratio: 4 / 4.7;

  margin-bottom: 25px;

  border-radius: 18px;

  overflow: hidden;

  background: var(--navy);

  box-shadow:
    0 15px 35px
    rgba(6, 29, 71, 0.14);
}

.executive-photo img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.7s
    cubic-bezier(0.22, 1, 0.36, 1);
}

.executive-profile:hover
.executive-photo img {
  transform: scale(1.035);
}


/* Image gradient */

.executive-photo-overlay {
  position: absolute;

  z-index: 2;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(6, 29, 71, 0.55)
    );

  pointer-events: none;
}


/* Number */

.executive-number {
  position: absolute;

  z-index: 4;

  left: 16px;
  bottom: 16px;

  display: grid;

  place-items: center;

  width: 42px;
  height: 42px;

  border-radius: 11px;

  background:
    rgba(255, 255, 255, 0.95);

  color: var(--gold);

  font-size: 0.72rem;

  font-weight: 900;

  box-shadow:
    0 8px 20px
    rgba(6, 29, 71, 0.15);
}


/* =========================================================
   PROFILE CONTENT
   ========================================================= */

.executive-content {
  text-align: left;
}


/* Role */

.executive-role {
  display: block;

  min-height: 32px;

  margin-bottom: 9px;

  color: var(--gold);

  font-size: 0.68rem;

  font-weight: 800;

  line-height: 1.45;

  text-transform: uppercase;

  letter-spacing: 0.10em;
}


/* Name */

.executive-content h4 {
  margin: 0 0 14px;

  color: var(--navy);

  font-size: 1.55rem;

  line-height: 1.1;

  letter-spacing: -0.025em;

  font-weight: 800;
}


/* Bio */

.executive-content > p {
  min-height: 118px;

  margin: 0 0 25px;

  color: var(--muted);

  font-size: 0.82rem;

  line-height: 1.75;
}


/* =========================================================
   EXPERTISE HEADING
   ========================================================= */

.executive-expertise {
  display: flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 13px;

  color: var(--navy);

  font-size: 0.63rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.12em;
}

.executive-line {
  flex: 1;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      rgba(10, 46, 109, 0.15),
      transparent
    );
}


/* =========================================================
   ABDIKADIR QUALIFICATIONS
   ========================================================= */

.executive-qualifications {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 7px;
}

.executive-qualification {
  display: flex;

  flex-direction: column;

  gap: 4px;

  padding: 10px 11px;

  border:
    1px solid
    rgba(10, 46, 109, 0.07);

  border-radius: 9px;

  background: #fafbfd;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.executive-qualification:hover {
  transform: translateY(-2px);

  border-color:
    rgba(200, 155, 60, 0.25);

  background: #fff;
}

.executive-qualification strong {
  color: var(--navy);

  font-size: 0.68rem;

  line-height: 1.35;

  font-weight: 800;
}

.executive-qualification span {
  color: var(--muted);

  font-size: 0.60rem;

  line-height: 1.35;
}


/* =========================================================
   OTHER LEADERS — FOCUS LIST
   ========================================================= */

.executive-focus-list {
  display: flex;

  flex-direction: column;

  gap: 8px;
}

.executive-focus-list > div {
  display: flex;

  align-items: center;

  gap: 10px;

  padding: 11px 12px;

  border:
    1px solid
    rgba(10, 46, 109, 0.07);

  border-radius: 9px;

  background: #fafbfd;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.executive-focus-list > div:hover {
  transform: translateX(2px);

  border-color:
    rgba(200, 155, 60, 0.25);

  background: #fff;
}

.focus-icon {
  display: grid;

  place-items: center;

  width: 22px;
  height: 22px;

  flex-shrink: 0;

  border-radius: 50%;

  background:
    rgba(200, 155, 60, 0.10);

  color: var(--gold);

  font-size: 0.65rem;

  font-weight: 900;
}

.executive-focus-list strong {
  color: var(--navy);

  font-size: 0.68rem;

  font-weight: 800;
}


/* =========================================================
   FOOTER
   ========================================================= */

.leadership-board-footer {
  display: flex;

  align-items: center;

  gap: 18px;

  padding: 22px 35px;

  border-top:
    1px solid
    rgba(10, 46, 109, 0.08);

  color: var(--muted);

  font-size: 0.63rem;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.12em;

  text-align: center;
}

.leadership-board-footer span {
  white-space: nowrap;
}

.leadership-board-footer b {
  color: var(--gold);

  margin: 0 4px;
}

.footer-line {
  flex: 1;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(10, 46, 109, 0.12)
    );
}

.footer-line:last-child {
  background:
    linear-gradient(
      90deg,
      rgba(10, 46, 109, 0.12),
      transparent
    );
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

  .executive-profile {
    padding:
      25px 18px 30px;
  }

  .executive-content h4 {
    font-size: 1.3rem;
  }

  .executive-content > p {
    min-height: 150px;

    font-size: 0.76rem;
  }

  .executive-role {
    font-size: 0.61rem;
  }

  .executive-qualifications {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {

  .leadership-section {
    padding: 75px 0 65px;
  }

  .leadership-heading {
    margin-bottom: 35px;
  }

  .leadership-heading h2 {
    font-size: 2.25rem;
  }

  .leadership-heading p {
    font-size: 0.90rem;
  }


  /* Header */

  .leadership-board-header {
    padding: 23px 20px;
  }

  .leadership-board-header h3 {
    font-size: 1.15rem;
  }


  /* Stack profiles */

  .leadership-grid {
    grid-template-columns: 1fr;
  }


  .executive-profile {
    padding:
      30px 22px 38px;

    border-right: 0;

    border-bottom:
      1px solid
      rgba(10, 46, 109, 0.08);
  }

  .executive-profile:last-child {
    border-bottom: 0;
  }


  /* Photo */

  .executive-photo {
    max-width: 330px;

    margin:
      0 auto 25px;
  }


  /* Text */

  .executive-content {
    text-align: center;
  }

  .executive-role {
    min-height: auto;
  }

  .executive-content h4 {
    font-size: 1.65rem;
  }

  .executive-content > p {
    min-height: auto;

    max-width: 520px;

    margin:
      0 auto 25px;
  }


  .executive-expertise {
    justify-content: center;
  }


  .executive-qualifications {
    max-width: 500px;

    margin: 0 auto;

    text-align: left;
  }


  .executive-focus-list {
    max-width: 500px;

    margin: 0 auto;

    text-align: left;
  }


  /* Footer */

  .leadership-board-footer {
    flex-direction: column;

    gap: 10px;

    padding: 20px;
  }

  .leadership-board-footer span {
    white-space: normal;

    line-height: 1.5;
  }

  .footer-line {
    width: 70px;

    flex: none;
  }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

  .leadership-board {
    border-radius: 22px;
  }

  .leadership-board-header {
    padding: 20px 17px;
  }

  .board-mark {
    padding: 7px 9px;
  }

  .board-mark span {
    display: none;
  }

  .executive-profile {
    padding:
      23px 17px 30px;
  }

  .executive-photo {
    border-radius: 15px;
  }

  .executive-content h4 {
    font-size: 1.5rem;
  }

  .executive-content > p {
    font-size: 0.78rem;
  }

}




.services-page-hero {
  padding: 150px 0 70px;
  background: var(--grad-hero);
  color: #fff;
}

.services-page-hero h1 {
  color: #fff;
  max-width: 760px;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.services-page-hero p {
  max-width: 680px;
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.services-detail-page {
  background: #f7f9fc;
}

.services-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: start;
}

.services-menu {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(10,46,109,.1);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(6,29,71,.08);
}

.services-menu a {
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--navy);
  font-weight: 700;
  font-size: .9rem;
}

.services-menu a:hover {
  background: rgba(200,155,60,.12);
  color: var(--gold);
}

.service-articles {
  display: grid;
  gap: 22px;
}

.service-article {
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(10,46,109,.1);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(6,29,71,.08);
  scroll-margin-top: 110px;
}

.service-kicker {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
}

.service-article h2 {
  margin: 8px 0 14px;
  color: var(--navy);
}

.service-article h3 {
  margin-top: 24px;
  color: var(--navy);
}

.service-article p,
.service-article li {
  color: var(--muted);
  line-height: 1.8;
}

.service-article ul {
  padding-left: 20px;
}

.service-cta {
  padding: 34px;
  border-radius: 18px;
  background: var(--grad-hero);
  color: #fff;
}

.service-cta h2 {
  color: #fff;
}

.service-cta p {
  color: rgba(255,255,255,.78);
}

@media (max-width: 900px) {
  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-menu {
    position: relative;
    top: auto;
    display: flex;
    overflow-x: auto;
    padding: 10px;
    border-radius: 14px;
  }

  .services-menu a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .service-article {
    padding: 24px 20px;
  }
}