:root {
  --emerald: #00a878;
  --emerald-deep: #005c3d;
  --emerald-ink: #013222;
  --coral: #ff644f;
  --coral-hot: #ff4d35;
  --ink: #f4faf7;
  --muted: #9bb5aa;
  --line: rgba(255, 255, 255, 0.12);
  --paper: #021a12;
  --panel: #06261b;
  --font: "Sora", system-ui, sans-serif;
  --display: "Outfit", "Sora", sans-serif;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  transition: .3s ease;
  background: linear-gradient(180deg, rgba(2,26,18,.85), transparent);
}
.site-header.scrolled {
  background: rgba(2, 26, 18, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: 1240px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex; gap: 22px; color: rgba(255,255,255,.78);
  font-size: .9rem; font-weight: 500;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active-nav { color: #fff; }
.page-main { padding-top: 88px; min-height: 60vh; }
.page-hero {
  padding: 48px 24px 28px;
  max-width: 1240px; margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -.03em; margin: 8px 0 10px; line-height: 1.1;
}
.page-hero p { color: var(--muted); margin: 0; max-width: 52ch; font-size: 1.05rem; }

/* Pricing */
.price-shell {
  max-width: 1240px; margin: 0 auto 80px; padding: 0 24px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px;
}
.price-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.price-panel h3 {
  font-family: var(--display); margin: 0 0 14px; font-size: 1.15rem; letter-spacing: -.02em;
}
.price-panel select, .price-panel input[type="number"] {
  width: 100%; padding: 14px 16px; border-radius: 14px;
  border: 1px solid var(--line); background: rgba(0,0,0,.28); color: #fff;
  font-size: 1.05rem; outline: none; margin-bottom: 8px;
}
.price-panel select:focus, .price-panel input:focus {
  border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(0,168,120,.15);
}
.modules-box {
  max-height: 420px; overflow: auto; border: 1px dashed rgba(255,100,79,.35);
  border-radius: 16px; padding: 12px; margin-top: 8px;
}
.mod-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 8px; border-bottom: 1px solid var(--line); cursor: pointer;
}
.mod-row:last-child { border-bottom: 0; }
.mod-row img { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.mod-row .t { font-weight: 700; }
.mod-row .d { color: var(--muted); font-size: .85rem; margin-top: 2px; }
.mod-row .tag {
  display: inline-block; margin-top: 6px; font-size: .72rem; font-weight: 700;
  color: var(--emerald); background: rgba(0,168,120,.12); padding: 3px 8px; border-radius: 999px;
}
.radio-row { display: flex; gap: 18px; flex-wrap: wrap; margin: 12px 0 18px; }
.radio-row label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-weight: 600; }
.price-big {
  text-align: center; font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.8rem); color: var(--coral); font-weight: 800;
  margin: 18px 0 10px; letter-spacing: -.03em;
}
.currencies { display: flex; justify-content: center; gap: 8px; margin-bottom: 16px; }
.currency {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); cursor: pointer; font-size: .78rem; font-weight: 700;
}
.currency.checked { background: var(--coral); }

