:root {
  --white: #ffffff;
  --blue: #0967e8;
  --blue-dark: #0758c8;
  --dark: #111820;
  --dark-2: #0a182b;
  --steel: #6f7780;
  --pale: #f3f7fc;
  --charcoal: #4a5058;
  --line: #dce5f0;
  --shadow: 0 22px 60px rgba(17, 24, 32, 0.10);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
section[id] { scroll-margin-top: 90px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--dark);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 229, 240, 0.88);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 245px; height: auto; aspect-ratio: 1200 / 262; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a {
  color: var(--dark);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 750;
}
.site-nav a:not(.nav-cta):hover { color: var(--blue); }
.nav-cta {
  padding: 10px 16px;
  color: var(--white) !important;
  background: var(--dark);
  border-radius: 10px;
}
.nav-cta:hover { background: var(--blue); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--dark);
  border-radius: 99px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 82px;
  background:
    radial-gradient(circle at 82% 18%, rgba(9, 103, 232, 0.12), transparent 31%),
    linear-gradient(180deg, #fff 0%, #f9fbfe 100%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(9, 103, 232, 0.17);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(9, 103, 232, 0.025), 0 0 0 96px rgba(9, 103, 232, 0.018);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  align-items: center;
  gap: 64px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 28px;
  height: 3px;
  background: currentColor;
  border-radius: 99px;
}
.eyebrow.light { color: #83b8ff; }
.hero h1,
.section-heading h2,
.results-copy h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--dark);
  letter-spacing: -0.055em;
  line-height: 0.98;
}
.hero h1 {
  max-width: 790px;
  font-size: clamp(3.2rem, 5.6vw, 5.75rem);
}
.hero h1 em {
  color: var(--blue);
  font-style: normal;
}
.hero-intro {
  max-width: 760px;
  margin: 30px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
}
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 2px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.15;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); box-shadow: 0 12px 30px rgba(9, 103, 232, .22); }
.button-primary:hover { background: var(--blue-dark); }
.button-secondary { color: var(--dark); background: var(--white); border-color: var(--line); }
.button-secondary:hover { color: var(--blue); border-color: var(--blue); }
.button-light { color: var(--dark); background: var(--white); }
.full-width { width: 100%; }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  color: var(--dark);
  font-size: .9rem;
  font-weight: 750;
}
.trust-list li::before { content: "✓"; margin-right: 8px; color: var(--blue); font-weight: 950; }

