:root {
  --sage: #8ea99b;
  --sage-dark: #5f8172;
  --powder: #c8dceb;
  --powder-dark: #8fb3c9;
  --cream: #fbf7ee;
  --warm-beige: #efe0c7;
  --mustard: #e6b85c;
  --terracotta: #d98d76;
  --bubblegum: #f2b6a5;
  --navy: #22364a;
  --cta-navy: #182033;
  --navy-soft: #385066;
  --white: #fffdf8;
  --ink: #263238;
  --muted: #66727b;
  --line: rgba(34, 54, 74, 0.12);
  --shadow-sm: 0 10px 30px rgba(34, 54, 74, 0.08);
  --shadow-md: 0 22px 60px rgba(34, 54, 74, 0.14);
  --shadow-lg: 0 34px 90px rgba(34, 54, 74, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1120px;
  --header-height: 70px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  background:
    radial-gradient(circle at top left, rgba(200, 220, 235, 0.76), transparent 34rem),
    radial-gradient(circle at 92% 8%, rgba(230, 184, 92, 0.30), transparent 24rem),
    radial-gradient(circle at 18% 58%, rgba(242, 182, 165, 0.22), transparent 22rem),
    linear-gradient(180deg, var(--cream) 0%, #fffaf0 48%, #f7efe1 100%);
  padding-bottom: 88px;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

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

::selection {
  color: var(--navy);
  background: rgba(230, 184, 92, 0.45);
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 32px, 760px);
  text-align: center;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(34, 54, 74, 0.08);
  background: rgba(251, 247, 238, 0.84);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: end center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(34, 54, 74, 0.12);
  border-radius: 16px 16px 20px 13px;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 8px 20px rgba(34, 54, 74, 0.1);
  overflow: hidden;
}

.brand-rainbow,
.brand-rainbow::before,
.brand-rainbow::after {
  position: absolute;
  left: 50%;
  bottom: 12px;
  border-style: solid;
  border-color: transparent;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  transform: translateX(-50%);
  content: "";
}

.brand-rainbow {
  width: 34px;
  height: 17px;
  border-width: 5px 5px 0;
  border-top-color: var(--sage-dark);
}

.brand-rainbow::before {
  width: 24px;
  height: 12px;
  bottom: 0;
  border-width: 5px 5px 0;
  border-top-color: var(--mustard);
}

.brand-rainbow::after {
  width: 14px;
  height: 7px;
  bottom: 0;
  border-width: 5px 5px 0;
  border-top-color: var(--terracotta);
}

.brand-heart {
  position: relative;
  z-index: 1;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.72rem;
  line-height: 1;
}

.brand-text {
  font-size: 0.98rem;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 20px;
  color: var(--navy-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.header-nav a,
.footer-links a {
  text-decoration: none;
}

.header-nav a:hover,
.footer-links a:hover {
  color: var(--sage-dark);
}

.header-cta {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px 999px 999px 24px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn:focus-visible {
  outline: 3px solid rgba(230, 184, 92, 0.75);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  box-shadow: 0 14px 32px rgba(95, 129, 114, 0.28), inset 0 -3px 0 rgba(34, 54, 74, 0.12);
}

.btn-primary:hover {
  box-shadow: 0 18px 42px rgba(95, 129, 114, 0.36);
}

.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.78;
}

.hero-actions .btn-primary,
.purchase-section .btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, #f0c76d, var(--mustard) 55%, var(--bubblegum));
  box-shadow: 0 18px 42px rgba(216, 141, 118, 0.32), inset 0 -4px 0 rgba(34, 54, 74, 0.12);
}

.hero-actions .btn-primary:hover,
.purchase-section .btn-primary:hover {
  box-shadow: 0 22px 54px rgba(216, 141, 118, 0.42), inset 0 -4px 0 rgba(34, 54, 74, 0.14);
}

.btn-secondary {
  color: var(--navy);
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(34, 54, 74, 0.12);
  box-shadow: var(--shadow-sm);
}

.btn-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.92rem;
}

.btn-large {
  min-height: 54px;
  padding: 16px 24px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 42px 0 70px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10% auto auto -130px;
  width: 260px;
  height: 260px;
  border-radius: 42% 58% 52% 48%;
  background: rgba(216, 141, 118, 0.08);
  filter: blur(4px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 7px 12px;
  border: 1px solid rgba(34, 54, 74, 0.09);
  border-radius: 999px 999px 999px 16px;
  color: var(--sage-dark);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 8px 22px rgba(34, 54, 74, 0.05);
  font-size: clamp(0.88rem, 2.6vw, 0.96rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  transform: rotate(-1deg);
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--mustard);
  box-shadow: 13px 0 0 var(--terracotta);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.55rem, 12vw, 5.7rem);
}

.highlight-number {
  position: relative;
  display: inline-block;
  color: var(--terracotta);
  white-space: nowrap;
  transform: rotate(-2deg);
}

.highlight-number::after {
  content: "";
  position: absolute;
  right: 0.05em;
  bottom: 0.04em;
  left: 0.05em;
  z-index: -1;
  height: 0.22em;
  border-radius: 999px;
  background: rgba(230, 184, 92, 0.48);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 3.75rem);
}

h3 {
  margin: 0;
  font-size: clamp(1.16rem, 4vw, 1.45rem);
}

.hero-subtitle,
.section-intro {
  color: var(--navy-soft);
  font-size: clamp(1.08rem, 4vw, 1.35rem);
}

.hero-subtitle {
  max-width: 650px;
  margin: 18px 0 0;
}

.repeat-counter {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  max-width: 600px;
  margin: 22px 0 0;
  padding: 14px 16px;
  border: 2px dashed rgba(230, 184, 92, 0.78);
  border-radius: 28px 20px 30px 18px;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 14px 34px rgba(34, 54, 74, 0.08);
  transform: rotate(-0.6deg);
}

.counter-number {
  color: var(--navy);
  font-size: clamp(2.6rem, 13vw, 4.6rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.86;
}

.counter-copy {
  color: var(--navy-soft);
  font-size: clamp(0.98rem, 3.5vw, 1.08rem);
  font-weight: 780;
  line-height: 1.25;
}

.section-intro {
  margin: 16px auto 0;
}

.price-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 530px;
  margin: 24px 0 0;
  padding: 16px;
  border: 1px solid rgba(34, 54, 74, 0.1);
  border-radius: 26px 18px 30px 20px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow-sm);
  transform: rotate(0.5deg);
}