/* Modal pricing */
.modal-back {
  position: fixed; inset: 0; background: rgba(0,0,0,.65); z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-back.open { display: flex; }
.modal-card {
  width: min(520px, 100%); background: #06261b; border: 1px solid var(--line);
  border-radius: 20px; padding: 24px; box-shadow: var(--shadow); color: #fff;
}
.modal-card h2 { font-family: var(--display); margin: 0 0 16px; font-size: 1.35rem; }
.modal-actions { display: flex; gap: 10px; margin-top: 18px; }
.modal-actions .btn { flex: 1; }

/* Pack page */
.pack-layout {
  max-width: 1240px; margin: 0 auto; padding: 24px 24px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center;
}
.pack-visual {
  border-radius: 24px; overflow: hidden; background: #01150f;
  border: 1px solid var(--line); min-height: 320px;
  display: grid; place-items: center; padding: 20px;
}
.pack-visual img { max-width: 100%; max-height: 420px; object-fit: contain; }
.pack-mods {
  max-width: 1240px; margin: 0 auto; padding: 0 24px 80px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.pack-mod {
  padding: 18px; border-radius: 16px; border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  display: flex; gap: 12px; align-items: center;
}
.pack-mod img { width: 40px; height: 40px; object-fit: contain; }
.pack-mod strong { font-family: var(--display); font-size: .98rem; }

/* FAQ */
.faq-list { max-width: 860px; margin: 0 auto 80px; padding: 0 24px; }
.faq-item {
  border: 1px solid var(--line); border-radius: 14px; margin-bottom: 10px;
  background: rgba(255,255,255,.03); overflow: hidden;
}
.faq-item summary {
  cursor: pointer; padding: 16px 18px; font-weight: 700; list-style: none;
  font-family: var(--display);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { color: var(--coral); }
.faq-item .ans { padding: 0 18px 16px; color: var(--muted); line-height: 1.6; }

.prose-page {
  max-width: 820px; margin: 0 auto 80px; padding: 0 24px;
  color: var(--muted); line-height: 1.7;
}
.prose-page h2 { color: #fff; font-family: var(--display); margin-top: 28px; }

/* ===== AUTH CLIENT ===== */
.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #021a12;
}
.auth-brand {
  position: relative;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(520px 340px at 78% 72%, rgba(0,168,120,.22), transparent 58%),
    radial-gradient(420px 280px at 12% 18%, rgba(255,100,79,.12), transparent 55%),
    linear-gradient(165deg, #021a12 0%, #013222 48%, #005c3d 100%);
  overflow: hidden;
}
.auth-brand-top { position: relative; z-index: 1; }
.auth-brand .logo-img { height: 48px; width: auto; object-fit: contain; }
.auth-brand h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -.03em;
  margin: 28px 0 12px;
  max-width: 12ch;
  line-height: 1.1;
}
.auth-brand p { color: rgba(255,255,255,.8); max-width: 34ch; margin: 0; }
.auth-brand-foot {
  position: relative; z-index: 1;
  color: rgba(255,255,255,.5); font-size: .85rem;
}

.auth-illu {
  position: relative;
  z-index: 1;
  height: min(340px, 38vh);
  margin: 8px 0;
}
.auth-illu-tile {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
  animation: authFloat 6s ease-in-out infinite;
}
.auth-illu-tile img {
  width: 64%;
  height: 64%;
  object-fit: contain;
}
.auth-illu-main {
  width: 168px; height: 168px;
  left: 18%; top: 18%;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(0,168,120,.28), rgba(255,255,255,.05));
  animation-duration: 7s;
}
.auth-illu-main img { width: 58%; height: 58%; }
.auth-illu-a {
  width: 92px; height: 92px;
  right: 14%; top: 8%;
  animation-delay: -.8s;
  animation-duration: 5.5s;
}
.auth-illu-b {
  width: 78px; height: 78px;
  right: 22%; bottom: 10%;
  animation-delay: -1.6s;
  animation-duration: 6.5s;
}
.auth-illu-c {
  width: 70px; height: 70px;
  left: 8%; bottom: 16%;
  animation-delay: -2.4s;
  animation-duration: 5.8s;
}
.auth-illu-d {
  width: 64px; height: 64px;
  left: 48%; top: 0;
  animation-delay: -3.2s;
  animation-duration: 7.2s;
}
@keyframes authFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.auth-panel {
  display: grid;
  place-items: center;
  padding: 40px 24px;
  background: #01150f;
}
.auth-card {
  width: min(440px, 100%);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.auth-card h2 {
  font-family: var(--display);
  margin: 0 0 6px;
  font-size: 1.55rem;
  letter-spacing: -.02em;
}
.auth-card .sub { color: var(--muted); margin: 0 0 22px; font-size: .95rem; }
.auth-card .field { margin-bottom: 14px; }
.auth-card .field label {
  display: block; font-size: .8rem; color: var(--muted); margin-bottom: 6px; font-weight: 600;
}
.auth-card .field input[type="text"],
.auth-card .field input[type="email"],
.auth-card .field input[type="password"],
.auth-card .field input[type="tel"],
.auth-card .field select {
  width: 100%; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--line); background: rgba(0,0,0,.35); color: #fff; outline: none;
}
.auth-card .field input:focus, .auth-card .field select:focus {
  border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(0,168,120,.15);
}
.auth-card .check {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .88rem; color: var(--muted); margin: 4px 0 16px;
}
.auth-card .check a { color: var(--coral); font-weight: 600; }
.auth-card .msg { min-height: 1.2em; margin: 10px 0 0; font-size: .88rem; color: #fb7185; }
.auth-card .msg.ok { color: var(--emerald); }
.auth-card .links {
  margin-top: 18px; text-align: center; color: var(--muted); font-size: .9rem;
}
.auth-card .links a { color: var(--coral); font-weight: 700; }
.auth-card .row-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.auth-card .row-actions .btn { flex: 1; min-width: 120px; text-align: center; }
.auth-card .btn { border-radius: 14px; }
.auth-card .btn:disabled { opacity: .65; cursor: wait; transform: none; }
.code-row {
  display: flex; gap: 8px; justify-content: space-between; margin: 12px 0 18px;
}
.code-row input {
  width: 48px; height: 54px; text-align: center; font-size: 1.3rem; font-weight: 700;
  border-radius: 12px; border: 1px solid var(--line); background: rgba(0,0,0,.35); color: #fff;
}
.auth-card .iti__country-list { background: #06261b; color: #fff; border-color: var(--line); }
@media (max-width: 900px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-brand { min-height: auto; padding: 28px 24px 20px; gap: 18px; }
  .auth-brand h1 { font-size: 1.7rem; margin-top: 16px; max-width: none; }
  .auth-illu { height: 160px; margin: 0; }
  .auth-illu-main { width: 110px; height: 110px; left: 22%; top: 12%; }
  .auth-illu-a { width: 64px; height: 64px; }
  .auth-illu-b { width: 56px; height: 56px; }
  .auth-illu-c, .auth-illu-d { width: 48px; height: 48px; }
  .auth-panel { padding: 28px 16px 48px; }
  .auth-card { padding: 28px 22px; }
}

@media (max-width: 980px) {
  .price-shell, .pack-layout { grid-template-columns: 1fr; }
  .pack-mods { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .pack-mods { grid-template-columns: 1fr; }
}
.nav-cta { display: flex; gap: 10px; align-items: center; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.28);
}
.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
}
.lang-switch button.on,
.lang-switch button[aria-pressed="true"] {
  background: rgba(0,168,120,.22);
  color: #fff;
}
.lang-switch button:hover { color: #fff; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; cursor: pointer; transition: .22s ease; letter-spacing: -.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--coral-hot), var(--coral));
  color: #fff; box-shadow: 0 14px 40px rgba(255,100,79,.4);
}
.btn-emerald {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
  color: #fff; box-shadow: 0 14px 40px rgba(0,168,120,.35);
}
.btn-ghost {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.2);
  color: #fff;
}
.btn-sm { padding: 10px 16px; font-size: .88rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.15fr);
  overflow: hidden;
  background: #021a12;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 36px 64px 48px;
  background:
    radial-gradient(600px 400px at 20% 80%, rgba(0,168,120,.22), transparent 60%),
    linear-gradient(180deg, #021a12 0%, #01150f 100%);
  animation: rise .8s ease both;
}
.hero-visual {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(600px 400px at 70% 40%, rgba(0,168,120,.18), transparent 60%),
    linear-gradient(180deg, #021a12 0%, #01150f 100%);
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .9s ease;
  padding: 24px 28px 24px 8px;
}
.hero-slide.on { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}
.hero-kicker {
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--emerald); font-weight: 700; margin-bottom: 14px;
}
.hero-brand {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .92;
  margin: 0 0 16px;
  color: #fff;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.25;
  max-width: 16ch;
  margin: 0 0 14px;
  color: #fff;
}
.hero h1 em {
  font-style: normal;
  color: var(--coral);
}
.hero-lead {
  max-width: 34ch;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: rgba(255,255,255,.82);
  margin: 0 0 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-proof {
  display: flex; flex-wrap: wrap; gap: 24px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14);
}
.hero-proof div strong {
  display: block; font-family: var(--display);
  font-size: 1.45rem; letter-spacing: -.03em;
}
.hero-proof div span { color: var(--muted); font-size: .8rem; }
.hero-dots {
  position: absolute; z-index: 3; right: 24px; bottom: 28px;
  display: flex; gap: 8px;
}
.hero-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.35); cursor: pointer; padding: 0;
}
.hero-dots button.on { background: var(--coral); transform: scale(1.2); }

