/* =========================================================
   AutoCallLeads — Professional landing page styles
   Palette: trustworthy blue + clean white/grey
   ENHANCED: per-section gradients + depth + polish + animation
   ========================================================= */
:root {
  --blue: #1a56db;
  --blue-dark: #1442b0;
  --blue-soft: #eef2ff;
  --green: #16a34a;
  --ink: #0f1b2d;
  --body: #475467;
  --muted: #667085;
  --line: #e4e7ec;
  --bg: #eef3fc;
  --bg-soft: #e4ecf9;
  --bg-blue: #e0e9fb;
  --danger: #dc2626;
  --display: 'Plus Jakarta Sans', sans-serif;
  --text: 'DM Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(16, 24, 40, .08);
  --shadow-md: 0 8px 24px rgba(16, 24, 40, .10);
  --shadow-lg: 0 20px 50px rgba(16, 24, 40, .14);
  --radius: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--body);
  font-family: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

h1,
h2,
h3,
.logo {
  font-family: var(--display);
  color: var(--ink)
}

a {
  color: inherit
}

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px
}

/* ============ HEADER ============ */
.bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(238, 243, 252, .85);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(228, 231, 236, .7)
}

.bar .wrap {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 28px
}

.logo {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), #3b6fe8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 86, 219, .35);
  transition: transform .3s
}

.logo:hover .logo-mark {
  transform: rotate(-8deg) scale(1.08)
}

.logo-mark svg {
  width: 20px;
  height: 20px
}

.nav {
  display: flex;
  gap: 26px;
  margin-left: auto
}

.nav a {
  text-decoration: none;
  color: var(--body);
  font-weight: 500;
  font-size: .95rem;
  transition: color .2s;
  position: relative
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width .25s ease
}

.nav a:hover {
  color: var(--blue)
}

.nav a:hover::after {
  width: 100%
}

.bar-cta {
  background: var(--blue);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: .92rem;
  padding: 11px 20px;
  border-radius: 9px;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: var(--shadow-sm)
}

.bar-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md)
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), #3b6fe8);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 18px rgba(26, 86, 219, .28);
  position: relative;
  overflow: hidden
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease
}

.btn-primary:hover::before {
  left: 140%
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(26, 86, 219, .36)
}

.btn-ghost {
  display: inline-block;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 26px;
  border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid var(--line);
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(6px);
  transition: border-color .2s, color .2s, background .2s, transform .15s
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #fff;
  transform: translateY(-2px)
}

.hero .btn-primary {
  background: linear-gradient(135deg, #026f98, #049dc9)
}

.hero .btn-primary:hover {
  background: linear-gradient(135deg, #015a7d, #0288b0)
}

.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .14)
}

.hero .btn-ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, .24)
}

.btn-light {
  display: inline-block;
  background: #fff;
  color: var(--blue);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
  box-shadow: var(--shadow-md)
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg)
}

/* ============ HERO ============ */
.hero {
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden
}

/* ===== 4-COLOUR TOP→BOTTOM LINEAR GRADIENT (from DHIA brand image) ===== */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(700px 480px at 85% 2%, rgba(94, 188, 226, .35), transparent 60%),
    radial-gradient(620px 520px at -4% 60%, rgba(4, 157, 201, .30), transparent 62%),
    linear-gradient(180deg, #049dc9 0%, #5ebce2 34%, #9cd0e5 64%, #026f98 100%);
  background-size: 100% 200%;
  animation: heroGradient 18s ease-in-out infinite
}

@keyframes heroGradient {
  0% {
    background-position: 50% 0%
  }

  50% {
    background-position: 50% 100%
  }

  100% {
    background-position: 50% 0%
  }
}

/* floating aurora blobs for extra depth */
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: .55;
  pointer-events: none
}

.hero-bg::before {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle at 30% 30%, rgba(94, 188, 226, .6), rgba(4, 157, 201, .2) 60%, transparent 75%);
  animation: blobA 18s ease-in-out infinite
}

.hero-bg::after {
  width: 360px;
  height: 360px;
  bottom: -140px;
  left: -60px;
  background: radial-gradient(circle at 40% 40%, rgba(156, 208, 229, .55), rgba(2, 111, 152, .18) 60%, transparent 75%);
  animation: blobB 22s ease-in-out infinite
}