.price {
  display: block;
  color: var(--navy);
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-note {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(230, 184, 92, 0.28);
  font-size: 0.88rem;
  font-weight: 850;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.hero-discovery {
  margin: 12px 0 0;
  color: var(--navy-soft);
  font-size: 0.95rem;
  font-weight: 760;
}

.hero-discovery a {
  color: var(--sage-dark);
  text-decoration-color: rgba(95, 129, 114, 0.35);
  text-underline-offset: 4px;
}

.trust-list,
.check-list,
.feature-list,
.benefit-list,
.mini-reassurance {
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  color: var(--navy-soft);
  font-weight: 720;
}

.trust-list li,
.check-list li,
.feature-list li,
.mini-reassurance li {
  position: relative;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.trust-list span {
  display: inline-grid;
  flex: 0 0 24px;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: var(--white);
  background: var(--sage);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.product-stack {
  position: relative;
  max-width: 660px;
  margin: 0 auto;
  padding: 8px 0 50px;
}

.product-stack::before {
  content: "";
  position: absolute;
  inset: 14% 2% 8% 2%;
  border-radius: 46% 54% 52% 48%;
  background: linear-gradient(135deg, rgba(200, 220, 235, 0.72), rgba(142, 169, 155, 0.32));
  transform: rotate(-3deg);
}

.product-card,
.image-frame,
.gallery-card {
  overflow: hidden;
  border: 10px solid rgba(255, 253, 248, 0.96);
  border-radius: 34px 28px 42px 24px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.product-card {
  position: relative;
  margin: 0;
}

.product-card-front {
  z-index: 2;
  transform: rotate(-1.5deg);
}

.product-card-back {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 54%;
  border-width: 7px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  transform: rotate(5deg);
}

.visual-caption {
  max-width: 580px;
  margin: 18px auto 0;
  color: var(--navy-soft);
  font-size: 0.98rem;
  font-weight: 720;
  text-align: center;
}

.section {
  padding: 66px 0;
}

.problem-section {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0), rgba(255, 253, 248, 0.72));
}

.card-grid,
.steps-grid,
.gallery-grid,
.practical-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.soft-card,
.step-card,
.soft-panel,
.highlight-card,
.checkout-box,
.info-card,
.timeline-item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 28px 20px 32px 18px;
  background: rgba(255, 253, 248, 0.80);
  box-shadow: var(--shadow-sm);
}

.soft-card {
  padding: 22px;
}

.soft-card::after,
.step-card::after,
.timeline-item::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 18px;
  width: 38px;
  height: 11px;
  border-radius: 999px;
  background: rgba(230, 184, 92, 0.30);
  transform: rotate(8deg);
}

.soft-card:nth-child(2),
.timeline-item:nth-child(2) {
  border-radius: 22px 34px 20px 30px;
}

.soft-card:nth-child(3),
.step-card:nth-child(4) {
  border-radius: 34px 20px 26px 32px;
}

.card-icon,
.step-emoji {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 18px 14px 22px 13px;
  background: rgba(200, 220, 235, 0.55);
  font-size: 1.55rem;
  transform: rotate(-3deg);
}

.soft-card:nth-child(2) .card-icon,
.step-card:nth-child(2) .step-emoji,
.step-card:nth-child(5) .step-emoji {
  background: rgba(142, 169, 155, 0.24);
}

.soft-card:nth-child(3) .card-icon,
.step-card:nth-child(3) .step-emoji {
  background: rgba(230, 184, 92, 0.28);
}

.soft-card p,
.step-card p,
.timeline-item p,
.info-card p {
  margin: 10px 0 0;
  color: var(--navy-soft);
}

.soft-card p,
.step-card p,
.timeline-item p,
.info-card p,
.gallery-card figcaption,
.feature-list li,
.check-list li {
  font-size: 1rem;
}

.split-grid,
.two-columns {
  display: grid;
  gap: 26px;
  align-items: center;
}

.solution-section {
  position: relative;
  overflow: clip;
}

.solution-section::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: 40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(200, 220, 235, 0.42);
  pointer-events: none;
}

