/* ============================================================
   INSPEÇÃO CHINA — Site Institucional
   Base branca + cores da China (vermelho #A10A0A / dourado #F6BE00)
   ============================================================ */

:root {
  --red:        #A10A0A;
  --red-deep:   #7d0808;
  --red-bright: #c81414;
  --gold:       #F6BE00;
  --gold-deep:  #d9a800;
  --ink:        #1b1410;
  --ink-soft:   #4a423b;
  --muted:      #756b61;
  --line:       #ece6df;
  --paper:      #ffffff;
  --paper-2:    #faf7f2;
  --paper-3:    #f4efe7;
  --shadow-sm:  0 2px 10px rgba(27,20,16,.06);
  --shadow:     0 14px 40px rgba(27,20,16,.10);
  --shadow-lg:  0 30px 70px rgba(27,20,16,.16);
  --radius:     18px;
  --radius-sm:  12px;
  --maxw:       1180px;
  --ease:       cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Top accent bar */
.topbar {
  height: 5px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 55%, var(--gold) 55%, var(--gold) 100%);
}

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: .80rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px;
}
.section { padding: 96px 0; }
.section--tint { background: var(--paper-2); }
.section--dark { background: var(--ink); color: #fff; }
.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-head p { color: var(--muted); font-size: 1.08rem; margin-top: 16px; }
.section--dark .section-head p { color: rgba(255,255,255,.72); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .98rem;
  padding: 16px 30px; border-radius: 100px; cursor: pointer; border: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 10px 26px rgba(161,10,10,.28); }
.btn--primary:hover { background: var(--red-bright); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(161,10,10,.36); }
.btn--gold { background: var(--gold); color: var(--ink); box-shadow: 0 10px 26px rgba(246,190,0,.32); }
.btn--gold:hover { background: var(--gold-deep); transform: translateY(-3px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.btn--white { background:#fff; color: var(--ink); }
.btn--white:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  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 .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.nav__logo img { height: 56px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .96rem;
  color: var(--ink); padding: 9px 15px; border-radius: 9px;
  transition: color .2s, background .2s; position: relative;
}
.nav__links a:hover { color: var(--red); }
.nav__links a.active { color: var(--red); }
.nav__links a.active::after {
  content:""; position:absolute; left:15px; right:15px; bottom:2px; height:2px;
  background: var(--gold); border-radius: 2px;
}
.nav__cta { margin-left: 12px; }
.nav__cta .btn--primary { color: #fff; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { display:block; width:26px; height:2.5px; background: var(--ink); border-radius:3px; transition:.3s; }
.nav__toggle span + span { margin-top: 6px; }
.nav__toggle.open span:nth-child(1){ transform: translateY(8.5px) rotate(45deg); }
.nav__toggle.open span:nth-child(2){ opacity: 0; }
.nav__toggle.open span:nth-child(3){ transform: translateY(-8.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero::before {
  content:""; position:absolute; right:-12%; top:-25%; width:55vw; height:120%;
  background: radial-gradient(closest-side, rgba(246,190,0,.14), transparent 70%);
  pointer-events:none;
}
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 60px; align-items: center; }
.hero__grid > * { min-width: 0; }
.hero__pill {
  display:inline-flex; align-items:center; gap:9px; background: var(--paper-3);
  border:1px solid var(--line); color: var(--ink-soft);
  font-size:.85rem; font-weight:600; padding:8px 16px; border-radius:100px; margin-bottom:26px;
}
.hero__pill b { color: var(--red); }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.75rem); }
.hero h1 .hl { color: var(--red); position: relative; white-space: nowrap; }
.hero h1 .hl-gold { color: var(--ink); position: relative; }
.hero h1 .hl-gold::after {
  content:""; position:absolute; left:0; right:0; bottom:.06em; height:.34em;
  background: var(--gold); opacity:.42; z-index:-1; border-radius:3px;
}
.hero p.lead { font-size: 1.16rem; color: var(--ink-soft); margin: 24px 0 34px; max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__trust { display: flex; align-items: center; gap: 22px; margin-top: 38px; flex-wrap: wrap; }
.hero__trust .ht { display: flex; flex-direction: column; }
.hero__trust .ht b { font-family:'Plus Jakarta Sans'; font-size: 1.7rem; color: var(--red); line-height:1; }
.hero__trust .ht span { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.hero__trust .div { width:1px; height: 38px; background: var(--line); }

.hero__media { position: relative; }
.hero__media .photo {
  border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/4.6; background: var(--paper-3);
}
.hero__media .photo img { width:100%; height:100%; object-fit: cover; object-position: center top; }
.hero__media .badge {
  position: absolute; left: -26px; bottom: 34px; background:#fff; border-radius: 16px;
  box-shadow: var(--shadow); padding: 16px 20px; display:flex; align-items:center; gap:13px;
  max-width: 250px;
}
.hero__media .badge .ic { width:42px; height:42px; border-radius:11px; background: rgba(161,10,10,.08); display:grid; place-items:center; flex-shrink:0; }
.hero__media .badge .ic svg { width:22px; height:22px; color: var(--red); }
.hero__media .badge b { font-family:'Plus Jakarta Sans'; font-size:.96rem; display:block; }
.hero__media .badge span { font-size:.8rem; color: var(--muted); }
.hero__media .ship {
  position:absolute; top:-18px; right:-10px; background: var(--gold); color: var(--ink);
  font-family:'Plus Jakarta Sans'; font-weight:800; font-size:.82rem; padding:10px 16px;
  border-radius: 100px; box-shadow: var(--shadow-sm); display:flex; align-items:center; gap:8px;
}
.hero__media .ship svg { width:18px; height:18px; }

/* ---------- Logos / faixa ---------- */
.strip { background: var(--ink); color:#fff; padding: 20px 0; }
.strip__row { display:flex; align-items:center; justify-content:center; gap: 14px 40px; flex-wrap:wrap; text-align:center; }
.strip__row .it { display:flex; align-items:center; gap:10px; font-size:.92rem; color: rgba(255,255,255,.82); }
.strip__row .it svg { width:20px; height:20px; color: var(--gold); flex-shrink:0; }

/* ---------- Diferenciais ---------- */
.diff__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.diff__grid > *, .auth__grid > *, .about__grid > *, .contact__grid > *, .train__body { min-width: 0; }
.diff__list { display: grid; gap: 14px; }
.diff__item {
  display:flex; gap:16px; align-items:flex-start; background:#fff; border:1px solid var(--line);
  padding: 20px 22px; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .2s;
}
.diff__item:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(161,10,10,.18); }
.diff__item .check {
  width: 30px; height: 30px; border-radius: 9px; background: var(--red); color:#fff;
  display:grid; place-items:center; flex-shrink:0; margin-top:2px;
}
.diff__item .check svg { width:17px; height:17px; }
.diff__item p { margin:0; font-weight:600; color: var(--ink); font-size: 1.02rem; }
.diff__photos { position: relative; }
.diff__photos .main { border-radius: 22px; overflow:hidden; box-shadow: var(--shadow); aspect-ratio: 4/3.4; }
.diff__photos .main img { width:100%; height:100%; object-fit: cover; }
.diff__photos .float {
  position:absolute; right:-22px; bottom:-28px; width: 200px; border-radius: 16px; overflow:hidden;
  box-shadow: var(--shadow-lg); border: 5px solid #fff; aspect-ratio: 3/3.6;
}
.diff__photos .float img { width:100%; height:100%; object-fit: cover; }

/* ---------- Serviços (home cards) ---------- */
.svc2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.svc2__card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px;
  display:flex; flex-direction:column; justify-content:flex-end; padding: 34px;
  color:#fff; box-shadow: var(--shadow); isolation:isolate;
}
.svc2__card img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; z-index:-2; transition: transform .6s var(--ease); }
.svc2__card::after { content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(180deg, rgba(27,20,16,.15) 0%, rgba(125,8,8,.78) 78%, rgba(125,8,8,.92) 100%); }
.svc2__card:hover img { transform: scale(1.06); }
.svc2__card .tag { font-size:.78rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color: var(--gold); margin-bottom: 10px; }
.svc2__card h3 { color:#fff; font-size: 1.55rem; margin-bottom: 10px; }
.svc2__card p { color: rgba(255,255,255,.86); font-size: .98rem; margin-bottom: 20px; max-width: 36ch; }
.svc2__card .more { display:inline-flex; align-items:center; gap:8px; font-weight:700; font-family:'Plus Jakarta Sans'; color:#fff; }
.svc2__card .more svg { width:18px; height:18px; transition: transform .25s; }
.svc2__card:hover .more svg { transform: translateX(5px); }

/* ---------- Autoridade (dark + video) ---------- */
.auth { position: relative; }
.auth__grid { display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
.auth__video { border-radius: 22px; overflow:hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; position:relative; background:#000; }
.auth__video video { width:100%; height:100%; object-fit: cover; }
.auth__video .tagv {
  position:absolute; left:18px; bottom:18px; background: rgba(0,0,0,.55); color:#fff;
  font-size:.8rem; font-weight:600; padding:8px 14px; border-radius:100px; backdrop-filter: blur(6px);
  display:flex; align-items:center; gap:8px;
}
.auth__video .tagv .dot { width:8px; height:8px; border-radius:50%; background: var(--gold); }
.auth__stats { display:grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.auth__stats .st { background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.10); border-radius: var(--radius-sm); padding: 22px; }
.auth__stats .st b { font-family:'Plus Jakarta Sans'; font-size: 2.1rem; color: var(--gold); display:block; line-height:1; }
.auth__stats .st span { font-size:.9rem; color: rgba(255,255,255,.7); margin-top:8px; display:block; }

/* ---------- Depoimentos ---------- */
.depo__feat {
  display:grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items:center;
  background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 14px;
  box-shadow: var(--shadow); margin-bottom: 40px;
}
.depo__feat .img { border-radius: var(--radius-sm); overflow:hidden; background: var(--paper-3); }
.depo__feat .img img { width:100%; height:100%; object-fit: contain; }
.depo__feat .txt { padding: 20px 30px 20px 6px; }
.depo__feat .stars { color: var(--gold); font-size:1.2rem; letter-spacing:2px; margin-bottom:14px; }
.depo__feat blockquote { font-size: 1.18rem; line-height:1.55; color: var(--ink); font-weight:500; }
.depo__feat .who { margin-top:18px; font-family:'Plus Jakarta Sans'; font-weight:700; }
.depo__feat .who span { display:block; font-family:'Inter'; font-weight:400; color: var(--muted); font-size:.88rem; }
.depo__grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.depo__card {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); overflow:hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.depo__card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.depo__card img { width:100%; aspect-ratio: 1/1; object-fit: cover; }
.depo__card .cap { padding: 14px 16px; display:flex; align-items:center; gap:10px; }
.depo__card .cap .wa { width:26px; height:26px; flex-shrink:0; }
.depo__card .cap span { font-size:.84rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta {
  background: linear-gradient(120deg, var(--red-deep) 0%, var(--red) 60%, #b51212 100%);
  color:#fff; border-radius: 28px; padding: 64px 56px; position: relative; overflow:hidden;
  box-shadow: var(--shadow-lg);
}
.cta::before { content:""; position:absolute; right:-60px; top:-60px; width:280px; height:280px;
  background: radial-gradient(closest-side, rgba(246,190,0,.30), transparent 70%); }
.cta__inner { position: relative; display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.cta h2 { color:#fff; font-size: clamp(1.8rem, 3.6vw, 2.6rem); max-width: 18ch; }
.cta p { color: rgba(255,255,255,.85); margin-top:12px; max-width: 46ch; }

/* ---------- Page hero (inner pages) ---------- */
.phero { background: var(--paper-2); border-bottom:1px solid var(--line); padding: 64px 0; position:relative; overflow:hidden; }
.phero::after { content:""; position:absolute; left:0; right:0; bottom:0; height:4px;
  background: linear-gradient(90deg, var(--red) 0 60%, var(--gold) 60% 100%); }
.phero__crumb { font-size:.85rem; color: var(--muted); margin-bottom: 16px; }
.phero__crumb a:hover { color: var(--red); }
.phero h1 { font-size: clamp(2.1rem, 4.4vw, 3.1rem); max-width: 18ch; }
.phero p { color: var(--ink-soft); font-size: 1.1rem; margin-top: 16px; max-width: 60ch; }

/* ---------- Quem somos ---------- */
.about__grid { display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center; }
.about__photos { display:grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
.about__photos img { width:100%; border-radius: var(--radius-sm); object-fit: cover; box-shadow: var(--shadow-sm); }
.about__photos img:nth-child(1){ aspect-ratio: 3/4; }
.about__photos img:nth-child(2){ aspect-ratio: 3/4; margin-top: 30px; }
.about__photos img:nth-child(3){ aspect-ratio: 4/3; grid-column: 1 / -1; }
.about__lead { font-size: 1.12rem; color: var(--ink-soft); }
.about__lead strong { color: var(--ink); }

.mvv { display:grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.mvv__card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; text-align:center; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s; }
.mvv__card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.mvv__card .ic { width: 96px; height: 96px; margin: 0 auto 20px; display:grid; place-items:center; }
.mvv__card .ic img { width:100%; height:100%; object-fit: contain; }
.mvv__card h3 { font-size: 1.3rem; color: var(--red); margin-bottom: 12px; }
.mvv__card p { color: var(--ink-soft); font-size: .98rem; }
.mvv__card .vals { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; margin-top: 4px; }
.mvv__card .vals span { background: var(--paper-3); color: var(--ink-soft); font-size:.82rem; font-weight:600; padding:6px 13px; border-radius:100px; }

/* ---------- Serviços (assessoria page) ---------- */
.services { display:grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden;
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display:flex; flex-direction:column;
}
.service:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service__img { aspect-ratio: 16/10; overflow:hidden; position:relative; }
.service__img img { width:100%; height:100%; object-fit: cover; transition: transform .5s var(--ease); }
.service:hover .service__img img { transform: scale(1.06); }
.service__img .num {
  position:absolute; top:14px; left:14px; width:34px; height:34px; border-radius:9px;
  background: var(--red); color:#fff; font-family:'Plus Jakarta Sans'; font-weight:800; font-size:.95rem;
  display:grid; place-items:center; box-shadow: var(--shadow-sm);
}
.service__body { padding: 22px 24px 26px; flex:1; }
.service__body h3 { font-size: 1.18rem; margin-bottom: 8px; }
.service__body p { color: var(--muted); font-size: .96rem; }

/* ---------- Treinamentos ---------- */
.train { display:grid; gap: 40px; }
.train__card {
  display:grid; grid-template-columns: 1.05fr .95fr; gap: 0; background:#fff;
  border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow);
}
.train__card.rev .train__media { order: 2; }
.train__media { position:relative; min-height: 340px; background: var(--paper-3); }
.train__media img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; }
.train__media .grid2 { position:absolute; inset:0; display:grid; grid-template-columns:1fr 1fr; grid-template-rows:1fr 1fr; gap:4px; background: var(--ink); }
.train__media .grid2__cell { position:relative; overflow:hidden; min-width:0; min-height:0; background: var(--ink); }
.train__media .grid2__cell img { position:absolute; inset:0; width:100%; height:100%; object-fit: contain; background: var(--ink); }
.train__media--logo { background: linear-gradient(135deg, #7d0808, #a10a0a); }
.train__media--logo img { object-fit: contain; }
.train__body { padding: 44px 44px; display:flex; flex-direction:column; justify-content:center; }
.train__type { display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:.78rem; letter-spacing:.1em; text-transform:uppercase; color: var(--red); margin-bottom:14px; }
.train__type.gold { color: var(--gold-deep); }
.train__body h3 { font-size: 1.7rem; margin-bottom: 14px; }
.train__body > p { color: var(--ink-soft); margin-bottom: 20px; }
.train__topics { display:flex; flex-wrap:wrap; gap:9px; margin-bottom: 28px; }
.train__topics span { background: var(--paper-3); color: var(--ink-soft); font-size:.86rem; font-weight:600; padding:8px 15px; border-radius:100px; }

/* ---------- Contato ---------- */
.contact__grid { display:grid; grid-template-columns: .95fr 1.05fr; gap: 50px; align-items:start; }
.contact__info { display:grid; gap: 16px; }
.contact__item { display:flex; gap:16px; align-items:flex-start; background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.contact__item .ic { width:44px; height:44px; border-radius:11px; background: rgba(161,10,10,.08); display:grid; place-items:center; flex-shrink:0; }
.contact__item .ic svg { width:22px; height:22px; color: var(--red); }
.contact__item .lbl { font-size:.78rem; text-transform:uppercase; letter-spacing:.08em; color: var(--muted); font-weight:700; }
.contact__item .val { font-weight:600; color: var(--ink); font-size:1.02rem; word-break: break-word; }
.contact__item a.val:hover { color: var(--red); }
.contact__socials { display:flex; gap:12px; margin-top: 6px; }
.contact__socials a { width:46px; height:46px; border-radius:12px; background:#fff; border:1px solid var(--line); display:grid; place-items:center; color: var(--ink-soft); transition: all .2s; box-shadow: var(--shadow-sm); }
.contact__socials a:hover { background: var(--red); color:#fff; border-color: var(--red); transform: translateY(-3px); }
.contact__socials a svg { width:22px; height:22px; }

.form { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow); }
.form h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form p.sub { color: var(--muted); font-size:.95rem; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display:block; font-size:.85rem; font-weight:600; color: var(--ink-soft); margin-bottom:7px; }
.field label .req { color: var(--red); }
.field input, .field textarea {
  width:100%; font-family:inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 16px; border:1.5px solid var(--line); border-radius: 11px; background: var(--paper-2);
  transition: border-color .2s, background .2s; outline:none;
}
.field input:focus, .field textarea:focus { border-color: var(--red); background:#fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form .row2 { display:grid; grid-template-columns:1fr 1fr; gap: 16px; }
.form .btn { width:100%; margin-top: 6px; }
.form__status { font-size:.92rem; font-weight:600; text-align:center; margin-top: 16px; padding: 0; }
.form__status.is-ok   { color:#157a3c; background:#e9f7ef; border:1px solid #bfe6cd; border-radius:10px; padding:12px 14px; }
.form__status.is-err  { color:var(--red); background:#fbecec; border:1px solid #f3cccc; border-radius:10px; padding:12px 14px; }
.form__status.is-info { color:var(--ink-soft); }
.form__note { font-size:.82rem; color: var(--muted); text-align:center; margin-top: 14px; }

.map-embed { margin-top: 40px; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-sm); border:1px solid var(--line); }
.map-embed iframe { width:100%; height: 340px; border:0; display:block; filter: grayscale(.2); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow .25s var(--ease), border-color .2s;
}
.faq__item[open] { border-color: rgba(161,10,10,.22); box-shadow: var(--shadow); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 22px 26px; display:flex; align-items:center;
  justify-content:space-between; gap:16px; font-family:'Plus Jakarta Sans',sans-serif;
  font-weight:700; font-size:1.08rem; color: var(--ink); position: relative;
}
.faq__item summary::-webkit-details-marker { display:none; }
.faq__item summary::after {
  content:""; width:13px; height:13px; flex-shrink:0; border-right:2.5px solid var(--red);
  border-bottom:2.5px solid var(--red); transform: rotate(45deg); transition: transform .3s var(--ease); margin-top:-4px;
}
.faq__item[open] summary::after { transform: rotate(-135deg); margin-top:2px; }
.faq__item summary:hover { color: var(--red); }
.faq__a { padding: 0 26px 24px; }
.faq__a p { color: var(--ink-soft); font-size: 1.02rem; margin:0; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 64px 0 28px; }
.footer__grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer__grid > * { min-width: 0; }
.footer__links a, .footer__contact, .footer__contact a { overflow-wrap: anywhere; word-break: break-word; }
.footer__brand img { height: 46px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer__brand p { font-size:.95rem; max-width: 30ch; }
.footer h4 { color:#fff; font-size:.95rem; margin-bottom: 18px; font-family:'Plus Jakarta Sans'; }
.footer__links { display:grid; gap: 11px; }
.footer__links a { font-size:.94rem; transition: color .2s; }
.footer__links a:hover { color: var(--gold); }
.footer__contact { display:grid; gap:12px; font-size:.92rem; }
.footer__contact .l { display:flex; gap:11px; align-items:flex-start; }
.footer__contact .l svg { width:18px; height:18px; color: var(--gold); flex-shrink:0; margin-top:3px; }
.footer__social { display:flex; gap:12px; margin-top: 20px; }
.footer__social a { width:42px; height:42px; border-radius:11px; background: rgba(255,255,255,.07); display:grid; place-items:center; color:#fff; transition: all .2s; }
.footer__social a:hover { background: var(--red); transform: translateY(-3px); }
.footer__social a svg { width:20px; height:20px; }
.footer__bottom { border-top:1px solid rgba(255,255,255,.10); padding-top: 24px; display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; font-size:.85rem; color: rgba(255,255,255,.5); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; color:#fff;
  display:grid; place-items:center; box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .25s var(--ease); animation: waPulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes waPulse { 0%,100%{ box-shadow:0 12px 30px rgba(37,211,102,.45); } 50%{ box-shadow:0 12px 30px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity:0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity:1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav__links { position: fixed; inset: 88px 0 auto 0; flex-direction: column; align-items: stretch;
    background:#fff; padding: 16px 24px 26px; gap: 4px; border-bottom:1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-120%); transition: transform .35s var(--ease); }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 13px 12px; border-radius: 10px; }
  .nav__links a:hover, .nav__links a.active { background: var(--paper-2); }
  .nav__links a.active::after { display:none; }
  .nav__cta { margin: 8px 0 0; }
  .nav__cta .btn { width: 100%; }
  .nav__toggle { display: block; }
  .hero__grid, .diff__grid, .auth__grid, .about__grid, .contact__grid, .depo__feat { grid-template-columns: 1fr; gap: 40px; }
  .svc2, .services, .mvv, .depo__grid { grid-template-columns: 1fr 1fr; }
  .train__card, .train__card.rev .train__media { grid-template-columns: 1fr; }
  .train__card.rev .train__media { order: 0; }
  .hero__media { max-width: 460px; margin: 0 auto; }
  .diff__photos .float { width: 150px; right: 0; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .btn { white-space: normal; }
  .hero h1 { font-size: clamp(1.95rem, 8vw, 2.5rem); }
  .hero__actions { width: 100%; }
  .hero__actions .btn, .cta .btn, .train__body .btn, .form .btn { width: 100%; text-align: center; }
  .hero__media .badge { left: 0; }
  .strip__row { gap: 12px 22px; }
  .svc2, .services, .mvv, .depo__grid, .form .row2, .auth__stats { grid-template-columns: 1fr; }
  .cta { padding: 44px 28px; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .train__body { padding: 32px 26px; }
  .hero__trust .div { display:none; }
  .about__photos img:nth-child(2){ margin-top:0; }
  .phero { padding: 44px 0; }
}