@keyframes blobA {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(-40px, 50px) scale(1.12)
  }
}

@keyframes blobB {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(50px, -40px) scale(1.15)
  }
}

@media(prefers-reduced-motion:reduce) {
  .hero-bg {
    animation: none
  }

  .hero-bg::before,
  .hero-bg::after {
    animation: none
  }
}

/* subtle dot-grid texture overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .15) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 75%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 75%)
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center
}

/* staggered entrance animation for hero copy */
.hero-copy>* {
  opacity: 0;
  transform: translateY(20px);
  animation: heroIn .7s cubic-bezier(.22, 1, .36, 1) forwards
}

.hero-copy>.eyebrow {
  animation-delay: .05s
}

.hero-copy>h1 {
  animation-delay: .18s
}

.hero-copy>.sub {
  animation-delay: .32s
}

.hero-copy>.cta-row {
  animation-delay: .46s
}

.hero-copy>.hero-trust {
  animation-delay: .6s
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: none
  }
}

.stage {
  animation: stageIn .9s cubic-bezier(.22, 1, .36, 1) .35s forwards;
  opacity: 0;
  transform: translateY(26px) scale(.97)
}

@keyframes stageIn {
  to {
    opacity: 1;
    transform: none
  }
}

@media(prefers-reduced-motion:reduce) {

  .hero-copy>*,
  .stage {
    animation: none;
    opacity: 1;
    transform: none
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-weight: 700;
  font-size: .83rem;
  color: #fff;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .4);
  padding: 9px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(2, 111, 152, .18);
  backdrop-filter: blur(8px)
}

.eb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, .18);
  animation: livePulse 1.8s ease-in-out infinite
}

@keyframes livePulse {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(22, 163, 74, .18)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(22, 163, 74, .05)
  }
}

@media(prefers-reduced-motion:reduce) {
  .eb-dot {
    animation: none
  }
}

.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  max-width: 13ch;
  color: #fff;
  text-shadow: 0 2px 18px rgba(2, 75, 110, .25)
}

.hero h1 .hl {
  position: relative;
  background: linear-gradient(110deg, #fff, #e0f7ff 50%, #fff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff;
  animation: hlShift 6s ease-in-out infinite
}

@keyframes hlShift {

  0%,
  100% {
    background-position: 0% center
  }

  50% {
    background-position: 100% center
  }
}

.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .04em;
  height: .12em;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, .2));
  filter: blur(2px)
}

@media(prefers-reduced-motion:reduce) {
  .hero h1 .hl {
    animation: none
  }
}

.hero .sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #eafaff;
  margin-top: 22px;
  max-width: 46ch
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px
}

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: #fff;
  font-weight: 600;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(2, 111, 152, .12);
  backdrop-filter: blur(6px);
  transition: transform .15s, box-shadow .2s, background .2s
}

.hero-trust li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, .24)
}

.hero-trust li svg {
  color: #0d6af5
}

/* ============ SVG ICONS ============ */
svg.ic-sm {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  vertical-align: middle
}

svg.ic-xs {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  vertical-align: middle
}

svg.ic-tiny {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  vertical-align: middle
}

svg.ic-call {
  width: 34px;
  height: 34px;
  color: #fff
}

svg.ic-fab {
  width: 26px;
  height: 26px;
  color: #fff
}

.ht-ic {
  color: var(--green);
  font-weight: 800
}

/* STAT BAR */
.statbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md)
}

.stat {
  background: linear-gradient(180deg, #ffffff, #f7faff);
  padding: 26px 22px;
  text-align: center;
  transition: background .25s, transform .2s
}

.stat:hover {
  background: linear-gradient(180deg, #ffffff, #eef4ff);
  transform: translateY(-3px)
}

.snum {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -.02em
}

.slbl {
  font-size: .84rem;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4
}

/* ===== ANIMATED PHONE ===== */
.stage {
  justify-self: center;
  position: relative;
  width: 280px
}

.stage::after {
  content: "";
  position: absolute;
  inset: -50px -36px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .3), rgba(94, 188, 226, .18) 55%, transparent 70%);
  filter: blur(10px)
}

