:root {
  --ink: #082d24;
  --ink-2: #174438;
  --paper: #fffdf6;
  --mist: #eef9f5;
  --teal: #1899a1;
  --green: #08ae78;
  --magenta: #a73e68;
  --lemon: #f9f871;
  --red: #c90028;
  --line: rgba(8, 45, 36, 0.16);
  --shadow: 0 24px 70px rgba(8, 45, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 60px);
  background: rgba(255, 253, 246, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 148px;
  height: auto;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 0.9rem;
  font-weight: 800;
}

nav a {
  text-decoration: none;
}

.section {
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 76px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  min-height: calc(100vh - 70px);
  padding-top: clamp(38px, 5vw, 70px);
  padding-bottom: clamp(42px, 5vw, 76px);
  background:
    linear-gradient(120deg, rgba(24, 153, 161, 0.12), rgba(249, 248, 113, 0.16)),
    var(--paper);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5vw, 4.45rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  font-size: 1.05rem;
}

.lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--ink-2);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 14px 30px rgba(24, 153, 161, 0.26);
}

.button-secondary {
  background: var(--lemon);
  color: var(--ink);
}

.product-preview {
  position: relative;
  min-height: 520px;
}

.device {
  overflow: hidden;
  position: absolute;
  background: #111;
  border: 10px solid #10221e;
  box-shadow: var(--shadow);
}

.device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-desktop {
  inset: 30px 10px auto 0;
  width: 82%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
}

.device-tablet {
  right: 6%;
  bottom: 34px;
  width: 38%;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
}

.device-phone {
  right: 0;
  top: 94px;
  width: 24%;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(320px, 1.18fr) minmax(0, 0.82fr);
}

.copy-block {
  max-width: 620px;
}

.copy-block p:not(.eyebrow) {
  color: var(--ink-2);
  font-size: 1.08rem;
}

.video-shell {
  overflow: hidden;
  display: grid;
  min-height: 420px;
  aspect-ratio: 16 / 10;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(8, 45, 36, 0.84), rgba(167, 62, 104, 0.7)),
    url("assets/whats-on-page.png") center / cover;
  box-shadow: var(--shadow);
}

.video-shell video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  display: grid;
  place-items: center;
  max-width: 520px;
  padding: 32px;
  color: white;
  text-align: center;
}

.play-button {
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--lemon);
  clip-path: polygon(35% 24%, 35% 76%, 78% 50%);
}

.video-placeholder strong {
  font-size: clamp(1.7rem, 3.5vw, 3.2rem);
  line-height: 1;
}

.video-placeholder p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.transition-band {
  padding: clamp(36px, 6vw, 76px) clamp(18px, 5vw, 76px);
  background: var(--teal);
  color: white;
  text-align: center;
}

.transition-band p {
  margin: 0 auto;
  max-width: 920px;
  font-size: clamp(1.7rem, 4vw, 4rem);
  font-weight: 950;
  line-height: 1;
}

.transition-dark {
  background:
    linear-gradient(135deg, rgba(249, 248, 113, 0.16), rgba(167, 62, 104, 0.16)),
    var(--teal);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.social-carousel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 14px;
  align-items: center;
}

.social-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 6px 4px 24px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.social-track:focus {
  outline: 3px solid rgba(24, 153, 161, 0.3);
  outline-offset: 8px;
}

.carousel-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(8, 45, 36, 0.1);
}

.carousel-button:hover {
  background: var(--lemon);
}

.social-example {
  flex: 0 0 clamp(260px, 29vw, 390px);
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  scroll-snap-align: center;
  box-shadow: 0 16px 34px rgba(8, 45, 36, 0.1);
}

.social-example img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.social-example h3 {
  margin: 0;
  padding: 16px 18px 18px;
}

.pdf-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pdf-options span {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--lemon);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 950;
}

.pdf-preview {
  position: relative;
  margin: 0;
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: clamp(22px, 4vw, 42px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(249, 248, 113, 0.34), rgba(24, 153, 161, 0.18)),
    var(--mist);
}

.pdf-preview img {
  width: min(390px, 90%);
  max-height: 560px;
  object-fit: contain;
  border-radius: 6px;
  background: white;
  box-shadow: var(--shadow);
}