/* ===== SECTIONS ===== */
.section {
  max-width: 1240px; margin: 0 auto; padding: 96px 24px;
}
.section-head { max-width: 720px; margin-bottom: 36px; }
.eyebrow {
  color: var(--emerald); font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 10px;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -.035em; margin: 0 0 12px; line-height: 1.05;
}
.section-head p { margin: 0; color: var(--muted); font-size: 1.05rem; max-width: 48ch; }

/* Sectors — image panels */
.sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.sector {
  position: relative;
  min-height: 240px;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: var(--shadow);
}
.sector img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  transition: transform .6s ease;
}
.sector::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(0,20,12,.92) 100%);
  z-index: 1;
}
.sector:hover img { transform: scale(1.08); }
.sector-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px;
}
.sector-body strong {
  display: block; font-family: var(--display);
  font-size: 1.35rem; letter-spacing: -.02em; margin-bottom: 4px;
}
.sector-body span { color: rgba(255,255,255,.75); font-size: .88rem; }

/* Product illustrations */
.illu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.illu-card {
  padding: 22px 20px 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  transition: .25s ease;
}
.illu-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,168,120,.45);
  box-shadow: 0 18px 40px rgba(0,168,120,.12);
}
.illu-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 14px;
}
.illu-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.illu-card span {
  color: var(--muted);
  font-size: .9rem;
}