.phone {
  width: 280px;
  height: 566px;
  border-radius: 40px;
  background: linear-gradient(160deg, #16233a, #0c1525);
  border: 1px solid #1e2a3d;
  padding: 13px;
  position: relative;
  box-shadow: var(--shadow-lg), 0 30px 60px rgba(15, 27, 45, .35);
  animation: phoneFloat 5s ease-in-out infinite
}

@keyframes phoneFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@media(prefers-reduced-motion:reduce) {
  .phone {
    animation: none
  }
}

.screen {
  background: #f4f7fb;
  border-radius: 28px;
  height: 100%;
  overflow: hidden;
  position: relative
}

.notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 20px;
  background: #0f1b2d;
  border-radius: 0 0 16px 16px;
  z-index: 9
}

.statusbar {
  display: flex;
  justify-content: space-between;
  padding: 14px 22px 0;
  font-family: var(--display);
  font-size: .62rem;
  color: var(--muted);
  font-weight: 600
}

.scene {
  position: absolute;
  inset: 0;
  padding: 44px 14px 14px
}

.notif {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(-26px) scale(.95);
  animation: notifIn 9s infinite
}

.notif .head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 7px
}

.notif .badge-src {
  font-family: var(--display);
  font-size: .58rem;
  color: #fff;
  background: var(--blue);
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: .03em
}

.notif .t {
  font-size: .56rem;
  color: var(--muted);
  margin-left: auto
}

.notif .msg {
  font-size: .8rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.4
}

@keyframes notifIn {
  0% {
    opacity: 0;
    transform: translateY(-26px) scale(.95)
  }

  6% {
    opacity: 1;
    transform: translateY(0) scale(1)
  }

  30% {
    opacity: 1
  }

  38% {
    opacity: .3;
    transform: translateY(-6px) scale(.97)
  }

  100% {
    opacity: .3;
    transform: translateY(-6px) scale(.97)
  }
}

.detect {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 118px;
  text-align: center;
  opacity: 0;
  animation: detectIn 9s infinite
}

.detect .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: .66rem;
  color: var(--blue);
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 14px;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: var(--shadow-sm)
}

.detect .ring {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  border-right-color: transparent;
  animation: spin .8s linear infinite
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes detectIn {

  0%,
  30% {
    opacity: 0
  }

  36% {
    opacity: 1
  }

  52% {
    opacity: 1
  }

  58% {
    opacity: 0
  }

  100% {
    opacity: 0
  }
}

.call {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #3b6fe8, #1a56db 45%, #1442b0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  opacity: 0;
  animation: callIn 9s infinite
}

.call .avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
  animation: ripple 1.6s infinite
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .4)
  }

  100% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0)
  }
}

.call .status {
  font-family: var(--display);
  font-size: .72rem;
  color: #bcd2ff;
  letter-spacing: .12em;
  font-weight: 700
}

.call .who {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff
}

.call .timer {
  font-size: .78rem;
  color: #cfe0ff
}

.call .spk {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--display);
  font-size: .64rem;
  color: var(--blue);
  background: #fff;
  padding: 7px 14px;
  border-radius: 30px;
  font-weight: 700;
  margin-top: 4px
}

.call .wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 24px;
  margin-top: 6px
}

.call .wave span {
  display: block;
  width: 3px;
  background: #fff;
  border-radius: 3px;
  animation: wv 1.1s ease-in-out infinite
}

.call .wave span:nth-child(1) {
  animation-delay: 0s
}

.call .wave span:nth-child(2) {
  animation-delay: .15s
}

.call .wave span:nth-child(3) {
  animation-delay: .3s
}

.call .wave span:nth-child(4) {
  animation-delay: .45s
}

.call .wave span:nth-child(5) {
  animation-delay: .6s
}

@keyframes wv {

  0%,
  100% {
    height: 6px;
    opacity: .6
  }

  50% {
    height: 22px;
    opacity: 1
  }
}

@media(prefers-reduced-motion:reduce) {
  .call .wave span {
    animation: none;
    height: 14px
  }
}

@keyframes callIn {

  0%,
  58% {
    opacity: 0;
    visibility: hidden
  }

  62% {
    opacity: 1;
    visibility: visible
  }

  96% {
    opacity: 1;
    visibility: visible
  }

  100% {
    opacity: 0;
    visibility: hidden
  }
}