.parent-quote {
  position: relative;
  margin: 24px 0 0;
  padding: 22px;
  border: 0;
  border-radius: 28px 20px 32px 18px;
  color: var(--navy);
  background: rgba(142, 169, 155, 0.13);
  transform: rotate(-0.8deg);
  font-size: clamp(1.25rem, 5vw, 1.65rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.highlight-card,
.soft-panel,
.checkout-box {
  padding: 24px;
}

.highlight-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.92), rgba(232, 241, 232, 0.84));
  transform: rotate(0.7deg);
}

.check-list,
.feature-list,
.mini-reassurance {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.check-list li,
.feature-list li,
.mini-reassurance li {
  padding-left: 30px;
  color: var(--navy-soft);
}

.check-list li::before,
.feature-list li::before,
.mini-reassurance li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 999px;
  color: var(--white);
  background: var(--sage);
  font-size: 0.72rem;
  font-weight: 900;
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.timeline-item {
  position: relative;
  padding: 24px;
}

.timeline-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 15px 12px 18px 10px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--mustard), #f3d99b);
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(230, 184, 92, 0.25);
  transform: rotate(-5deg);
}

.steps-section,
.gallery-section {
  background: rgba(255, 253, 248, 0.5);
}

.step-card {
  padding: 22px;
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.95), rgba(255, 248, 232, 0.82));
}

.step-card:nth-child(even)::after {
  right: auto;
  left: 18px;
  background: rgba(200, 220, 235, 0.45);
  transform: rotate(-9deg);
}

.step-card:nth-child(4) .step-emoji {
  background: rgba(216, 141, 118, 0.2);
}

.receive-section .btn {
  margin-top: 24px;
}

