:root {
  --color-black: #070707;
  --color-charcoal: #101010;
  --color-dark-card: #141414;
  --color-gold: #d6a354;
  --color-gold-light: #f0c878;
  --color-ivory: #f8f3eb;
  --color-white: #ffffff;
  --color-muted: #b8b8b8;
  --color-border-dark: rgba(255, 255, 255, 0.12);
  --color-border-light: rgba(0, 0, 0, 0.08);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 16px 42px rgba(25, 20, 13, 0.12);
  --font-heading: Georgia, "Times New Roman", serif;
  --font-body: Arial, Helvetica, sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 92px; }
body {
  margin: 0;
  color: var(--color-white);
  background: var(--color-black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 48px;
  background: rgba(5, 5, 5, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}
.brand {
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 700;
  white-space: nowrap;
  color: #f5f0e7;
}
.brand span { color: var(--color-gold); }
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  color: #e8e2d8;
}
.main-nav a {
  position: relative;
  padding: 28px 0 24px;
}
.main-nav a.active,
.main-nav a:hover { color: var(--color-gold-light); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 13px;
  width: 70px;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}
.lang-switch {
  margin-left: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 800;
}
.lang-switch a {
  padding: 6px 9px;
  border-radius: 3px;
  color: #bdb6ac;
  transition: background 180ms ease, color 180ms ease;
}
.lang-switch a:hover,
.lang-switch a.active-lang {
  color: var(--color-gold-light);
  background: rgba(214, 163, 84, 0.12);
}
.lang-sep {
  color: rgba(255, 255, 255, 0.2);
  font-weight: 400;
}
.nav-cta {
  margin-left: 16px;
  min-width: 120px;
  padding: 14px 24px;
  border-radius: 4px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: #18120a;
  background: linear-gradient(180deg, var(--color-gold-light), var(--color-gold));
  box-shadow: 0 10px 28px rgba(214, 163, 84, 0.25);
}
.mobile-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border-dark);
  border-radius: 4px;
  background: transparent;
}
.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-gold-light);
}

.hero {
  position: relative;
  min-height: 590px;
  padding-top: 72px;
  overflow: hidden;
  background: #050505;
}
.hero-bg {
  position: absolute;
  inset: 72px 0 0 auto;
  width: 72%;
  height: calc(100% - 72px);
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 72px 0 0;
  background:
    radial-gradient(circle at 66% 38%, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.28) 35%, rgba(0, 0, 0, 0.78) 78%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.98) 0%, rgba(3, 3, 3, 0.83) 34%, rgba(3, 3, 3, 0.2) 62%, rgba(3, 3, 3, 0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 75px 0 88px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--color-gold-light);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.eyebrow.center { text-align: center; }
h1, h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}
h1 {
  max-width: 500px;
  font-size: clamp(46px, 5.1vw, 72px);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}
h2 {
  text-align: center;
  color: inherit;
  font-size: clamp(32px, 3vw, 48px);
}
.hero-copy {
  max-width: 430px;
  margin: 34px 0 28px;
  color: #efe9de;
  font-size: 15px;
  font-weight: 700;
}
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #160f07;
  background: linear-gradient(180deg, var(--color-gold-light), var(--color-gold));
  box-shadow: 0 16px 36px rgba(214, 163, 84, 0.25);
}
.btn-secondary {
  gap: 10px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(6, 6, 6, 0.38);
}
.play-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  color: var(--color-gold-light);
  font-size: 9px;
}

