:root {
  --bg: #0c0c0f;
  --bg-soft: #15161b;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --text: #f5f1df;
  --muted: #b8b29e;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #f2c230;
  --accent-strong: #ffd54d;
  --accent-soft: rgba(242, 194, 48, 0.18);
  --danger: #ffea94;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
  --header-height: 88px;
  --font-heading: "Archivo", "Avenir Next", "Segoe UI", sans-serif;
  --font-body: "Inter", "Avenir Next", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(242, 194, 48, 0.14), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(180deg, #09090b 0%, #0c0c0f 55%, #131419 100%);
  color: var(--text);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button,
summary {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #131313;
}

.skip-link:focus-visible {
  top: 16px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 6rem 0;
  scroll-margin-top: calc(var(--header-height) + 18px);
}

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

.section-heading h2,
h1,
h3,
.brand-title {
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
}

.section-heading h2,
h1 {
  text-wrap: balance;
}

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

h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.16rem, 3.6vw, 4.41rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 3.4vw, 4rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.05;
}

p,
li {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.eyebrow,
.list-label,
.offer-label,
.brand-kicker,
.topic-index {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  font-weight: 700;
}

.eyebrow::before,
.list-label::before,
.offer-label::before,
.brand-kicker::before {
  content: "";
  width: 1.15rem;
  height: 2px;
  background: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(10, 10, 12, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.brand-title {
  max-width: 15ch;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a,
.footer-links a,
.footer-links span {
  color: var(--muted);
  transition: color 180ms ease, opacity 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
  touch-action: manipulation;
}

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

.button:focus-visible,
.nav a:focus-visible,
.footer-links a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.button-sm {
  min-height: 2.85rem;
  padding: 0.75rem 1.1rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ffe07a 100%);
  color: #111;
  box-shadow: 0 12px 40px rgba(242, 194, 48, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 50px rgba(242, 194, 48, 0.3);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.hero-section {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: clip;
}

.hero-backdrop,
.hero-hazard {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-backdrop {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 213, 77, 0.18), transparent 25%),
    radial-gradient(circle at 78% 35%, rgba(255, 255, 255, 0.08), transparent 20%);
}

.hero-hazard {
  background-image: linear-gradient(
    -55deg,
    transparent 0%,
    transparent 40%,
    rgba(242, 194, 48, 0.08) 40%,
    rgba(242, 194, 48, 0.08) 44%,
    transparent 44%,
    transparent 48%,
    rgba(242, 194, 48, 0.08) 48%,
    rgba(242, 194, 48, 0.08) 52%,
    transparent 52%
  );
  opacity: 0.8;
  transform: translateX(22%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 2rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 660px;
}

.hero-lead {
  max-width: 58ch;
  margin-bottom: 1.8rem;
  font-size: clamp(1.08rem, 1.4vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.7rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  color: var(--text);
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  line-height: 1.4;
}

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

.hero-asset-shell {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    linear-gradient(160deg, rgba(242, 194, 48, 0.1), transparent 55%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-asset-shell::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}

.problem-layout,
.author-grid,
.audience-layout {
  display: grid;
  gap: 1.5rem;
}

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

.problem-list,
.problem-outcome,
.contrast-block,
.offer-shell,
.quote,
.author-note,
.faq-item,
.topic-card,
.transformation-card,
.experts-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.problem-list,
.problem-outcome,
.contrast-block,
.topic-card,
.transformation-card,
.experts-panel,
.author-note {
  padding: 1.5rem;
}

.problem-result {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  line-height: 1.1;
}

.signal-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li,
.transformation-card li {
  position: relative;
  padding-left: 1.25rem;
}

.signal-list li + li,
.transformation-card li + li {
  margin-top: 0.8rem;
}

.signal-list li::before,
.transformation-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(242, 194, 48, 0.12);
}

.signal-list-muted li::before {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.topic-card {
  min-height: 100%;
}

.topic-index {
  margin-bottom: 1.4rem;
}

.audience-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: start;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, #fbfcff, #eef2f6);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}

.audience-section .section-heading h2,
.audience-section .section-heading p,
.audience-section .section-heading .eyebrow,
.audience-section .audience-list h3,
.audience-section .audience-list p {
  color: #181719;
}

.audience-section .eyebrow::before {
  background: currentColor;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.audience-list article {
  padding: 1.1rem 1.1rem 1.2rem;
  border-top: 1px solid rgba(24, 23, 25, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 14px 30px rgba(18, 24, 36, 0.08);
  backdrop-filter: blur(14px);
}

.audience-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd84d, #ffbf00);
  color: #181719;
  box-shadow: 0 10px 22px rgba(255, 191, 0, 0.28);
}

.audience-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comparison-shell {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(242, 194, 48, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.comparison-intro {
  max-width: 58ch;
  margin-bottom: 1.5rem;
}

.comparison-table-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.1rem;
  text-align: left;
  vertical-align: top;
}

.comparison-table thead th {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.comparison-table thead th:first-child {
  color: #ffb1a8;
}

.comparison-table thead th:last-child {
  color: #fff0a5;
}

.comparison-table tbody tr:nth-child(odd) td {
  background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.04);
}

.comparison-table tbody td:first-child {
  color: #d9cdc2;
}

.comparison-table tbody td:last-child {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(242, 194, 48, 0.08), rgba(255, 255, 255, 0.03));
}

.compare-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.7rem;
  border-radius: 999px;
  vertical-align: middle;
}

.compare-status svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.compare-status-bad {
  background: rgba(220, 84, 58, 0.18);
  color: #ff9f94;
}

.compare-status-good {
  background: rgba(242, 194, 48, 0.18);
  color: var(--accent-strong);
}

.experts-panel {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.expert-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.expert-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(242, 194, 48, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.expert-body h3 {
  margin-bottom: 0.5rem;
}

.expert-body h3 a,
.expert-body p a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(242, 194, 48, 0.45);
  text-underline-offset: 0.18em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.expert-body h3 a:hover,
.expert-body h3 a:focus-visible,
.expert-body p a:hover,
.expert-body p a:focus-visible {
  color: var(--accent-strong);
  text-decoration-color: var(--accent-strong);
}

.expert-body p {
  margin-bottom: 0;
}

.quote {
  margin: 0;
  padding: 2rem;
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
}

.quote::before {
  content: "“";
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 4.8rem;
  line-height: 1;
  color: rgba(242, 194, 48, 0.2);
  font-family: Georgia, serif;
}

.quote-avatar {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(242, 194, 48, 0.42);
}

.quote-content {
  position: relative;
  z-index: 1;
}

.quote p {
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
  color: var(--text);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  line-height: 1.6;
}

.quote footer {
  color: var(--accent-strong);
  font-weight: 700;
}

.author-grid {
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  align-items: center;
}

.author-visual {
  position: relative;
}

.author-visual::before {
  content: "";
  position: absolute;
  inset: auto 1rem -1rem auto;
  width: 78%;
  height: 78%;
  background:
    linear-gradient(180deg, rgba(242, 194, 48, 0.16), rgba(255, 255, 255, 0.05)),
    linear-gradient(-45deg, transparent 0%, transparent 46%, rgba(242, 194, 48, 0.18) 46%, rgba(242, 194, 48, 0.18) 50%, transparent 50%);
  border-radius: var(--radius-lg);
  filter: blur(0.2px);
}

.author-visual img {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 0.75;
}

.author-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.social-link svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--accent-strong);
  border-color: rgba(242, 194, 48, 0.42);
  background: rgba(242, 194, 48, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(242, 194, 48, 0.12);
}

.social-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.social-link .social-dot {
  fill: currentColor;
  stroke: none;
}

.offer-shell {
  padding: 3rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(242, 194, 48, 0.13), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.offer-lead {
  max-width: 48ch;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.1rem;
}

.offer-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.offer-meta > div {
  min-width: 220px;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.offer-meta strong {
  display: block;
  margin-top: 0.55rem;
  color: var(--text);
  font-size: 1.15rem;
}

.offer-actions {
  justify-content: center;
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 1.5rem;
  color: var(--text);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  flex: none;
  color: var(--accent-strong);
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.5rem 1.5rem;
  max-width: 75ch;
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  width: min(calc(100% - 2rem), 460px);
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 12, 15, 0.9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.cookie-copy {
  margin-bottom: 0.9rem;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
}

.cookie-copy p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cookie-copy a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.cookie-button {
  width: 100%;
}

.policy-page {
  min-height: 100svh;
  padding: 3rem 1rem;
}

.policy-shell {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(242, 194, 48, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.policy-back {
  display: inline-flex;
  margin-bottom: 1.2rem;
  color: var(--accent-strong);
}

.policy-updated {
  margin-bottom: 1.5rem;
}

.policy-section + .policy-section {
  margin-top: 1.6rem;
}

.policy-section ul {
  padding-left: 1.2rem;
}

.footer-grid,
.footer-bottom {
  display: grid;
  gap: 1rem;
}

.footer-grid {
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  align-items: start;
}

.footer-title {
  margin-bottom: 0.7rem;
  color: var(--text);
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 1.6rem;
  margin-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .author-grid,
  .audience-layout,
  .problem-layout,
  .experts-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .topics-grid,
  .audience-list,
  .experts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-section {
    padding-top: 4rem;
  }
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .header-shell {
    gap: 1rem;
  }

  .section {
    padding: 4.7rem 0;
  }

  .topics-grid,
  .audience-list,
  .experts-grid {
    grid-template-columns: 1fr;
  }

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

  .offer-shell {
    padding: 2rem 1.2rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 1rem;
    right: 1rem;
    width: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .hero-proof {
    display: grid;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .button-sm {
    width: 100%;
  }

  .offer-meta {
    gap: 1rem;
  }

  .faq-item summary {
    padding: 1.15rem 1rem;
  }

  .faq-item p {
    padding: 0 1rem 1.1rem;
  }
}
