@font-face {
  font-family: Nunito;
  src: url('/landing-assets/Nunito-Regular.ttf') format('truetype');
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: Nunito;
  src: url('/landing-assets/Nunito-SemiBold.ttf') format('truetype');
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: Nunito;
  src: url('/landing-assets/Nunito-Bold.ttf') format('truetype');
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: Nunito;
  src: url('/landing-assets/Nunito-ExtraBold.ttf') format('truetype');
  font-display: swap;
  font-weight: 800;
}

:root {
  --navy: #0b2f43;
  --deep-teal: #12546a;
  --teal: #0b7482;
  --sage: #4b805b;
  --mint: #edf9f6;
  --warm: #fff8ef;
  --muted: #526773;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--navy);
  background: var(--white);
  font-family: Nunito, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-shell,
.header-inner {
  width: min(1290px, calc(100% - 96px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 50;
  background: #fff;
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  color: var(--sage);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.7px;
}

.brand strong {
  color: var(--deep-teal);
}

.brand img {
  border-radius: 10px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  flex: 1;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a,
.site-footer a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.site-footer a:hover {
  color: var(--teal);
}

.store-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.store-buttons a {
  display: block;
  overflow: hidden;
  background: #000;
  border: 1px solid #000;
  line-height: 0;
  border-radius: 8px;
  transition: transform 160ms ease;
}

.store-buttons a:hover {
  transform: translateY(-1px);
}

.menu-button {
  display: none;
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: 44% 56%;
  grid-template-areas:
    'copy visual'
    'reassure visual';
  align-items: center;
  gap: 0;
  padding-block: 26px 32px;
}

.hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 4;
}

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(48px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -2.2px;
  line-height: 1.04;
}

h1 em {
  color: var(--sage);
  font-style: normal;
}

.hero-lead {
  max-width: 440px;
  margin-bottom: 24px;
  color: #314957;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.hero-lead-mobile {
  display: none;
}

.store-buttons img {
  display: block;
  width: auto;
  height: 43px;
  clip-path: inset(1px round 7px);
  transform: scale(1.02);
}

.reassurance {
  grid-area: reassure;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 12px 0 0;
  color: #405661;
  font-size: 13px;
  font-weight: 700;
}

.shield-check {
  width: 24px;
  height: 27px;
  display: inline-grid;
  place-items: center;
  color: #439066;
  border: 2px solid #7eb596;
  border-radius: 8px 8px 11px 11px;
  font-size: 13px;
}

.hero-visual {
  grid-area: visual;
  min-height: 530px;
  position: relative;
}

.hero-video {
  width: 116%;
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  transform: translate(-50%, -50%);
}

.phone-mockup {
  position: relative;
  z-index: 3;
  display: block;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgb(11 43 60 / 18%));
}

.trust-panel {
  min-height: 348px;
  margin-bottom: 12px;
  padding: 34px 52px 38px;
  background: linear-gradient(100deg, #f3fbf9, #eaf7f3 52%, #f5fbfa);
  border-radius: 54px 54px 0 0;
}

.trust-panel h2,
.steps-content > h2 {
  margin-bottom: 26px;
  text-align: center;
  font-size: 29px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
}

.trust-item {
  text-align: center;
}

.trust-item h3 {
  margin: 12px 0 5px;
  font-size: 17px;
  font-weight: 800;
}

.trust-item p {
  max-width: 255px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.trust-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto;
  color: var(--deep-teal);
}

.trust-icon svg,
.trust-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trust-megaphone,
.trust-ai {
  color: #3f7a74;
}

.feature {
  min-height: 505px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 58px;
  padding-block: 28px;
}

.feature-copy h2,
.assistant-copy h2,
.report-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -1.3px;
  line-height: 1.05;
}

.feature-copy > p,
.assistant-copy > p,
.report-copy > p {
  max-width: 500px;
  margin-bottom: 0;
  color: #435865;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.feature-visual {
  min-height: 445px;
  position: relative;
  display: grid;
  place-items: center;
}

.soft-blob {
  width: 75%;
  height: 84%;
  position: absolute;
  background: var(--mint);
  border-radius: 42% 58% 48% 52%;
  transform: rotate(-3deg);
}

.phone-feature {
  width: 230px;
}

.decor {
  width: 88px;
  height: 88px;
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgb(11 43 60 / 12%));
  pointer-events: none;
  user-select: none;
}

/* Animated decor loops (WebP) around the phone mockup */
.decor-anim {
  will-change: transform;
}

.decor-journal {
  top: 28px;
  left: 6%;
  width: 92px;
  height: 92px;
}

.decor-bowl {
  right: 4%;
  top: 38%;
  width: 86px;
  height: 86px;
}

.decor-scale {
  left: 10%;
  bottom: 42px;
  width: 80px;
  height: 80px;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 22px;
  margin-top: 24px;
}

.metric-grid > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.metric-grid > div > span,
.metric-icon {
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--deep-teal);
  background: var(--mint);
  border: 1px solid #d5eae4;
  border-radius: 50%;
}

