/* ==========================================================================
   VocalFlow — Accès partenaire (marque blanche)
   Implémentation fidèle de design-source/Partenaires VocalFlow.dc.html
   Fond #0a0a1c, dégradés bleu → violet, police Inter (auto-hébergée).
   ========================================================================== */

/* ---------- Police auto-hébergée (Inter variable, sous-ensemble latin, licence OFL : assets/fonts/OFL-Inter.txt) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('assets/fonts/inter.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #0a0a1c;
  --bg-2: #0d0d22;

  --ink: #f5f4fb;
  --body: #b8b6cf;
  --soft: #cfcde0;
  --list: #e8e6f5;
  --muted: #9b97b8;
  --muted-2: #8f8ca8;
  --muted-3: #77748f;
  --muted-4: #6d6a85;
  --muted-5: #4f4c66;

  --accent: #a78bfa;
  --accent-2: #c4b5fd;
  --blue: #6d9bff;
  --cyan: #22d3ee;
  --green: #34d399;

  --grad-btn: linear-gradient(93deg, #5b8cff, #8b5cf6);
  --grad-text: linear-gradient(92deg, #6d9bff, #a78bfa);
  --grad-badge: linear-gradient(135deg, #5b8cff, #8b5cf6);

  --card: rgba(255, 255, 255, .02);
  --line: rgba(255, 255, 255, .09);
  --line-soft: rgba(255, 255, 255, .07);
  --line-faint: rgba(255, 255, 255, .06);
  --line-input: rgba(255, 255, 255, .12);

  --shadow-btn: 0 10px 34px -6px rgba(124, 92, 246, .55);
  --shadow-btn-hover: 0 16px 40px -6px rgba(124, 92, 246, .7);

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);

  color-scheme: dark;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: normal; /* comme la maquette : les interlignes sont posés élément par élément */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page { position: relative; overflow: clip; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-2); }
a:focus-visible, button:focus-visible, input:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0; }

img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
@media (max-width: 1199px) { h1, h2, h3 { text-wrap: balance; } p { text-wrap: pretty; } }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 1000;
  padding: 10px 16px; border-radius: 999px; background: var(--ink); color: var(--bg); font-weight: 700;
}
.skip-link:focus { top: 16px; }

/* ---------- Utilitaires ---------- */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.accent { color: var(--accent); }

.eyebrow {
  text-align: center; font-size: 12.5px; letter-spacing: .28em; font-weight: 700;
  color: var(--accent); text-transform: uppercase;
}
.lead { max-width: 640px; margin: 20px auto 0; text-align: center; font-size: 17px; line-height: 1.7; color: var(--body); }

.check {
  width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(167, 139, 250, .6);
  color: var(--accent); font-size: 12px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.check--green { background: rgba(52, 211, 153, .14); border-color: rgba(52, 211, 153, .6); color: var(--green); }
.checklist { display: flex; flex-direction: column; gap: 13px; }
.checklist li { display: flex; gap: 11px; font-size: 15.5px; line-height: 1.55; color: var(--list); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px; border: 0; font: inherit; font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.btn .arrow { font-size: 18px; }
.btn--primary { background: var(--grad-btn); color: #fff; box-shadow: var(--shadow-btn); }
.btn--primary:hover { color: #fff; }
.btn--hero { padding: 19px 40px; font-size: 16px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.btn--demo { padding: 17px 38px; font-size: 17px; }
.btn--submit { width: 100%; padding: 16px 24px; font-size: 16.5px; }
.btn--ghost { padding: 17px 34px; font-size: 17px; font-weight: 600; background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .13); color: var(--ink); }
.btn--ghost:hover { background: rgba(255, 255, 255, .08); color: var(--ink); }
.btn--back { padding: 10px 18px; font-size: 14.5px; font-weight: 600; }
.btn--back__short { display: none; }
.btn--final { padding: 18px 38px; font-size: 17.5px; }

@media (hover: hover) {
  .btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-btn-hover); }
}

.cta-block { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-top: 40px; }
.cta-block__note { font-size: 14px; color: var(--muted-2); text-align: center; }

/* ---------- Animations ---------- */
@keyframes pulseDot { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52, 211, 153, .55); } 50% { opacity: .75; box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); } }
@keyframes riseIn { from { opacity: 0; transform: translateY(26px); filter: blur(10px); } to { opacity: 1; transform: translateY(0); filter: blur(0); } }
@keyframes waveBar { 0%, 100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }
@keyframes ringOut { 0% { transform: scale(.62); opacity: .9; } 100% { transform: scale(1.35); opacity: 0; } }
@keyframes fadeOnly { from { opacity: 0; } to { opacity: 1; } }