/* Product showcase (legacy unused) */
.showcase {
  display: grid; gap: 28px;
}
.showcase-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 40px 100px rgba(0,168,120,.15), var(--shadow);
}
.showcase-frame img {
  width: 100%; height: auto;
  display: block;
}
.showcase-glow {
  position: absolute; inset: auto 10% -40% 10%; height: 50%;
  background: radial-gradient(ellipse, rgba(0,168,120,.45), transparent 70%);
  pointer-events: none;
}
.benefits {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.benefit {
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid var(--line);
}
.benefit strong {
  display: block; font-family: var(--display);
  font-size: 1.1rem; margin-bottom: 8px; letter-spacing: -.02em;
}
.benefit span { color: var(--muted); font-size: .92rem; }

/* Packs */
.packs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.pack {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: .25s ease;
}
.pack:hover {
  transform: translateY(-6px);
  border-color: rgba(0,168,120,.5);
  box-shadow: 0 24px 60px rgba(0,168,120,.2);
}
.pack-media {
  aspect-ratio: 1 / 1;
  background: #000;
  display: grid; place-items: center;
  padding: 18px;
}
.pack-media img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.pack-body { padding: 18px 20px 22px; }
.pack-body h3 {
  margin: 0 0 6px; font-family: var(--display);
  font-size: 1.2rem; letter-spacing: -.02em;
}
.pack-body p { margin: 0 0 14px; color: var(--muted); font-size: .9rem; }
.pack-body .link {
  color: var(--coral); font-weight: 700; font-size: .9rem;
}

/* Compare */
.compare-band {
  margin: 0 24px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(1,50,34,.92), rgba(0,20,12,.88)),
    url('/assets/img_sp/ban-1.png') center/cover;
  border: 1px solid var(--line);
}
.compare-inner {
  max-width: 1240px; margin: 0 auto; padding: 64px 24px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center;
}
.compare-list { display: flex; flex-direction: column; gap: 12px; }
.compare-item {
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
  padding: 16px 18px; border-radius: 14px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line);
}
.compare-item.win {
  background: linear-gradient(90deg, rgba(0,168,120,.25), rgba(255,100,79,.12));
  border-color: rgba(0,168,120,.45);
}
.compare-item strong { font-family: var(--display); }
.compare-item span { color: var(--muted); font-size: .9rem; }

