/* ============================================================
   PT RIHAM GLOBAL SUPPORT — rihamglobal.com
   Design system: Trust & Authority + Conversion
   Palette: brand navy/gold (logo-derived)
   ============================================================ */

:root {
  --navy:        #0B2545;
  --navy-700:    #123362;
  --ocean:       #17427A;
  --ocean-300:   #3E6FB5;
  --gold:        #C9A227;
  --gold-300:    #E8C766;
  --gold-ink:    #8A6D17;   /* gold gelap: 4.91:1 di putih — untuk TEKS */
  --paper:       #F7F5F0;
  --white:       #FFFFFF;
  --ink:         #0C1524;
  --ink-muted:   #4A5A72;
  --border:      #E3E1DA;
  --card:        #FFFFFF;
  --ring:        #17427A;

  --f-head: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --max: 1180px;
  --gut: clamp(20px, 5vw, 40px);
  --r: 14px;
  --r-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(11,37,69,.06), 0 2px 8px rgba(11,37,69,.05);
  --shadow-md: 0 4px 12px rgba(11,37,69,.07), 0 14px 38px rgba(11,37,69,.09);
  --shadow-lg: 0 10px 24px rgba(11,37,69,.10), 0 30px 70px rgba(11,37,69,.14);
  --t: 220ms cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--f-head);
  color: var(--navy);
  line-height: 1.16;
  letter-spacing: -.018em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.05rem, 4vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.16rem; font-weight: 700; letter-spacing: -.01em; }
p  { margin: 0; text-wrap: pretty; }

::selection { background: var(--gold-300); color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- layout ---------- */
.wrap { max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
section { position: relative; }
section[id] { scroll-margin-top: 84px; }
.sec { padding-block: clamp(72px, 9vw, 122px); }
.sec--tint { background: var(--paper); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--f-head); font-size: .735rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-ink);
}
.why .eyebrow { color: var(--gold-300); }
.eyebrow::before {
  content: ''; width: 24px; height: 2px; background: var(--gold); flex: none;
}
.eyebrow--c::after {
  content: ''; width: 24px; height: 2px; background: var(--gold); flex: none;
}
.sec-head { max-width: 680px; margin-bottom: clamp(38px, 5vw, 60px); }
.sec-head--c { margin-inline: auto; text-align: center; }
.sec-head h2 { margin-top: 16px; }
.sec-head p { margin-top: 17px; color: var(--ink-muted); font-size: 1.055rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-head); font-weight: 600; font-size: .935rem;
  padding: 14px 27px; border-radius: 100px; border: 1.6px solid transparent;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; transition: transform var(--t); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--ocean); box-shadow: var(--shadow-md); }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--gold { background: var(--gold); color: var(--navy); box-shadow: 0 4px 14px rgba(201,162,39,.32); }
.btn--gold:hover { background: var(--gold-300); box-shadow: 0 8px 26px rgba(201,162,39,.4); }
.btn--ghost { border-color: rgba(11,37,69,.22); color: var(--navy); }
.btn--ghost:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn--on-dark { border-color: rgba(255,255,255,.34); color: #fff; }
.btn--on-dark:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background var(--t), box-shadow var(--t), backdrop-filter var(--t);
}
.hdr__in {
  max-width: var(--max); margin-inline: auto; padding: 17px var(--gut);
  display: flex; align-items: center; gap: 30px;
  transition: padding var(--t);
}
.hdr.is-stuck {
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(170%) blur(14px);
  -webkit-backdrop-filter: saturate(170%) blur(14px);
  box-shadow: 0 1px 0 var(--border), 0 6px 26px rgba(11,37,69,.07);
}
.hdr.is-stuck .hdr__in { padding-block: 11px; }

.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand__mark { width: 33px; height: 40px; object-fit: contain; transition: transform var(--t); }
.brand:hover .brand__mark { transform: translateY(-2px) scale(1.04); }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__n {
  font-family: var(--f-head); font-weight: 800; font-size: 1.015rem;
  color: var(--navy); letter-spacing: -.012em;
}
.brand__s {
  font-family: var(--f-head); font-weight: 600; font-size: .555rem;
  letter-spacing: .345em; color: var(--gold-ink); margin-top: 4px;
}
.ftr .brand__s, .mnav .brand__s { color: var(--gold-300); }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--f-head); font-size: .885rem; font-weight: 500;
  color: var(--navy); padding: 9px 15px; border-radius: 8px;
  position: relative; transition: color var(--t), background var(--t);
}
.nav a::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 4px;
  height: 2px; background: var(--gold); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.hdr__cta { margin-left: 14px; }