.caption {
  position: absolute;
  bottom: -44px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: .8rem;
  color: var(--muted);
  height: 22px
}

.caption span {
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0
}

.caption .c1 {
  animation: cap 9s infinite
}

.caption .c2 {
  animation: cap 9s infinite;
  animation-delay: -6.5s
}

.caption .c3 {
  animation: cap 9s infinite;
  animation-delay: -3.4s
}

@keyframes cap {
  0% {
    opacity: 0
  }

  4% {
    opacity: 1
  }

  28% {
    opacity: 1
  }

  33% {
    opacity: 0
  }

  100% {
    opacity: 0
  }
}

@media(prefers-reduced-motion:reduce) {

  .notif,
  .detect,
  .call,
  .caption span,
  .avatar {
    animation: none !important;
    opacity: 1 !important
  }

  .call {
    opacity: 1;
    visibility: visible
  }
}

/* ============ SOURCE STRIP ============ */
.sources {
  padding: 36px 0;
  background: linear-gradient(180deg, #e9f0fb, #dfe9f8);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.sources .lbl {
  text-align: center;
  font-family: var(--display);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: 22px;
  font-weight: 600
}

.src-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px
}

.src-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .15s, box-shadow .2s, border-color .2s
}

.src-chip:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cdddff
}

.src-chip .ok {
  color: #0d6af5;
  font-weight: 800
}

/* ============ SECTION SHELL ============ */
section {
  padding: 84px 0
}

.kicker {
  display: inline-block;
  font-family: var(--display);
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  font-weight: 700;
  background: var(--blue-soft);
  padding: 6px 14px;
  border-radius: 20px
}

h2.sec {
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.08;
  max-width: 20ch;
  color: var(--ink)
}

.sec-sub {
  color: var(--body);
  font-size: 1.08rem;
  margin-top: 16px;
  max-width: 54ch
}

/* ============ LOSS / WHAT IS ============ */
.loss {
  background: linear-gradient(180deg, #fbfdff 0%, #eef4fc 100%);
  position: relative
}

.loss::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  pointer-events: none;
  background: radial-gradient(700px 200px at 50% 0%, rgba(26, 86, 219, .06), transparent 70%)
}

.loss-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 44px
}

.loss-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s
}

.loss-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md)
}

.loss-card.bad {
  border-top: 4px solid var(--danger);
  background: linear-gradient(180deg, #fffafa, #fff)
}

.loss-card.good {
  border-top: 4px solid var(--green);
  background: linear-gradient(180deg, #f7fef9, #fff)
}

.loss-card .tag {
  font-family: var(--display);
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700
}

.loss-card.bad .tag {
  color: var(--danger)
}

.loss-card.good .tag {
  color: var(--green)
}

.loss-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px
}

.loss-card p {
  color: var(--body);
  font-size: 1rem
}

/* ============ STEPS / HOW ============ */
#how {
  background: linear-gradient(180deg, #eaf1fd 0%, #e0e9fb 60%, #dbe6fa 100%);
  position: relative;
  overflow: hidden
}

#how::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 111, 232, .16), transparent 70%);
  pointer-events: none;
  animation: floatGlow 12s ease-in-out infinite
}

@keyframes floatGlow {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-30px, 30px)
  }
}

@media(prefers-reduced-motion:reduce) {
  #how::after {
    animation: none
  }
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  position: relative
}

.step {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md)
}

.step .num {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--blue-soft);
  position: absolute;
  top: 14px;
  right: 20px;
  line-height: 1;
  transition: color .25s
}

.step:hover .num {
  color: #dbe6fb
}

.step-ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), #3b6fe8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 20px rgba(26, 86, 219, .30);
  transition: transform .3s
}

.step:hover .step-ic {
  transform: scale(1.08) rotate(-4deg)
}

.step-ic svg {
  width: 28px;
  height: 28px
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative
}

.step p {
  color: var(--body);
  font-size: .98rem;
  position: relative
}