/* Clients */
.logos {
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: flex-start;
}
.logos a, .logos .logo-box {
  display: flex; align-items: center; justify-content: center;
  height: 88px; min-width: 140px; max-width: 200px;
  background: #fff; border-radius: 14px; padding: 14px 18px;
}
.logos img {
  max-height: 56px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.quote-row {
  margin-top: 28px;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px;
}
.quote-card {
  padding: 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(0,168,120,.18), rgba(255,100,79,.08));
  border: 1px solid var(--line);
}
.quote-card p {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  letter-spacing: -.02em; line-height: 1.3; margin: 0 0 14px;
}
.quote-card cite { color: var(--muted); font-style: normal; }
.video-card {
  border-radius: 24px; overflow: hidden; border: 1px solid var(--line);
  background: #000; min-height: 220px;
}
.video-card video { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 220px; }

/* CTA */
.cta-band { padding: 20px 24px 100px; }
.cta-inner {
  max-width: 1240px; margin: 0 auto;
  border-radius: 32px; padding: 56px 40px;
  background:
    linear-gradient(110deg, rgba(255,77,53,.95), rgba(0,92,61,.95) 55%, #013222),
    url('/assets/img_sp/exca.jpg') center/cover;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; align-items: center;
  box-shadow: var(--shadow);
}
.cta-inner h2 {
  font-family: var(--display); margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -.03em;
}
.cta-inner p { margin: 0; max-width: 40ch; color: rgba(255,255,255,.9); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 24px 60px;
  background: #01150f;
}
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 28px;
}
.site-footer h4 { margin: 0 0 12px; font-family: var(--display); }
.site-footer a, .site-footer p { color: var(--muted); font-size: .92rem; }
.site-footer .col { display: flex; flex-direction: column; gap: 8px; }
.footer-logo {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 10px;
}

/* Booking reuse */
.book-page { padding: 120px 24px 80px; max-width: 980px; margin: 0 auto; }
.book-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 24px; padding: 28px; box-shadow: var(--shadow);
}
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.slots { display: flex; flex-wrap: wrap; gap: 8px; min-height: 48px; }
.slot {
  padding: 10px 14px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255,255,255,.04); cursor: pointer; font-weight: 600; font-size: .9rem; color: #fff;
}
.slot:hover, .slot.on { background: var(--coral); border-color: var(--coral); }
.field { margin-bottom: 12px; }
.field label { display: block; font-size: .8rem; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px; border-radius: 12px;
  border: 1px solid var(--line); background: rgba(0,0,0,.35); color: #fff; outline: none;
}
.field input:focus, .field textarea:focus {
  border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(0,168,120,.18);
}
.msg { margin-top: 10px; font-size: .9rem; color: #fb7185; min-height: 1.2em; }
.msg.ok { color: var(--emerald); }
.days { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.day {
  padding: 10px 12px; border-radius: 12px; border: 1px solid var(--line);
  background: rgba(255,255,255,.04); cursor: pointer; text-align: center; min-width: 72px; color: #fff;
}
.day strong { display: block; font-size: .85rem; }
.day span { font-size: .72rem; color: var(--muted); }
.day.on { border-color: var(--emerald); background: rgba(0,168,120,.18); }

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .sectors, .packs, .benefits, .illu-grid { grid-template-columns: 1fr 1fr; }
  .compare-inner, .quote-row, .book-grid, .footer-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    order: 1;
    padding: 110px 24px 36px;
    justify-content: flex-start;
  }
  .hero-visual {
    order: 2;
    min-height: 58vh;
  }
  .hero-slide { padding: 12px; }
}
@media (max-width: 640px) {
  .sectors, .packs, .benefits, .illu-grid { grid-template-columns: 1fr; }
  .logo-img { height: 34px; width: auto; }
  .footer-logo { height: 34px; }
  .cta-inner { padding: 36px 22px; }
  .hero-visual { min-height: 48vh; }
}