.benefits {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(249, 248, 113, 0.34), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(167, 62, 104, 0.2), transparent 24%),
    linear-gradient(135deg, #fffdf6 0%, #eef9f5 58%, rgba(24, 153, 161, 0.18) 100%);
}

.benefits-intro {
  max-width: 780px;
  margin: 0 auto 26px;
  text-align: center;
}

.benefit-orbit {
  position: relative;
  min-height: 650px;
  max-width: 1080px;
  margin: 0 auto;
}

.benefit-orbit::before {
  content: "";
  position: absolute;
  inset: 70px 210px;
  border: 2px dashed rgba(24, 153, 161, 0.26);
  border-radius: 50%;
}

.benefit-photo {
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(420px, 52vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 12px solid white;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.benefit-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(24, 153, 161, 0.08), rgba(167, 62, 104, 0.12));
}

.benefit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(280px, 32vw);
  min-height: 88px;
  padding: 15px 18px;
  border: 1px solid rgba(8, 45, 36, 0.12);
  border-radius: 999px;
  background: white;
  box-shadow: 0 18px 42px rgba(8, 45, 36, 0.13);
}

.benefit-icon {
  flex: 0 0 52px;
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
}

.clock-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  border: 4px solid currentColor;
  border-radius: 50%;
}

.clock-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 14px;
  border-top: 4px solid currentColor;
  border-left: 4px solid currentColor;
  transform: translate(3px, -2px);
  transform-origin: bottom left;
}

.benefit-pill strong {
  font-size: 1.02rem;
  line-height: 1.1;
}

.benefit-one {
  top: 54px;
  left: 50%;
  transform: translateX(-50%);
}

.benefit-two {
  top: 172px;
  right: 18px;
}

.benefit-three {
  right: 76px;
  bottom: 116px;
}

.benefit-four {
  bottom: 54px;
  left: 50%;
  transform: translateX(-50%);
}

.benefit-five {
  bottom: 116px;
  left: 76px;
}

.benefit-six {
  top: 172px;
  left: 18px;
}

.benefit-two .benefit-icon,
.benefit-five .benefit-icon {
  background: var(--magenta);
}

.benefit-three .benefit-icon,
.benefit-six .benefit-icon {
  background: var(--green);
}

.benefit-four .benefit-icon {
  background: var(--lemon);
  color: var(--ink);
}

.pricing-section {
  background: var(--mist);
}

.billing-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -6px auto 30px;
}

.billing-toggle {
  display: inline-grid;
  grid-template-columns: minmax(112px, 0.8fr) minmax(176px, 1.2fr);
  width: min(100%, 360px);
  padding: 5px;
  border: 1px solid rgba(8, 45, 36, 0.12);
  border-radius: 8px;
  background: #fffdf6;
  box-shadow: 0 14px 32px rgba(8, 45, 36, 0.1);
}

.billing-toggle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  appearance: none;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.billing-toggle-button:not(.active):hover {
  background: rgba(24, 153, 161, 0.08);
  color: var(--teal);
}

.billing-toggle-button.active {
  background: var(--teal);
  color: white;
  box-shadow: 0 8px 18px rgba(24, 153, 161, 0.2);
}

.billing-toggle-button:focus-visible {
  outline: 3px solid rgba(24, 153, 161, 0.3);
  outline-offset: 3px;
}

.billing-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(8, 174, 120, 0.16);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 950;
  white-space: nowrap;
}

.billing-toggle-button.active .billing-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 340px));
  justify-content: center;
  gap: 22px;
}

.price-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 42px rgba(8, 45, 36, 0.1);
}

.price-card.featured {
  border: 3px solid var(--teal);
}

.price-card ul {
  display: grid;
  gap: 10px;
  min-height: 220px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding-left: 22px;
  background: linear-gradient(var(--green), var(--green)) 0 0.6em / 9px 9px no-repeat;
}

.price {
  margin-bottom: 0;
  font-size: 2.7rem;
  font-weight: 950;
  line-height: 1;
}

.price span {
  font-size: 1rem;
}