.metric-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.metric-grid p {
  margin: 0;
}

.metric-grid strong,
.metric-grid small {
  display: block;
}

.metric-grid strong {
  font-size: 14px;
  font-weight: 800;
}

.metric-grid small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}

.soft-section,
.warm-section {
  width: min(1240px, calc(100% - 120px));
  margin-inline: auto;
  border-radius: 40px;
}

.feature-reminders {
  min-height: 405px;
  grid-template-columns: 0.9fr 0.55fr 0.9fr;
  gap: 30px;
  margin-block: 8px 24px;
  padding: 30px 48px;
  background: linear-gradient(120deg, #edf9f6, #f5fbfa);
}

.phone-small {
  width: 174px;
  justify-self: center;
}

.feature-illustration {
  width: 100%;
  max-width: 350px;
  border-radius: 34px;
  mix-blend-mode: multiply;
}

.mini-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  margin-top: 22px;
  color: var(--deep-teal);
}

.mini-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mini-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--deep-teal);
  background: #fff;
  border: 1px solid #d5eae4;
  border-radius: 50%;
  box-shadow: 0 6px 14px rgb(11 43 60 / 6%);
}

.mini-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.mini-feature p {
  margin: 0;
}

.mini-feature strong,
.mini-feature small {
  display: block;
}

.mini-feature strong {
  font-size: 13px;
  font-weight: 800;
}

.mini-feature small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.assistant-panel {
  min-height: 430px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 58px;
  margin-block: 0 18px;
  padding: 32px 52px;
  background: linear-gradient(112deg, #fff9f1, #f8fbf8 72%);
}

.assistant-copy {
  position: relative;
}

.assistant-art {
  width: 190px;
  margin: 8px auto -24px;
  border-radius: 32px;
  mix-blend-mode: multiply;
}

.check-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 8px 0;
  padding-left: 25px;
  color: #38535f;
  font-size: 13px;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #5a9a70;
  content: '✓';
  font-size: 16px;
  font-weight: 800;
}

.chat-preview {
  max-width: 510px;
  padding: 22px;
  background: #fff;
  border: 1px solid #d6e4e1;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgb(11 43 60 / 8%);
}

.chat-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 800;
}

.chat-title span {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  background: var(--mint);
  border-radius: 50%;
}

.chat-bubble {
  max-width: 87%;
  margin: 10px 0;
  padding: 13px 16px;
  border-radius: 16px;
  color: #253f4d;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.chat-user {
  margin-left: auto;
  background: #e7f3f5;
  border-bottom-right-radius: 6px;
}

.chat-assistant {
  background: #eaf7f2;
  border-bottom-left-radius: 6px;
}

.chat-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 10px 12px;
  color: #66767d;
  border: 1px solid #e4eeeb;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.chat-input span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
}

.report-feature {
  min-height: 455px;
}

.report-visual {
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
}

.phone-report {
  width: 188px;
  flex: 0 0 auto;
}

.report-visual > .report-art {
  display: block;
  width: 180px;
  margin-left: -14px;
  border-radius: 32px;
  mix-blend-mode: multiply;
}

.steps-panel {
  min-height: 310px;
  display: grid;
  grid-template-columns: 0.34fr 1.66fr;
  align-items: center;
  gap: 48px;
  margin-block: 2px 24px;
  padding: 28px 44px;
  background: linear-gradient(110deg, #fff7ed, #fffaf5);
}

.steps-emblem {
  display: grid;
  place-items: center;
}

.steps-emblem img {
  width: min(190px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgb(11 43 60 / 10%));
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.steps-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-left: 43px;
  min-height: 150px;
}

.steps-grid article > b {
  width: 32px;
  height: 32px;
  position: absolute;
  top: -2px;
  left: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--deep-teal);
  border-radius: 50%;
  font-size: 14px;
}

.steps-grid h3 {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 800;
}

.steps-grid p {
  margin: 0;
  color: #566875;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.step-icon {
  width: 68px;
  height: 68px;
  margin-top: 14px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgb(11 43 60 / 8%));
}

.lc-credit {
  margin: 0 0 18px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lc-credit a {
  color: #596970;
  transition: color 160ms ease;
}

.lc-credit a:hover {
  color: var(--deep-teal);
}

.safety-panel {
  display: none;
}

.final-cta {
  min-height: 200px;
  position: relative;
  overflow: hidden;
  margin-block: 0 12px;
  color: #fff;
  background: #07516a;
  border-radius: 36px;
}

.final-cta > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.final-cta::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 26%, rgb(5 55 72 / 8%) 40% 68%, transparent 82%);
  content: '';
}