.hero-proof {
  position: relative;
  padding: 34px;
  color: rgba(255,255,255,.80);
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(10, 24, 43, .22);
  overflow: hidden;
}
.hero-proof::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -90px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(9, 103, 232, .48), transparent 66%);
}
.proof-kicker { position: relative; margin: 0 0 24px; color: #83b8ff; font-size: .76rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.proof-rank { position: relative; display: flex; align-items: flex-end; gap: 18px; padding-bottom: 26px; border-bottom: 1px solid rgba(255,255,255,.12); }
.proof-rank strong { color: var(--white); font-size: 5.3rem; line-height: .8; letter-spacing: -.07em; }
.proof-rank span { padding-bottom: 2px; font-size: .93rem; line-height: 1.38; }
.proof-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; padding: 26px 0 25px; }
.proof-grid div { display: flex; flex-direction: column; }
.proof-grid strong { color: var(--white); font-size: 1.42rem; line-height: 1.2; }
.proof-grid span { margin-top: 4px; font-size: .78rem; }
.hero-proof > a { position: relative; color: var(--white); font-weight: 800; text-decoration: none; }
.hero-proof > a:hover { color: #83b8ff; }

.reality-strip { color: var(--white); background: var(--dark); }
.reality-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.reality-grid span { padding: 19px 22px; text-align: center; font-size: .88rem; font-weight: 750; border-right: 1px solid rgba(255,255,255,.10); }
.reality-grid span:last-child { border-right: 0; }

.section { padding: 104px 0; }
.section-pale { background: var(--pale); }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading.centred { margin-inline: auto; text-align: center; }
.section-heading.centred .eyebrow { justify-content: center; }
.section-heading h2,
.results-copy h2,
.about-copy h2,
.contact-copy h2 { font-size: clamp(2.45rem, 5vw, 4.6rem); }
.section-heading > p:last-child { max-width: 680px; margin: 23px 0 0; font-size: 1.08rem; }
.section-heading.centred > p:last-child { margin-inline: auto; }
.card-grid { display: grid; gap: 22px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.service-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(9,103,232,.40); box-shadow: var(--shadow); }
.service-number { color: var(--blue); font-size: .74rem; font-weight: 900; letter-spacing: .15em; }
.service-card h3 { margin: 16px 0 12px; color: var(--dark); font-size: 1.55rem; letter-spacing: -.03em; }
.service-card p { margin: 0; }
.service-card ul,
.price-card ul { margin: 24px 0 0; padding: 0; list-style: none; }
.service-card li,
.price-card li { position: relative; padding: 8px 0 8px 24px; border-top: 1px solid #edf1f6; font-size: .93rem; }
.service-card li::before,
.price-card li::before { content: ""; position: absolute; top: 18px; left: 2px; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; box-shadow: 0 0 0 4px rgba(9,103,232,.10); }

.service-smallprint { margin-top: 22px !important; padding-top: 18px; color: var(--steel); border-top: 1px solid #edf1f6; font-size: .79rem; line-height: 1.55; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 22px; }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.price-card.featured { border: 2px solid var(--blue); box-shadow: 0 24px 70px rgba(9, 103, 232, .15); }
.popular-tag {
  position: absolute;
  top: -15px;
  right: 22px;
  margin: 0;
  padding: 7px 12px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.price-label { margin: 0 0 10px; color: var(--blue); font-size: .76rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.price-card h3 { min-height: 58px; margin: 0; color: var(--dark); font-size: 1.45rem; letter-spacing: -.025em; }
.price { display: flex; align-items: flex-end; margin: 17px 0 0; color: var(--dark); font-size: 3.7rem; font-weight: 900; line-height: .9; letter-spacing: -.055em; }
.price > span { margin-right: 3px; font-size: 1.5rem; line-height: 1.3; }
.price small { margin-left: 7px; color: var(--steel); font-size: .9rem; font-weight: 700; letter-spacing: 0; }
.price-note { margin: 12px 0 0; color: var(--steel); font-size: .86rem; }
.price-card ul { margin-bottom: 28px; }
.price-card .button { margin-top: auto; }
.package-footnote { max-width: 920px; margin: 24px auto 0; text-align: center; font-size: .9rem; }

.scope-note { margin: 4px 0 26px; padding: 14px 15px; color: var(--charcoal); background: var(--pale); border-radius: 12px; font-size: .78rem; line-height: 1.5; }
.package-terms { margin-top: 34px; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.package-terms h3 { margin: 0; color: var(--dark); font-size: 1.3rem; letter-spacing: -.025em; text-align: center; }
.terms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 24px; margin-top: 24px; }
.terms-grid p { margin: 0; padding-top: 14px; border-top: 1px solid #edf1f6; font-size: .82rem; line-height: 1.55; }
.terms-grid strong { color: var(--dark); }

.process-section { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.process-card { padding: 30px; background: var(--pale); border: 1px solid var(--line); border-radius: var(--radius); }
.process-card > span { display: grid; width: 42px; height: 42px; place-items: center; color: var(--white); background: var(--blue); border-radius: 12px; font-weight: 900; }
.process-card h3 { margin: 22px 0 10px; color: var(--dark); font-size: 1.35rem; line-height: 1.2; letter-spacing: -.025em; }
.process-card p { margin: 0; }

.results-section { color: rgba(255,255,255,.76); background: var(--dark-2); }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.results-copy h2 { color: var(--white); }
.results-copy p { margin: 25px 0 0; }
.results-copy strong { color: var(--white); }

.case-actions { margin-top: 30px; padding: 22px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.10); border-radius: 18px; }
.case-actions h3 { margin: 0 0 12px; color: var(--white); font-size: 1rem; }
.case-actions ul { display: grid; gap: 7px; margin: 0; padding: 0; list-style: none; }
.case-actions li { position: relative; padding-left: 20px; font-size: .88rem; }
.case-actions li::before { content: ""; position: absolute; top: .72em; left: 1px; width: 7px; height: 7px; background: #83b8ff; border-radius: 50%; }
.results-actions { margin-top: 32px; }
.results-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.result-stat {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
}
.result-stat.large { grid-column: span 2; min-height: 210px; background: linear-gradient(135deg, rgba(9,103,232,.34), rgba(255,255,255,.045)); }
.result-value { color: var(--white); font-size: 2.65rem; font-weight: 900; line-height: 1; letter-spacing: -.05em; }
.result-stat.large .result-value { font-size: 4rem; }
.result-label { margin-top: 10px; color: rgba(255,255,255,.82); font-weight: 750; }
.result-change { margin-top: 5px; color: #83b8ff; font-size: .8rem; font-weight: 800; }
.results-disclaimer { margin: 42px 0 0; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.10); font-size: .83rem; color: rgba(255,255,255,.55); }

.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 78px; }
.about-image-wrap { position: relative; }
.about-image-frame { position: relative; z-index: 2; width: 100%; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); background: var(--dark-2); }
.about-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-image-accent { position: absolute; z-index: 1; top: -18px; left: -18px; width: 72%; height: 72%; background: var(--blue); border-radius: 28px; opacity: .92; }
.image-caption { position: relative; z-index: 3; width: calc(100% - 36px); margin: -27px auto 0; padding: 15px 18px; color: var(--dark); background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 12px 30px rgba(17,24,32,.10); text-align: center; font-size: .78rem; font-weight: 800; }
.about-copy p { margin: 24px 0 0; }
.about-points { display: grid; gap: 13px; margin-top: 30px; }
.about-points div { display: grid; grid-template-columns: 90px 1fr; gap: 14px; padding: 15px 0; border-top: 1px solid var(--line); }
.about-points strong { color: var(--blue); }

.faq-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; }
.faq-list details { padding: 22px 0; border-top: 1px solid #cfdbea; }
.faq-list details:last-child { border-bottom: 1px solid #cfdbea; }
.faq-list summary { position: relative; padding-right: 36px; color: var(--dark); cursor: pointer; list-style: none; font-weight: 850; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 3px; top: -4px; color: var(--blue); font-size: 1.6rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { margin: 14px 0 0; }

.contact-section { padding: 104px 0; color: rgba(255,255,255,.76); background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 70px; }
.contact-copy { position: sticky; top: 118px; }
.contact-copy h2 { color: var(--white); }
.contact-copy > p { margin: 25px 0 0; }
.contact-direct { display: flex; flex-direction: column; gap: 4px; margin-top: 34px; }
.contact-direct span { color: #83b8ff; font-size: .76rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.contact-direct a { color: var(--white); font-size: clamp(1.1rem, 2.4vw, 1.45rem); font-weight: 850; text-decoration: none; overflow-wrap: anywhere; }
.contact-direct a:hover { color: #83b8ff; }
.response-note { color: rgba(255,255,255,.49); font-size: .84rem; }
.contact-form { padding: 34px; color: var(--charcoal); background: var(--white); border-radius: 26px; box-shadow: 0 28px 80px rgba(0,0,0,.20); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 18px; color: var(--dark); font-size: .84rem; font-weight: 820; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  color: var(--dark);
  background: #fbfcfe;
  border: 1px solid #ccd8e6;
  border-radius: 10px;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(9,103,232,.12); }
.contact-form textarea { resize: vertical; min-height: 150px; }
.optional { color: var(--steel); font-weight: 650; }
.checkbox-label { display: flex !important; align-items: flex-start; gap: 10px; color: var(--charcoal) !important; font-weight: 600 !important; line-height: 1.45; }
.checkbox-label input { width: 18px; height: 18px; flex: 0 0 auto; margin: 2px 0 0; accent-color: var(--blue); }
.checkbox-label a { color: var(--blue); }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; opacity: 0 !important; pointer-events: none !important; }

.site-footer { padding: 46px 0; color: #72808f; background: #09121f; border-top: 1px solid rgba(255,255,255,.07); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 45px; align-items: start; }
.footer-brand { display: inline-block; color: var(--white); text-decoration: none; font-size: 1.05rem; font-weight: 950; letter-spacing: -.02em; }
.footer-brand span { color: #83b8ff; }
.site-footer p { max-width: 430px; margin: 12px 0 0; font-size: .85rem; }
.footer-links,
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: .84rem; }
.footer-links a,
.footer-contact a { color: #aeb8c3; text-decoration: none; }
.footer-links a:hover,
.footer-contact a:hover { color: var(--white); }

.simple-page { min-height: 100vh; display: flex; flex-direction: column; background: var(--pale); }
.simple-main { flex: 1; display: grid; place-items: center; padding: 70px 0; }
.simple-card { width: min(calc(100% - 40px), 780px); padding: clamp(30px, 6vw, 62px); background: var(--white); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.simple-card h1 { margin: 0; color: var(--dark); font-size: clamp(2.5rem, 7vw, 4.8rem); line-height: 1; letter-spacing: -.055em; }
.simple-card h1 span { color: var(--blue); }
.simple-card h2 { margin-top: 36px; color: var(--dark); letter-spacing: -.03em; }
.simple-card p,
.simple-card li { font-size: .97rem; }
.simple-card .button-row { margin-top: 28px; }
.simple-logo { display: block; width: min(270px, 100%); height: auto !important; aspect-ratio: 1200 / 262; object-fit: contain; margin-bottom: 32px; }
.privacy-content h1 { margin-bottom: 24px; }
.privacy-content h2 { margin: 34px 0 8px; }
.privacy-content ul { padding-left: 22px; }

:focus-visible { outline: 3px solid rgba(9,103,232,.42); outline-offset: 3px; }

@media (max-width: 980px) {
  .hero-grid,
  .results-grid,
  .about-grid,
  .faq-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 48px; }
  .hero-copy { max-width: 850px; }
  .hero-proof { max-width: 620px; }
  .services-grid,
  .pricing-grid,
  .process-grid { grid-template-columns: 1fr; }
  .price-card h3 { min-height: auto; }
  .price-card { max-width: 720px; width: 100%; margin-inline: auto; }
  .about-image-wrap { max-width: 540px; }
  .about-grid { gap: 60px; }
  .terms-grid { grid-template-columns: 1fr 1fr; }
  .contact-copy { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: span 2; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 70px; }
  .brand img { width: 205px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 70px;
    right: 14px;
    left: 14px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  body.nav-open .site-nav { display: flex; }
  .site-nav a { padding: 12px 10px; }
  .nav-cta { margin-top: 6px; text-align: center; }
  .hero { padding: 68px 0 62px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.85rem, 12vw, 4.5rem); }
  .hero-proof { padding: 26px; }
  .proof-rank strong { font-size: 4.4rem; }
  .reality-grid { grid-template-columns: 1fr; }
  .reality-grid span { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.10); }
  .reality-grid span:last-child { border-bottom: 0; }
  .section,
  .contact-section { padding: 76px 0; }
  .section-heading { margin-bottom: 36px; }
  .service-card,
  .price-card,
  .process-card,
  .contact-form,
  .package-terms { padding: 26px; }
  .result-stat.large .result-value { font-size: 3.3rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .terms-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
}

@media (max-width: 480px) {
  .button-row { flex-direction: column; }
  .button-row .button { width: 100%; }
  .trust-list { flex-direction: column; gap: 8px; }
  .proof-grid { grid-template-columns: 1fr; }
  .results-panel { grid-template-columns: 1fr; }
  .result-stat.large { grid-column: auto; }
  .about-points div { grid-template-columns: 1fr; gap: 3px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Version 4: supplied Brandhammer icon set, photography offer and compact proof layout */
.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.service-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  object-fit: contain;
}
.service-number {
  padding-top: 4px;
}
.service-card h3 {
  margin-top: 18px;
}

.service-addon {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 30px 48px;
  margin-top: 24px;
  padding: 34px;
  background: linear-gradient(135deg, var(--dark-2), #102846);
  border: 1px solid rgba(9, 103, 232, .18);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(17, 24, 32, .10);
}
.service-addon-copy h3 {
  margin: 7px 0 12px;
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  letter-spacing: -.04em;
  line-height: 1.05;
}
.service-addon-copy p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}
.service-addon-kicker {
  margin: 0;
  color: #83b8ff;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.service-addon-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 0 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-addon-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  color: rgba(255, 255, 255, .85);
  border-top: 1px solid rgba(255, 255, 255, .10);
  font-size: .9rem;
}
.service-addon-list li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 1px;
  width: 7px;
  height: 7px;
  background: #83b8ff;
  border-radius: 50%;
}
.service-addon-note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  color: rgba(255, 255, 255, .57);
  border-top: 1px solid rgba(255, 255, 255, .10);
  font-size: .82rem;
}

.section-heading.with-section-icon .section-icon-tile {
  margin: 0 auto 18px;
}
.section-icon-tile {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: 19px;
  box-shadow: 0 12px 28px rgba(17, 24, 32, .08);
}
.section-icon-tile img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.section-icon-tile-light {
  background: var(--white);
  border-color: rgba(255, 255, 255, .20);
}
.results-copy > .section-icon-tile,
.contact-copy > .section-icon-tile {
  margin-bottom: 18px;
}

.results-metrics-wrap {
  min-width: 0;
}
.results-panel-compact .result-stat {
  min-height: 178px;
  justify-content: flex-end;
  padding: 24px;
}
.results-panel-compact .result-value {
  font-size: clamp(2rem, 4.1vw, 3.2rem);
}
.results-panel-compact .result-label {
  font-size: .86rem;
  line-height: 1.42;
}
.secondary-metrics {
  margin: 16px 0 0;
  padding: 17px 18px;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 14px;
  font-size: .84rem;
  font-weight: 750;
  line-height: 1.55;
  text-align: center;
}
.secondary-metrics span {
  margin: 0 5px;
  color: #83b8ff;
}
.reported-enquiries {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, .52);
  font-size: .79rem;
  text-align: center;
}

.image-caption {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1px;
}
.image-caption strong {
  color: var(--dark);
  font-size: .9rem;
  line-height: 1.25;
}
.image-caption span {
  color: var(--steel);
  font-size: .74rem;
  font-weight: 720;
}

@media (max-width: 980px) {
  .service-addon {
    grid-template-columns: 1fr;
  }
  .service-addon-note {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  .service-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
  .service-addon {
    padding: 26px;
    gap: 24px;
  }
  .service-addon-list {
    grid-template-columns: 1fr;
  }
  .section-icon-tile {
    width: 66px;
    height: 66px;
    border-radius: 17px;
  }
  .section-icon-tile img {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .results-panel.results-panel-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .results-panel-compact .result-stat {
    min-height: 150px;
    padding: 17px;
  }
  .results-panel-compact .result-value {
    font-size: clamp(1.7rem, 9vw, 2.35rem);
  }
  .results-panel-compact .result-label {
    font-size: .72rem;
  }
  .secondary-metrics {
    font-size: .77rem;
  }
}