.stats-wrap {
  position: relative;
  z-index: 3;
  margin-top: -44px;
  background: linear-gradient(180deg, transparent 0, transparent 44px, var(--color-ivory) 44px);
  padding-bottom: 46px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--color-border-dark);
  border-radius: 8px;
  background: linear-gradient(180deg, #171717, #0b0b0b);
  box-shadow: var(--shadow-dark);
}
.stat-card {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.stat-card:first-child { border-left: 0; }
.stat-card img { width: 42px; height: 42px; object-fit: contain; margin-bottom: 8px; }
.stat-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 43px;
  line-height: 1;
  font-weight: 500;
}
.stat-card span {
  margin-top: 8px;
  color: #f5f1e9;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.section { padding: 72px 0; }
.light {
  color: #1b1b1b;
  background: var(--color-ivory);
}
.dark {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0)),
    var(--color-black);
}
.how { padding-top: 0; }
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 54px;
  margin-top: 34px;
}
.steps::before {
  content: "";
  position: absolute;
  top: 57px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,163,84,.65), transparent);
}
.step-card {
  position: relative;
  min-height: 208px;
  padding: 36px 22px 24px;
  text-align: center;
  border: 1px solid var(--color-border-light);
  border-radius: 7px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.step-number {
  position: absolute;
  top: -17px;
  left: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, var(--color-gold-light), var(--color-gold));
  font-weight: 900;
}
.step-card img { width: 42px; height: 42px; object-fit: contain; margin: 0 auto 18px; }
.step-card h3,
.feature-grid h3,
.safety h3,
.app-features h3 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
}
.step-card p {
  margin: 0;
  color: #505050;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.choose {
  padding: 42px 0 72px;
  background-image: radial-gradient(circle at 50% 0, rgba(214,163,84,.08), transparent 28%), linear-gradient(135deg, rgba(255,255,255,.025) 25%, transparent 25%);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.feature-grid article {
  min-height: 168px;
  padding: 26px 17px 22px;
  text-align: center;
  border: 1px solid var(--color-border-dark);
  border-radius: 7px;
  background: linear-gradient(180deg, #171717, #111);
}
.feature-grid img,
.safety article img,
.app-features img { width: 38px; height: 38px; object-fit: contain; margin: 0 auto 16px; }
.feature-grid p,
.safety p,
.app-features p {
  margin: 0;
  color: #d8d3cb;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
}

.benefits {
  position: relative;
  overflow: hidden;
  min-height: 405px;
  color: #191919;
  background: #fbf8f1;
}
.benefit-photo {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34%;
  height: 100%;
  object-fit: cover;
}
.benefit-left { left: 0; object-position: center; }
.benefit-right { right: 0; object-position: center; }
.benefits::before,
.benefits::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 38%;
  z-index: 1;
}
.benefits::before { left: 0; background: linear-gradient(90deg, rgba(248,243,235,0) 0%, rgba(248,243,235,.97) 82%); }
.benefits::after { right: 0; background: linear-gradient(270deg, rgba(248,243,235,0) 0%, rgba(248,243,235,.97) 82%); }
.benefits-inner {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 32px 0 34px;
}
.benefit-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 30px;
}
.benefit-columns article + article { border-left: 1px solid rgba(0,0,0,.13); padding-left: 48px; }
.benefit-columns h3 {
  margin: 0 0 18px;
  color: var(--color-gold);
  font-size: 18px;
}
.benefit-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.benefit-columns li {
  position: relative;
  margin: 0 0 14px;
  padding-left: 27px;
  color: #3a352e;
  font-size: 12px;
  font-weight: 700;
}
.benefit-columns li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: inset 0 0 0 4px #f8ead3;
}

.app-section { padding: 62px 0 38px; }
.app-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  align-items: center;
  gap: 40px;
}
.app-copy h2 {
  text-align: left;
  font-size: clamp(34px, 3.6vw, 50px);
}
.app-copy p:not(.eyebrow) {
  color: #d8d3cb;
  max-width: 320px;
  font-weight: 700;
}
.store-badges {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.store-badges a {
  min-width: 132px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 6px;
  color: #fff;
  background: #050505;
  font-size: 10px;
  line-height: 1.05;
}
.store-badges strong { font-size: 17px; }
.phone-stage {
  align-self: end;
  display: flex;
  justify-content: center;
  min-height: 292px;
  overflow: hidden;
}
.phone-stage img {
  width: min(365px, 100%);
  object-fit: contain;
  object-position: bottom;
}
.app-features { display: grid; gap: 20px; }
.app-features article {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 14px;
  align-items: start;
}
.app-features img { margin: 0; }
.app-features h3 { color: var(--color-gold-light); margin-bottom: 3px; }

.testimonials { padding: 46px 0 50px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.testimonial-card {
  min-height: 176px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--color-border-light);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 10px 32px rgba(0,0,0,.06);
}
.testimonial-card img {
  justify-self: center;
  align-self: start;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card blockquote {
  grid-column: 2;
  margin: 0 0 14px;
  color: #444;
  font-size: 13px;
  font-weight: 700;
}
.testimonial-card strong,
.testimonial-card span { grid-column: 2; font-size: 12px; }
.testimonial-card span { color: #6c6c6c; margin-top: -12px; }
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d5d0c7;
}
.dots .active { background: var(--color-gold); }

.safety { padding: 62px 0; }
.safety-layout {
  display: grid;
  grid-template-columns: 1.65fr repeat(4, 1fr);
  gap: 0;
}
.safety-intro,
.safety article {
  padding: 0 30px;
  border-left: 1px solid rgba(255,255,255,.12);
}
.safety-intro { padding-left: 0; border-left: 0; }
.safety-intro h2 { text-align: left; font-size: 38px; }
.safety-intro p:not(.eyebrow) { color: #d8d3cb; font-size: 12px; font-weight: 700; }
.safety article { text-align: center; }
.safety h3 { color: var(--color-gold-light); }

.faq { padding: 46px 0 56px; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 28px;
}
.faq-item {
  border: 1px solid rgba(0,0,0,.13);
  border-bottom: 0;
  background: rgba(255,255,255,.6);
}
.faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,.13); }
.faq-question {
  width: 100%;
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 0;
  color: #34302c;
  background: transparent;
  font: 800 13px var(--font-body);
  text-align: left;
  cursor: pointer;
}
.faq-question span {
  color: #4d4944;
  font-size: 18px;
}
.faq-item p {
  display: none;
  margin: 0;
  padding: 0 18px 16px;
  color: #4c4740;
  font-size: 12px;
  font-weight: 700;
}
.faq-item.is-open p { display: block; }
.faq-more {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  font-weight: 700;
  color: #4c4740;
}
.faq-more a {
  color: var(--color-gold);
  text-decoration: underline;
}

.final-cta {
  position: relative;
  min-height: 228px;
  overflow: hidden;
  background: #050505;
}
.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.9), rgba(0,0,0,.6) 42%, rgba(0,0,0,.18));
}
.cta-content {
  position: relative;
  z-index: 1;
  padding: 34px 0;
}
.cta-content h2 {
  text-align: left;
  font-size: clamp(36px, 4vw, 55px);
}
.cta-content p {
  max-width: 490px;
  color: #ece6dc;
  font-weight: 700;
}