/* Une fois l'entrée jouée, main.js pose .is-in : l'animation est retirée (libère les calques du compositeur). */
.is-in { animation: none !important; opacity: 1; transform: none; filter: none; }

.wave { display: inline-flex; align-items: center; gap: 3.5px; height: 10px; }
.wave span { width: 1.5px; height: 10px; border-radius: 2px; background: var(--cyan); transform-origin: center; animation: waveBar 1.1s ease-in-out infinite; }
.wave span:nth-child(2) { animation-duration: 1.3s; animation-delay: .15s; }
.wave span:nth-child(3) { animation-duration: .9s; animation-delay: .3s; }
.wave span:nth-child(4) { animation-duration: 1.2s; animation-delay: .45s; }

/* ---------- Halo suivant la souris ---------- */
.spot {
  position: fixed; top: 0; left: 0; width: 640px; height: 640px; margin: -320px 0 0 -320px; z-index: 0;
  pointer-events: none; will-change: transform; transform: translate3d(-1000px, -1000px, 0);
  background: radial-gradient(circle closest-side, rgba(78, 217, 234, .13), transparent 100%);
}

/* ---------- 1 Hero ---------- */
.hero {
  position: relative; padding: 120px 24px 90px;
  background-image:
    radial-gradient(700px 460px at 12% 18%, rgba(91, 108, 255, .16), transparent 65%),
    radial-gradient(640px 420px at 88% 26%, rgba(139, 92, 246, .14), transparent 65%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(148, 163, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 255, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 75% 62% at 50% 32%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 75% 62% at 50% 32%, #000 0%, transparent 72%);
}
.hero__inner { position: relative; max-width: 980px; margin: 0 auto; text-align: center; }

/* Maquette : PNG 400 × 400 dont le glyphe occupe 54,5 % de la hauteur, affiché à 44 px → logo recadré à 24 px. */
.hero__logo { display: flex; justify-content: center; margin-bottom: 34px; }
.hero__logo img { height: 24px; width: auto; }

.hero__pillwrap { display: flex; justify-content: center; }
.pill {
  display: inline-flex; align-items: center; gap: 11px; padding: 10px 20px; border-radius: 999px;
  background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1);
}
.pill__text { font-size: 12.5px; letter-spacing: .22em; font-weight: 700; color: var(--soft); text-transform: uppercase; }

.hero__title {
  font-size: clamp(34px, 7.4vw, 60px); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; text-transform: uppercase;
  color: var(--ink); margin: 30px auto 0; max-width: 900px;
}
.hero__lead {
  margin: 26px auto 0; max-width: 760px; font-size: clamp(14px, 1.8vw, 16px); line-height: 1.7; letter-spacing: .06em;
  font-weight: 600; text-transform: uppercase; color: var(--body);
}
.hero__checks { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 30px; }
.hero__checks li { display: flex; align-items: center; gap: 10px; font-size: 16px; color: var(--list); }

/* Entrées en cascade (délais de la maquette) */
.rise { animation: riseIn .85s var(--ease) both; }
.hero__logo.rise { animation-delay: .05s; }
.hero__pillwrap.rise { animation-delay: .15s; }
.hero__title.rise { animation-delay: .28s; }
.hero__lead.rise { animation-delay: .4s; }
.hero__checks.rise { animation-delay: .5s; }
.cta-block.rise { animation-delay: .62s; }

/* ---------- 2 Test en direct ---------- */
.demo { position: relative; padding: 70px 24px 40px; }
.demo__title { font-size: clamp(30px, 5.2vw, 44px); font-weight: 800; letter-spacing: -.02em; text-align: center; color: var(--ink); line-height: normal; }
.demo__grid {
  max-width: 1080px; margin: 44px auto 0; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 22px; align-items: stretch;
}

.demo__card {
  position: relative; overflow: hidden; border-radius: 22px; padding: 44px 36px; text-align: center;
  background-color: var(--card); border: 1px solid var(--line);
  box-shadow: 0 0 90px rgba(124, 92, 246, .14);
  display: flex; flex-direction: column; justify-content: center;
  background-image:
    radial-gradient(420px 260px at 50% 55%, rgba(124, 92, 246, .14), transparent 70%),
    linear-gradient(rgba(148, 163, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 255, .045) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.demo__idle { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.demo__idle[hidden], .demo__form[hidden], .demo__revealed[hidden] { display: none; }

.rings { position: relative; width: 104px; height: 104px; display: flex; align-items: center; justify-content: center; }
.rings__ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(167, 139, 250, .35); animation: ringOut 2.6s ease-out infinite; }
.rings__ring--late { animation-delay: 1.3s; }
.rings__core {
  position: relative; width: 64px; height: 64px; border-radius: 50%; background: var(--grad-badge);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 40px -8px rgba(124, 92, 246, .75);
}

.status { display: flex; align-items: center; justify-content: center; gap: 10px; }
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulseDot 2s ease infinite; }
.status__dot--small { width: 7px; height: 7px; flex-shrink: 0; }
.status__text { font-size: 12px; letter-spacing: .22em; font-weight: 700; color: var(--muted-2); text-transform: uppercase; }
.status--small { gap: 9px; margin-top: 16px; }
.status__hint { font-size: 14.5px; color: var(--muted); }

.demo__form {
  max-width: 420px; width: 100%; margin: 0 auto; display: flex; flex-direction: column; align-items: stretch; gap: 14px;
  animation: riseIn .6s var(--ease) both;
}
.demo__form-title { font-size: 24px; font-weight: 800; letter-spacing: -.01em; color: var(--ink); line-height: 1.25; margin-bottom: 8px; }
.field {
  width: 100%; padding: 15px 18px; border-radius: 12px; background: rgba(255, 255, 255, .04); border: 1px solid var(--line-input);
  color: var(--ink); font-size: 15.5px; font-family: inherit; outline: none; transition: border-color .2s ease, background-color .2s ease;
}
.field::placeholder { color: var(--muted-2); }
.field:focus { border-color: rgba(167, 139, 250, .7); background: rgba(139, 92, 246, .06); }
.field:focus-visible { outline: none; }

.demo__revealed { outline: none; }
.demo__greeting { font-size: 22px; font-weight: 700; letter-spacing: -.01em; color: var(--ink); animation: riseIn .7s var(--ease) both; }
.demo__phone {
  display: block; margin-top: 14px; font-size: clamp(34px, 8vw, 56px); font-weight: 800; letter-spacing: -.01em; line-height: 1.1;
  animation: riseIn .7s var(--ease) .08s both;
}
.demo__revealed .status--small { animation: riseIn .7s var(--ease) .16s both; }

.demo__tips {
  background: rgba(139, 92, 246, .05); border: 1px solid rgba(167, 139, 250, .4); border-radius: 22px; padding: 32px 30px;
  display: flex; flex-direction: column; justify-content: center; gap: 22px;
}
.demo__tips-head {
  display: flex; align-items: center; gap: 9px; font-size: 12px; letter-spacing: .24em; font-weight: 700; color: var(--accent);
  text-transform: uppercase; padding-bottom: 16px; border-bottom: 1px solid rgba(167, 139, 250, .2);
}
.tips { display: flex; flex-direction: column; gap: 22px; }
.tips li { display: flex; gap: 14px; align-items: flex-start; font-size: 16.5px; line-height: 1.6; color: var(--list); }
.tips li > span:last-child { padding-top: 2px; }
.tips__num {
  width: 28px; height: 28px; border-radius: 50%; background: var(--grad-badge); flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; color: #fff;
}

/* ---------- 3 Témoignages ---------- */
.temo { padding: 100px 24px 40px; }
.temo__title {
  font-size: clamp(26px, 4.6vw, 40px); font-weight: 800; letter-spacing: -.01em; line-height: 1.22; text-align: center; text-transform: uppercase;
  color: var(--ink); margin: 18px auto 0; max-width: 1000px;
}
/* Maquette : repeat(min(n, 3), 360px) centré → auto-fit sur 360 px donne 1, 2 ou 3 colonnes selon le nombre de cartes. */
.temo__grid {
  max-width: 1180px; margin: 52px auto 0; display: grid; grid-template-columns: repeat(auto-fit, min(360px, 100%));
  gap: 22px; align-items: stretch; justify-content: center;
}
.temo__card { background: var(--card); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; display: flex; flex-direction: column; }
.temo__video { position: relative; aspect-ratio: 9 / 16; background: var(--bg-2); border-bottom: 1px solid var(--line-soft); }
.temo__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.temo__body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 14px; }
.temo__name { font-size: 18px; font-weight: 800; color: var(--ink); }
.temo__role { margin-top: 5px; font-size: 14px; line-height: 1.5; color: var(--muted); }
.temo__badge {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  background: rgba(139, 92, 246, .1); border: 1px solid rgba(167, 139, 250, .45); color: var(--accent-2);
  font-size: 13px; font-weight: 700; letter-spacing: .04em; white-space: nowrap;
}
.temo__soon { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 30px; text-align: center; flex-wrap: wrap; }
.temo__soon .wave { gap: 3px; }
.temo__soon-text { font-size: 13.5px; color: var(--muted-3); }
.temo__dot { color: var(--muted-5); }

/* ---------- 4 Accès partenaire ---------- */
.access { position: relative; padding: 100px 24px; background-image: radial-gradient(640px 420px at 90% 40%, rgba(139, 92, 246, .08), transparent 65%); }
.access__grid { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 48px; align-items: start; }
.access__title { font-size: clamp(30px, 5vw, 42px); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; color: var(--ink); }
.access__lead { margin: 20px 0 0; font-size: 16.5px; line-height: 1.7; color: var(--body); }
.access__kicker { margin-top: 30px; font-size: 11.5px; letter-spacing: .22em; color: var(--muted-3); font-weight: 700; text-transform: uppercase; }
.access__copy .checklist { margin-top: 16px; }
.access__cal {
  position: relative; min-height: 640px; overflow: hidden; border-radius: 22px;
  background: rgba(139, 92, 246, .05); border: 1px solid rgba(167, 139, 250, .45);
  box-shadow: 0 0 70px -22px rgba(124, 92, 246, .5);
}
.access__loading {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none;
  color: var(--muted-4); font-size: 13px; letter-spacing: .18em; font-weight: 700; text-transform: uppercase;
}
.access__iframe { position: relative; display: block; width: 100%; height: 660px; border: 0; background: transparent; }

/* ---------- Pied de page ---------- */
.footer { border-top: 1px solid var(--line-faint); }
.footer__inner { max-width: 1400px; margin: 0 auto; padding: 36px 40px 40px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer__logo { height: 15px; width: auto; opacity: .85; } /* 28 px dans la maquette × 0,545 (logo recadré) */
.footer__copy { font-size: 14px; color: var(--muted-3); }
.footer__links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer__links a { font-size: 13px; color: var(--muted-3); }
.footer__links a:hover, .footer__links a[aria-current="page"] { color: var(--accent-2); }

/* ---------- Pages simples : mentions légales, confidentialité, 404 ---------- */
.nav-wrap { position: sticky; top: 0; z-index: 60; background: rgba(8, 8, 24, .66); border-bottom: 1px solid rgba(255, 255, 255, .05); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.nav { max-width: 1400px; margin: 0 auto; padding: 0 40px; height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { height: 21px; width: auto; }
.brand__name { font-weight: 800; font-size: 19px; letter-spacing: -.01em; }
.brand__name.grad-text { background: linear-gradient(92deg, #8fb0ff, #a78bfa); -webkit-background-clip: text; background-clip: text; }

.simple { max-width: 820px; margin: 0 auto; padding: 56px 24px 96px; }
.simple--center { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; padding-top: 22vh; min-height: 70vh; }
.simple--center h1 { font-size: clamp(30px, 4.6vw, 48px); font-weight: 800; letter-spacing: -.02em; }
.simple--center p { color: var(--body); max-width: 520px; line-height: 1.6; }
.simple--center .btn { margin-top: 8px; }
.simple--center .eyebrow { margin-bottom: -6px; }

.legal h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin: 14px 0; }
.legal__intro { color: var(--body); font-size: 16px; line-height: 1.65; margin: 0 0 10px; }
.legal__date { color: var(--muted-2); font-size: 12px; letter-spacing: .2em; font-weight: 700; text-transform: uppercase; margin: 0 0 44px; }
.legal__card { border: 1px solid var(--line); border-radius: 18px; background: var(--card); padding: clamp(22px, 4vw, 36px); margin-bottom: 20px; }
.legal__card h2 { font-size: 21px; font-weight: 700; letter-spacing: -.01em; margin: 0 0 16px; }
.legal__card p { margin: 0 0 14px; color: var(--soft); font-size: 15.5px; line-height: 1.65; }
.legal__card p:last-child { margin-bottom: 0; }
.legal__card ul { margin: 0 0 14px; padding-left: 20px; list-style: disc; color: var(--soft); font-size: 15.5px; line-height: 1.75; }
.legal__card ul:last-child { margin-bottom: 0; }
.legal__card strong { color: var(--ink); font-weight: 600; }
.legal__card .hint { color: var(--muted-2); }
.legal__card dl { display: grid; grid-template-columns: auto 1fr; gap: 12px 26px; margin: 0; font-size: 15.5px; line-height: 1.55; }
.legal__card dt { color: var(--muted-2); font-size: 13px; letter-spacing: .04em; padding-top: 2px; line-height: 1.55; }
.legal__card dd { margin: 0; color: var(--ink); }
.legal__card dl + p { margin-top: 16px; }
.legal__callout { border-left: 2px solid var(--accent); padding: 4px 0 4px 18px; color: var(--soft); font-size: 15px; line-height: 1.65; }
.legal__outro { margin: 36px 0 0; color: var(--muted-2); font-size: 14px; }
.legal .eyebrow { text-align: left; }

/* ---------- Mouvement réduit ----------
   Volontairement non géré : la maquette Claude Design joue toutes les animations (anneaux, entrées, onde, point)
   même quand Windows/macOS demandent un mouvement réduit, et le site doit lui être identique. */

/* ---------- Responsive ----------
   Règles mobile de la maquette (bloc @media (max-width:768px) avec attributs data-m), reportées classe par classe. */
@media (max-width: 768px) {
  .nav { padding: 0 20px; height: 64px; }
  .btn--back__full { display: none; }
  .btn--back__short { display: inline; }
  .brand img { height: 19px; }
  .brand__name { font-size: 17px; }

  /* data-m="hero" / "h1" / "sub" / "checks" / "cta" */
  .hero { padding: 72px 20px 60px; }
  .hero__title { font-size: 38px; line-height: 1.12; margin-top: 24px; }
  .hero__lead { font-size: 13px; letter-spacing: .05em; margin-top: 20px; }
  .hero__checks { flex-direction: column; align-items: flex-start; gap: 12px; margin: 26px auto 0; width: max-content; max-width: 100%; text-align: left; }
  .hero__checks li { align-items: flex-start; }
  .hero__checks li .check { margin-top: 2px; }
  .btn--hero { padding: 17px 26px; font-size: 14px; letter-spacing: .05em; text-align: center; justify-content: center; width: 100%; white-space: normal; }

  /* data-m="sec" / "h2" / "grid" / "card" / "btn" / "tel" */
  .demo, .temo, .access { padding: 60px 20px 30px; }
  .demo__title, .temo__title, .access__title { font-size: 30px; line-height: 1.2; }
  .temo__title br { display: none; }
  .demo__grid, .access__grid { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .demo__card, .demo__tips { padding: 30px 22px; }
  .btn--demo { padding: 15px 26px; font-size: 16px; }
  .demo__phone { font-size: 34px; }
  .demo__revealed .status--small { flex-direction: column; gap: 8px; } /* data-m="online" */
  .btn--submit { white-space: normal; }

  /* data-m="temo" / "soon" */
  .temo__grid { grid-template-columns: minmax(0, 1fr); max-width: 360px; }
  .temo__soon { text-align: center; padding: 0 8px; }

  /* data-m="cal" / "calf" */
  .access__cal { min-height: 0; }
  .access__iframe { height: 760px; }

  .footer__inner { padding: 30px 20px 34px; }
  .simple { padding-top: 40px; }
}
