/* =========================================================
   Singapore Biowaste Solutions — Stylesheet
   Palette: dark navy blue (trust/clean) + logo red accent (#E81828)
   Fonts: Manrope (headings) + Inter (body)
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand blues (navy) */
  --brand-900: #0B1F38;
  --brand-800: #103A63;
  --brand-700: #16487E;
  --brand-600: #1D5FA8;
  --brand-500: #2E7BD6;
  --brand-400: #5AA0EE;
  --brand-100: #D3E4F7;
  --brand-50:  #EEF5FC;

  /* Logo red accent */
  --red:      #E81828;
  --red-dark: #C20F1D;
  --red-soft: #FDE7E9;

  /* Neutrals */
  --ink:    #0E1726;
  --body:   #3A4656;
  --muted:  #6A7689;
  --line:   #E2E8F0;
  --bg:     #FFFFFF;
  --bg-soft:#F2F6FB;
  --bg-mint:#EAF2FB;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(11,31,56,.06), 0 1px 3px rgba(11,31,56,.08);
  --shadow-md: 0 6px 18px rgba(11,31,56,.08), 0 2px 6px rgba(11,31,56,.05);
  --shadow-lg: 0 24px 60px rgba(11,31,56,.14), 0 8px 24px rgba(11,31,56,.08);
  --shadow-red: 0 10px 24px rgba(232,24,40,.28);
  --shadow-green: 0 10px 24px rgba(29,95,168,.22);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);

  --t-fast: .18s ease;
  --t: .28s cubic-bezier(.4,.0,.2,1);

  --font-head: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }

h1,h2,h3,h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.02em;
  overflow-wrap: break-word;
}

/* Grid/flex children must be allowed to shrink below their content size,
   otherwise a wide child stretches the whole track past the viewport. */
.hero__grid > *, .split > *, .whyblock > *, .contact-grid > *,
.cta-band__inner > *, .hero__copy, .hero__visual { min-width: 0; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--soft { background: var(--bg-soft); }
.section--mint { background: var(--bg-mint); }
.section--dark { background: var(--brand-900); color: #CAD8EA; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-weight: 700; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-600);
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--red); border-radius: 2px; }
.eyebrow--center { justify-content: center; }
.section--dark .eyebrow { color: var(--brand-400); }

.section-head { max-width: 720px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-top: 14px;
}
.section-head p { margin-top: 16px; font-size: 1.075rem; color: var(--muted); }
.section--dark .section-head h2 { color: #fff; }
.section--dark .section-head p { color: #A9BBD2; }

.text-red { color: var(--red); }
.text-green { color: var(--brand-600); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t), color var(--t);
  white-space: nowrap; cursor: pointer; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn--green { background: var(--brand-600); color: #fff; box-shadow: var(--shadow-green); }
.btn--green:hover { background: var(--brand-700); transform: translateY(-2px); }
.btn--ghost { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--brand-500); color: var(--brand-700); transform: translateY(-2px); }
.btn--light { background: rgba(255,255,255,.12); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.35); }
.btn--light:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-head); font-weight: 700; color: var(--brand-700);
  transition: gap var(--t-fast), color var(--t-fast);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--t-fast); }
.link-arrow:hover { color: var(--red); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--brand-900); color: #C2D2E6;
  font-size: .86rem; border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; }