.final-cta-copy {
  width: 54%;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 28px 8px;
  text-align: center;
}

.final-cta h2 {
  margin: 0 0 4px;
  font-size: 30px;
  font-weight: 800;
}

.final-cta p {
  margin-bottom: 14px;
  color: #e5f2f1;
  font-size: 13px;
  font-weight: 600;
}

.cta-buttons {
  justify-content: center;
}

.cta-buttons img {
  height: 42px;
}

.site-footer {
  min-height: 82px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-block: 10px 20px;
}

.site-footer .brand {
  font-size: 23px;
}

.footer-brand p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.site-footer nav {
  display: flex;
  gap: 34px;
  padding-top: 17px;
  font-size: 12px;
  font-weight: 700;
}

.footer-social {
  gap: 10px;
  padding-top: 10px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #d4eae4;
  border-radius: 50%;
  background: var(--mint);
  color: var(--deep-teal);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.site-footer .footer-social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* Page Android bientôt disponible */
.coming-soon-body {
  min-height: 100vh;
  background: linear-gradient(180deg, #fff 0 12%, #f1faf7 100%);
}

.coming-soon-header {
  justify-content: space-between;
}

.back-link,
.secondary-link {
  color: var(--deep-teal);
  font-weight: 800;
}

.back-link {
  padding: 9px 15px;
  background: var(--mint);
  border: 1px solid #d4eae4;
  border-radius: 999px;
  font-size: 13px;
}

.coming-soon-main {
  width: min(1120px, calc(100% - 48px));
  min-height: calc(100vh - 168px);
  display: grid;
  align-items: center;
  margin-inline: auto;
  padding-block: 42px;
}

.coming-soon-card {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 46px;
  overflow: hidden;
  padding: 56px 68px;
  background: rgb(255 255 255 / 92%);
  border: 1px solid #dcece7;
  border-radius: 42px;
  box-shadow: 0 28px 70px rgb(11 47 67 / 10%);
}

.coming-soon-card > * {
  min-width: 0;
}

.coming-soon-label {
  margin-bottom: 12px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coming-soon-copy h1 {
  max-width: 640px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 64px);
}

.coming-soon-lead {
  max-width: 550px;
  margin-bottom: 22px;
  color: #435865;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
}

.coming-soon-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 10px 15px;
  color: #3c7652;
  background: #edf8f0;
  border: 1px solid #d3ead9;
  border-radius: 999px;
  font-size: 13px;
}

.coming-soon-status span {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--sage);
  border-radius: 50%;
  font-size: 12px;
}

.android-test-panel {
  max-width: 590px;
  margin-bottom: 26px;
  padding: 20px;
  background: #f7fbfa;
  border: 1px solid #dcece7;
  border-radius: 22px;
}

.android-test-panel h2 {
  margin-bottom: 6px;
  font-size: 20px;
}

.android-test-panel > p {
  margin-bottom: 15px;
  color: #526672;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.android-test-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
}

.android-test-fields {
  display: flex;
  gap: 8px;
}

.android-test-fields input {
  min-width: 0;
  flex: 1;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #bfd7d0;
  border-radius: 12px;
  font: inherit;
  font-size: 14px;
}

.android-test-fields input:focus-visible {
  outline: 3px solid rgb(19 139 151 / 18%);
  border-color: var(--deep-teal);
}

.android-test-fields button {
  padding: 12px 16px;
  color: #fff;
  background: var(--deep-teal);
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.android-test-fields button:hover {
  filter: brightness(0.94);
}

.android-test-form small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.android-test-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.android-test-feedback {
  min-height: 18px;
  margin-top: 8px;
  color: #3c7652;
  font-size: 12px;
  font-weight: 800;
}

.android-test-feedback.is-error {
  color: #a13e3e;
}

.android-test-fields button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.android-test-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--deep-teal);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.coming-soon-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.app-store-link {
  display: block;
  overflow: hidden;
  background: #000;
  border-radius: 8px;
  line-height: 0;
}

.app-store-link img {
  width: auto;
  height: 46px;
  clip-path: inset(1px round 7px);
  transform: scale(1.02);
}

.secondary-link {
  padding: 11px 2px;
  font-size: 14px;
}

.coming-soon-visual {
  min-height: 440px;
  position: relative;
  display: grid;
  place-items: center;
}

.coming-soon-halo {
  width: 390px;
  height: 390px;
  position: absolute;
  background: linear-gradient(145deg, #dff3ed, #fff4e8);
  border-radius: 46% 54% 55% 45%;
  transform: rotate(-8deg);
}

.coming-soon-phone {
  width: 225px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 28px rgb(11 43 60 / 18%));
}

