/* ============================================================
   CLEANFLO — home.css
   Homepage stylesheet. Hero fills one viewport — no scrolling.
   All colours come from the root tokens in style.css.
   Add new sections BELOW the marked divider.
   ============================================================ */

/* ── Local shorthand tokens (mapped to global root vars) ──── */
.cf-home {
  --h-ease:    cubic-bezier(.22,.61,.36,1);
  --h-ease-o:  cubic-bezier(0,0,.2,1);
  --h-r:       14px;
  --h-r-lg:    20px;
  --h-r-xl:    28px;
  --h-fg:      #ffffff;
  --h-muted:   rgba(255,255,255,.70);
  --h-soft:    rgba(255,255,255,.10);
  --h-soft-2:  rgba(255,255,255,.16);
  --h-ring:    rgba(255,255,255,.40);
  --h-shadow:  0 24px 56px -16px rgba(6,50,74,.35);
}

/* ============================================================
   SECTION 01 — HERO BANNER
   Fills the full viewport in one screen on desktop.
   ============================================================ */

/* ── Shell ─────────────────────────────────────────────────── */
.cf-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  color: var(--h-fg);
  background:
    radial-gradient(ellipse 65% 55% at 100%   0%, rgba(20,154,135,.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at   0% 100%, rgba(10,127,174,.30) 0%, transparent 55%),
    linear-gradient(135deg, #0674A2 0%, #0F9BB2 48%, #1EA7D8 100%);
}

/* ── Background decoration ─────────────────────────────────── */
.cf-hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.cf-hero__grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse 75% 65% at 55% 40%, #000 20%, transparent 80%);
}

.cf-hero__orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(80px);
}
.cf-hero__orb--a {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(20,154,135,.45), transparent 70%);
  top: -180px; left: -140px; opacity: .6;
  animation: cf-breathe 18s ease-in-out infinite alternate;
}
.cf-hero__orb--b {
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
  bottom: -240px; right: -180px; opacity: .5;
  animation: cf-breathe 24s ease-in-out infinite alternate-reverse;
}
@keyframes cf-breathe {
  from { transform: scale(1)   translate(0, 0); }
  to   { transform: scale(1.1) translate(2%, -2%); }
}

/* ── Main body ──────────────────────────────────────────────── */
.cf-hero__body {
  position: relative; z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
}

/* ── Two-column grid ───────────────────────────────────────── */
.cf-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 4.5rem);
  padding-top: clamp(4.5rem, 8vw, 6.5rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}
@media (max-width: 1024px) {
  .cf-hero__inner {
    grid-template-columns: 1fr;
    padding-top: clamp(5rem, 10vw, 7rem);
    padding-bottom: clamp(2rem, 4vw, 3rem);
  }
}

/* ── LEFT — copy ───────────────────────────────────────────── */
.cf-hero__content { max-width: 620px; }

/* Eyebrow */
.cf-hero__eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .42rem 1rem; border-radius: 999px;
  background: var(--h-soft);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  font-size: clamp(.66rem, .6rem + .18vw, .74rem);
  font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.25rem;
  animation: cf-in .6s .05s var(--h-ease) both;
}
.cf-hero__eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.2);
  flex-shrink: 0;
  animation: cf-pulse 2.5s ease-in-out infinite;
}
.cf-hero__eyebrow-sep {
  width: 1px; height: 12px;
  background: rgba(255,255,255,.3);
}
@keyframes cf-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,255,255,.2); }
  50%       { box-shadow: 0 0 0 7px rgba(255,255,255,.06); }
}

/* Headline */
.cf-hero__title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(2rem, 1rem + 3.6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin: 0 0 1.1rem;
  text-wrap: balance;
  animation: cf-in .65s .12s var(--h-ease) both;
}
.cf-hero__title-plain { color: #fff; }
.cf-hero__title-accent {
  position: relative; display: inline-block;
  color: #d6fff9;
}
.cf-hero__underline-svg {
  position: absolute; left: 0; bottom: -.25em;
  width: 100%; overflow: visible; pointer-events: none;
}
.cf-hero__underline-path {
  fill: none;
  stroke: rgba(255,255,255,.55);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: cf-draw 1s .9s var(--h-ease-o) forwards;
}
@keyframes cf-draw { to { stroke-dashoffset: 0; } }

/* Description */
.cf-hero__desc {
  font-size: clamp(.88rem, .82rem + .32vw, 1.05rem);
  line-height: 1.72;
  color: var(--h-muted);
  max-width: 520px;
  margin: 0 0 1.5rem;
  animation: cf-in .65s .22s var(--h-ease) both;
}

/* Trust pills */
.cf-hero__trust {
  display: flex; flex-wrap: wrap;
  gap: .4rem .6rem;
  margin: 0 0 1.75rem;
  animation: cf-in .6s .30s var(--h-ease) both;
}
.cf-hero__trust-pill {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .38rem .85rem; border-radius: 999px;
  background: var(--h-soft);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.88);
  backdrop-filter: blur(6px);
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease;
}
.cf-hero__trust-pill:hover {
  background: var(--h-soft-2);
  border-color: rgba(255,255,255,.35);
}
.cf-hero__trust-pill svg {
  width: 14px; height: 14px;
  color: rgba(255,255,255,.9);
  flex-shrink: 0;
}

/* CTAs */
.cf-hero__actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-bottom: 2.25rem;
  animation: cf-in .6s .38s var(--h-ease) both;
}

.cf-hero__btn {
  position: relative; display: inline-flex; align-items: center;
  justify-content: center; gap: .55rem;
  min-height: 50px; padding: .82rem 1.55rem;
  border-radius: var(--h-r); font-weight: 700; font-size: .94rem;
  letter-spacing: .01em; text-decoration: none; white-space: nowrap;
  transition: transform .25s var(--h-ease), box-shadow .25s var(--h-ease), background .2s ease;
  overflow: hidden;
}
.cf-hero__btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.cf-hero__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--h-ring);
}

.cf-hero__btn--primary {
  color: var(--cf-primary, #0A7FAE);
  background: #ffffff;
  box-shadow: 0 12px 32px -8px rgba(6,50,74,.35), 0 2px 8px -2px rgba(0,0,0,.15);
}
.cf-hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -8px rgba(6,50,74,.45), 0 4px 12px -2px rgba(0,0,0,.2);
}
.cf-hero__btn-arrow { transition: transform .25s var(--h-ease); }
.cf-hero__btn--primary:hover .cf-hero__btn-arrow { transform: translateX(4px); }

.cf-hero__btn--ghost {
  color: #fff;
  background: var(--h-soft);
  border: 1.5px solid rgba(255,255,255,.30);
  backdrop-filter: blur(8px);
}
.cf-hero__btn--ghost:hover {
  background: var(--h-soft-2);
  border-color: rgba(255,255,255,.55);
  transform: translateY(-2px);
}

/* Stats */
.cf-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.18);
  animation: cf-in .6s .46s var(--h-ease) both;
}
.cf-hero__stat-num {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.35rem, 1rem + 1vw, 1.8rem);
  font-weight: 800; color: #fff; line-height: 1; margin: 0;
}
.cf-hero__stat-num sup {
  font-size: .65em; color: rgba(255,255,255,.75);
  vertical-align: super; font-weight: 700;
}
.cf-hero__stat-lbl {
  display: block; margin-top: .3rem;
  font-size: .72rem; color: var(--h-muted);
  font-weight: 500; letter-spacing: .03em; text-transform: uppercase;
}
@media (max-width: 560px) {
  .cf-hero__stats { grid-template-columns: repeat(2, 1fr); }
}

/* ── RIGHT — dashboard visual ──────────────────────────────── */
.cf-hero__visual {
  position: relative;
  animation: cf-in-r .8s .28s var(--h-ease) both;
}
@media (max-width: 1024px) { .cf-hero__visual { display: none; } }

@keyframes cf-in   { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes cf-in-r { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: none; } }

/* Dashboard card */
.cf-dash {
  position: relative;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: var(--h-r-xl);
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow:
    0 32px 64px -20px rgba(6,50,74,.40),
    0  4px 16px -4px  rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.9);
  transform: perspective(1200px) rotateY(-7deg) rotateX(2.5deg);
  transition: transform .5s var(--h-ease);
  color: var(--cf-text, #13212B);
}
.cf-dash:hover {
  transform: perspective(1200px) rotateY(-3.5deg) rotateX(1.2deg) translateY(-5px);
}