.topbar a { color: #C2D2E6; transition: color var(--t-fast); display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; color: var(--brand-400); flex-shrink: 0; }
.topbar__contacts { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__socials { display: flex; gap: 6px; }
.topbar__socials a {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.06);
}
.topbar__socials a:hover { background: var(--brand-600); }
.topbar__socials svg { width: 14px; height: 14px; color: #cfe; }

/* ---------- Header / nav ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t), padding var(--t);
}
.header.is-stuck { box-shadow: var(--shadow-md); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 40px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-family: var(--font-head); font-weight: 800; color: var(--ink); font-size: 1.02rem; letter-spacing: -.01em; }
.brand__text span { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--brand-600); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink);
  padding: 9px 12px; border-radius: 999px; position: relative; transition: color var(--t-fast), background var(--t-fast); white-space: nowrap;
}
.nav a:hover { color: var(--brand-700); background: var(--brand-50); }
.nav a.is-active { color: var(--brand-700); }
.nav a.is-active::after {
  content:""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px;
  background: var(--red); border-radius: 2px;
}
.header__actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--brand-50); align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; color: var(--brand-800); }

/* ---------- Mobile drawer ---------- */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(11,31,56,.45); opacity: 0; visibility: hidden; transition: var(--t); z-index: 90; }
.drawer {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(360px, 86vw);
  background: #fff; z-index: 100; transform: translateX(100%); transition: transform var(--t);
  display: flex; flex-direction: column; padding: 22px; box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: translateX(0); }
.drawer.is-open + .drawer-backdrop, .drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.drawer__head img { height: 34px; }
.drawer__close { width: 44px; height: 44px; border-radius: 12px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; }
.drawer__close svg { width: 22px; height: 22px; }
.drawer nav { display: flex; flex-direction: column; margin-top: 12px; }
.drawer nav a { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--ink); padding: 16px 8px; border-bottom: 1px solid var(--line); }
.drawer nav a.is-active { color: var(--brand-700); }
.drawer__cta { margin-top: auto; display: grid; gap: 10px; }
.drawer__contact { margin-top: 20px; font-size: .92rem; display: grid; gap: 10px; }
.drawer__contact a { display: flex; gap: 10px; align-items: center; color: var(--body); }
.drawer__contact svg { width: 18px; height: 18px; color: var(--brand-600); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center;
  padding-block: clamp(48px, 7vw, 96px);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--brand-50); color: var(--brand-700);
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  padding: 8px 15px; border-radius: 999px; box-shadow: inset 0 0 0 1px var(--brand-100);
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-500); box-shadow: 0 0 0 4px var(--brand-100); }
.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 4rem); margin-top: 22px;
}
.hero h1 .accent { color: var(--brand-600); position: relative; }
.hero h1 .accent::after {
  content:""; position: absolute; left: 0; right: 0; bottom: 6px; height: 12px; z-index: -1;
  background: var(--brand-100); border-radius: 6px;
}
.hero__lead { margin-top: 22px; font-size: 1.16rem; max-width: 38ch; color: var(--body); }
.hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { margin-top: 36px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero__trust .sep { width: 1px; height: 36px; background: var(--line); }
.hero__trust-item { display: flex; align-items: center; gap: 10px; }
.hero__trust-item svg { width: 26px; height: 26px; color: var(--brand-600); }
.hero__trust-item strong { display: block; font-family: var(--font-head); color: var(--ink); font-size: .98rem; }
.hero__trust-item span { font-size: .82rem; color: var(--muted); }

/* Hero visual (bento) */
.hero__visual { position: relative; }
.hero-card {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 8%, rgba(90,160,238,.55), transparent 55%),
    radial-gradient(120% 120% at 10% 100%, rgba(11,31,56,.65), transparent 60%),
    linear-gradient(150deg, var(--brand-700), var(--brand-900));
  padding: 26px; min-height: 480px;
  box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; gap: 16px;
  isolation: isolate;
}
.hero-card::before {
  content:""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.18) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
}
.hc-tile {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 18px; color: #fff; backdrop-filter: blur(6px);
}
.hc-tile svg.ic { width: 28px; height: 28px; color: var(--brand-400); margin-bottom: 12px; }
.hc-tile h4 { color: #fff; font-size: 1rem; }
.hc-tile p { font-size: .85rem; color: #CFE0F4; margin-top: 4px; line-height: 1.45; }
.hc-stat { grid-column: span 2; background: #fff; border-radius: var(--radius); padding: 20px 22px; display: flex; align-items: center; gap: 18px; box-shadow: var(--shadow-md); }
.hc-stat__num { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--brand-700); line-height: 1; }
.hc-stat__num span { color: var(--red); }
.hc-stat__txt { font-size: .9rem; color: var(--body); }
.hc-stat__txt strong { display:block; color: var(--ink); font-family: var(--font-head); }
.hero__float {
  position: absolute; bottom: -22px; left: -22px; background: #fff; border-radius: 16px;
  padding: 14px 18px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.hero__float .ring { width: 42px; height: 42px; border-radius: 50%; background: var(--red-soft); display:flex; align-items:center; justify-content:center; }
.hero__float .ring svg { width: 22px; height: 22px; color: var(--red); }
.hero__float strong { display: block; font-family: var(--font-head); color: var(--ink); font-size: .95rem; }
.hero__float span { font-size: .8rem; color: var(--muted); }

/* ---------- Photo hero (home) ---------- */
.hero--photo { position: relative; isolation: isolate; display: flex; align-items: center;
  min-height: clamp(280px, 40vh, 400px); background: var(--brand-900); }
.hero--photo .hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 78% center; z-index: -2; }
.hero--photo .hero__scrim { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(8,24,46,.95) 0%, rgba(8,24,46,.86) 34%, rgba(8,24,46,.55) 60%, rgba(8,24,46,.12) 100%); }
.hero--photo .container { width: 100%; }
.hero--photo .hero__content { max-width: 700px; color: #fff; padding-block: clamp(16px, 2.4vw, 30px); }
.hero--photo h1 { color: #fff; font-size: clamp(1.55rem, 3vw, 2.3rem); margin-top: 10px; }
.hero--photo h1 .accent { color: var(--brand-400); }
.hero--photo h1 .accent::after { display: none; }
.hero--photo .hero__lead { color: #D7E3F2; max-width: 56ch; margin-top: 12px; font-size: 1rem; }
.hero--photo .hero__badge { background: rgba(255,255,255,.14); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.28); }
.hero--photo .hero__badge .dot { box-shadow: 0 0 0 4px rgba(52,160,238,.25); }
.hero--photo .hero__cta { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero--photo .hero__trust { display: none; }
.hero--photo .hero__trust .sep { background: rgba(255,255,255,.28); }
.hero--photo .hero__trust-item svg { color: var(--brand-400); }
.hero--photo .hero__trust-item strong { color: #fff; }
.hero--photo .hero__trust-item span { color: #AEC2DA; }
@media (max-width: 860px){
  .hero--photo .hero__bg { object-position: 70% center; }
  .hero--photo .hero__scrim { background: linear-gradient(180deg, rgba(8,24,46,.74) 0%, rgba(8,24,46,.86) 55%, rgba(8,24,46,.95) 100%); }
}

/* ---------- Logo / partners marquee ---------- */
.partners { border-block: 1px solid var(--line); background: #fff; }
.partners .container { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: space-between; padding-block: 26px; }
.partners p { font-family: var(--font-head); font-weight: 700; color: var(--muted); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.partners__list { display: flex; gap: clamp(20px, 4vw, 52px); flex-wrap: wrap; align-items: center; }
.partners__list span { font-family: var(--font-head); font-weight: 800; color: #B6C3D6; font-size: 1.15rem; letter-spacing: .02em; }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.1rem); color: var(--ink); line-height: 1; }
.section--dark .stat__num { color: #fff; }
.stat__num span { color: var(--red); }
.stat__label { margin-top: 10px; color: var(--muted); font-weight: 500; }
.section--dark .stat__label { color: #9DB0CC; }

/* ---------- Generic card grid ---------- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2,1fr); }
.grid--3 { grid-template-columns: repeat(3,1fr); }
.grid--4 { grid-template-columns: repeat(4,1fr); }

/* Service cards */
.card-service {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative; overflow: hidden; height: 100%;
}
.card-service::after {
  content:""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--brand-500), var(--brand-700)); transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.card-service:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-service:hover::after { transform: scaleX(1); }
.card-icon {
  width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: var(--brand-50); color: var(--brand-700); margin-bottom: 20px; transition: var(--t);
}
.card-icon svg { width: 30px; height: 30px; }
.card-service:hover .card-icon { background: var(--brand-600); color: #fff; transform: rotate(-6deg); }
.card-service h3 { font-size: 1.22rem; }
.card-service p { margin-top: 10px; color: var(--muted); font-size: .96rem; }
.card-service .link-arrow { margin-top: 18px; }
.card-service__tag { position: absolute; top: 22px; right: 22px; font-size: .7rem; font-weight: 700; font-family: var(--font-head); color: var(--red); background: var(--red-soft); padding: 5px 10px; border-radius: 999px; letter-spacing: .04em; }

/* Feature item */
.feature { display: flex; gap: 18px; }
.feature__ic { flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; background: var(--brand-50); color: var(--brand-700); display: flex; align-items: center; justify-content: center; }
.feature__ic svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.12rem; }
.feature p { margin-top: 7px; color: var(--muted); font-size: .95rem; }
.section--dark .feature__ic { background: rgba(255,255,255,.08); color: var(--brand-400); }
.section--dark .feature h3 { color: #fff; }
.section--dark .feature p { color: #9DB0CC; }

/* ---------- Split / media sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.media-frame {
  border-radius: var(--radius-xl); overflow: hidden; position: relative; min-height: 440px;
  background:
    radial-gradient(110% 90% at 80% 10%, rgba(90,160,238,.5), transparent 55%),
    linear-gradient(160deg, var(--brand-600), var(--brand-900));
  box-shadow: var(--shadow-lg); display: flex; align-items: flex-end; padding: 28px;
}
.media-frame::before {
  content:""; position:absolute; inset:0; opacity:.45;
  background-image: radial-gradient(rgba(255,255,255,.16) 1.3px, transparent 1.3px); background-size: 20px 20px;
}
.media-frame__svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.media-frame__caption {
  position: relative; z-index: 2; background: rgba(255,255,255,.95); border-radius: 16px; padding: 16px 20px;
  box-shadow: var(--shadow-md); max-width: 280px;
}
.media-frame__caption strong { font-family: var(--font-head); color: var(--ink); display: block; }
.media-frame__caption span { font-size: .86rem; color: var(--muted); }
.media-badge {
  position: absolute; z-index: 3; top: 24px; right: 24px; background: #fff; border-radius: 14px; padding: 14px 16px;
  box-shadow: var(--shadow-lg); text-align: center;
}
.media-badge .n { font-family: var(--font-head); font-weight: 800; color: var(--red); font-size: 1.7rem; line-height: 1; }
.media-badge .t { font-size: .74rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

.check-list { display: grid; gap: 14px; margin-top: 26px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list .ck { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--brand-50); color: var(--brand-700); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.check-list .ck svg { width: 14px; height: 14px; }
.check-list b { color: var(--ink); font-family: var(--font-head); }
.section--dark .check-list b { color: #fff; }
.section--dark .check-list .ck { background: rgba(255,255,255,.08); color: var(--brand-400); }

/* ---------- Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; }
.step { position: relative; text-align: left; }
/* Icon tile is the main visual; number sits as a red badge on its corner. */
.step__ic {
  width: 66px; height: 66px; border-radius: 18px;
  background: #fff; color: var(--brand-600);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2; box-shadow: var(--shadow-md); border: 1px solid var(--line);
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
}
.step__ic svg { width: 32px; height: 32px; }
.step:hover .step__ic { background: var(--brand-600); color: #fff; transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step__num {
  position: absolute; top: -9px; left: -9px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: .92rem;
  z-index: 3; border: 2.5px solid #fff; box-shadow: 0 4px 10px rgba(232,24,40,.32);
}
.step h3 { margin-top: 22px; font-size: 1.15rem; }
.step p { margin-top: 8px; color: var(--muted); font-size: .94rem; }
.step:not(:last-child)::after {
  content:""; position: absolute; top: 32px; left: 80px; right: -12px; height: 2px; z-index: 1;
  background: repeating-linear-gradient(90deg, rgba(15,122,87,.32) 0 7px, transparent 7px 15px);
}
.section--dark .step__ic { background: rgba(255,255,255,.08); color: var(--brand-400); border-color: rgba(255,255,255,.12); }
.section--dark .step h3 { color: #fff; }
.section--dark .step p { color: #9DB0CC; }

/* ---------- Why-choose / dark feature block ---------- */
.whyblock { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px,6vw,72px); align-items: center; }

/* ---------- Testimonials ---------- */
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; height: 100%; display: flex; flex-direction: column; }
.testi__stars { display: flex; gap: 3px; color: #F5A623; margin-bottom: 16px; }
.testi__stars svg { width: 18px; height: 18px; }
.testi__quote { font-size: 1.04rem; color: var(--ink); line-height: 1.6; flex: 1; }
.testi__by { margin-top: 22px; display: flex; align-items: center; gap: 14px; }
.avatar { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 800; color: #fff; flex-shrink: 0; }
.testi__by strong { display: block; font-family: var(--font-head); color: var(--ink); }
.testi__by span { font-size: .86rem; color: var(--muted); }

/* ---------- Team ---------- */
.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform var(--t), box-shadow var(--t); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card__photo { height: 230px; display: flex; align-items: center; justify-content: center; position: relative; }
.team-card__photo .avatar-lg { width: 96px; height: 96px; border-radius: 50%; background: rgba(255,255,255,.9); display:flex;align-items:center;justify-content:center; font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--brand-700); box-shadow: var(--shadow-md); }
.team-card__body { padding: 22px 24px 26px; }
.team-card__body h3 { font-size: 1.2rem; }
.team-card__role { color: var(--red); font-weight: 700; font-family: var(--font-head); font-size: .9rem; margin-top: 3px; }
.team-card__body p { margin-top: 12px; color: var(--muted); font-size: .93rem; }
.team-card__socials { margin-top: 16px; display: flex; gap: 8px; }
.team-card__socials a { width: 34px; height: 34px; border-radius: 9px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; color: var(--brand-700); transition: var(--t-fast); }
.team-card__socials a:hover { background: var(--brand-600); color: #fff; }
.team-card__socials svg { width: 16px; height: 16px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background:
    radial-gradient(120% 140% at 90% 10%, rgba(90,160,238,.5), transparent 50%),
    linear-gradient(140deg, var(--brand-700), var(--brand-900));
  color: #fff; padding: clamp(40px, 6vw, 72px); box-shadow: var(--shadow-lg);
}
.cta-band::before { content:""; position:absolute; inset:0; opacity:.4; background-image: radial-gradient(rgba(255,255,255,.16) 1.4px, transparent 1.4px); background-size: 24px 24px; }
.cta-band__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr auto; gap: 32px; align-items: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.cta-band p { color: #CFE0F2; margin-top: 12px; font-size: 1.08rem; max-width: 52ch; }
.cta-band__actions { display: flex; flex-direction: column; gap: 12px; min-width: 230px; }
.cta-band__phone { display: flex; align-items: center; gap: 12px; color: #fff; }
.cta-band__phone svg { width: 22px; height: 22px; color: var(--brand-400); }
.cta-band__phone span { font-size: .8rem; color: #A8C2E2; display: block; }
.cta-band__phone strong { font-family: var(--font-head); font-size: 1.25rem; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative; overflow: hidden; color: #fff; padding-block: clamp(60px, 9vw, 120px);
  background:
    radial-gradient(120% 120% at 88% 0%, rgba(90,160,238,.4), transparent 55%),
    linear-gradient(150deg, var(--brand-800), var(--brand-900));
}
.page-hero::before { content:""; position:absolute; inset:0; opacity:.4; background-image: radial-gradient(rgba(255,255,255,.14) 1.3px, transparent 1.3px); background-size: 24px 24px; }
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); margin-top: 16px; }
.page-hero p { color: #CCDCEE; margin-top: 18px; font-size: 1.12rem; max-width: 60ch; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: #A8C2E2; font-family: var(--font-head); font-weight: 600; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 14px; height: 14px; }
.page-hero .eyebrow { color: var(--brand-400); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.info-card { display: flex; gap: 16px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: var(--t); }
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.info-card__ic { flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; background: var(--brand-50); color: var(--brand-700); display: flex; align-items: center; justify-content: center; }
.info-card__ic svg { width: 26px; height: 26px; }
.info-card h3 { font-size: 1.05rem; }
.info-card a, .info-card p { color: var(--muted); margin-top: 4px; font-size: .96rem; }
.info-card a:hover { color: var(--brand-700); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 7px; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--bg-soft);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand-500); background: #fff; box-shadow: 0 0 0 4px var(--brand-50); }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-success { display: none; padding: 16px 18px; border-radius: 12px; background: var(--brand-50); color: var(--brand-700); border: 1px solid var(--brand-100); font-weight: 600; margin-bottom: 18px; }
.form-success.show { display: block; }
.form-success svg { width: 18px; height: 18px; display: inline; vertical-align: -3px; margin-right: 6px; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(.1); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; margin-bottom: 14px; overflow: hidden; transition: box-shadow var(--t); }
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; text-align: left; font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.faq-q .ic { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--brand-50); color: var(--brand-700); display: flex; align-items: center; justify-content: center; transition: var(--t); }
.faq-q .ic svg { width: 16px; height: 16px; transition: transform var(--t); }
.faq-item.open .ic { background: var(--brand-600); color: #fff; }
.faq-item.open .ic svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t); }
.faq-a p { padding: 0 24px 22px; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--brand-900); color: #A6B6CE; padding-top: clamp(56px, 7vw, 88px); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__brand img { height: 46px; margin-bottom: 18px; }
.footer__brand p { font-size: .96rem; max-width: 34ch; line-height: 1.7; }
.footer__brand .socials { display: flex; gap: 10px; margin-top: 20px; }
.footer__brand .socials a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: flex; align-items: center; justify-content: center; color: #cfe; transition: var(--t-fast); }
.footer__brand .socials a:hover { background: var(--brand-600); color: #fff; transform: translateY(-3px); }
.footer__brand .socials svg { width: 18px; height: 18px; }
.footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { font-size: .96rem; transition: color var(--t-fast), padding var(--t-fast); }
.footer__links a:hover { color: #fff; padding-left: 5px; }
.footer__contact { display: grid; gap: 14px; }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; }
.footer__contact svg { width: 19px; height: 19px; color: var(--brand-400); flex-shrink: 0; margin-top: 2px; }
.footer__contact a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 24px; font-size: .88rem; }
.footer__bottom a:hover { color: #fff; }
.footer__bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px rgba(37,211,102,.45); transition: transform var(--t); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{ transition-delay: .08s; }
.reveal[data-d="2"]{ transition-delay: .16s; }
.reveal[data-d="3"]{ transition-delay: .24s; }
.reveal[data-d="4"]{ transition-delay: .32s; }

/* ---------- Misc ---------- */
.mt-sm{margin-top:14px}.mt{margin-top:24px}.mt-lg{margin-top:40px}
.center{text-align:center}
.muted{color:var(--muted)}
.lead{font-size:1.12rem;color:var(--body)}
.prose p{margin-top:16px}
.prose p:first-child{margin-top:0}
.pill { display:inline-flex; align-items:center; gap:8px; background: var(--brand-50); color: var(--brand-700); font-family: var(--font-head); font-weight:700; font-size:.8rem; padding:7px 14px; border-radius:999px; }
.divider-wave { display:block; width:100%; height: auto; color: var(--bg-soft); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__visual{ max-width: 560px; }
  .whyblock{ grid-template-columns: 1fr; }
  .footer__top{ grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid--4{ grid-template-columns: repeat(2,1fr); }
  .steps{ grid-template-columns: repeat(2,1fr); }
  .step:not(:last-child)::after{ display:none; }
}
@media (max-width: 1080px){
  .nav, .header__actions .btn{ display:none; }
  .nav-toggle{ display:flex; }
}
@media (max-width: 860px){
  .topbar__contacts .addr{ display:none; }
  .split{ grid-template-columns: 1fr; }
  .split--reverse .split__media{ order: 0; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--2{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: repeat(2,1fr); gap: 30px 16px; }
  .cta-band__inner{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .hero-card{ min-height: 420px; }
}
@media (max-width: 520px){
  .topbar__contacts .email{ display:none; }
  .form-row{ grid-template-columns: 1fr; }
  .grid--4{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .footer__top{ grid-template-columns: 1fr; }
  .hero-card{ grid-template-columns: 1fr; }
  .hc-stat{ grid-column: span 1; }
  .hero__float{ display: none; }
  .hero h1{ font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .hero__lead{ max-width: none; }
  .hero__cta{ width: 100%; }
  .hero__cta .btn{ flex: 1 1 100%; }
  .topbar .container{ justify-content: center; }
  .topbar__socials{ display: none; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal{ opacity:1; transform:none; }
}