.annual {
  min-height: 1.5em;
  color: var(--magenta);
  font-weight: 900;
}

.custom-note {
  max-width: 860px;
  margin: 26px auto 0;
  padding: 14px 18px;
  border-radius: 8px;
  background: white;
  text-align: center;
  font-weight: 800;
}

.final-cta {
  text-align: center;
}

.final-cta p {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
  color: var(--ink-2);
  font-size: 1.15rem;
}

.simple-page {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  min-height: calc(100vh - 70px);
  background:
    linear-gradient(120deg, rgba(24, 153, 161, 0.1), rgba(249, 248, 113, 0.14)),
    var(--paper);
}

.simple-page-copy {
  max-width: 620px;
}

.simple-panel,
.contact-form,
.legal-content {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 42px rgba(8, 45, 36, 0.1);
}

.simple-panel h2,
.legal-content h2 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.08;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full,
.contact-form .button {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 950;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(8, 45, 36, 0.18);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.form-field input,
.form-field select {
  min-height: 48px;
  padding: 0 14px;
}

.form-field textarea {
  resize: vertical;
  min-height: 150px;
  padding: 13px 14px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(24, 153, 161, 0.22);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink-2);
  font-size: 0.9rem;
}

.form-note a {
  color: var(--teal);
  font-weight: 900;
}

.simple-panel ul,
.legal-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.simple-panel li,
.legal-content li {
  padding-left: 22px;
  background: linear-gradient(var(--green), var(--green)) 0 0.6em / 9px 9px no-repeat;
}

.legal-content {
  display: grid;
  gap: 28px;
}

.legal-content section {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.guide-hero {
  min-height: 420px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(24, 153, 161, 0.12), rgba(249, 248, 113, 0.16)),
    var(--paper);
}

.guide-hero > div {
  max-width: 860px;
}

.guide-content {
  background: var(--mist);
}

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

.guide-step,
.feature-guide-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 42px rgba(8, 45, 36, 0.1);
}

.guide-step {
  padding: 26px;
}

.guide-step span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-weight: 950;
}

.guide-step h2,
.feature-guide-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.08;
}

.guide-step p {
  margin-bottom: 0;
  color: var(--ink-2);
}

.feature-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-guide-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Bouton "View more" en bas de chaque carte, aligné même si les listes diffèrent. */
.card-more {
  margin: auto 22px 22px;
  align-self: flex-start;
}

/* ===== Dedicated feature guide pages: one section per feature + video slot ===== */
.guide-feature-section {
  max-width: 760px;
  margin: 0 auto 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.guide-feature-section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}
.guide-feature-section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.15;
}
.feature-video {
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(24, 153, 161, 0.16), rgba(249, 248, 113, 0.18));
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.feature-video video,
.feature-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feature-video-placeholder {
  text-align: center;
  color: var(--ink-2);
  font-weight: 700;
  padding: 20px;
}
.feature-video-placeholder span {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
}
.guide-substeps {
  margin: 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: var(--ink-2);
  line-height: 1.5;
}
.guide-substeps strong { color: var(--ink); }
.guide-soon {
  margin: 0 0 14px;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--magenta);
}
.guide-back {
  display: inline-block;
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

.feature-guide-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--mist);
}

.feature-guide-card h2,
.feature-guide-card ul {
  margin-right: 22px;
  margin-left: 22px;
}

.feature-guide-card h2 {
  margin-top: 22px;
}

.feature-guide-card ul {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  padding: 0;
  list-style: none;
}

.feature-guide-card li {
  padding-left: 22px;
  background: linear-gradient(var(--green), var(--green)) 0 0.6em / 9px 9px no-repeat;
}