.android-badge {
  position: absolute;
  right: 2px;
  bottom: 58px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border: 1px solid #dceae6;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgb(11 43 60 / 14%);
}

.android-badge img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.android-badge strong,
.android-badge small {
  display: block;
}

.android-badge strong {
  font-size: 14px;
}

.android-badge small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.coming-soon-footer {
  padding-top: 14px;
}

@media (max-width: 1050px) and (min-width: 701px) {
  .section-shell,
  .header-inner {
    width: calc(100% - 52px);
  }

  .desktop-nav {
    gap: 18px;
    font-size: 12px;
  }

  h1 {
    font-size: 46px;
  }

  .hero {
    grid-template-columns: 46% 54%;
    overflow: clip;
  }

  .coming-soon-card {
    gap: 32px;
    padding: 48px 40px;
  }

  .coming-soon-halo {
    width: 340px;
    height: 340px;
  }

  .coming-soon-phone {
    width: 205px;
  }

  .android-test-fields {
    flex-direction: column;
  }

  .android-test-fields input,
  .android-test-fields button {
    width: 100%;
  }

  .android-test-fields button {
    min-height: 46px;
  }

}

@media (max-width: 700px) {
  html {
    width: 100%;
    overflow-x: clip;
    overscroll-behavior-x: none;
    scroll-padding-top: 72px;
  }

  body {
    width: 100%;
    font-size: 15px;
    overflow-x: clip;
    overscroll-behavior-x: none;
    touch-action: pan-y;
  }

  .section-shell,
  .header-inner,
  .soft-section,
  .warm-section {
    width: calc(100% - 28px);
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: auto;
    padding: 10px 0 6px;
    background: #fff;
  }

  .header-inner {
    width: calc(100% - 20px);
    min-height: 48px;
    margin: 0 auto;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #edf1f0;
    border-radius: 16px;
    box-shadow: 0 4px 14px rgb(11 43 60 / 7%);
    justify-content: space-between;
  }

  .brand {
    gap: 6px;
    font-size: 18px;
    letter-spacing: -0.4px;
  }

  .brand img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    width: 40px;
    height: 40px;
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    flex: 0 0 auto;
    background: #f3faf7;
    border: 1px solid #dbece7;
    border-radius: 12px;
    cursor: pointer;
  }

  .menu-button span:not(.sr-only) {
    width: 16px;
    height: 2px;
    display: block;
    background: var(--deep-teal);
    border-radius: 999px;
  }

  .mobile-menu {
    width: calc(100% - 28px);
    position: absolute;
    top: 62px;
    left: 14px;
    z-index: 40;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 10px;
    background: #fff;
    border: 1px solid #e7efed;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgb(11 43 60 / 12%);
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu a {
    padding: 10px 8px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    border-radius: 10px;
    background: #f5faf8;
  }

  .coming-soon-main {
    width: calc(100% - 28px);
    min-height: auto;
    padding-block: 16px 28px;
  }

  .coming-soon-card {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 20px 18px;
    border-radius: 28px;
    text-align: center;
  }

  .coming-soon-header .back-link {
    padding: 8px 11px;
    font-size: 12px;
    white-space: nowrap;
  }

  .coming-soon-label {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .coming-soon-copy h1 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 12px;
    font-size: clamp(30px, 8.5vw, 36px);
  }

  .coming-soon-lead {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .coming-soon-status {
    margin-bottom: 20px;
  }

  .android-test-panel {
    margin-bottom: 20px;
    padding: 17px 14px;
    text-align: left;
  }

  .android-test-panel h2 {
    font-size: 18px;
  }

  .android-test-fields {
    flex-direction: column;
  }

  .android-test-fields input,
  .android-test-fields button {
    width: 100%;
  }

  .android-test-fields button {
    min-height: 46px;
  }

  .coming-soon-actions {
    flex-direction: column;
    gap: 7px;
  }

  .app-store-link img {
    height: 42px;
  }

  .coming-soon-visual {
    width: 100%;
    min-height: 300px;
  }

  .coming-soon-halo {
    width: 270px;
    height: 270px;
  }

  .coming-soon-phone {
    width: 155px;
  }

  .android-badge {
    right: 0;
    bottom: 32px;
    padding: 8px 10px;
  }

  .android-badge img {
    width: 34px;
    height: 34px;
  }

  .coming-soon-footer {
    width: calc(100% - 28px);
  }

  /* ===== HERO — layout maquette mobile ===== */
  .hero {
    min-height: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 12px 0 8px;
    text-align: center;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    order: 1;
  }

  h1 {
    max-width: 20em;
    margin: 0 auto 10px;
    font-size: clamp(28px, 7.2vw, 34px);
    letter-spacing: -1px;
    line-height: 1.08;
  }

  .hero-lead {
    max-width: 22em;
    margin: 0 auto 14px;
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-lead-desktop {
    display: none;
  }

  .hero-lead-mobile {
    display: block;
  }

  .hero-buttons {
    gap: 8px;
    justify-content: center;
    margin-bottom: 6px;
  }

  .store-buttons img {
    height: 36px;
  }

  .hero-visual {
    order: 2;
    width: 100%;
    min-height: 300px;
    height: 58vw;
    max-height: 380px;
    margin: 2px 0 6px;
    position: relative;
    overflow: hidden;
  }

  .hero-video {
    width: 132%;
  }

  .reassurance {
    order: 3;
    justify-content: center;
    gap: 8px;
    margin: 2px 0 14px;
    font-size: 12px;
  }

  .shield-check {
    width: 18px;
    height: 20px;
    border-width: 1.5px;
    border-radius: 5px 5px 7px 7px;
    font-size: 10px;
  }

  /* ===== TRUST ===== */
  .trust-panel {
    min-height: 0;
    height: auto;
    margin-bottom: 8px;
    padding: 22px 14px 24px;
    border-radius: 28px;
  }

  .trust-panel h2,
  .steps-content > h2 {
    margin-bottom: 16px;
    font-size: clamp(18px, 4.6vw, 22px);
    letter-spacing: -0.3px;
    line-height: 1.25;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .trust-icon {
    width: 48px;
    height: 48px;
    transform: none;
  }

  .trust-item h3 {
    margin: 8px 0 4px;
    font-size: 12px;
    line-height: 1.25;
  }

  .trust-item p {
    max-width: none;
    font-size: 10.5px;
    line-height: 1.3;
  }

  /* ===== FEATURES génériques ===== */
  .feature {
    min-height: 0;
    height: auto;
    overflow: hidden;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-block: 18px;
    align-items: center;
  }

  .feature > *,
  .assistant-panel > *,
  .report-feature > * {
    min-width: 0;
  }

  .feature-copy h2,
  .assistant-copy h2,
  .report-copy h2 {
    margin-bottom: 8px;
    font-size: clamp(20px, 5.4vw, 26px);
    letter-spacing: -0.6px;
    line-height: 1.08;
  }

  .feature-copy > p,
  .assistant-copy > p,
  .report-copy > p {
    font-size: 13px;
    line-height: 1.4;
  }

  .feature-visual {
    min-height: 180px;
    align-self: center;
  }

  .feature-overview .feature-visual {
    transform: none;
  }

  .soft-blob {
    width: 95%;
    height: 90%;
  }

  .phone-feature {
    width: min(36vw, 140px);
  }

  .decor {
    display: none;
  }

  /* Métriques : grille type maquette (icônes + labels) */
  .metric-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px 4px;
    margin-top: 14px;
    justify-items: center;
  }

  .metric-grid > div {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
  }

  .metric-grid > div > span,
  .metric-icon {
    width: 36px;
    height: 36px;
  }

  .metric-icon img {
    width: 26px;
    height: 26px;
  }

  .metric-grid strong {
    font-size: 11px;
  }

  .metric-grid small {
    display: none;
  }

  .metric-grid > div:nth-child(4),
  .metric-grid > div:nth-child(5) {
    grid-column: auto;
    justify-self: center;
  }

  /* ===== SOINS ===== */
  .feature-reminders {
    min-height: 0;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
    margin-block: 6px 10px;
    padding: 18px 16px;
    border-radius: 24px;
  }

  .feature-reminders .phone-small {
    width: min(40vw, 158px);
    display: block;
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  .feature-reminders .feature-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: center;
  }

  .feature-reminders .mini-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    margin-top: 14px;
  }

  .feature-reminders .mini-feature {
    gap: 7px;
  }

  .feature-reminders .mini-icon {
    width: 32px;
    height: 32px;
  }

  .feature-reminders .mini-icon img {
    width: 24px;
    height: 24px;
  }

  .feature-reminders .mini-feature strong {
    font-size: 11.5px;
  }

  .feature-reminders .mini-feature small {
    font-size: 10px;
    line-height: 1.25;
  }

  .feature-illustration {
    width: 100%;
    max-height: none;
    max-width: 180px;
    margin-left: auto;
    object-fit: contain;
    border-radius: 16px;
  }

  .feature-reminders .feature-illustration {
    grid-column: 2;
    grid-row: 2;
    transform: none;
    justify-self: center;
  }

  .feature-reminders h2,
  .assistant-copy h2 {
    font-size: clamp(20px, 5.4vw, 26px);
  }

  /* ===== ASSISTANT IA ===== */
  .assistant-panel {
    min-height: 0;
    height: auto;
    overflow: hidden;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-block: 0 12px;
    padding: 18px 14px 20px;
    border-radius: 24px;
  }

  .assistant-copy {
    isolation: isolate;
    align-self: center;
  }

  .assistant-copy h2,
  .assistant-copy > p {
    position: relative;
    z-index: 1;
  }

  .assistant-copy .check-list {
    display: none;
  }

  .assistant-art {
    width: min(34vw, 160px);
    position: absolute;
    right: 2%;
    bottom: -16px;
    z-index: 0;
    margin: 0;
    border-radius: 20px;
    opacity: 0.18;
    pointer-events: none;
  }

  .chat-preview {
    width: 100%;
    max-width: none;
    height: auto;
    overflow: hidden;
    justify-self: stretch;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgb(11 43 60 / 8%);
  }

  .chat-title {
    gap: 8px;
    margin-bottom: 10px;
    font-size: 15px;
  }

  .chat-title span {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .chat-bubble {
    max-width: 92%;
    margin: 8px 0;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 12.5px;
    line-height: 1.4;
  }

  .chat-input {
    margin-top: 10px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .chat-input span {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }

  /* ===== RAPPORT ===== */
  .report-feature {
    min-height: 0;
    height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding-block: 16px;
    align-items: center;
  }

  .report-copy {
    align-self: center;
    padding: 0;
  }

  .report-copy h2 {
    font-size: clamp(20px, 5.4vw, 26px);
    white-space: normal;
  }

  .report-copy .check-list {
    display: none;
  }

  .report-visual {
    width: 100%;
    min-height: 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform: none;
    gap: 2px;
    padding-block: 4px;
  }

  .phone-report {
    width: min(42vw, 150px);
  }

  .report-visual > .report-art {
    width: min(47vw, 168px);
    margin-left: -4px;
    border-radius: 14px;
  }

  /* ===== ÉTAPES ===== */
  .steps-panel {
    min-height: 0;
    height: auto;
    display: block;
    margin-block: 8px 12px;
    padding: 22px 16px 20px;
    border-radius: 24px;
  }

  .steps-emblem {
    display: none;
  }

  .steps-content > h2 {
    margin-bottom: 18px;
    text-align: center;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .steps-grid article {
    min-height: 160px;
    overflow: hidden;
    isolation: isolate;
    padding: 44px 12px 14px;
    background: linear-gradient(145deg, rgb(255 255 255 / 78%), rgb(250 253 251 / 62%));
    border: 1px solid rgb(220 232 227 / 85%);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgb(11 43 60 / 6%);
    text-align: center;
    align-items: center;
  }

  .steps-grid article > b,
  .steps-grid article > h3,
  .steps-grid article > p {
    position: relative;
    z-index: 1;
  }

  .steps-grid article > b {
    width: 28px;
    height: 28px;
    position: absolute;
    top: 12px;
    left: 50%;
    margin: 0;
    font-size: 12px;
    box-shadow: 0 6px 14px rgb(11 43 60 / 14%);
    transform: translateX(-50%);
  }

  .steps-grid h3 {
    margin-bottom: 6px;
    font-size: 15px;
  }

  .steps-grid p {
    font-size: 11.5px;
    line-height: 1.35;
  }

  .step-icon {
    width: min(20vw, 96px);
    height: min(20vw, 96px);
    position: absolute;
    top: 62%;
    left: 50%;
    z-index: 0;
    display: block;
    margin: 0;
    opacity: 0.16;
    filter: none;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  /* ===== SÉCURITÉ / FAQ ===== */
  .safety-panel {
    display: grid;
    width: 100%;
    min-height: 0;
    height: auto;
    grid-template-columns: 56px 1fr 40px;
    gap: 10px;
    align-items: center;
    margin-block: 4px 12px;
    padding: 14px 14px;
    background: linear-gradient(100deg, #e8f6ef, #f5faf7);
    border: 1px solid #dbece5;
    border-radius: 18px;
  }

  .safety-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: transparent;
    border-radius: 0;
    transform: none;
  }

  .safety-icon img,
  .safety-icon svg {
    width: 52px;
    height: 52px;
    object-fit: contain;
  }

  .safety-copy h2,
  .safety-panel h2 {
    margin: 0 0 4px;
    font-size: 14px;
    line-height: 1.2;
  }

  .safety-copy p,
  .safety-panel p {
    margin: 0;
    font-size: 11.5px;
    line-height: 1.35;
    color: #4d6570;
    font-weight: 600;
  }

  .safety-doc {
    display: grid;
    place-items: center;
  }

  .safety-doc img {
    width: 36px;
    height: 36px;
    opacity: 0.85;
  }

  .safety-points {
    display: none;
  }

  /* ===== CTA ===== */
  .final-cta {
    min-height: 0;
    height: auto;
    margin-block: 4px 10px;
    border-radius: 22px;
  }

  .final-cta > img {
    object-position: left center;
  }

  .final-cta-copy {
    width: 60%;
    margin: 0 0 0 auto;
    padding: 22px 0;
    text-align: center;
  }

  .final-cta h2 {
    margin-bottom: 4px;
    padding-left: 10px;
    font-size: clamp(18px, 4.8vw, 22px);
    line-height: 1.15;
  }

  .final-cta p {
    margin-bottom: 10px;
    padding-left: 10px;
    font-size: 12px;
    line-height: 1.35;
  }

  .cta-buttons {
    width: max-content;
    gap: 6px;
    margin-left: auto;
    flex-wrap: nowrap;
  }

  .cta-buttons img {
    height: clamp(28px, 8vw, 32px);
  }

  /* ===== FOOTER ===== */
  .site-footer {
    min-height: 0;
    height: auto;
    width: calc(100% - 28px);
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-block: 8px 16px;
    text-align: center;
  }

  .site-footer .brand {
    gap: 6px;
    font-size: 18px;
  }

  .site-footer .brand img {
    width: 28px;
    height: 28px;
  }

  .footer-brand p {
    margin-top: 2px;
    font-size: 12px;
  }

  .footer-brand,
  .site-footer nav {
    width: 100%;
  }

  .site-footer nav {
    justify-content: center;
    gap: 16px;
    padding-top: 0;
    font-size: 12px;
    flex-wrap: wrap;
  }

  .footer-social {
    justify-content: center;
    padding-top: 2px;
  }

  .lc-credit {
    margin: 0 0 18px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 480px) {
  .metric-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px 4px;
  }

  .metric-grid > div {
    width: 100%;
    grid-column: span 2;
    justify-self: center;
  }

  .metric-grid > div:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .metric-grid > div:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .steps-panel {
    padding: 20px 14px;
  }

  .steps-content > h2 {
    margin-bottom: 14px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .steps-grid article {
    min-height: 108px;
    padding: 18px 94px 16px 54px;
    text-align: left;
    align-items: flex-start;
  }

  .steps-grid article > b {
    top: 18px;
    left: 14px;
    transform: none;
  }

  .steps-grid h3 {
    margin: 0 0 5px;
  }

  .steps-grid p {
    font-size: 12px;
  }

  .step-icon {
    width: 84px;
    height: 84px;
    top: 50%;
    right: 8px;
    left: auto;
    transform: translateY(-50%);
  }
}

@media (max-width: 350px) {
  .final-cta-copy {
    width: 100%;
    margin: 0;
    padding: 20px 10px;
    background: rgb(7 81 106 / 82%);
  }

  .final-cta h2,
  .final-cta p {
    padding-left: 0;
  }

  .cta-buttons {
    margin-inline: auto;
  }
}


@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ===== SEO/GEO content hub and editorial guides ===== */
.section-eyebrow {
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seo-hub {
  padding-block: 76px;
}

.seo-hub-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.seo-hub-heading h2,
.faq-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -1.8px;
  line-height: 1.08;
}

.seo-hub-heading > p:last-child,
.faq-heading > p:last-child {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.seo-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  background: linear-gradient(145deg, #f5fbf8, #fff);
  border: 1px solid #dcebe6;
  border-radius: 26px;
  box-shadow: 0 14px 34px rgb(11 47 67 / 6%);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.seo-card:hover {
  border-color: #b8d9cf;
  box-shadow: 0 18px 42px rgb(11 47 67 / 10%);
  transform: translateY(-3px);
}

.seo-card > span {
  margin-bottom: 16px;
  padding: 6px 10px;
  color: var(--sage);
  background: #e9f6ef;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
  letter-spacing: -0.55px;
  line-height: 1.17;
}

.seo-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.seo-card strong {
  margin-top: auto;
  color: var(--deep-teal);
  font-size: 14px;
}

.faq-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
  margin-block: 64px 80px;
  padding: 54px 60px;
  background: var(--warm);
  border: 1px solid #f0e4d5;
  border-radius: 34px;
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 28px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 20px;
  background: #fff;
  border: 1px solid #eadfce;
  border-radius: 16px;
}

.faq-list summary {
  position: relative;
  padding: 18px 34px 18px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  position: absolute;
  top: 15px;
  right: 0;
  color: var(--sage);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: '−';
}

.faq-list details p {
  margin-bottom: 18px;
  padding-right: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.guide-main {
  padding-block: 34px 86px;
  background: linear-gradient(180deg, #f7fbf9 0, #fff 420px);
}

.guide-shell {
  width: min(1120px, calc(100% - 64px));
  margin-inline: auto;
}

.guide-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.guide-breadcrumbs a {
  color: var(--deep-teal);
}

.guide-hero {
  max-width: 900px;
  padding-block: 28px 48px;
}

.guide-hero h1 {
  max-width: 840px;
  margin-bottom: 18px;
  font-size: clamp(44px, 6vw, 72px);
  letter-spacing: -2.8px;
  line-height: 1.02;
}

.guide-deck {
  max-width: 790px;
  margin-bottom: 20px;
  color: #405966;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.52;
}

.guide-byline {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.guide-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  justify-content: space-between;
  gap: 64px;
  align-items: start;
}

.guide-toc {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 7px;
  padding: 22px;
  background: var(--mint);
  border: 1px solid #d9ebe6;
  border-radius: 20px;
}

.guide-toc strong {
  margin-bottom: 5px;
  font-size: 13px;
}

.guide-toc a {
  color: #48616d;
  font-size: 13px;
  font-weight: 700;
}

.guide-toc a:hover {
  color: var(--teal);
}

.guide-article {
  min-width: 0;
  color: #294553;
  font-size: 17px;
  line-height: 1.72;
}

.guide-answer {
  margin-bottom: 38px;
  padding: 24px 26px;
  color: var(--navy);
  background: #fff8ef;
  border-left: 4px solid #dc9c4e;
  border-radius: 0 18px 18px 0;
  font-size: 18px;
  font-weight: 700;
}

.guide-article section {
  scroll-margin-top: 34px;
  margin-bottom: 46px;
}

.guide-article h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 34px;
  letter-spacing: -1px;
  line-height: 1.15;
}

.guide-article h3 {
  margin: 28px 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
}

.guide-article p,
.guide-article ul,
.guide-article ol {
  margin-bottom: 18px;
}

.guide-article li + li {
  margin-top: 8px;
}

.guide-note {
  margin-block: 28px;
  padding: 20px 22px;
  background: #edf8f3;
  border: 1px solid #d3e9de;
  border-radius: 16px;
}

.guide-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--sage);
}

.guide-related {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.guide-related a {
  padding: 18px;
  color: var(--deep-teal);
  background: #f6fbf9;
  border: 1px solid #dcebe6;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
}

.guide-cta {
  margin-top: 54px;
  padding: 30px;
  color: #fff;
  background: var(--deep-teal);
  border-radius: 24px;
}

.guide-cta h2 {
  margin-bottom: 8px;
  color: #fff;
}

.guide-cta p {
  max-width: 610px;
}

.guide-cta a {
  display: inline-block;
  padding: 11px 16px;
  color: var(--deep-teal);
  background: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .seo-card-grid {
    grid-template-columns: 1fr;
  }

  .seo-card {
    min-height: 0;
  }

  .faq-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-heading,
  .guide-toc {
    position: static;
  }

  .guide-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .guide-toc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .seo-hub {
    padding-block: 36px;
  }

  .seo-hub-heading {
    margin-bottom: 20px;
  }

  .seo-hub-heading h2,
  .faq-heading h2 {
    font-size: 28px;
    letter-spacing: -0.8px;
  }

  .seo-hub-heading > p:last-child,
  .faq-heading > p:last-child {
    font-size: 14px;
  }

  .seo-card-grid {
    gap: 12px;
  }

  .seo-card {
    padding: 20px;
    border-radius: 20px;
  }

  .seo-card h3 {
    font-size: 19px;
  }

  .faq-panel {
    width: calc(100% - 28px);
    margin-block: 30px 40px;
    padding: 24px 16px;
    border-radius: 24px;
  }

  .faq-list summary {
    font-size: 14px;
  }

  .faq-list details p {
    padding-right: 0;
    font-size: 13px;
  }

  .guide-main {
    padding-block: 18px 50px;
  }

  .guide-shell {
    width: calc(100% - 28px);
  }

  .guide-breadcrumbs {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .guide-hero {
    padding-block: 24px 30px;
  }

  .guide-hero h1 {
    max-width: none;
    margin: 0 0 14px;
    font-size: clamp(34px, 10vw, 46px);
    letter-spacing: -1.5px;
    text-align: left;
  }

  .guide-deck {
    font-size: 17px;
  }

  .guide-toc {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .guide-article {
    font-size: 16px;
  }

  .guide-answer {
    padding: 19px;
    font-size: 16px;
  }

  .guide-article h2 {
    font-size: 27px;
  }

  .guide-article h3 {
    font-size: 20px;
  }

  .guide-related {
    grid-template-columns: 1fr;
  }
}