/* ============ FEATURES ============ */
.features-band {
  background:
    radial-gradient(600px 400px at 85% 10%, rgba(59, 111, 232, .22), transparent 60%),
    radial-gradient(500px 400px at 5% 90%, rgba(26, 86, 219, .18), transparent 60%),
    linear-gradient(160deg, #102347 0%, #0c1b3a 60%, #0a1730 100%);
  position: relative;
  overflow: hidden
}

.features-band .kicker {
  background: rgba(59, 111, 232, .18);
  color: #9dc0ff
}

.features-band h2.sec {
  color: #fff
}

.features-band .sec-sub {
  color: #aebfd8
}

.feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px
}

.feat {
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s, background .25s;
  backdrop-filter: blur(4px)
}

.feat:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
  border-color: rgba(59, 111, 232, .45);
  background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .03))
}

.feat .ic {
  margin-bottom: 14px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(59, 111, 232, .35), rgba(26, 86, 219, .20));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9dc0ff;
  transition: transform .3s
}

.feat:hover .ic {
  transform: scale(1.1) rotate(-4deg)
}

.feat .ic svg {
  width: 26px;
  height: 26px
}

.feat h3 {
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff
}

.feat p {
  color: #aebfd8;
  font-size: .95rem
}

/* ============ ENQUIRY ============ */
.enquiry {
  background:
    radial-gradient(600px 360px at 10% 0%, rgba(22, 163, 74, .07), transparent 60%),
    linear-gradient(180deg, #f3f8ff 0%, #e7eff9 100%)
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

.enquiry-points {
  list-style: none;
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.enquiry-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500
}

.ep-ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(22, 163, 74, .12);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px
}

.dc-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, color .2s, transform .15s
}

.dc-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px)
}

.enquiry-card {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
  box-shadow: var(--shadow-lg)
}

.field {
  margin-bottom: 18px
}

.field label {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink);
  margin-bottom: 7px
}

.field label .opt {
  color: var(--muted);
  font-weight: 400
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--text);
  font-size: 1rem;
  color: var(--ink);
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, .12)
}

.field input.invalid,
.field select.invalid {
  border-color: var(--danger)
}

.field textarea {
  resize: vertical
}

/* 2-column field row */
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

@media(max-width:600px) {
  .row-2 {
    grid-template-columns: 1fr
  }
}

/* portal checkboxes */
/* ── Portal checkboxes ─────────────────────────────── */
.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px
}

.check-opt {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-family: var(--display);
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--line);
  padding: 10px 16px 10px 14px;
  border-radius: 10px;
  transition: border-color .18s, background .18s, box-shadow .18s;
}

.check-opt:hover {
  border-color: #049dc9;
  background: #f5fbff;
  box-shadow: 0 2px 10px rgba(4, 157, 201, .12);
}

/* hide native checkbox */
.check-opt input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* custom box */
.co-box {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 6px;
  border: 2px solid #c8d8e8;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, border-color .18s, transform .15s;
}

/* checkmark (hidden by default) */
.co-box::after {
  content: "";
  width: 5px;
  height: 9px;
  border: 2.5px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) scale(0);
  transition: transform .18s cubic-bezier(.34, 1.56, .64, 1);
  margin-top: -2px;
}