/* ===== CHECKOUT (paiement) ===== */
.checkout-shell { --checkout-max: 560px; }
.checkout-shell .auth-card { width: min(var(--checkout-max), 100%); }

.ck-steps {
  list-style: none; margin: 24px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 0;
}
.ck-step {
  display: grid; grid-template-columns: 36px 1fr; gap: 12px;
  position: relative; padding-bottom: 22px;
}
.ck-step:last-child { padding-bottom: 0; }
.ck-step::before {
  content: ""; position: absolute; left: 17px; top: 36px; bottom: 0;
  width: 2px; background: rgba(255,255,255,.12);
}
.ck-step:last-child::before { display: none; }
.ck-step .n {
  width: 36px; height: 36px; border-radius: 12px;
  display: grid; place-items: center;
  font-weight: 700; font-size: .9rem;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25); color: rgba(255,255,255,.7);
}
.ck-step.done .n {
  background: rgba(0,168,120,.25); border-color: var(--emerald); color: #fff;
}
.ck-step.current .n {
  background: linear-gradient(135deg, var(--coral-hot), var(--coral));
  border-color: transparent; color: #fff;
  box-shadow: 0 10px 28px rgba(255,100,79,.35);
}
.ck-step .lab { padding-top: 4px; }
.ck-step .lab strong {
  display: block; font-family: var(--display); font-size: 1rem;
  letter-spacing: -.02em; font-weight: 700;
}
.ck-step .lab span { color: rgba(255,255,255,.55); font-size: .82rem; }
.ck-step.current .lab strong { color: #fff; }

.ck-amount {
  text-align: center; margin: 8px 0 22px;
  padding: 22px 16px;
  border-radius: 18px;
  background:
    radial-gradient(280px 120px at 50% 0%, rgba(0,168,120,.18), transparent 70%),
    rgba(0,0,0,.28);
  border: 1px solid var(--line);
}
.ck-amount .label { color: var(--muted); font-size: .82rem; font-weight: 600; margin: 0 0 6px; }
.ck-amount .value {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800; letter-spacing: -.03em;
  color: var(--coral); margin: 0;
}
.ck-amount .hint { color: var(--muted); font-size: .8rem; margin: 8px 0 0; }

.ck-lines { margin: 0 0 20px; }
.ck-line {
  display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: .92rem;
}
.ck-line:last-child { border-bottom: 0; }
.ck-line .k { color: var(--muted); }
.ck-line .v { font-weight: 700; text-align: right; }
.ck-line.total .k, .ck-line.total .v {
  font-family: var(--display); font-size: 1.15rem; color: #fff;
}

.ck-app {
  display: flex; align-items: center; gap: 14px;
  padding: 14px; margin-bottom: 18px;
  border-radius: 16px; border: 1px solid var(--line);
  background: rgba(0,0,0,.22);
}
.ck-app img {
  width: 56px; height: 56px; object-fit: contain;
  border-radius: 12px; background: rgba(255,255,255,.06); padding: 6px;
}
.ck-app .t { font-weight: 700; font-size: 1rem; }
.ck-app .d { color: var(--muted); font-size: .82rem; margin-top: 2px; }

.ck-methods { display: flex; flex-direction: column; gap: 10px; margin: 0 0 20px; }
.ck-method {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: 16px;
  border: 1px solid var(--line); background: rgba(0,0,0,.22);
  cursor: pointer; transition: .2s ease;
}
.ck-method:hover { border-color: rgba(0,168,120,.4); }
.ck-method.active {
  border-color: var(--emerald);
  background: rgba(0,168,120,.1);
  box-shadow: 0 0 0 3px rgba(0,168,120,.12);
}
.ck-method input { margin-top: 3px; accent-color: var(--emerald); }
.ck-method .txt strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.ck-method .txt span { color: var(--muted); font-size: .8rem; line-height: 1.35; }

.ck-logos {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 0 0 18px;
}
.ck-logos img {
  height: 36px; width: auto; object-fit: contain;
  border-radius: 8px; background: #fff; padding: 4px 8px;
}

.ck-panel { margin-top: 4px; }
.ck-note {
  color: var(--muted); font-size: .9rem; text-align: center;
  margin: 0 0 16px; line-height: 1.45;
}
.ck-note.warn { color: #fda4af; }

.ck-status {
  text-align: center; padding: 8px 0 18px;
}
.ck-status .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px; font-size: .85rem; font-weight: 700;
}
.ck-status .badge.ok {
  background: rgba(0,168,120,.15); color: var(--emerald);
  border: 1px solid rgba(0,168,120,.35);
}
.ck-status .badge.off {
  background: rgba(255,100,79,.12); color: #fda4af;
  border: 1px solid rgba(255,100,79,.3);
}
.ck-profile {
  text-align: center; margin: 0 0 18px;
  padding: 18px; border-radius: 18px;
  border: 1px solid var(--line); background: rgba(0,0,0,.22);
}
.ck-profile .name {
  font-family: var(--display); font-size: 1.25rem; font-weight: 700;
  margin: 0 0 8px;
}
.ck-profile .meta { color: var(--muted); font-size: .85rem; line-height: 1.5; }

.ck-actions {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px;
}
.ck-actions .btn { flex: 1; min-width: 120px; border-radius: 14px; }
.ck-actions .btn:disabled { opacity: .65; cursor: wait; transform: none; }

.ck-modal-bg {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(1, 21, 15, .72); backdrop-filter: blur(8px);
  display: none; place-items: center; padding: 20px;
}
.ck-modal-bg.open { display: grid; }
.ck-modal {
  width: min(420px, 100%);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}
.ck-modal h3 {
  font-family: var(--display); margin: 0 0 6px; font-size: 1.35rem;
}
.ck-modal .sub { color: var(--muted); margin: 0 0 18px; font-size: .9rem; }
.ck-toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 120;
  transform: translateX(-50%) translateY(20px);
  max-width: min(420px, calc(100% - 32px));
  padding: 12px 18px; border-radius: 14px;
  background: var(--panel); border: 1px solid var(--line);
  color: #fff; font-size: .9rem; font-weight: 600;
  opacity: 0; pointer-events: none; transition: .25s ease;
  box-shadow: var(--shadow);
}
.ck-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.ck-toast.ok { border-color: rgba(0,168,120,.5); }
.ck-toast.err { border-color: rgba(255,100,79,.5); }