.hdr .hdr__cta {
  background: transparent; color: var(--navy);
  border-color: rgba(11,37,69,.24); box-shadow: none; padding: 11px 21px; font-size: .875rem;
}
.hdr .hdr__cta:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.burger {
  display: none; margin-left: auto; width: 44px; height: 44px;
  background: none; border: 0; padding: 11px; border-radius: 9px;
}
.burger span {
  display: block; height: 2px; background: var(--navy); border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mnav {
  position: fixed; inset: 0; z-index: 99; background: var(--navy);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 90px var(--gut) 40px;
  clip-path: circle(0% at calc(100% - 46px) 40px);
  transition: clip-path 520ms cubic-bezier(.76,0,.24,1);
  visibility: hidden;
}
.mnav.is-open { clip-path: circle(150% at calc(100% - 46px) 40px); visibility: visible; }
.mnav a {
  font-family: var(--f-head); font-size: 1.6rem; font-weight: 700; color: #fff;
  padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  opacity: 0; transform: translateY(18px);
  transition: opacity .34s ease, transform .34s ease;
}
.mnav.is-open a { opacity: 1; transform: none; }
.mnav.is-open a:nth-child(1) { transition-delay: .16s; }
.mnav.is-open a:nth-child(2) { transition-delay: .21s; }
.mnav.is-open a:nth-child(3) { transition-delay: .26s; }
.mnav.is-open a:nth-child(4) { transition-delay: .31s; }
.mnav.is-open a:nth-child(5) { transition-delay: .36s; }
.mnav .btn { margin-top: 26px; align-self: flex-start; opacity: 0; transform: translateY(18px);
  transition: opacity .34s ease .42s, transform .34s ease .42s, background var(--t); }
.mnav.is-open .btn { opacity: 1; transform: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(132px, 17vw, 186px) 0 clamp(72px, 9vw, 108px);
  background: linear-gradient(168deg, #FFFFFF 0%, #F7F5F0 48%, #EEF2F8 100%);
}
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(36px, 5vw, 66px); align-items: center;
}
.hero__grid > * { min-width: 0; }
.hero h1 { margin-top: 20px; isolation: isolate; line-height: 1.22; }
.hero h1 .accent {
  position: relative; color: var(--ocean); white-space: nowrap;
}
.hero h1 .accent::after {
  content: ''; position: absolute; left: -.06em; right: -.06em; bottom: .02em; height: .34em;
  background: linear-gradient(90deg, rgba(232,199,102,.55), rgba(201,162,39,.4));
  border-radius: 4px; z-index: -1;
}
.hero__lead {
  margin-top: 22px; font-size: clamp(1.02rem, 1.5vw, 1.135rem);
  color: var(--ink-muted); max-width: 53ch;
}
.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 13px; }
.hero__trust {
  margin-top: 42px; padding-top: 32px; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.hero__trust .tstat + .tstat { padding-left: 24px; border-left: 1px solid var(--border); }
.hero__trust .tstat { align-self: start; }
.tstat__l { min-height: 2.4em; }
.tstat__n {
  font-family: var(--f-head); font-weight: 800; font-size: 1.95rem;
  color: var(--navy); line-height: 1; letter-spacing: -.02em;
}
.tstat__n sup { color: var(--gold); font-size: .55em; top: -.55em; position: relative; }
.tstat__l {
  margin-top: 7px; font-size: .795rem; color: var(--ink-muted);
  letter-spacing: .035em; text-transform: uppercase; font-weight: 500;
}

/* hero visual — droplet + ripple rings */
.hero__vis { position: relative; aspect-ratio: 1; max-width: 460px; margin-inline: auto; width: 100%; }
.hero__rings { position: absolute; inset: 0; }
.hero__ring {
  position: absolute; inset: 0; margin: auto; border-radius: 50%;
  border: 1.4px solid rgba(23,66,122,.16);
}
.hero__ring--1 { width: 100%;  height: 100%; }
.hero__ring--2 { width: 76%;   height: 76%;  border-color: rgba(23,66,122,.2); }
.hero__ring--3 { width: 53%;   height: 53%;  border-color: rgba(201,162,39,.42); }
.hero__ring--4 { width: 31%;   height: 31%;  border-color: rgba(23,66,122,.26); }
.hero__markwrap {
  position: absolute; inset: 0; display: grid; place-items: center;
}
.hero__mark { width: 40%; filter: drop-shadow(0 22px 44px rgba(11,37,69,.24)); }
.hero__dot {
  position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 0 5px rgba(201,162,39,.16);
}
.hero__dot--a { top: 9%;  left: 50%; }
.hero__dot--b { top: 50%; right: 5%; width: 6px; height: 6px; }
.hero__dot--c { bottom: 13%; left: 15%; width: 7px; height: 7px; }
.hero__chip {
  position: absolute; background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 11px 15px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
}
.hero__chip svg { width: 19px; height: 19px; color: var(--navy); flex: none; stroke-width: 2.2; }
.hero__chip { padding: 12px 16px; }
.hero__chip::before {
  content: ''; position: absolute; left: 0; top: 10px; bottom: 10px; width: 3px;
  background: var(--gold); border-radius: 0 3px 3px 0;
}
.hero__chip span { font-family: var(--f-head); font-size: .775rem; font-weight: 600; color: var(--navy); }
.hero__chip::after {
  content: ''; position: absolute; width: 46px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), rgba(201,162,39,0));
  top: 50%;
}
.hero__chip--1 { top: 12%;  left: -4%; }
.hero__chip--1::after { left: 100%; }
.hero__chip--2 { bottom: 16%; right: -4%; }
.hero__chip--2::after { right: 100%; background: linear-gradient(270deg, var(--gold), rgba(201,162,39,0)); }