/* CHECKED STATE */
.check-opt input[type="checkbox"]:checked~.co-box {
  background: linear-gradient(135deg, #026f98, #049dc9);
  border-color: #049dc9;
  transform: scale(1.08);
}

.check-opt input[type="checkbox"]:checked~.co-box::after {
  transform: rotate(45deg) scale(1);
}

/* card highlight when checked — JS adds .is-checked class */
.check-opt.is-checked {
  border-color: #049dc9;
  background: linear-gradient(135deg, #e8f8ff, #f0fbff);
  box-shadow: 0 3px 12px rgba(4, 157, 201, .18);
  color: #026f98;
}

/* success banner */
.success-banner {
  display: none;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1.5px solid #86efac;
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 16px;
  animation: bannerIn .4s ease
}

.success-banner.show {
  display: flex
}

.success-banner .success-ic {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.success-banner strong {
  font-family: var(--display);
  font-size: 1.05rem;
  color: #15803d
}

.success-banner p {
  font-size: .9rem;
  color: #166534;
  margin-top: 4px
}

@keyframes bannerIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.err {
  display: block;
  color: var(--danger);
  font-size: .82rem;
  margin-top: 5px;
  min-height: 1px
}

.form-btn {
  width: 100%;
  margin-top: 6px
}

.form-note {
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
  margin-top: 14px
}

.form-success {
  text-align: center;
  padding: 20px 0
}

.success-ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, var(--green));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 10px 26px rgba(22, 163, 74, .35);
  animation: popIn .5s cubic-bezier(.22, 1.4, .4, 1) forwards
}

@keyframes popIn {
  0% {
    transform: scale(.4);
    opacity: 0
  }

  100% {
    transform: scale(1);
    opacity: 1
  }
}

.success-ic svg {
  width: 32px;
  height: 32px
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 10px
}

.form-success p {
  color: var(--body);
  margin-bottom: 22px
}

/* ============ TRUSTED BY / LOGO STRIP ============ */
.trusted {
  padding: 56px 0;
  background: linear-gradient(180deg, #f5fafe 0%, #eaf4fb 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.trusted-lbl {
  text-align: center;
  font-family: var(--display);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 30px
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px 24px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
  filter: grayscale(.15)
}

.brand-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  filter: grayscale(0)
}

.bl-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  background: linear-gradient(135deg, #026f98, #049dc9);
  box-shadow: 0 4px 12px rgba(4, 157, 201, .3)
}

.brand-logo:nth-child(2) .bl-mark {
  background: linear-gradient(135deg, #0d9488, #14b8a6)
}

.brand-logo:nth-child(3) .bl-mark {
  background: linear-gradient(135deg, #1442b0, #2563eb)
}

.brand-logo:nth-child(4) .bl-mark {
  background: linear-gradient(135deg, #0369a1, #0ea5e9)
}

.brand-logo:nth-child(5) .bl-mark {
  background: linear-gradient(135deg, #15803d, #22c55e)
}

.bl-text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: -.01em;
  color: var(--ink)
}

/* ============ FAQ ============ */
#faq {
  background: linear-gradient(180deg, #fbfdff 0%, #eef4fc 100%)
}

.faq-wrap {
  max-width: 780px
}

.faq-list {
  margin-top: 36px
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, border-color .2s
}

.faq-item:hover {
  box-shadow: var(--shadow-md)
}

.faq-item[open] {
  border-color: #cdddff;
  box-shadow: 0 10px 26px rgba(26, 86, 219, .10)
}

.faq-item summary {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center
}

.faq-item summary::-webkit-details-marker {
  display: none
}

.faq-item summary::after {
  content: "+";
  color: var(--blue);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
  transition: transform .25s
}

.faq-item[open] summary::after {
  content: "+";
  transform: rotate(45deg)
}

.faq-item[open] p {
  animation: faqOpen .35s ease
}

@keyframes faqOpen {
  0% {
    opacity: 0;
    transform: translateY(-6px)
  }

  100% {
    opacity: 1;
    transform: none
  }
}

.faq-item p {
  color: var(--body);
  margin-top: 14px;
  font-size: .98rem
}

/* ============ FINAL CTA ============ */
.final {
  background:
    radial-gradient(500px 320px at 12% 12%, rgba(91, 140, 255, .35), transparent 60%),
    radial-gradient(500px 320px at 88% 88%, rgba(22, 163, 74, .20), transparent 60%),
    linear-gradient(135deg, var(--blue), var(--blue-dark));
  text-align: center;
  position: relative;
  overflow: hidden
}

.final::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 75%)
}

.final h2 {
  color: #fff;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: 16px;
  position: relative
}

.final p {
  color: #dbe6ff;
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
  position: relative
}

.final .btn-light {
  position: relative
}

/* call-trigger box inside final CTA */
.call-box {
  position: relative;
  max-width: 560px;
  margin: 0 auto 26px
}

.call-box-lbl {
  color: #dbe6ff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
  position: relative
}

.call-field {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 14px;
  padding: 8px 8px 8px 16px;
  box-shadow: var(--shadow-lg);
  position: relative
}

.call-field-ic {
  color: #026f98;
  flex-shrink: 0
}

.call-field input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--text);
  font-size: 1.02rem;
  color: var(--ink);
  padding: 12px 6px;
  min-width: 0
}

.call-field input::placeholder {
  color: var(--muted)
}