@media (max-width: 900px) {
  .ck-steps { flex-direction: row; gap: 8px; margin-top: 16px; overflow-x: auto; }
  .ck-step { padding-bottom: 0; min-width: 140px; }
  .ck-step::before { display: none; }
}

/* Dial picker searchable */
.dial-picker { position: relative; min-width: 0; }
.dial-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 6px;
  padding: 12px 12px; border-radius: 12px; border: 1px solid var(--line);
  background: rgba(0,0,0,.35); color: #fff; font: inherit; font-size: .88rem;
  cursor: pointer; text-align: left;
}
.dial-btn:hover, .dial-picker.open .dial-btn {
  border-color: var(--emerald);
}
.dial-btn-label {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 600;
}
.dial-caret { opacity: .6; font-size: .75rem; flex-shrink: 0; }
.dial-panel {
  position: absolute; z-index: 40; left: 0; right: 0; top: calc(100% + 6px);
  min-width: min(320px, 85vw); width: max(100%, 280px);
  background: #06261b; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); overflow: hidden;
}
.dial-search {
  width: 100%; box-sizing: border-box;
  padding: 12px 14px; border: 0; border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,.35); color: #fff; font: inherit; outline: none;
}
.dial-search::placeholder { color: rgba(255,255,255,.4); }
.dial-list {
  list-style: none; margin: 0; padding: 6px; max-height: 240px; overflow: auto;
}
.dial-item {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 12px; border-radius: 10px; cursor: pointer;
  font-size: .9rem;
}
.dial-item:hover, .dial-item.on { background: rgba(0,168,120,.18); }
.dial-code { font-weight: 700; color: var(--emerald); min-width: 3.2rem; }
.dial-name { color: #fff; }
.dial-empty { padding: 14px; color: var(--muted); font-size: .88rem; text-align: center; }