/* marquee */
.marq { border-block: 1px solid var(--border); background: #fff; padding-block: 21px; overflow: hidden; max-width: 100vw; }
.marq__lbl {
  text-align: center; font-family: var(--f-head); font-size: .695rem; font-weight: 600;
  letter-spacing: .21em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 16px;
}
.marq__track { display: flex; gap: 58px; width: max-content; animation: slide 34s linear infinite; }
.marq:hover .marq__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marq__item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-head); font-weight: 600; font-size: .92rem;
  color: var(--navy); opacity: .58; transition: opacity var(--t);
}
.marq__item:hover { opacity: 1; }
.marq__item svg { width: 19px; height: 19px; color: var(--ocean); flex: none; }

/* ============================================================
   SERVICES
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.cards--2 { grid-template-columns: repeat(2, 1fr); max-width: 726px; }

/* --- penanda pilar --- */
.pilar { margin: 0 0 24px; }
.pilar--b { margin-top: clamp(46px, 5.5vw, 72px); }
.pilar__n {
  display: inline-block; font-family: var(--f-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .17em; text-transform: uppercase; color: var(--gold-ink);
  padding: 5px 12px; border: 1px solid rgba(201,162,39,.4); border-radius: 100px;
  background: rgba(201,162,39,.07);
}
.pilar__t {
  font-size: clamp(1.35rem, 2.3vw, 1.75rem); font-weight: 800; margin-top: 13px;
  display: flex; align-items: center; gap: 16px;
}
.pilar__t::after {
  content: ''; flex: 1 1 auto; height: 1px;
  background: linear-gradient(90deg, var(--border), rgba(227,225,218,0));
}
.pilar__d { margin-top: 9px; color: var(--ink-muted); font-size: .985rem; max-width: 62ch; }
.card { display: flex; flex-direction: column; }
.card .card__list { margin-top: auto; padding-top: 17px; }
.card {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px 28px 30px; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-300));
  transform: scaleX(0); transform-origin: left; transition: transform 380ms cubic-bezier(.22,.61,.36,1);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #D6D9DE; }