/* ===== Full features guide: accordion (text-first, no videos) ===== */
.guide-map {
  max-width: 820px;
  margin: 0 auto 22px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(8, 45, 36, 0.06);
}
.guide-map h2 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--ink);
}
.guide-map p {
  margin: 0 0 10px;
  color: var(--ink-2);
  line-height: 1.5;
}
.guide-map p:last-child { margin-bottom: 0; }
.guide-map ul {
  margin: 0 0 10px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink-2);
  line-height: 1.5;
}
.guide-map strong { color: var(--ink); }
.acc-where {
  margin: 0 0 6px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--ink-2);
  font-size: 0.94rem;
  line-height: 1.45;
}
.acc-where strong { color: var(--ink); }
.guide-acc-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guide-acc {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(8, 45, 36, 0.06);
  overflow: hidden;
}
.guide-acc > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  font-weight: 800;
  color: var(--ink);
}
.guide-acc > summary::-webkit-details-marker { display: none; }
.guide-acc-num {
  flex: none;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  font-size: 0.95rem;
}
.guide-acc-title {
  flex: 1;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.2;
}
.guide-acc-caret {
  flex: none;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--ink-2);
  border-bottom: 2px solid var(--ink-2);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}
.guide-acc[open] > summary .guide-acc-caret { transform: rotate(-135deg); }
.guide-acc[open] > summary { border-bottom: 1px solid var(--line); }
.guide-acc-body { padding: 6px 22px 20px; }
.acc-sub {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.acc-sub:last-child { border-bottom: 0; padding-bottom: 4px; }
.acc-sub h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
  color: var(--ink);
}
.acc-dl {
  display: inline-block;
  margin-top: 12px;
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}
.acc-table-wrap {
  margin-top: 14px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
}
.acc-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.85rem;
}
.acc-table th,
.acc-table td {
  padding: 8px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  white-space: nowrap;
}
.acc-table th:last-child,
.acc-table td:last-child { border-right: 0; }
.acc-table thead th {
  background: var(--mist);
  color: var(--ink);
  font-weight: 800;
}
.acc-table tbody td { color: var(--ink-2); }
.acc-table tbody tr:last-child td { border-bottom: 0; }
.acc-note {
  margin: 14px 0 0;
  font-size: 0.9rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.acc-note strong { color: var(--ink); }
.acc-cols {
  margin: 8px 0 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--ink-2);
  font-size: 0.9rem;
  line-height: 1.5;
}
.acc-cols code {
  background: var(--mist);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.86em;
  color: var(--ink);
}
.acc-cols em { font-style: normal; color: var(--magenta); font-weight: 700; }
.acc-table code { background: none; }
@media (max-width: 640px) {
  .guide-acc > summary { padding: 15px 16px; gap: 12px; }
  .guide-acc-body { padding: 2px 16px 16px; }
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 76px);
  background:
    linear-gradient(135deg, rgba(8, 45, 36, 0.12), rgba(167, 62, 104, 0.18)),
    var(--teal);
  color: white;
}

.site-footer p {
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  color: white;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .split,
  .split-reverse {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .product-preview {
    min-height: 430px;
  }

  .video-shell,
  .pdf-preview {
    min-height: 320px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .simple-page {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .guide-steps,
  .feature-guide-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .billing-toggle {
    width: 100%;
    max-width: 360px;
  }

  .billing-toggle-button {
    flex: 1;
  }

  .price-card ul {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: 3rem;
  }

  .product-preview {
    min-height: 360px;
  }

  .video-shell {
    min-height: 0;
  }

  .device-desktop {
    width: 92%;
  }

  .device-tablet {
    width: 42%;
  }

  .device-phone {
    width: 29%;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefits-intro {
    text-align: left;
  }

  .benefits-intro h2 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .benefit-orbit {
    display: grid;
    gap: 12px;
    min-height: 0;
  }

  .benefit-orbit::before {
    display: none;
  }

  .benefit-photo {
    position: relative;
    top: auto;
    left: auto;
    width: min(300px, 84vw);
    margin: 0 auto 16px;
    transform: none;
  }

  .benefit-pill,
  .benefit-one,
  .benefit-two,
  .benefit-three,
  .benefit-four,
  .benefit-five,
  .benefit-six {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 340px);
    min-height: 70px;
    margin: 0 auto;
    transform: none;
  }

  .benefit-icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
  }

  .benefit-pill strong {
    font-size: 0.98rem;
  }

  .social-carousel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .carousel-button {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }

  .social-example {
    flex-basis: min(74vw, 320px);
  }

  .pdf-preview {
    min-height: 0;
  }

  .pdf-preview img {
    width: min(100%, 330px);
  }


  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