.call-go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  font-size: .98rem;
  color: #fff;
  padding: 13px 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, #026f98, #049dc9);
  box-shadow: 0 6px 16px rgba(2, 111, 152, .4);
  transition: transform .15s, box-shadow .2s, background .2s
}

.call-go:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #015a7d, #0288b0);
  box-shadow: 0 10px 24px rgba(2, 111, 152, .5)
}

.call-go:active {
  transform: translateY(0)
}

.call-err {
  display: block;
  color: #ffd9d9;
  font-size: .85rem;
  margin-top: 10px;
  min-height: 1px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .25)
}

.call-ok {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .32);
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  padding: 11px 18px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
  position: relative;
  animation: callOkIn .4s ease
}

.call-ok svg {
  color: #6ee7b7;
  flex-shrink: 0
}

@keyframes callOkIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@media(max-width:560px) {
  .call-field {
    flex-wrap: wrap;
    padding: 12px
  }

  .call-field input {
    width: 100%;
    flex: 1 1 100%;
    padding: 10px 6px
  }

  .call-go {
    width: 100%;
    justify-content: center
  }
}

/* ============ FOOTER ============ */
footer {
  background: linear-gradient(180deg, #0f1b2d, #0a1422);
  color: #c2cbd9;
  padding: 54px 0 0
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 36px
}

.footer-logo {
  color: #fff;
  margin-bottom: 12px
}

.footer-tag {
  font-size: .92rem;
  max-width: 34ch;
  color: #97a3b6
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.fc-lbl {
  font-family: var(--display);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  font-size: .95rem
}

.footer-contact a {
  color: #c2cbd9;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s
}

.footer-contact a:hover {
  color: #fff
}

.footer-bottom {
  border-top: 1px solid #233047;
  padding: 20px 0;
  text-align: center
}

.footer-bottom p {
  font-size: .84rem;
  color: #7d8aa0
}

/* ============ FLOATING CONTACT BUTTON ============ */
.fab-wrap {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px
}

.fab-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(14px) scale(.92);
  pointer-events: none;
  transition: opacity .25s, transform .25s
}

.fab-wrap.open .fab-options {
  opacity: 1;
  transform: none;
  pointer-events: auto
}

.fab-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: .86rem;
  padding: 11px 16px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  transition: transform .15s, color .2s
}

.fab-opt:hover {
  color: var(--blue);
  transform: translateX(-3px)
}

.fab-opt.wa {
  color: var(--green)
}

.fab-main {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--blue), #3b6fe8);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(26, 86, 219, .4);
  transition: transform .2s, background .2s;
  position: relative
}

.fab-main:hover {
  transform: scale(1.06)
}

.fab-main::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--blue);
  animation: fabring 2s infinite;
  pointer-events: none
}

@keyframes fabring {
  0% {
    transform: scale(1);
    opacity: .6
  }

  100% {
    transform: scale(1.6);
    opacity: 0
  }
}

.fab-wrap.open .fab-main {
  transform: rotate(45deg)
}

.fab-wrap.open .fab-main::after {
  display: none
}

@media(prefers-reduced-motion:reduce) {
  .fab-main::after {
    animation: none
  }
}

/* ============ REVEAL ANIM ============ */
.js-anim .reveal {
  opacity: 0;
  transform: translateY(28px)
}

.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity .7s, transform .7s
}

/* ============ RESPONSIVE ============ */
@media(max-width:1024px) {
  .steps {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:860px) {
  .nav {
    display: none
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 64px
  }

  .stage {
    order: -1
  }

  .loss-grid,
  .steps,
  .feats,
  .enquiry-grid {
    grid-template-columns: 1fr
  }

  .statbar {
    grid-template-columns: 1fr 1fr
  }

  .snum {
    font-size: 1.4rem
  }

  .enquiry-grid {
    gap: 36px
  }

  .hero {
    padding: 54px 0 40px
  }

  section {
    padding: 60px 0
  }

  .fab-wrap {
    right: 16px;
    bottom: 16px
  }

  .fab-main {
    width: 56px;
    height: 56px;
    font-size: 1.45rem
  }
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.brand-logo {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.brand-logo img {
  width: 180px;
  height: 150px;
  object-fit: contain;
  display: block;
}