.card:hover::before { transform: scaleX(1); }
.card__ico {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(145deg, #EDF2FA, #E2E9F4); color: var(--ocean);
  margin-bottom: 20px; transition: background var(--t), color var(--t), transform var(--t);
}
.card__ico svg { width: 24px; height: 24px; }
.card:hover .card__ico { background: linear-gradient(145deg, var(--ocean), var(--navy)); color: #fff; transform: scale(1.06); }
.card p { margin-top: 11px; color: var(--ink-muted); font-size: .955rem; }
.card__list { margin: 17px 0 0; padding: 0; list-style: none; }
.card__list li {
  position: relative; padding-left: 22px; font-size: .885rem;
  color: var(--ink-muted); margin-top: 8px;
}
.card__list li::before {
  content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--gold);
}

/* ============================================================
   WHY / VALUES  (filosofi Riham)
   ============================================================ */
.why { background: var(--navy); color: #fff; overflow: hidden; }
.why h2, .why h3 { color: #fff; }
.why .sec-head p { color: rgba(255,255,255,.84); }
.why__bg {
  position: absolute; inset: 0; pointer-events: none; opacity: .055;
  background-image: radial-gradient(circle at 1px 1px, #fff 1.4px, transparent 0);
  background-size: 34px 34px;
}
.why__mark {
  position: absolute; right: -14%; top: 50%; translate: 0 -50%;
  width: 34%; max-width: 360px; opacity: .04; pointer-events: none;
}
@media (max-width: 1340px) { .why__mark { display: none; } }
.vals { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; position: relative; }
.val {
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--r);
  padding: 27px 26px; background: rgba(255,255,255,.035);
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.val:hover { background: rgba(255,255,255,.075); border-color: rgba(232,199,102,.42); transform: translateY(-4px); }
.val__n {
  font-family: var(--f-head); font-size: .74rem; font-weight: 700;
  letter-spacing: .15em; color: var(--gold-300);
}
.val h3 { margin-top: 12px; font-size: 1.1rem; }
.val p { margin-top: 11px; color: rgba(255,255,255,.82); font-size: .93rem; line-height: 1.72; }

/* ============================================================
   PROCESS
   ============================================================ */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.steps::before {
  content: ''; position: absolute; left: 6%; right: 6%; top: 27px; height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,162,39,.25) 100%);
}
.step { position: relative; text-align: center; }
.step__n {
  width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%;
  background: #fff; border: 2px solid var(--gold); color: var(--navy);
  display: grid; place-items: center; position: relative; z-index: 1;
  font-family: var(--f-head); font-weight: 800; font-size: 1.14rem;
  box-shadow: 0 0 0 7px var(--paper); transition: background var(--t), color var(--t), transform var(--t);
}
.step:hover .step__n { background: var(--navy); border-color: var(--navy); color: #fff; transform: scale(1.08); }
.step p { margin-top: 9px; color: var(--ink-muted); font-size: .9rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--ocean) 100%);
  color: #fff; border-radius: 0; position: relative; overflow: hidden;
}
.band::after {
  content: ''; position: absolute; right: -80px; bottom: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  border: 44px solid rgba(255,255,255,.05);
}
.band__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 34px; flex-wrap: wrap; padding-block: clamp(46px, 6vw, 70px); position: relative; z-index: 1;
}
.band h2 { color: #fff; max-width: 17ch; }
.band p { margin-top: 13px; color: rgba(255,255,255,.86); max-width: 46ch; }
.band__act { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.ct { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(32px, 4.5vw, 56px); }
.ct__info { display: flex; flex-direction: column; gap: 18px; }
.ct__row { display: flex; gap: 15px; align-items: flex-start; }
.ct__ico {
  width: 42px; height: 42px; flex: none; border-radius: 11px; display: grid; place-items: center;
  background: var(--paper); border: 1px solid var(--border); color: var(--ocean);
  transition: background var(--t), color var(--t);
}
.ct__ico svg { width: 19px; height: 19px; }
.ct__row:hover .ct__ico { background: var(--navy); color: #fff; }
.ct__k {
  font-family: var(--f-head); font-size: .705rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--ink-muted);
}
.ct__v { margin-top: 3px; font-weight: 500; color: var(--navy); }
.ct__v a:hover { color: var(--ocean); text-decoration: underline; }

.form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: clamp(24px, 3.4vw, 34px); box-shadow: var(--shadow-sm);
}
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--f-head); font-size: .8rem; font-weight: 600; color: var(--navy);
}
.field label .req { color: #C0392B; }
.field input, .field select, .field textarea {
  font: inherit; font-size: .945rem; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  background: #fff; color: var(--ink); transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 116px; }
.field select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  padding-right: 40px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230B2545' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 17px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ocean); box-shadow: 0 0 0 3.5px rgba(23,66,122,.13);
}
.field .hint { font-size: .785rem; color: var(--ink-muted); }
.field .err { font-size: .785rem; color: #C0392B; font-weight: 500; display: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #C0392B; }
.field.is-invalid .err { display: block; }
.form__act { margin-top: 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form__note { font-size: .82rem; color: var(--ink-muted); }
.form__ok {
  display: none; margin-top: 16px; padding: 14px 16px; border-radius: var(--r-sm);
  background: #EAF6EE; border: 1px solid #BFE3CB; color: #1E6B3A; font-size: .9rem;
}
.form__ok.is-on { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.ftr { background: var(--navy); color: rgba(255,255,255,.78); padding-block: 62px 0; }
.ftr__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 38px;
  padding-bottom: 44px;
}
.ftr__brand { display: flex; align-items: center; gap: 11px; margin-bottom: 17px; }
.ftr__brand img { width: 30px; height: 37px; }
.ftr__brand .brand__n { color: #fff; }
.ftr p { font-size: .91rem; max-width: 34ch; }
.ftr h4 {
  font-family: var(--f-head); font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-300); margin: 0 0 15px;
}
.ftr ul { list-style: none; margin: 0; padding: 0; }
.ftr li + li { margin-top: 10px; }
.ftr li a { font-size: .91rem; transition: color var(--t), padding var(--t); display: inline-block; }
.ftr li a:hover { color: #fff; padding-left: 5px; }
.ftr__bot {
  border-top: 1px solid rgba(255,255,255,.12); padding-block: 22px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .845rem;
}

/* floating whatsapp */
.wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 55px; height: 55px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 8px 26px rgba(37,211,102,.42);
  transition: transform var(--t), box-shadow var(--t);
  opacity: 0; visibility: hidden;
}
.wa.is-on { opacity: 1; visibility: visible; }
.wa:hover { transform: scale(1.09) translateY(-2px); box-shadow: 0 12px 34px rgba(37,211,102,.55); }
.wa svg { width: 27px; height: 27px; }

/* ============================================================
   ANIMATION BASE  (JS adds .is-in; no-JS keeps content visible)
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal-l { opacity: 0; transform: translateX(-26px); }
.js .reveal-r { opacity: 0; transform: translateX(26px); }
.js .reveal-s { opacity: 0; transform: scale(.94); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__vis { max-width: 300px; order: -1; }
  .hero__chip { display: none; }
  .cards, .cards--2 { grid-template-columns: repeat(2, 1fr); }
  .cards--2 { max-width: none; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .steps::before { display: none; }
  .ct { grid-template-columns: 1fr; }
  .ftr__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav, .hdr__cta { display: none; }
  .burger { display: block; }
}
@media (max-width: 620px) {
  .hero { padding-top: 88px; padding-bottom: 50px; }
  .hero__vis { max-width: 124px; }
  .hero__grid { gap: 16px; }
  .hero h1 { margin-top: 12px; }
  .hero__lead { margin-top: 14px; font-size: .96rem; }
  .hero__cta { margin-top: 22px; gap: 10px; }
  .hero__cta .btn { flex: 1 1 0; min-width: 0; padding-inline: 12px; font-size: .855rem; }
  .hero__trust { margin-top: 30px; padding-top: 22px; }
  .cards, .cards--2 { grid-template-columns: 1fr; }
  .vals { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .fgrid { grid-template-columns: 1fr; }
  .ftr__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__trust { gap: 22px 30px; }
  .band__in { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 340px) {
  .hero__vis { display: none; }
  .hero__trust { display: none; }
}
@media (max-width: 380px) {
  .hero { padding-top: 82px; padding-bottom: 42px; }
  .hero__vis { max-width: 104px; }
  .hero h1 { font-size: 1.82rem; }
  .hero__lead { font-size: .9rem; margin-top: 12px; }
  .hero__cta { margin-top: 18px; }
  .hero__grid { gap: 12px; }
  .hero__trust { margin-top: 22px; padding-top: 18px; gap: 16px 22px; }
  .tstat__n { font-size: 1.6rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal, .js .reveal-l, .js .reveal-r, .js .reveal-s {
    opacity: 1 !important; transform: none !important;
  }
  .marq__track { animation: none; }
  .mnav { transition: none; }
}