.site-footer {
  padding: 34px 0 20px;
  color: #d9d3c9;
  background: #070707;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(4, 1fr);
  gap: 46px;
}
.footer-brand p {
  max-width: 270px;
  color: #bdb6ac;
  font-size: 11px;
  font-weight: 700;
}
.footer-grid h3 {
  margin: 0 0 13px;
  color: #efe9de;
  font-size: 10px;
  text-transform: uppercase;
}
.footer-grid a:not(.brand) {
  display: block;
  margin-bottom: 8px;
  color: #bdb6ac;
  font-size: 10px;
  font-weight: 700;
}
.socials { display: flex; gap: 14px; margin-top: 18px; }
.socials a {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #fff !important;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.copyright {
  margin: 26px 0 0;
  color: #a9a196;
  text-align: center;
  font-size: 10px;
}

.simple-page {
  min-height: 100vh;
  padding-top: 72px;
  color: #1b1b1b;
  background: var(--color-ivory);
  overflow-x: hidden;
}
.page-hero {
  padding: 88px 0 54px;
  color: #fff;
  background: radial-gradient(circle at 70% 20%, rgba(214,163,84,.18), transparent 30%), #090909;
}
.page-hero h1 { max-width: 780px; font-size: clamp(42px, 5vw, 70px); }
.page-hero p { max-width: 650px; color: #ddd5c9; font-weight: 700; }
.page-content { padding: 58px 0; }
.content-card {
  min-width: 0;
  padding: 36px;
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.content-card h2 {
  margin: 0 0 18px;
  color: #171717;
  text-align: left;
  font-size: 34px;
}
.content-card p,
.content-card li { color: #4a4540; font-weight: 700; }
.content-card .eyebrow { color: var(--color-gold); }
.page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.page-grid.two { grid-template-columns: repeat(2, 1fr); }
.lux-card {
  padding: 28px;
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.lux-card.dark-card {
  color: #fff;
  border-color: var(--color-border-dark);
  background: linear-gradient(180deg, #171717, #0d0d0d);
}
.lux-card h2,
.lux-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.1;
}
.lux-card h3 { font-size: 25px; color: #171717; }
.lux-card.dark-card h3 { color: #fff; }
.lux-card p,
.lux-card li {
  color: #4a4540;
  font-weight: 700;
}
.lux-card.dark-card p,
.lux-card.dark-card li { color: #d8d3cb; }
.page-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: stretch;
  min-width: 0;
}
.page-media {
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow-dark);
}
.page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.number-list {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.number-list li {
  position: relative;
  padding-left: 48px;
}
.number-list li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-gold);
  font-weight: 900;
}
.number-list { counter-reset: item; }
.article-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.article-card {
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.article-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.article-card div { padding: 22px; }
.article-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.1;
}
.article-card p,
.article-card span {
  color: #4a4540;
  font-weight: 700;
}
.article-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--color-gold);
  font-size: 11px;
  text-transform: uppercase;
}
.policy-section {
  display: grid;
  gap: 22px;
}
.policy-section h3 {
  margin-top: 0;
  color: #171717;
  font-size: 25px;
}
.mini-cta {
  margin-top: 42px;
  padding: 36px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.72)), url("../images/final-cta-luxury-dating.jpg") center/cover;
}
.mini-cta h2 {
  text-align: left;
  font-size: 36px;
}
.mini-cta p {
  max-width: 680px;
  color: #eee8de;
}
.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 4px;
  font: 700 14px var(--font-body);
}
.contact-form textarea { min-height: 130px; resize: vertical; }