.cf-dash__hd {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem;
}
.cf-dash__title {
  font-family: 'Sora', sans-serif; font-size: .84rem; font-weight: 700;
  color: var(--cf-text-strong, #0B1620); letter-spacing: .01em;
}
.cf-dash__live {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .28rem .65rem; border-radius: 999px;
  background: rgba(31,169,123,.12);
  border: 1px solid rgba(31,169,123,.25);
  font-size: .68rem; font-weight: 700;
  color: var(--cf-success, #1FA97B);
  letter-spacing: .08em; text-transform: uppercase;
}
.cf-dash__live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cf-success, #1FA97B);
  flex-shrink: 0;
  animation: cf-pulse 1.8s ease-in-out infinite;
}

/* Gauge */
.cf-dash__gauge-wrap {
  display: flex; align-items: center; justify-content: center;
  position: relative; margin-bottom: 1.1rem;
}
.cf-dash__gauge { width: 100%; max-width: 200px; overflow: visible; }
.cf-dash__gauge-track {
  fill: none; stroke: var(--cf-border, #D8E5EC); stroke-width: 11; stroke-linecap: round;
}
.cf-dash__gauge-arc {
  fill: none; stroke-width: 11; stroke-linecap: round;
  stroke: url(#cf-grad-brand);
  stroke-dasharray: 283; stroke-dashoffset: 283;
  animation: cf-gauge 1.8s .7s var(--h-ease) forwards;
  filter: drop-shadow(0 0 6px rgba(10,127,174,.35));
}
@keyframes cf-gauge { to { stroke-dashoffset: 2; } }

.cf-dash__gauge-mid {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.cf-dash__gauge-num {
  font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800;
  color: var(--cf-primary, #0A7FAE); line-height: 1; display: block;
}
.cf-dash__gauge-pct {
  font-size: .85rem; font-weight: 700;
  color: var(--cf-secondary, #149A87);
}
.cf-dash__gauge-sub {
  display: block; font-size: .66rem; color: var(--cf-muted, #5F7180);
  margin-top: .15rem; letter-spacing: .07em; text-transform: uppercase;
}

/* Metrics */
.cf-dash__metrics { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.15rem; }
.cf-dash__metric {
  display: grid; grid-template-columns: 96px 1fr 44px;
  align-items: center; gap: .65rem;
}
.cf-dash__metric-lbl {
  font-size: .72rem; font-weight: 600;
  color: var(--cf-muted, #5F7180); white-space: nowrap;
}
.cf-dash__metric-track {
  height: 5px; border-radius: 999px;
  background: var(--cf-surface-2, #EDF5F9); overflow: hidden;
}
.cf-dash__metric-fill {
  height: 100%; border-radius: 999px; width: 0;
  background: linear-gradient(90deg, var(--cf-primary, #0A7FAE), var(--cf-accent, #2DB7C9));
  animation: cf-bar 1.2s var(--h-ease) forwards;
}
.cf-dash__metric-fill--good {
  background: linear-gradient(90deg, var(--cf-secondary, #149A87), var(--cf-secondary-500, #22B59F));
}
.cf-dash__metric-fill--warn {
  background: linear-gradient(90deg, var(--cf-warning, #D9961B), #f0ab35);
}
@keyframes cf-bar { to { width: var(--w, 50%); } }
.cf-dash__metric-val {
  font-family: 'Sora', sans-serif; font-size: .78rem; font-weight: 700;
  color: var(--cf-text-strong, #0B1620); text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Pipeline */
.cf-dash__pipeline {
  display: flex; align-items: center;
  padding: .85rem 1rem;
  background: var(--cf-surface, #F6FAFC);
  border: 1px solid var(--cf-border, #D8E5EC);
  border-radius: 12px;
}
.cf-dash__stage {
  display: flex; align-items: center; gap: .4rem;
  font-size: .68rem; font-weight: 600;
  color: var(--cf-muted, #5F7180); white-space: nowrap; flex-shrink: 0;
}
.cf-dash__stage--done { color: var(--cf-secondary, #149A87); }
.cf-dash__stage--now  { color: var(--cf-primary, #0A7FAE); }
.cf-dash__stage-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cf-border, #D8E5EC); flex-shrink: 0;
}
.cf-dash__stage--done .cf-dash__stage-dot { background: var(--cf-secondary, #149A87); }
.cf-dash__stage--now  .cf-dash__stage-dot {
  background: var(--cf-primary, #0A7FAE);
  box-shadow: 0 0 0 3px rgba(10,127,174,.2);
  animation: cf-pulse 1.8s ease-in-out infinite;
}
.cf-dash__stage-line {
  flex: 1; height: 1px; min-width: .5rem; margin: 0 .3rem;
  background: var(--cf-border, #D8E5EC);
}
.cf-dash__stage-line--done { background: var(--cf-secondary, #149A87); }

/* Floating chips */
.cf-hero__chip {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: .65rem;
  padding: .75rem 1rem; border-radius: 14px;
  background: #fff; color: var(--cf-text, #13212B);
  box-shadow:
    0 16px 40px -10px rgba(6,50,74,.30),
    0  2px  8px -2px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.9);
  animation: cf-float 5s ease-in-out infinite;
}
.cf-hero__chip-icon {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cf-hero__chip-icon--teal  { background: var(--cf-secondary-100, #D7F5EF); }
.cf-hero__chip-icon--blue  { background: var(--cf-primary-100,   #DDF4FB); }
.cf-hero__chip-icon--amber { background: #fef3c7; }
.cf-hero__chip-icon svg { width: 18px; height: 18px; }
.cf-hero__chip-icon--teal  svg { color: var(--cf-secondary, #149A87); }
.cf-hero__chip-icon--blue  svg { color: var(--cf-primary,   #0A7FAE); }
.cf-hero__chip-icon--amber svg { color: #d97706; }
.cf-hero__chip-val {
  font-family: 'Sora', sans-serif; font-size: .98rem; font-weight: 800;
  color: var(--cf-text-strong, #0B1620); line-height: 1; display: block;
}
.cf-hero__chip-sub {
  font-size: .68rem; color: var(--cf-muted, #5F7180); font-weight: 500;
  display: block; margin-top: 2px;
}
.cf-hero__chip--tl { top:  -4%; left:  -8%; animation-delay: 0s;  }
.cf-hero__chip--tr { top:  36%; right: -8%; animation-delay: .9s; }
.cf-hero__chip--br { bottom: 5%; right: -7%; animation-delay: 1.7s; }

@keyframes cf-float {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-9px); }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .cf-hero__btn { min-width: 100%; }
  .cf-hero__actions { gap: .6rem; margin-bottom: 1.75rem; }
  .cf-hero__orb--a { width: 380px; height: 380px; top: -120px; left: -100px; }
  .cf-hero__orb--b { width: 440px; height: 440px; }
  .container.cf-hero__inner {
      margin-top:-130px;
  }
  section.cf-hero {
    height: auto;
    min-height: auto;
}
}
@media (max-width: 480px) {
  .cf-hero__eyebrow { font-size: .64rem; padding: .38rem .8rem; }
  .cf-hero__desc { font-size: .88rem; margin-bottom: 1.25rem; }
  .cf-hero__trust { margin-bottom: 1.35rem; }
}

/* ── Motion safety ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .cf-hero *, .cf-hero *::before, .cf-hero *::after {
    animation: none !important;
    transition: none !important;
  }
  .cf-hero__eyebrow, .cf-hero__title, .cf-hero__desc,
  .cf-hero__trust, .cf-hero__actions, .cf-hero__stats,
  .cf-hero__visual { opacity: 1 !important; transform: none !important; }
  .cf-dash__gauge-arc { stroke-dashoffset: 2 !important; }
  .cf-dash__metric-fill { animation: none !important; width: var(--w, 50%) !important; }
  .cf-hero__underline-path { stroke-dashoffset: 0 !important; }
}

/* ============================================================
   SECTION 02 — append new section styles below this line.
   Use a unique prefix, e.g. .cf-services__
   ============================================================ */
   
   
   
   /* ============================================================
   SECTION 02 — ABOUT / COMPANY OVERVIEW
   All classes scoped to .cf-about — no conflicts with hero.
   ============================================================ */

.cf-about {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: #ffffff;
  color: var(--cf-text, #13212B);
}

/* ── 2a. Section header ────────────────────────────────────── */
.cf-about__hdr {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.cf-about__heading {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.75rem, 1.2rem + 2.5vw, 2.6rem);
  font-weight: 800;
  color: var(--cf-text-strong, #0B1620);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 1rem;
}
.cf-about__subhead {
  font-size: clamp(.9rem, .85rem + .25vw, 1.05rem);
  line-height: 1.7;
  color: var(--cf-muted, #5F7180);
  margin: 0;
}
.cf-about__subhead strong {
  color: var(--cf-primary, #0A7FAE);
  font-weight: 700;
}

/* ── 2b. Mission row ───────────────────────────────────────── */
.cf-about__mission-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (max-width: 900px) {
  .cf-about__mission-row { grid-template-columns: 1fr; }
}

.cf-about__block-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.1rem, 1rem + .6vw, 1.35rem);
  font-weight: 700;
  color: var(--cf-text-strong, #0B1620);
  margin: 0 0 1rem;
  letter-spacing: -.01em;
}
.cf-about__body {
  font-size: clamp(.88rem, .85rem + .15vw, .98rem);
  line-height: 1.75;
  color: var(--cf-text, #13212B);
  margin: 0 0 1rem;
}
.cf-about__body:last-child { margin-bottom: 0; }
.cf-about__body strong {
  color: var(--cf-primary, #0A7FAE);
  font-weight: 700;
}

/* Image card */
.cf-about__img-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px -12px rgba(10,127,174,.18), 0 4px 12px -4px rgba(0,0,0,.1);
  border: 1px solid var(--cf-border, #D8E5EC);
}
.cf-about__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background:
    radial-gradient(circle at 30% 30%, rgba(10,127,174,.25), transparent 60%),
    linear-gradient(135deg, var(--cf-surface, #F6FAFC), var(--cf-surface-2, #EDF5F9));
  overflow: hidden;
}
.cf-about__img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.cf-about__img-wrap--fallback::after {
  content: 'CLEANFLO';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 800;
  color: var(--cf-primary, #0A7FAE); letter-spacing: .1em;
  opacity: .35;
}
.cf-about__img-caption {
  display: flex; align-items: center; gap: .6rem;
  padding: .85rem 1.1rem;
  background: var(--cf-surface, #F6FAFC);
  border-top: 1px solid var(--cf-border, #D8E5EC);
  font-size: .82rem; font-weight: 600;
  color: var(--cf-text-strong, #0B1620);
}
.cf-about__img-caption svg {
  width: 16px; height: 16px;
  color: var(--cf-secondary, #149A87);
  flex-shrink: 0;
}

/* ── 2c. Core Strengths ────────────────────────────────────── */
.cf-about__strengths {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.cf-about__strengths-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (max-width: 640px) {
  .cf-about__strengths-grid { grid-template-columns: 1fr; }
}

.cf-about__strength-card {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--cf-border, #D8E5EC);
  border-radius: 12px;
  background: #ffffff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.cf-about__strength-card:hover {
  border-color: var(--cf-primary-500, #19A7D8);
  box-shadow: 0 6px 20px -6px rgba(10,127,174,.14);
}
.cf-about__strength-icon {
  width: 28px; height: 28px;
  flex-shrink: 0; margin-top: 1px;
  color: var(--cf-secondary, #149A87);
}
.cf-about__strength-icon svg { width: 100%; height: 100%; }
.cf-about__strength-name {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: .9rem; font-weight: 700;
  color: var(--cf-text-strong, #0B1620);
  margin: 0 0 .3rem;
  letter-spacing: -.005em;
}
.cf-about__strength-name--accent { color: var(--cf-primary, #0A7FAE); }
.cf-about__strength-desc {
  font-size: .82rem; line-height: 1.55;
  color: var(--cf-muted, #5F7180);
  margin: 0;
}

/* ── 2d. Stats row ─────────────────────────────────────────── */
.cf-about__stats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
@media (max-width: 480px) {
  .cf-about__stats-row { grid-template-columns: 1fr; }
}

.cf-about__stat-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--cf-border, #D8E5EC);
  border-radius: 16px;
  background: #ffffff;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.cf-about__stat-card:hover {
  border-color: var(--cf-primary-500, #19A7D8);
  box-shadow: 0 8px 28px -8px rgba(10,127,174,.16);
}
.cf-about__stat-icon {
  width: 40px; height: 40px;
  color: var(--cf-primary, #0A7FAE);
  margin-bottom: .85rem;
}
.cf-about__stat-icon svg { width: 100%; height: 100%; }
.cf-about__stat-num {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.6rem);
  font-weight: 800; line-height: 1;
  color: var(--cf-primary, #0A7FAE);
  margin-bottom: .35rem;
}
.cf-about__stat-num span { color: var(--cf-secondary, #149A87); }
.cf-about__stat-lbl {
  font-size: .88rem; font-weight: 700;
  color: var(--cf-text-strong, #0B1620);
  margin-bottom: .2rem;
}
.cf-about__stat-sub {
  font-size: .78rem; color: var(--cf-muted, #5F7180); font-weight: 500;
}

/* ── 2e. Certifications + Heritage ────────────────────────── */
.cf-about__bottom-row {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 900px) {
  .cf-about__bottom-row { grid-template-columns: 1fr; }
}

.cf-about__certs-card,
.cf-about__heritage-card {
  border: 1px solid var(--cf-border, #D8E5EC);
  border-radius: 16px;
  padding: 1.6rem 1.75rem;
  background: #ffffff;
  height: 100%;
}

.cf-about__card-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.05rem; font-weight: 800;
  color: var(--cf-text-strong, #0B1620);
  margin: 0 0 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--cf-border, #D8E5EC);
  letter-spacing: -.01em;
}

/* Cert list */
.cf-about__cert-list {
  display: flex; flex-direction: column; gap: .9rem;
  padding: 0; margin: 0;
}
.cf-about__cert-item {
  display: flex; align-items: flex-start; gap: .75rem;
}
.cf-about__cert-icon {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  color: var(--cf-primary, #0A7FAE);
}
.cf-about__cert-icon svg { width: 100%; height: 100%; }
.cf-about__cert-item strong {
  display: block; font-size: .84rem; font-weight: 700;
  color: var(--cf-text-strong, #0B1620); margin-bottom: .15rem;
}
.cf-about__cert-item span {
  display: block; font-size: .78rem; line-height: 1.5;
  color: var(--cf-muted, #5F7180);
}

/* Heritage */
.cf-about__heritage-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: .88rem; font-weight: 700;
  color: var(--cf-text-strong, #0B1620);
  margin: 1.1rem 0 .45rem;
  letter-spacing: .005em;
}
.cf-about__heritage-title:first-of-type { margin-top: 0; }
.cf-about__heritage-text {
  font-size: .82rem; line-height: 1.65;
  color: var(--cf-text, #13212B);
  margin: 0;
}
.cf-about__tech-list {
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .4rem;
}
.cf-about__tech-list li {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .8rem; line-height: 1.55;
  color: var(--cf-text, #13212B);
}
.cf-about__tech-list li::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  background-color: var(--cf-secondary, #149A87);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}

/* ── 2f. CTA band ──────────────────────────────────────────── */
.cf-about__cta-band {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--cf-surface, #F6FAFC);
  border: 1px solid var(--cf-border, #D8E5EC);
  border-radius: 20px;
}
.cf-about__cta-text {
  font-size: clamp(.95rem, .9rem + .25vw, 1.1rem);
  color: var(--cf-text, #13212B);
  margin: 0 0 1.5rem;
  font-weight: 500;
  line-height: 1.6;
}
.cf-about__cta-actions {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: .85rem;
}

.cf-about__cta-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .82rem 1.7rem; border-radius: 12px;
  font-weight: 700; font-size: .92rem;
  text-decoration: none; letter-spacing: .01em; white-space: nowrap;
  transition: transform .22s ease, box-shadow .22s ease, background .2s ease;
}
.cf-about__cta-btn:focus-visible {
  outline: 3px solid rgba(10,127,174,.4); outline-offset: 2px;
}
.cf-about__cta-btn--primary {
  background: var(--cf-secondary, #149A87);
  color: #ffffff;
  box-shadow: 0 8px 24px -6px rgba(20,154,135,.40);
}
.cf-about__cta-btn--primary:hover {
  background: var(--cf-secondary-700, #0F7E6E);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -6px rgba(20,154,135,.50);
}
.cf-about__cta-btn--outline {
  color: var(--cf-primary, #0A7FAE);
  border: 1.5px solid var(--cf-primary, #0A7FAE);
  background: transparent;
}
.cf-about__cta-btn--outline:hover {
  background: var(--cf-primary-100, #DDF4FB);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .cf-about__cta-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   SECTION 03 — append next section styles below this line.
   ============================================================ */
   
   
   
   /* ============================================================
   SECTION 03 — SERVICES & SOLUTIONS
   All classes scoped to .cf-services — no conflicts.
   ============================================================ */

.cf-services {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: var(--cf-surface, #F6FAFC);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative top border */
.cf-services::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--cf-primary, #0A7FAE) 20%,
    var(--cf-secondary, #149A87) 80%,
    transparent 100%);
  opacity: .5;
}

/* ── 3a. Header ─────────────────────────────────────────────── */
.cf-services__hdr {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.cf-services__eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--cf-primary, #0A7FAE);
  background: var(--cf-primary-100, #DDF4FB);
  padding: .32rem .9rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.cf-services__heading {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.8rem, 1.2rem + 2.5vw, 2.6rem);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -.022em;
  color: var(--cf-text-strong, #0B1620);
  margin: 0 0 1rem;
}
.cf-services__subhead {
  font-size: clamp(.9rem, .85rem + .22vw, 1.05rem);
  line-height: 1.72; color: var(--cf-muted, #5F7180);
  margin: 0;
}

/* ── 3b. Cards grid ─────────────────────────────────────────── */
.cf-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
@media (max-width: 1060px) {
  .cf-services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .cf-services__grid { grid-template-columns: 1fr; }
}

/* Card shell */
.cf-services__card {
  display: flex; flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--cf-border, #D8E5EC);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: transform .28s cubic-bezier(.22,.61,.36,1),
              box-shadow .28s cubic-bezier(.22,.61,.36,1),
              border-color .28s ease;
}
.cf-services__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 18px 18px 0 0;
  opacity: 0;
  transition: opacity .28s ease;
}
.cf-services__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px -12px rgba(10,127,174,.18), 0 6px 16px -6px rgba(0,0,0,.08);
  border-color: transparent;
}
.cf-services__card:hover::before { opacity: 1; }

/* Colour variants — top accent bar */
.cf-services__card--blue::before  { background: linear-gradient(90deg, var(--cf-primary,#0A7FAE), var(--cf-accent,#2DB7C9)); }
.cf-services__card--teal::before  { background: linear-gradient(90deg, var(--cf-secondary,#149A87), var(--cf-secondary-500,#22B59F)); }
.cf-services__card--red::before   { background: linear-gradient(90deg, #D64D4D, #e07a5f); }
.cf-services__card--green::before { background: linear-gradient(90deg, #1FA97B, #22B59F); }

.cf-services__card-top {
  padding: 1.75rem 1.75rem 1.25rem;
}
.cf-services__card-body {
  padding: 0 1.75rem;
  flex: 1;
}
.cf-services__card-foot {
  padding: 1.25rem 1.75rem 1.5rem;
}

/* Icon */
.cf-services__icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.15rem;
  flex-shrink: 0;
}
.cf-services__icon-wrap svg { width: 26px; height: 26px; }

.cf-services__icon-wrap--blue  {
  background: var(--cf-primary-100, #DDF4FB);
  color: var(--cf-primary, #0A7FAE);
}
.cf-services__icon-wrap--teal  {
  background: var(--cf-secondary-100, #D7F5EF);
  color: var(--cf-secondary, #149A87);
}
.cf-services__icon-wrap--red   {
  background: #fde8e8;
  color: #D64D4D;
}
.cf-services__icon-wrap--green {
  background: rgba(31,169,123,.12);
  color: #1FA97B;
}

/* Card title */
.cf-services__card-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.05rem; font-weight: 800;
  color: var(--cf-text-strong, #0B1620);
  margin: 0 0 .75rem;
  letter-spacing: -.01em;
  line-height: 1.25;
}

/* Card description */
.cf-services__card-desc {
  font-size: .84rem; line-height: 1.7;
  color: var(--cf-text, #13212B);
  margin: 0;
}

/* Section label */
.cf-services__list-label {
  font-size: .78rem; font-weight: 700;
  color: var(--cf-text-strong, #0B1620);
  margin: .9rem 0 .5rem;
  letter-spacing: .01em;
}

/* Key offerings list */
.cf-services__list {
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .35rem;
}
.cf-services__list li {
  display: flex; align-items: flex-start; gap: .55rem;
  font-size: .82rem; line-height: 1.5;
  color: var(--cf-text, #13212B);
}
.cf-services__list li::before {
  content: '';
  width: 17px; height: 17px;
  flex-shrink: 0; margin-top: 1px;
  background-color: var(--cf-secondary, #149A87);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}

/* Divider */
.cf-services__divider {
  height: 1px;
  background: var(--cf-border, #D8E5EC);
  margin: 1rem 0 0;
}

/* Applications */
.cf-services__apps {
  font-size: .79rem; line-height: 1.55;
  color: var(--cf-muted, #5F7180);
  font-style: italic;
  margin: 0;
}

/* Learn More button */
.cf-services__learn-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; padding: .72rem 1rem;
  border: 1.5px solid var(--cf-border, #D8E5EC);
  border-radius: 10px;
  font-size: .86rem; font-weight: 700;
  color: var(--cf-primary, #0A7FAE);
  text-decoration: none;
  background: transparent;
  transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}
.cf-services__learn-btn svg {
  width: 15px; height: 15px;
  transition: transform .22s ease;
}
.cf-services__learn-btn:hover {
  background: var(--cf-primary-100, #DDF4FB);
  border-color: var(--cf-primary, #0A7FAE);
  color: var(--cf-primary-700, #086C96);
}
.cf-services__learn-btn:hover svg { transform: translateX(4px); }
.cf-services__learn-btn:focus-visible {
  outline: 3px solid rgba(10,127,174,.35); outline-offset: 2px;
}

/* ── 3c. CTA band ───────────────────────────────────────────── */
.cf-services__cta-band {
  border-radius: 22px;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(2rem, 5vw, 4rem);
  background: linear-gradient(135deg, #0674A2 0%, #0F9BB2 48%, #1EA7D8 80%, #149A87 100%);
  box-shadow: 0 24px 56px -14px rgba(10,127,174,.40), 0 6px 18px -6px rgba(0,0,0,.15);
  position: relative; overflow: hidden;
}
/* Decorative dot-grid on CTA */
.cf-services__cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cf-services__cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.cf-services__cta-copy { flex: 1; min-width: 0; }
.cf-services__cta-heading {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.4rem, 1.1rem + 1.5vw, 1.9rem);
  font-weight: 800; color: #ffffff;
  margin: 0 0 .65rem; line-height: 1.2;
  letter-spacing: -.02em;
}
.cf-services__cta-text {
  font-size: clamp(.85rem, .82rem + .2vw, 1rem);
  line-height: 1.7; color: rgba(255,255,255,.82);
  margin: 0; max-width: 600px;
}
.cf-services__cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 2rem; border-radius: 12px;
  font-weight: 700; font-size: .96rem;
  color: var(--cf-primary, #0A7FAE);
  background: #ffffff;
  text-decoration: none; white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease, background .2s ease;
}
.cf-services__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -6px rgba(0,0,0,.30);
  background: #f0f9ff;
}
.cf-services__cta-btn:focus-visible {
  outline: 3px solid rgba(255,255,255,.6); outline-offset: 2px;
}

@media (max-width: 680px) {
  .cf-services__cta-inner {
    flex-direction: column; text-align: center;
  }
  .cf-services__cta-btn { width: 100%; }
  .cf-services__cta-text { max-width: 100%; }
}

/* ============================================================
   SECTION 04 — append next section styles below this line.
   ============================================================ */
   
   
   
 /* ============================================================
   SECTION 04 — INDUSTRIES WE SERVE
   All classes scoped to .cf-industries — no conflicts.
   ============================================================ */

.cf-industries {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: linear-gradient(145deg, #0674A2 0%, #0E9ABB 40%, #12AFA8 70%, #14A882 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative radial glow spots */
.cf-industries::before,
.cf-industries::after {
  content: '';
  position: absolute; border-radius: 50%;
  pointer-events: none;
}
.cf-industries::before {
  width: 600px; height: 600px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
}
.cf-industries::after {
  width: 400px; height: 400px;
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
}

/* ── 4a. Header ─────────────────────────────────────────────── */
.cf-industries__hdr {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  position: relative; z-index: 1;
}
.cf-industries__eyebrow { display: none; } /* heading already says it */

.cf-industries__heading {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.8rem, 1.2rem + 2.5vw, 2.6rem);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -.022em;
  color: #ffffff;
  margin: 0 0 1rem;
}
.cf-industries__subhead {
  font-size: clamp(.9rem, .85rem + .2vw, 1.05rem);
  line-height: 1.72;
  color: rgba(255,255,255,.82);
  margin: 0 0 1.5rem;
}

/* Trust badges row */
.cf-industries__trust-row {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: .75rem;
}
.cf-industries__trust-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .42rem 1rem;
  border: 1.5px solid rgba(255,255,255,.45);
  border-radius: 999px;
  font-size: .8rem; font-weight: 700;
  color: #ffffff;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cf-industries__trust-badge svg {
  width: 14px; height: 14px; flex-shrink: 0;
  color: rgba(255,255,255,.9);
}

/* ── 4b. Cards grid ─────────────────────────────────────────── */
.cf-industries__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
  position: relative; z-index: 1;
}
@media (max-width: 1060px) {
  .cf-industries__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .cf-industries__grid { grid-template-columns: 1fr; }
}

/* Card shell */
.cf-industries__card {
  display: flex; flex-direction: column;
  background: #ffffff;
  border-radius: 18px;
  padding: 1.6rem 1.6rem 1.4rem;
  box-shadow: 0 8px 32px -8px rgba(0,0,0,.18), 0 2px 8px -2px rgba(0,0,0,.08);
  transition: transform .28s cubic-bezier(.22,.61,.36,1),
              box-shadow .28s cubic-bezier(.22,.61,.36,1);
}
.cf-industries__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px -12px rgba(0,0,0,.22), 0 6px 18px -6px rgba(0,0,0,.10);
}

/* Card header row (icon + badge) */
.cf-industries__card-hdr {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: .75rem;
  margin-bottom: 1rem;
}

/* Icon box — filled blue square */
.cf-industries__icon-box {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--cf-primary, #0A7FAE);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #ffffff;
}
.cf-industries__icon-box svg { width: 24px; height: 24px; }

/* Industry badge pill */
.cf-industries__badge {
  font-size: .7rem; font-weight: 700;
  color: var(--cf-text, #13212B);
  background: var(--cf-surface, #F6FAFC);
  border: 1px solid var(--cf-border, #D8E5EC);
  padding: .28rem .75rem;
  border-radius: 999px;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 4px;
}

/* Card title */
.cf-industries__card-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.06rem; font-weight: 800;
  color: var(--cf-primary, #0A7FAE);
  margin: 0 0 .55rem;
  letter-spacing: -.01em;
  line-height: 1.25;
}

/* Short description */
.cf-industries__card-desc {
  font-size: .84rem; line-height: 1.65;
  color: var(--cf-text, #13212B);
  margin: 0 0 .65rem;
  font-weight: 500;
}

/* Longer detail paragraph */
.cf-industries__card-detail {
  font-size: .81rem; line-height: 1.65;
  color: var(--cf-muted, #5F7180);
  margin: 0 0 .75rem;
}

/* Section label */
.cf-industries__list-label {
  font-size: .78rem; font-weight: 700;
  color: var(--cf-text-strong, #0B1620);
  margin: .1rem 0 .5rem;
  letter-spacing: .01em;
}

/* Key solutions list */
.cf-industries__list {
  flex: 1;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .32rem;
}
.cf-industries__list li {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .81rem; line-height: 1.5;
  color: var(--cf-text, #13212B);
}
.cf-industries__list li::before {
  content: '';
  width: 16px; height: 16px;
  flex-shrink: 0; margin-top: 1px;
  background-color: var(--cf-secondary, #149A87);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}

/* Card footer (Learn More) */
.cf-industries__card-foot {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cf-border, #D8E5EC);
}
.cf-industries__learn-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; padding: .68rem 1rem;
  border: 1.5px solid var(--cf-border, #D8E5EC);
  border-radius: 10px;
  font-size: .86rem; font-weight: 700;
  color: var(--cf-primary, #0A7FAE);
  text-decoration: none; background: transparent;
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
}
.cf-industries__learn-btn svg {
  width: 15px; height: 15px;
  transition: transform .22s ease;
}
.cf-industries__learn-btn:hover {
  background: var(--cf-primary-100, #DDF4FB);
  border-color: var(--cf-primary, #0A7FAE);
}
.cf-industries__learn-btn:hover svg { transform: translateX(4px); }
.cf-industries__learn-btn:focus-visible {
  outline: 3px solid rgba(10,127,174,.35); outline-offset: 2px;
}

/* ── 4c. View All button ────────────────────────────────────── */
.cf-industries__view-all-wrap {
  display: flex; justify-content: center;
  margin-bottom: 2.5rem;
  position: relative; z-index: 1;
}
.cf-industries__view-all-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .82rem 2.25rem;
  border: 2px solid rgba(255,255,255,.75);
  border-radius: 12px;
  font-size: .96rem; font-weight: 700;
  color: #ffffff;
  text-decoration: none; background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.cf-industries__view-all-btn:hover {
  background: rgba(255,255,255,.22);
  border-color: #ffffff;
  transform: translateY(-2px);
}
.cf-industries__view-all-btn:focus-visible {
  outline: 3px solid rgba(255,255,255,.6); outline-offset: 2px;
}

/* ── 4d. Tailored Solutions panel ───────────────────────────── */
.cf-industries__tailored {
  background: #ffffff;
  border-radius: 22px;
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.75rem, 5vw, 4rem);
  text-align: center;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,.20);
  position: relative; z-index: 1;
}
.cf-industries__tailored-heading {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.3rem, 1rem + 1.4vw, 1.75rem);
  font-weight: 800; color: var(--cf-text-strong, #0B1620);
  margin: 0 0 1rem; letter-spacing: -.02em;
}
.cf-industries__tailored-body {
  font-size: clamp(.85rem, .82rem + .2vw, 1rem);
  line-height: 1.75; color: var(--cf-muted, #5F7180);
  margin: 0 auto 2.5rem;
  max-width: 680px;
}

/* Features row */
.cf-industries__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 680px) {
  .cf-industries__features { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

.cf-industries__feature {
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.cf-industries__feature-icon {
  width: 64px; height: 64px;
  background: var(--cf-primary, #0A7FAE);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 8px 24px -6px rgba(10,127,174,.40);
}
.cf-industries__feature-icon svg { width: 28px; height: 28px; }
.cf-industries__feature-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: .95rem; font-weight: 800;
  color: var(--cf-primary, #0A7FAE);
  margin: 0; letter-spacing: -.005em;
}
.cf-industries__feature-desc {
  font-size: .82rem; line-height: 1.55;
  color: var(--cf-muted, #5F7180);
  margin: 0; text-align: center;
}

/* ============================================================
   SECTION 05 — append next section styles below this line.
   ============================================================ */
   
   
/* ============================================================
   SECTION 05 — THE CLEANFLO ADVANTAGE
   All classes scoped to .cf-advantage — no conflicts.
   ============================================================ */

.cf-advantage {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: #ffffff;
  position: relative;
}

/* Very subtle dot grid texture */
.cf-advantage::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, #D8E5EC 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .35;
  pointer-events: none;
}

/* ── 5a. Header ─────────────────────────────────────────────── */
.cf-advantage__hdr {
  text-align: center;
  max-width: 700px; margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
  position: relative; z-index: 1;
}
.cf-advantage__eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  color: var(--cf-primary, #0A7FAE);
  background: var(--cf-primary-100, #DDF4FB);
  border: 1px solid rgba(10,127,174,.2);
  padding: .38rem 1rem; border-radius: 999px;
  margin-bottom: 1.1rem;
}
.cf-advantage__eyebrow svg { width: 14px; height: 14px; }

.cf-advantage__heading {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(2rem, 1.3rem + 3vw, 3rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -.028em;
  color: var(--cf-text-strong, #0B1620);
  margin: 0 0 1rem;
}
.cf-advantage__subhead {
  font-size: clamp(.9rem, .85rem + .2vw, 1.05rem);
  line-height: 1.72; color: var(--cf-muted, #5F7180);
  margin: 0 0 1.75rem;
}

/* Credential bar */
.cf-advantage__cred-bar {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center; gap: .5rem .3rem;
  padding: .7rem 1.5rem;
  border: 1.5px solid var(--cf-border, #D8E5EC);
  border-radius: 999px;
  display: inline-flex;
  background: var(--cf-surface, #F6FAFC);
}
.cf-advantage__cred {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 600;
  color: var(--cf-text, #13212B); white-space: nowrap;
}
.cf-advantage__cred svg {
  width: 13px; height: 13px;
  color: var(--cf-secondary, #149A87); flex-shrink: 0;
}
.cf-advantage__cred-sep {
  display: inline-block; width: 1px; height: 14px;
  background: var(--cf-border, #D8E5EC); flex-shrink: 0;
}
@media (max-width: 600px) {
  .cf-advantage__cred-sep { display: none; }
  .cf-advantage__cred-bar { border-radius: 16px; }
}

/* ── 5b. Cards grid ─────────────────────────────────────────── */
.cf-advantage__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative; z-index: 1;
}
@media (max-width: 1060px) {
  .cf-advantage__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .cf-advantage__grid { grid-template-columns: 1fr; }
}

/* Card outer wrapper — holds the floating badge */
.cf-advantage__card-outer {
  position: relative;
  padding-top: 15px; /* space for floating badge */
}
.cf-advantage__badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px -2px rgba(0,0,0,.15);
}

/* Badge colour variants */
.cf-adv-badge--blue   { background: var(--cf-primary, #0A7FAE);  color: #fff; }
.cf-adv-badge--green  { background: var(--cf-secondary, #149A87); color: #fff; }
.cf-adv-badge--purple { background: #7C3AED; color: #fff; }
.cf-adv-badge--teal   { background: #0D9488; color: #fff; }
.cf-adv-badge--orange { background: #EA580C; color: #fff; }
.cf-adv-badge--cyan   { background: #0284C7; color: #fff; }

/* Card shell */
.cf-advantage__card {
  display: flex; flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--cf-border, #D8E5EC);
  border-radius: 18px;
  padding: 2rem 1.6rem 1.6rem;
  height: 100%;
  transition: transform .28s cubic-bezier(.22,.61,.36,1),
              box-shadow .28s cubic-bezier(.22,.61,.36,1),
              border-color .28s ease;
  box-shadow: 0 2px 12px -4px rgba(0,0,0,.07);
}
.cf-advantage__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px -10px rgba(10,127,174,.18), 0 4px 14px -4px rgba(0,0,0,.08);
  border-color: transparent;
}

/* Icon */
.cf-advantage__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  flex-shrink: 0;
  color: #ffffff;
}
.cf-advantage__icon svg { width: 28px; height: 28px; }

/* Icon colour variants */
.cf-adv-icon--blue   { background: var(--cf-primary, #0A7FAE);  box-shadow: 0 8px 20px -4px rgba(10,127,174,.40); }
.cf-adv-icon--green  { background: var(--cf-secondary, #149A87); box-shadow: 0 8px 20px -4px rgba(20,154,135,.40); }
.cf-adv-icon--purple { background: #7C3AED; box-shadow: 0 8px 20px -4px rgba(124,58,237,.40); }
.cf-adv-icon--teal   { background: #0D9488; box-shadow: 0 8px 20px -4px rgba(13,148,136,.40); }
.cf-adv-icon--orange { background: #EA580C; box-shadow: 0 8px 20px -4px rgba(234,88,12,.40); }
.cf-adv-icon--cyan   { background: #0284C7; box-shadow: 0 8px 20px -4px rgba(2,132,199,.40); }

/* Card title */
.cf-advantage__card-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.05rem; font-weight: 800;
  text-align: center; margin: 0 0 .65rem;
  letter-spacing: -.01em; line-height: 1.2;
}
.cf-adv-title--blue   { color: var(--cf-primary, #0A7FAE); }
.cf-adv-title--green  { color: var(--cf-secondary, #149A87); }
.cf-adv-title--purple { color: #7C3AED; }
.cf-adv-title--teal   { color: #0D9488; }
.cf-adv-title--orange { color: #EA580C; }
.cf-adv-title--cyan   { color: #0284C7; }

/* Card description */
.cf-advantage__card-desc {
  font-size: .84rem; line-height: 1.7;
  color: var(--cf-muted, #5F7180);
  text-align: center; margin: 0 0 1rem; flex: 1;
}

/* Check list */
.cf-advantage__list {
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .38rem;
  border-top: 1px solid var(--cf-border, #D8E5EC);
  padding-top: .85rem;
}
.cf-advantage__list li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; line-height: 1.5;
  color: var(--cf-text, #13212B); font-weight: 500;
}
.cf-advantage__list li::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
}
.cf-adv-list--blue   li::before { background-color: var(--cf-primary, #0A7FAE); }
.cf-adv-list--green  li::before { background-color: var(--cf-secondary, #149A87); }
.cf-adv-list--purple li::before { background-color: #7C3AED; }
.cf-adv-list--teal   li::before { background-color: #0D9488; }
.cf-adv-list--orange li::before { background-color: #EA580C; }
.cf-adv-list--cyan   li::before { background-color: #0284C7; }

/* ── 5c. Stats bar ──────────────────────────────────────────── */
.cf-advantage__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  position: relative; z-index: 1;
}
@media (max-width: 800px) {
  .cf-advantage__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 420px) {
  .cf-advantage__stats { grid-template-columns: 1fr 1fr; }
}

.cf-advantage__stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.5rem 1rem 1.35rem;
  background: #ffffff;
  border: 1px solid var(--cf-border, #D8E5EC);
  border-radius: 16px;
  text-align: center;
  transition: box-shadow .25s ease, transform .25s ease;
  box-shadow: 0 2px 10px -4px rgba(0,0,0,.06);
}
.cf-advantage__stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px -6px rgba(10,127,174,.14);
}
.cf-advantage__stat-val {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.4rem);
  font-weight: 900; line-height: 1;
  margin-bottom: .4rem; letter-spacing: -.03em;
}
.cf-advantage__stat-val span { font-size: .7em; }
.cf-adv-val--blue   { color: var(--cf-primary, #0A7FAE); }
.cf-adv-val--purple { color: #7C3AED; }
.cf-adv-val--orange { color: #EA580C; }
.cf-advantage__stat-lbl {
  font-size: .8rem; font-weight: 600;
  color: var(--cf-muted, #5F7180); line-height: 1.3;
}

/* ── 5d. CTA band ───────────────────────────────────────────── */
.cf-advantage__cta {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(145deg, #0674A2 0%, #0E9ABB 40%, #12AFA8 70%, #14A882 100%);
  border-radius: 24px;
  position: relative; overflow: hidden; z-index: 1;
  box-shadow: 0 28px 64px -16px rgba(10,127,174,.42);
}
/* Dot grid texture */
.cf-advantage__cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
/* Radial glow */
.cf-advantage__cta::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  top: -200px; right: -100px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cf-advantage__cta-eyebrow {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  padding: .35rem .95rem; border-radius: 999px;
  margin-bottom: 1rem;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.cf-advantage__cta-eyebrow svg { width: 13px; height: 13px; }
.cf-advantage__cta-heading {
  position: relative; z-index: 1;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.5rem, 1.1rem + 2vw, 2.2rem);
  font-weight: 900; color: #ffffff;
  margin: 0 0 .85rem; letter-spacing: -.022em; line-height: 1.15;
}
.cf-advantage__cta-text {
  position: relative; z-index: 1;
  font-size: clamp(.88rem, .84rem + .2vw, 1.02rem);
  line-height: 1.72; color: rgba(255,255,255,.82);
  margin: 0 auto 2rem; max-width: 580px;
}
.cf-advantage__cta-actions {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: .85rem;
}
.cf-advantage__cta-btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .88rem 2rem; border-radius: 12px;
  font-size: .96rem; font-weight: 700;
  text-decoration: none; white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .2s ease;
}
.cf-advantage__cta-btn:focus-visible {
  outline: 3px solid rgba(255,255,255,.55); outline-offset: 2px;
}
.cf-advantage__cta-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.cf-advantage__cta-btn--primary {
  background: rgba(6, 35, 55, 0.75);
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,.15);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px -6px rgba(0,0,0,.30);
}
.cf-advantage__cta-btn--primary:hover {
  background: rgba(6, 35, 55, 0.92);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -6px rgba(0,0,0,.38);
}
.cf-advantage__cta-btn--outline {
  background: rgba(255,255,255,.12);
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.cf-advantage__cta-btn--outline:hover {
  background: rgba(255,255,255,.24);
  border-color: #ffffff;
  transform: translateY(-2px);
}
@media (max-width: 500px) {
  .cf-advantage__cta-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   SECTION 06 — append next section styles below this line.
   ============================================================ */
   
   
   
/* ============================================================
   SECTION 06 — TRUSTED CLIENTS
   All classes scoped to .cf-clients — no conflicts.
   ============================================================ */

.cf-clients {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  background: #F6FAFC;
  position: relative;
  overflow: hidden;
}

/* ── 6a. Section header ─────────────────────────────────────── */
.cf-clients__hdr {
  text-align: center;
  max-width: 680px; margin: 0 auto clamp(2rem, 4vw, 3rem);
  position: relative; z-index: 1;
}
.cf-clients__eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .76rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cf-primary, #0A7FAE);
  background: var(--cf-primary-100, #DDF4FB);
  border: 1px solid rgba(10,127,174,.2);
  padding: .38rem 1rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.cf-clients__eyebrow svg { width: 14px; height: 14px; }
.cf-clients__heading {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.75rem, 1.1rem + 2.8vw, 2.6rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.022em;
  color: var(--cf-text-strong, #0B1620);
  margin: 0 0 .85rem;
}
.cf-clients__subhead {
  font-size: clamp(.88rem, .84rem + .2vw, 1rem);
  line-height: 1.72; color: var(--cf-muted, #5F7180);
  margin: 0;
}

/* ── 6b. Trust stats ────────────────────────────────────────── */
.cf-clients__stats {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: .5rem;
  background: #ffffff;
  border: 1px solid var(--cf-border, #D8E5EC);
  border-radius: 18px;
  padding: 1.25rem 2rem;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  max-width: 720px;
  box-shadow: 0 4px 18px -6px rgba(10,127,174,.10);
  position: relative; z-index: 1;
}
.cf-clients__stat {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: .35rem 1.5rem;
}
.cf-clients__stat-num {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.5rem, 1.2rem + .8vw, 2rem);
  font-weight: 900; line-height: 1;
  color: var(--cf-primary, #0A7FAE);
  letter-spacing: -.03em; margin-bottom: .2rem;
}
.cf-clients__stat-num span { color: var(--cf-secondary, #149A87); }
.cf-clients__stat-lbl {
  font-size: .75rem; font-weight: 600;
  color: var(--cf-muted, #5F7180);
  white-space: nowrap;
}
.cf-clients__stat-divider {
  width: 1px; height: 40px;
  background: var(--cf-border, #D8E5EC);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .cf-clients__stat-divider { display: none; }
  .cf-clients__stat { border-bottom: 1px solid var(--cf-border, #D8E5EC); width: 45%; }
  .cf-clients__stat:last-child,
  .cf-clients__stat:nth-last-child(2) { border-bottom: none; }
}

/* ── 6c. Dual infinite marquee ──────────────────────────────── */

/* Keyframes */
@keyframes cf-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes cf-scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Viewport with edge fade masks */
.cf-clients__marquee-viewport {
  overflow: hidden;
  margin-bottom: .85rem;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
}
.cf-clients__marquee-viewport:last-of-type { margin-bottom: clamp(2rem, 4vw, 3.5rem); }

/* Track — flex row of logo slides */
.cf-clients__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.cf-clients__track--left {
  animation: cf-scroll-left 42s linear infinite;
}
.cf-clients__track--right {
  animation: cf-scroll-right 38s linear infinite;
}
/* Pause on hover — respects reduced-motion too */
@media (prefers-reduced-motion: reduce) {
  .cf-clients__track { animation: none; }
}
.cf-clients__marquee-viewport:hover .cf-clients__track {
  animation-play-state: paused;
}

/* Individual logo slide in marquee */
.cf-clients__logo-slide {
  flex-shrink: 0;
  width: 160px; height: 88px;
  display: flex; align-items: center; justify-content: center;
  background: #ffffff;
  border: 1px solid var(--cf-border, #D8E5EC);
  border-radius: 14px;
  margin: 0 .45rem;
  padding: .85rem 1.1rem;
  transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}
.cf-clients__logo-slide img {
  max-width: 100%; max-height: 56px;
  width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter .25s ease;
}
.cf-clients__marquee-viewport:hover .cf-clients__logo-slide:hover {
  box-shadow: 0 8px 24px -6px rgba(10,127,174,.18);
  border-color: rgba(10,127,174,.3);
  transform: translateY(-3px);
  z-index: 1; position: relative;
}
.cf-clients__marquee-viewport:hover .cf-clients__logo-slide:hover img {
  filter: grayscale(0%);
}

/* ── 6d. Full grid ──────────────────────────────────────────── */
.cf-clients__grid-hdr {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
}
.cf-clients__grid-hdr::before,
.cf-clients__grid-hdr::after {
  content: ''; flex: 1; height: 1px;
  background: var(--cf-border, #D8E5EC);
}
.cf-clients__grid-label {
  font-size: .74rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--cf-muted, #5F7180);
  white-space: nowrap;
}

.cf-clients__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
@media (max-width: 1100px) {
  .cf-clients__grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
@media (max-width: 880px) {
  .cf-clients__grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .cf-clients__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
  .cf-clients__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Grid logo card */
.cf-clients__grid-card {
  display: flex; align-items: center; justify-content: center;
  background: #ffffff;
  border: 1px solid var(--cf-border, #D8E5EC);
  border-radius: 12px;
  padding: .75rem .6rem;
  aspect-ratio: 3/2;
  transition: box-shadow .25s ease, border-color .25s ease,
              transform .25s cubic-bezier(.22,.61,.36,1);
  cursor: default;
}
.cf-clients__grid-card:hover {
  box-shadow: 0 8px 24px -6px rgba(10,127,174,.16);
  border-color: rgba(10,127,174,.28);
  transform: translateY(-4px) scale(1.02);
}
.cf-clients__grid-card img {
  max-width: 100%; max-height: 52px;
  width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(15%);
  transition: filter .25s ease;
}
.cf-clients__grid-card:hover img { filter: grayscale(0%); }

/* ── 6e. Closing trust band ─────────────────────────────────── */
.cf-clients__trust-band {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #0674A2 0%, #0F9BB2 50%, #14A882 100%);
  border-radius: 18px;
  box-shadow: 0 16px 44px -10px rgba(10,127,174,.38);
}
.cf-clients__trust-copy { flex: 1; min-width: 0; }
.cf-clients__trust-text {
  font-size: clamp(.88rem, .84rem + .2vw, 1rem);
  line-height: 1.65; color: rgba(255,255,255,.88);
  margin: 0; font-weight: 500;
}
.cf-clients__trust-btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .82rem 1.75rem; border-radius: 12px;
  font-size: .94rem; font-weight: 800;
  color: var(--cf-primary, #0A7FAE);
  background: #ffffff;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 6px 20px -4px rgba(0,0,0,.22);
  transition: transform .25s ease, box-shadow .25s ease, background .2s ease;
}
.cf-clients__trust-btn svg { width: 16px; height: 16px; transition: transform .25s ease; }
.cf-clients__trust-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -6px rgba(0,0,0,.28);
  background: #f0f9ff;
}
.cf-clients__trust-btn:hover svg { transform: translateX(4px); }
.cf-clients__trust-btn:focus-visible {
  outline: 3px solid rgba(255,255,255,.55); outline-offset: 2px;
}
@media (max-width: 640px) {
  .cf-clients__trust-band { flex-direction: column; text-align: center; }
  .cf-clients__trust-btn { width: 100%; justify-content: center; }
}

/* ============================================================
   SECTION 07 — append next section styles below this line.
   ============================================================ */
   
/* ================================================================
   CLEANFLO India — CTA / Contact Section  v2.0
   File   : output/v2/home-cta.css
   Paste  : At the very bottom of public_html/assets/css/home.css
   Prefix : .cf-contact  — fully scoped, zero conflicts
   Fixes  : sticky overlap, iOS zoom, mobile stacking order,
             touch targets, maps CTA wrap, inline SVG replaced by FA
   ================================================================ */

/* ── Reset helpers (scoped) ──────────────────────────────────── */
.cf-contact *,
.cf-contact *::before,
.cf-contact *::after {
  box-sizing: border-box;
}

/* ── Section wrapper ─────────────────────────────────────────── */
.cf-contact {
  padding-top: clamp(3.5rem, 6vw, 6rem);
  background: #ffffff;
  overflow: hidden;
}

/* Inner container (mirrors your .container but scoped) */
.cf-contact__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ── 7a. Section header ──────────────────────────────────────── */
.cf-contact__hdr {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
}

.cf-contact__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #0A7FAE;
  background: #DDF4FB;
  border: 1px solid rgba(10, 127, 174, .22);
  padding: .4rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.cf-contact__eyebrow i { font-size: .7rem; }

.cf-contact__heading {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.9rem, 1.2rem + 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -.03em;
  color: #0B1620;
  margin: 0 0 1rem;
}
.cf-contact__heading-accent {
  background: linear-gradient(135deg, #0A7FAE 0%, #149A87 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* Fallback for browsers that don't support background-clip: text */
@supports not (-webkit-background-clip: text) {
  .cf-contact__heading-accent { color: #0A7FAE; }
}

.cf-contact__subhead {
  font-size: clamp(.88rem, .83rem + .25vw, 1.05rem);
  line-height: 1.75;
  color: #5F7180;
  margin: 0 0 2rem;
}

/* Trust strip */
.cf-contact__trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  text-align: left;
}
@media (max-width: 640px) {
  .cf-contact__trust-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 400px) {
  .cf-contact__trust-row {
    grid-template-columns: 1fr;
  }
}

.cf-contact__trust-card {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .9rem 1rem;
  background: #ffffff;
  border: 1px solid #D8E5EC;
  border-radius: 14px;
  box-shadow: 0 2px 10px -3px rgba(10, 127, 174, .08);
  transition: box-shadow .25s, border-color .25s;
}
.cf-contact__trust-card:hover {
  border-color: rgba(10, 127, 174, .28);
  box-shadow: 0 6px 20px -6px rgba(10, 127, 174, .14);
}

.cf-contact__trust-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: #0A7FAE;
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.cf-contact__trust-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: .84rem;
  font-weight: 800;
  color: #0A7FAE;
  margin-bottom: .2rem;
  line-height: 1.25;
}
.cf-contact__trust-desc {
  font-size: .73rem;
  line-height: 1.5;
  color: #5F7180;
}

/* ── 7b. Two-column body ─────────────────────────────────────── */
.cf-contact__body {
  display: grid;
  /*
   * On desktop: info panel (left, narrower) | form (right, wider)
   * The DOM order is FORM first, INFO second.
   * We use CSS order to swap them visually on desktop.
   * On mobile: DOM order = form first (best UX), no order swap needed.
   */
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 1.5rem;
  align-items: start;
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

/* Desktop visual swap: form goes right, info panel goes left */
.cf-contact__info-panel { order: 1; }
.cf-contact__form-wrap  { order: 2; }

@media (max-width: 960px) {
  .cf-contact__body {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  /* On mobile: restore DOM order — form first (order 0 < order 1) */
  .cf-contact__form-wrap  { order: 0; }
  .cf-contact__info-panel { order: 1; }
}

/* ── LEFT: Dark contact info panel ──────────────────────────── */
.cf-contact__info-panel {
  background: linear-gradient(145deg, #071E2C 0%, #0C2D3E 55%, #0A3D4F 100%);
  border-radius: 22px;
  padding: 1.75rem 1.6rem;
  color: #ffffff;
  /* FIXED: NO position:sticky on any breakpoint to prevent mobile overlap */
  box-shadow: 0 20px 56px -12px rgba(7, 30, 44, .42);
}

/* Only apply sticky on large desktop where there's enough space */
@media (min-width: 1100px) {
  .cf-contact__info-panel {
    position: sticky;
    top: 100px;
  }
}

.cf-contact__info-panel-hdr { margin-bottom: 1.25rem; }

.cf-contact__info-heading {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 .3rem;
  letter-spacing: -.015em;
}
.cf-contact__info-sub {
  font-size: .78rem;
  color: rgba(255, 255, 255, .48);
  margin: 0;
}

.cf-contact__info-items {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.25rem;
}

.cf-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 13px;
  padding: .9rem 1rem;
  transition: background .22s, border-color .22s;
}
.cf-contact__info-item:hover {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(45, 183, 201, .28);
}
.cf-contact__info-item--featured {
  background: rgba(10, 127, 174, .22);
  border-color: rgba(10, 127, 174, .38);
}

.cf-contact__info-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: #0A7FAE;
  border-radius: 9px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-top: 1px;
}

.cf-contact__info-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #2DB7C9;
  margin-bottom: .3rem;
}
.cf-contact__info-value,
.cf-contact__info-value address {
  font-size: .8rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, .76);
  font-style: normal;
}
.cf-contact__closed { color: rgba(255, 255, 255, .38); }

/* Quick action buttons */
.cf-contact__info-actions {
  display: flex;
  gap: .45rem;
  margin-top: .55rem;
  flex-wrap: wrap;
}

.cf-contact__quick-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  /* FIXED: min-height 44px for touch target */
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 9px;
  font-size: .75rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  background: rgba(10, 127, 174, .28);
  border: 1px solid rgba(10, 127, 174, .48);
  color: #ffffff;
  transition: background .2s;
  font-family: inherit;
}
.cf-contact__quick-btn i { font-size: 13px; }
.cf-contact__quick-btn:hover { background: rgba(10, 127, 174, .52); }

.cf-contact__quick-btn--wa {
  background: rgba(34, 197, 94, .2);
  border-color: rgba(34, 197, 94, .38);
}
.cf-contact__quick-btn--wa:hover { background: rgba(34, 197, 94, .38); }

/* WhatsApp icon (single inline SVG exception — FA has no brand icons in free CDN always) */
.cf-wa-icon {
  width: 15px;
  height: 15px;
  fill: #4ADE80;
  flex-shrink: 0;
}

/* Phone / email links */
.cf-contact__phone-link {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-size: .8rem;
  transition: color .2s;
}
.cf-contact__phone-link:hover { color: #2DB7C9; }

.cf-contact__email-link {
  color: #2DB7C9;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 600;
  word-break: break-all;
  transition: color .2s;
}
.cf-contact__email-link:hover { color: #ffffff; }

/* Google Maps CTA */
.cf-contact__maps-cta {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap; /* FIXED: wraps on mobile */
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 13px;
  padding: .9rem 1rem;
  transition: background .22s;
}
.cf-contact__maps-cta:hover { background: rgba(255, 255, 255, .09); }

.cf-contact__maps-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: #149A87;
  border-radius: 9px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.cf-contact__maps-copy { flex: 1; min-width: 120px; }
.cf-contact__maps-title {
  font-size: .8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: .12rem;
}
.cf-contact__maps-sub { font-size: .7rem; color: rgba(255, 255, 255, .42); }

.cf-contact__maps-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  /* FIXED: min-height 44px touch target */
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 9px;
  font-size: .73rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .22);
  flex-shrink: 0;
  transition: background .2s;
  font-family: inherit;
}
.cf-contact__maps-btn i { font-size: 12px; }
.cf-contact__maps-btn:hover { background: rgba(255, 255, 255, .2); }

/* FIXED: maps btn full-width when it wraps on narrow screens */
@media (max-width: 480px) {
  .cf-contact__maps-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── RIGHT: Form card ─────────────────────────────────────────── */
.cf-contact__form-wrap { position: relative; }

.cf-contact__form-card {
  background: #ffffff;
  border: 1px solid #D8E5EC;
  border-radius: 22px;
  /* FIXED: reduced padding on small screens */
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem) clamp(1.25rem, 3vw, 1.75rem);
  box-shadow:
    0 8px 32px -8px rgba(10, 127, 174, .13),
    0 2px 8px -3px rgba(0, 0, 0, .05);
}

.cf-contact__form-hdr { margin-bottom: 1.4rem; }

.cf-contact__form-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.05rem, .95rem + .6vw, 1.35rem);
  font-weight: 800;
  color: #0B1620;
  margin: 0 0 .4rem;
  letter-spacing: -.015em;
}
.cf-contact__form-sub {
  font-size: .83rem;
  line-height: 1.65;
  color: #5F7180;
  margin: 0;
}

/* Two-column form row */
.cf-contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-bottom: .85rem;
}
/* FIXED: collapse to 1-col at 580px */
@media (max-width: 580px) {
  .cf-contact__form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.cf-contact__field-group { margin-bottom: .85rem; }

/* Label */
.cf-contact__label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: #0B1620;
  margin-bottom: .4rem;
  letter-spacing: .01em;
}
.cf-contact__req { color: #D64D4D; margin-left: 1px; }

/* Input wrap */
.cf-contact__input-wrap { position: relative; }
.cf-contact__input-wrap--prefix { display: flex; align-items: stretch; }

/* FIXED: +91 prefix sizing */
.cf-contact__phone-prefix {
  padding: 0 .6rem;
  display: flex;
  align-items: center;
  background: #F6FAFC;
  border: 1.5px solid #D8E5EC;
  border-right: none;
  border-radius: 10px 0 0 10px;
  font-size: .86rem;
  font-weight: 700;
  color: #13212B;
  flex-shrink: 0;
  white-space: nowrap;
  transition: border-color .2s;
  user-select: none;
}

.cf-contact__input-icon {
  position: absolute;
  right: .85rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #5F7180;
  font-size: 14px;
  line-height: 1;
}

/* Input — FIXED: font-size 16px on mobile to prevent iOS zoom */
.cf-contact__input {
  width: 100%;
  height: 48px;
  padding: 0 2.2rem 0 .9rem;
  border: 1.5px solid #D8E5EC;
  border-radius: 10px;
  font-size: .9rem;
  color: #13212B;
  background: #ffffff;
  outline: none;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.cf-contact__input--prefixed {
  flex: 1;
  border-radius: 0 10px 10px 0;
  padding-right: .9rem;
}
.cf-contact__input::placeholder { color: #5F7180; opacity: .7; }
.cf-contact__input:focus {
  border-color: #0A7FAE;
  box-shadow: 0 0 0 3px rgba(10, 127, 174, .13);
}
/* FIXED: iOS zoom prevention — font-size must be >= 16px on mobile */
@media (max-width: 768px) {
  .cf-contact__input,
  .cf-contact__select,
  .cf-contact__textarea {
    font-size: 16px;
  }
  .cf-contact__input--prefixed {
    font-size: 16px;
  }
}

/* Focus on prefixed input — highlight prefix border too */
.cf-contact__input--prefixed:focus + .cf-contact__phone-prefix,
.cf-contact__input-wrap--prefix:focus-within .cf-contact__phone-prefix {
  border-color: #0A7FAE;
}

/* Select */
.cf-contact__select-wrap { position: relative; }

.cf-contact__select {
  width: 100%;
  height: 48px;
  padding: 0 2.4rem 0 .9rem;
  border: 1.5px solid #D8E5EC;
  border-radius: 10px;
  font-size: .9rem;
  color: #13212B;
  background: #ffffff;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-family: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.cf-contact__select:focus {
  border-color: #0A7FAE;
  box-shadow: 0 0 0 3px rgba(10, 127, 174, .13);
}

.cf-contact__select-arrow {
  position: absolute;
  right: .85rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #5F7180;
  font-size: 13px;
  line-height: 1;
}

/* Textarea — FIXED: resize:none on mobile, resize:vertical on desktop */
.cf-contact__textarea {
  width: 100%;
  padding: .75rem .9rem;
  border: 1.5px solid #D8E5EC;
  border-radius: 10px;
  font-size: .9rem;
  color: #13212B;
  background: #ffffff;
  outline: none;
  resize: none; /* FIXED: no accidental resize on mobile */
  min-height: 128px;
  font-family: inherit;
  line-height: 1.62;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  display: block;
}
@media (min-width: 769px) {
  .cf-contact__textarea {
    resize: vertical;
    max-height: 260px;
  }
}
.cf-contact__textarea::placeholder { color: #5F7180; opacity: .65; }
.cf-contact__textarea:focus {
  border-color: #0A7FAE;
  box-shadow: 0 0 0 3px rgba(10, 127, 174, .13);
}

/* Textarea meta row */
.cf-contact__textarea-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: .3rem;
  gap: .5rem;
}
.cf-contact__char-count {
  font-size: .72rem;
  color: #5F7180;
  white-space: nowrap;
  margin-left: auto;
}

/* ── Validation states ───────────────────────────────────────── */
.cf-contact__field-group.is-invalid .cf-contact__input,
.cf-contact__field-group.is-invalid .cf-contact__select,
.cf-contact__field-group.is-invalid .cf-contact__textarea {
  border-color: #D64D4D;
  box-shadow: 0 0 0 3px rgba(214, 77, 77, .11);
}
.cf-contact__field-group.is-invalid .cf-contact__phone-prefix {
  border-color: #D64D4D;
}
.cf-contact__field-group.is-valid .cf-contact__input,
.cf-contact__field-group.is-valid .cf-contact__select,
.cf-contact__field-group.is-valid .cf-contact__textarea {
  border-color: #149A87;
  box-shadow: 0 0 0 3px rgba(20, 154, 135, .09);
}

/* FIXED: shake animation for invalid fields on submit */
@keyframes cf-shake {
  0%, 100% { transform: translateX(0); }
  18%       { transform: translateX(-7px); }
  36%       { transform: translateX(7px); }
  54%       { transform: translateX(-5px); }
  72%       { transform: translateX(5px); }
}
.cf-contact__field-group.is-shaking .cf-contact__input,
.cf-contact__field-group.is-shaking .cf-contact__select,
.cf-contact__field-group.is-shaking .cf-contact__textarea,
.cf-contact__field-group.is-shaking .cf-contact__input-wrap--prefix {
  animation: cf-shake .35s ease;
}

/* Field error message */
.cf-contact__field-err {
  font-size: .73rem;
  color: #D64D4D;
  font-weight: 600;
  margin: .28rem 0 0;
  min-height: .95rem;
  line-height: 1.4;
}

/* ── Submit button ───────────────────────────────────────────── */
.cf-contact__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* FIXED: 52px height = solid touch target */
  height: 52px;
  background: linear-gradient(135deg, #0674A2 0%, #0F9BB2 50%, #149A87 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: .01em;
  box-shadow: 0 8px 24px -6px rgba(10, 127, 174, .42);
  transition: transform .25s ease, box-shadow .25s ease;
  margin-top: 1.1rem;
  position: relative;
  overflow: hidden;
  font-family: inherit;
  -webkit-appearance: none;
}
/* Shine sweep on hover */
.cf-contact__submit::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-20deg);
  transition: left .5s ease;
}
.cf-contact__submit:hover:not(:disabled)::after { left: 150%; }
.cf-contact__submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -6px rgba(10, 127, 174, .52);
}
.cf-contact__submit:active:not(:disabled) { transform: translateY(0); }
.cf-contact__submit:disabled {
  opacity: .72;
  cursor: not-allowed;
  transform: none;
}
.cf-contact__submit:focus-visible {
  outline: 3px solid rgba(10, 127, 174, .4);
  outline-offset: 2px;
}

.cf-contact__submit-text,
.cf-contact__submit-loading {
  display: flex;
  align-items: center;
  gap: .55rem;
  position: relative;
  z-index: 1;
}
.cf-contact__submit-loading { display: none; }
.cf-contact__submit.is-loading .cf-contact__submit-text  { display: none; }
.cf-contact__submit.is-loading .cf-contact__submit-loading { display: flex; }
.cf-contact__submit i { font-size: 15px; }

/* Security note */
.cf-contact__secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  margin-top: .8rem;
  font-size: .73rem;
  color: #5F7180;
  font-weight: 600;
}
.cf-contact__secure-note i { color: #149A87; font-size: 13px; }

/* API error banner */
.cf-contact__api-error {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  padding: .8rem .95rem;
  margin-top: .9rem;
  background: #FEE8E8;
  border: 1px solid #FBBFBF;
  border-radius: 10px;
  font-size: .82rem;
  color: #991B1B;
  font-weight: 600;
  line-height: 1.5;
}
.cf-contact__api-error[hidden] { display: none; }
.cf-contact__api-error i { color: #D64D4D; font-size: 15px; flex-shrink: 0; margin-top: 1px; }

/* Honeypot: screen-reader accessible + invisible */
.cf-contact__hp-field {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Success state */
.cf-contact__success {
  text-align: center;
  padding: 2.5rem 1.5rem;
  animation: cf-fade-up .45s ease both;
}
.cf-contact__success[hidden] { display: none; }

@keyframes cf-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cf-contact__success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #149A87, #0D9488);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 32px;
  box-shadow: 0 12px 30px -8px rgba(20, 154, 135, .42);
}

.cf-contact__success-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0B1620;
  margin: 0 0 .7rem;
}
.cf-contact__success-text {
  font-size: .9rem;
  line-height: 1.72;
  color: #5F7180;
  margin: 0 0 .7rem;
}
.cf-contact__success-ref { font-size: .8rem; color: #5F7180; }
.cf-contact__success-ref a {
  color: #0A7FAE;
  font-weight: 700;
  text-decoration: none;
}

/* ── 7c. Immediate Assistance band ──────────────────────────── */
.cf-contact__assist-band {
  background: linear-gradient(145deg, #0674A2 0%, #0E9ABB 45%, #14A882 100%);
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  position: relative;
  overflow: hidden;
}
/* Dot-grid texture overlay */
.cf-contact__assist-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.cf-contact__assist-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.cf-contact__assist-copy { flex: 1; min-width: 240px; }

.cf-contact__assist-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.1rem, .95rem + 1vw, 1.5rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 .4rem;
  letter-spacing: -.015em;
}
.cf-contact__assist-text {
  font-size: clamp(.82rem, .78rem + .2vw, .94rem);
  line-height: 1.68;
  color: rgba(255, 255, 255, .82);
  margin: 0;
  max-width: 540px;
}

.cf-contact__assist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  flex-shrink: 0;
}

.cf-contact__assist-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  /* FIXED: min-height 48px for touch */
  min-height: 48px;
  padding: 0 1.4rem;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
  transition: transform .22s, background .18s, box-shadow .22s;
  cursor: pointer;
}
.cf-contact__assist-btn i { font-size: 16px; flex-shrink: 0; }
.cf-contact__assist-btn:focus-visible {
  outline: 3px solid rgba(255,255,255,.5);
  outline-offset: 2px;
}

.cf-contact__assist-btn--primary {
  background: rgba(7, 30, 44, .72);
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 18px -4px rgba(0,0,0,.28);
}
.cf-contact__assist-btn--primary:hover {
  background: rgba(7, 30, 44, .88);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -6px rgba(0,0,0,.36);
}

.cf-contact__assist-btn--outline {
  background: rgba(255,255,255,.1);
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cf-contact__assist-btn--outline:hover {
  background: rgba(255,255,255,.2);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* FIXED: full-width buttons on very small mobile */
@media (max-width: 480px) {
  .cf-contact__assist-actions { width: 100%; }
  .cf-contact__assist-btn     { width: 100%; justify-content: center; }
}

/* ── Utility: smooth scroll for anchor jumps ─────────────────── */
html { scroll-behavior: smooth; }

/* ================================================================
   END CF-CONTACT v2.0
   ================================================================ */