.image-frame {
  margin: 0;
}

.audience-benefits {
  background:
    linear-gradient(135deg, rgba(142, 169, 155, 0.14), rgba(200, 220, 235, 0.24)),
    rgba(255, 253, 248, 0.35);
}

.audience-benefits h2 {
  font-size: clamp(1.8rem, 6vw, 3rem);
}

.soft-panel {
  align-self: stretch;
  background: rgba(255, 253, 248, 0.82);
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--navy-soft);
}

.benefit-list span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 16px 13px 19px 12px;
  background: rgba(200, 220, 235, 0.55);
  font-size: 1.25rem;
  transform: rotate(-2deg);
}

.gallery-card {
  margin: 0;
  border-width: 8px;
}

.gallery-card figcaption {
  padding: 14px 16px 16px;
  color: var(--navy-soft);
  font-weight: 760;
  background: rgba(255, 253, 248, 0.96);
}

.purchase-section {
  padding-top: 76px;
}

.purchase-card {
  display: grid;
  gap: 24px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(34, 54, 74, 0.1);
  border-radius: 34px 22px 42px 24px;
  background:
    radial-gradient(circle at top right, rgba(230, 184, 92, 0.34), transparent 18rem),
    linear-gradient(135deg, rgba(34, 54, 74, 0.96), rgba(56, 80, 102, 0.94));
  box-shadow: var(--shadow-lg);
}

.purchase-card h2,
.purchase-card p,
.purchase-card .section-kicker,
.purchase-card .mini-reassurance li {
  color: var(--white);
}

.purchase-card .section-kicker::before {
  background: var(--mustard);
  box-shadow: 14px 0 0 var(--powder);
}

.purchase-copy p {
  margin: 14px 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.08rem;
}

.purchase-card .mini-reassurance li {
  color: rgba(255, 253, 248, 0.84);
}

.purchase-card .mini-reassurance li::before {
  color: var(--navy);
  background: var(--mustard);
}

.checkout-box {
  background: rgba(255, 253, 248, 0.95);
  text-align: center;
}

.checkout-label {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-box strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: clamp(2.5rem, 12vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.checkout-box > span:last-of-type {
  display: block;
  margin: 6px 0 20px;
  color: var(--navy-soft);
  font-weight: 750;
}

.small-note {
  margin: 14px 0 0 !important;
  color: var(--muted) !important;
  font-size: 0.82rem !important;
}

code {
  padding: 0.12em 0.32em;
  border-radius: 6px;
  color: var(--navy);
  background: rgba(200, 220, 235, 0.45);
  font-size: 0.92em;
}

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

details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px 16px 24px 18px;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 8px 20px rgba(34, 54, 74, 0.05);
}

summary {
  position: relative;
  padding: 18px 54px 18px 18px;
  color: var(--navy);
  font-weight: 870;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(230, 184, 92, 0.32);
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--navy-soft);
}

.practical-section {
  padding-top: 52px;
}

.practical-grid {
  align-items: stretch;
}

.info-card {
  padding: 20px;
}

.info-card a {
  color: var(--sage-dark);
  font-weight: 800;
}

.site-footer {
  padding: 40px 0 110px;
  border-top: 1px solid rgba(34, 54, 74, 0.09);
  background: rgba(251, 247, 238, 0.86);
}

.footer-inner {
  display: grid;
  gap: 24px;
}

.footer-brand {
  margin-bottom: 10px;
}

.site-footer p {
  max-width: 420px;
  margin: 0;
  color: var(--navy-soft);
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--navy-soft);
  font-weight: 760;
}