@media (max-width: 1100px) {
  .site-header { padding: 0 24px; gap: 18px; }
  .main-nav { gap: 18px; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .app-layout { grid-template-columns: 1fr; text-align: center; }
  .app-copy h2, .app-copy p:not(.eyebrow) { text-align: center; margin-left: auto; margin-right: auto; }
  .store-badges { justify-content: center; }
  .phone-stage { min-height: 220px; }
  .app-features { grid-template-columns: repeat(2, 1fr); max-width: 740px; margin: 0 auto; text-align: left; }
  .safety-layout { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .safety-intro { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .site-header { height: 66px; }
  .brand { font-size: 22px; }
  .mobile-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 10px 24px 24px;
    background: rgba(5,5,5,.98);
    border-bottom: 1px solid var(--color-border-dark);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 0; }
  .main-nav a.active::after { display: none; }
  .nav-cta { display: none; }
  .hero { min-height: 620px; padding-top: 66px; }
  .hero-bg, .hero-overlay { top: 66px; }
  .hero-bg { width: 100%; opacity: .68; }
  .hero-content { padding-top: 64px; }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(3,3,3,.94), rgba(3,3,3,.54)), linear-gradient(0deg, rgba(3,3,3,.85), rgba(3,3,3,.18));
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-top: 1px solid rgba(255,255,255,.14); }
  .stat-card:nth-child(-n+2) { border-top: 0; }
  .stat-card:nth-child(odd) { border-left: 0; }
  .steps { grid-template-columns: 1fr 1fr; gap: 34px; }
  .steps::before { display: none; }
  .benefit-photo { opacity: .16; width: 50%; }
  .benefits-inner { max-width: none; }
  .benefit-columns { gap: 28px; }
  .benefit-columns article + article { padding-left: 28px; }
  .testimonial-grid,
  .faq-grid,
  .page-grid,
  .page-grid.two,
  .page-split,
  .article-list,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid { gap: 24px; }
}

@media (max-width: 560px) {
  body { overflow-x: hidden; }
  .container { width: min(calc(100vw - 64px), var(--container)); }
  .hero { min-height: 600px; }
  h1 { font-size: 40px; }
  h2 { font-size: 31px; }
  .hero-actions { width: min(100%, 300px); }
  .hero-copy {
    max-width: 300px;
    font-size: 13px;
    line-height: 1.5;
    overflow-wrap: break-word;
  }
  .step-card p,
  .testimonial-card blockquote,
  .benefit-columns li { overflow-wrap: break-word; }
  .btn { width: 100%; max-width: 300px; }
  .stats-wrap { margin-top: 0; padding-top: 22px; background: var(--color-ivory); }
  .stats-grid,
  .steps,
  .feature-grid,
  .benefit-columns,
  .app-features,
  .safety-layout { grid-template-columns: 1fr; }
  .stat-card { border-left: 0; }
  .feature-grid article { min-height: 140px; }
  .step-card { min-width: 0; }
  .step-card p { max-width: 300px; margin-left: auto; margin-right: auto; }
  .benefit-columns article + article { border-left: 0; padding-left: 0; }
  .store-badges { flex-direction: column; }
  .testimonial-card { grid-template-columns: 58px 1fr; padding: 18px; }
  .safety-intro,
  .safety article { padding: 0; border-left: 0; }
  .safety article { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
  .cta-content { padding: 30px 0; }
  .page-hero { padding-top: 64px; }
  .content-card { padding: 24px; }
  .page-hero h1 {
    max-width: 100%;
    font-size: 32px;
    line-height: 1.05;
    overflow-wrap: anywhere;
  }
  .page-hero p,
  .content-card p,
  .content-card li,
  .lux-card p,
  .lux-card li,
  .article-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .content-card h2,
  .lux-card h3,
  .article-card h3,
  .policy-section h3 {
    font-size: 25px;
    overflow-wrap: anywhere;
  }
  .number-list li { padding-left: 44px; }
  .page-media { min-height: 320px; }
  .simple-page,
  .simple-page * {
    max-width: 100%;
  }
  .simple-page h1,
  .simple-page h2,
  .simple-page h3,
  .simple-page p,
  .simple-page li,
  .simple-page a,
  .simple-page strong {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .page-content,
  .page-hero,
  .content-card,
  .lux-card,
  .article-card,
  .mini-cta {
    overflow: hidden;
  }
  .simple-page .container {
    width: auto;
    margin-left: 24px;
    margin-right: 24px;
  }
  .simple-page .content-card,
  .simple-page .lux-card,
  .simple-page .article-card,
  .simple-page .mini-cta {
    width: auto;
  }
  .simple-page .page-hero h1 {
    font-size: 30px;
  }
  .simple-page .page-hero p,
  .simple-page .content-card p,
  .simple-page .lux-card p,
  .simple-page .article-card p,
  .simple-page .number-list li {
    font-size: 13px;
    line-height: 1.55;
  }
}