.mobile-sticky-cta {
  position: fixed;
  z-index: 60;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(34, 54, 74, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 -8px 24px rgba(24, 32, 51, 0.08);
  backdrop-filter: blur(18px);
}

.mobile-sticky-cta span {
  padding-left: 8px;
  color: var(--navy-soft);
  font-size: 0.88rem;
  line-height: 1.2;
}

.mobile-sticky-cta strong {
  display: block;
  color: var(--navy);
}

.mobile-sticky-cta .btn {
  min-height: 44px;
  padding: 11px 16px;
  white-space: nowrap;
}

@media (min-width: 560px) {
  body {
    padding-bottom: 96px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .btn {
    flex: 0 0 auto;
  }

  .card-grid,
  .steps-grid,
  .gallery-grid,
  .practical-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-card-wide {
    grid-column: span 2;
  }

  .mobile-sticky-cta {
    right: 24px;
    bottom: 24px;
    left: auto;
    width: min(420px, calc(100% - 48px));
  }
}

@media (min-width: 760px) {
  .container,
  .narrow {
    width: min(100% - 48px, var(--container));
  }

  .narrow {
    width: min(100% - 48px, 780px);
  }

  .header-nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex !important;
  }

  .hero {
    padding: 64px 0 96px;
  }

  .hero-grid,
  .split-grid,
  .two-columns {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .hero-grid {
    gap: 52px;
  }

  .reverse-mobile .image-frame {
    order: 0;
  }

  .problem-grid,
  .timeline,
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .step-card-wide {
    grid-column: span 1;
  }

  .timeline-item {
    padding: 28px;
  }

  .soft-card:nth-child(1),
  .step-card:nth-child(2),
  .timeline-item:nth-child(1) {
    transform: rotate(-1deg);
  }

  .soft-card:nth-child(2),
  .step-card:nth-child(3),
  .timeline-item:nth-child(2) {
    transform: rotate(0.8deg);
  }

  .soft-card:nth-child(3),
  .step-card:nth-child(5),
  .timeline-item:nth-child(3) {
    transform: rotate(-0.6deg);
  }

  .purchase-card {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: center;
    padding: 42px;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    align-items: start;
  }

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

@media (min-width: 980px) {
  body {
    padding-bottom: 0;
  }

  .section {
    padding: 86px 0;
  }

  .hero-copy {
    padding-top: 18px;
  }

  .price-card {
    padding: 18px;
  }

  .soft-card,
  .step-card,
  .highlight-card,
  .soft-panel,
  .checkout-box,
  .info-card {
    padding: 28px;
  }

  .gallery-grid {
    gap: 28px;
  }

  .practical-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer {
    padding-bottom: 46px;
  }

  .mobile-sticky-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Audit UX/UI 2026-05-13 — CTA, lisibilité et réassurance */
:root {
  --btn-min-height: 48px;
  --radius-pill: 999px;
}

.hero h1 {
  font-size: clamp(2.2rem, 8vw, 4.5rem);
}

.btn {
  min-height: var(--btn-min-height);
  padding: 0 1.5rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.btn-small {
  min-height: 44px;
  padding: 0 1rem;
}

.btn-large {
  min-height: 52px;
  padding: 0 1.5rem;
}

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.75rem;
}

.cta-group .btn {
  width: 100%;
}

.hero-actions .btn-secondary {
  color: var(--sage-dark);
  border: 1px solid rgba(95, 129, 114, 0.45);
  background: rgba(255, 253, 248, 0.94);
}

.hero-discovery {
  display: none;
}

.reassurance-line {
  margin: 18px 0 0;
  color: var(--navy-soft);
  font-weight: 760;
}

.expectation-section {
  background: rgba(255, 253, 248, 0.52);
}

.expectation-section .section-intro {
  max-width: 820px;
}

.purchase-card .checkout-status {
  color: var(--navy) !important;
  font-weight: 800;
}

.checkout-box .small-note + .small-note {
  margin-top: 6px !important;
}

@media (min-width: 560px) {
  .cta-group {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
  }

  .cta-group .btn {
    width: auto;
  }
}

@media (max-width: 559px) {
  .mobile-sticky-cta {
    border-radius: 24px;
  }

  .mobile-sticky-cta .btn {
    min-width: 128px;
  }
}


/* Ajustements conversion 2026-05-13 — CTA navy, humour mesuré, lisibilité mobile */
.btn-primary,
.hero-actions .btn-primary,
.purchase-section .btn-primary,
.mobile-sticky-cta .btn-primary,
.header-cta.btn-primary,
a[data-buy-link].btn-primary {
  color: var(--white);
  background: var(--cta-navy);
  box-shadow: 0 16px 38px rgba(24, 32, 51, 0.22), inset 0 -3px 0 rgba(255, 253, 248, 0.10);
}

.btn-primary:hover,
.hero-actions .btn-primary:hover,
.purchase-section .btn-primary:hover,
.mobile-sticky-cta .btn-primary:hover,
.header-cta.btn-primary:hover,
a[data-buy-link].btn-primary:hover {
  box-shadow: 0 20px 48px rgba(24, 32, 51, 0.28), inset 0 -3px 0 rgba(255, 253, 248, 0.12);
}

.eyebrow {
  padding: 9px 18px 9px 15px;
  overflow: visible;
}

.eyebrow::before {
  flex: 0 0 9px;
}

.parent-quote {
  box-shadow: 0 14px 34px rgba(34, 54, 74, 0.06);
}

.mustard-highlight {
  display: inline;
  padding: 0.02em 0.18em 0.06em;
  border-radius: 0.4em;
  color: var(--navy);
  background: rgba(230, 184, 92, 0.36);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.microcopy,
.checkout-microcopy {
  margin: 12px 0 0;
  color: var(--navy-soft);
  font-weight: 780;
}

.microcopy {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 18px 14px 20px 12px;
  background: rgba(230, 184, 92, 0.16);
}

.checkout-microcopy {
  margin-bottom: 12px;
  color: var(--navy);
}

@media (max-width: 559px) {
  .hero::before {
    inset: 2% auto auto -190px;
    opacity: 0.3;
  }

  .hero h1 {
    font-size: 2.25rem;
    line-height: 1.05;
  }
}


/* Hero impact 2026-05-13 — retour de l'accroche 147 */
.hero-title {
  display: grid;
  gap: 0.06em;
  max-width: 760px;
}

.hero-title-line {
  display: block;
}

.hero-title-spotlight {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  width: fit-content;
  margin: 0.02em 0 0.04em;
  padding: 0.02em 0.18em 0.08em;
  border: 2px solid rgba(24, 32, 51, 0.08);
  border-radius: 0.32em 0.24em 0.38em 0.22em;
  color: var(--cta-navy);
  background: linear-gradient(135deg, rgba(230, 184, 92, 0.58), rgba(255, 253, 248, 0.88) 68%);
  box-shadow: 0 16px 36px rgba(230, 184, 92, 0.20), 0 7px 0 rgba(216, 141, 118, 0.18);
  transform: rotate(-1.4deg);
}

.hero-title-spotlight::after {
  content: "";
  position: absolute;
  right: 0.18em;
  bottom: 0.08em;
  left: 0.18em;
  z-index: -1;
  height: 0.2em;
  border-radius: 999px;
  background: rgba(216, 141, 118, 0.30);
}

.hero-title-spotlight span {
  margin-right: 0.09em;
  color: var(--cta-navy);
  font-size: 1.36em;
  letter-spacing: -0.09em;
  line-height: 0.82;
  text-shadow: 0 3px 0 rgba(255, 253, 248, 0.82), 0 10px 18px rgba(24, 32, 51, 0.16);
}

.hero-subtitle strong {
  color: var(--navy);
  font-weight: 920;
}

.repeat-counter {
  margin-top: 18px;
}

@media (max-width: 559px) {
  .hero-title {
    gap: 0.02em;
  }

  .hero-title-spotlight {
    padding: 0 0.16em 0.07em;
    box-shadow: 0 12px 26px rgba(230, 184, 92, 0.18), 0 5px 0 rgba(216, 141, 118, 0.16);
  }

  .hero-subtitle {
    margin-top: 14px;
    font-size: 1.02rem;
    line-height: 1.36;
  }

  .price-card {
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .repeat-counter {
    margin-top: 16px;
  }
}


@media (max-width: 430px) {
  .repeat-counter {
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 12px 14px;
  }

  .counter-number {
    font-size: 2.45rem;
  }

  .counter-copy {
    font-size: 0.92rem;
    line-height: 1.18;
  }
}
