/* Fonts */
@font-face {
  font-family: 'Linear Grotesk';
  src: url('../fonts/LinearGrotesk-Regular.woff2') format('woff2'),
       url('../fonts/LinearGrotesk-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Linear Grotesk';
  src: url('../fonts/LinearGrotesk-Medium.woff2') format('woff2'),
       url('../fonts/LinearGrotesk-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Linear Grotesk';
  src: url('../fonts/LinearGrotesk-SemiBold.woff2') format('woff2'),
       url('../fonts/LinearGrotesk-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Linear Grotesk';
  src: url('../fonts/LinearGrotesk-Bold.woff2') format('woff2'),
       url('../fonts/LinearGrotesk-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Salmond';
  src: url('../fonts/Salmond-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Salmond';
  src: url('../fonts/Salmond-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Salmond';
  src: url('../fonts/Salmond-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Salmond';
  src: url('../fonts/Salmond-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Design Tokens */
:root {
  --base: #0a0a0f;
  --surface: #14141c;
  --elevated: #1e1e2a;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.14);

  --gold: #d4a24c;
  --gold-light: #e8c478;
  --gold-dark: #b8862e;

  --text: #f0ece4;
  --text-muted: #a09a8e;
  --text-subtle: #6b6560;

  --font-body: 'Linear Grotesk', system-ui, -apple-system, sans-serif;
  --font-heading: 'Salmond', Georgia, serif;

  --max-width: 1200px;
  --header-height: 72px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 20px rgba(212, 162, 76, 0.15);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--base);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold-light);
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

ul, ol {
  list-style-position: inside;
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.header-logo img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
}

.header-logo span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 20px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav-badges {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.nav-badges a {
  display: block;
  border-radius: 6px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-badges a:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.nav-badges img {
  height: 36px;
  width: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* ============================================
   STORE BADGES (shared)
   ============================================ */
.store-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}

.store-badges a {
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: var(--radius-sm);
}

.store-badges a:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.store-badges img {
  height: 52px;
  width: auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--base);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 162, 76, 0.3);
  color: var(--base);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.25s;
}

.btn-secondary:hover {
  background: rgba(212, 162, 76, 0.1);
  color: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: var(--gold);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-ghost:hover {
  background: rgba(212, 162, 76, 0.08);
}

/* ============================================
   SECTION LABELS / HEADINGS
   ============================================ */
.section-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

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

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

.text-gold {
  color: var(--gold);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--base);
  padding: 140px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(212, 162, 76, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(212, 162, 76, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 56px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-content > p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.hero-images {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  min-height: 480px;
}

.hero-images .phone {
  width: auto;
  border-radius: var(--radius-xl);
  border: 5px solid var(--elevated);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease;
  position: absolute;
}

.hero-images .phone-back {
  max-height: 440px;
  right: 52%;
  bottom: 20px;
  z-index: 1;
  transform: rotate(-4deg);
}

.hero-images .phone-back:hover {
  transform: rotate(-4deg) translateY(-8px);
}

.hero-images .phone-front {
  max-height: 500px;
  left: 42%;
  bottom: 0;
  z-index: 2;
  transform: rotate(3deg);
}

.hero-images .phone-front:hover {
  transform: rotate(3deg) translateY(-8px);
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.trust-strip-header {
  text-align: center;
  margin-bottom: 48px;
}

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

.trust-card {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.trust-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-glow);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 162, 76, 0.1);
  margin-bottom: 20px;
}

.trust-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.trust-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--text);
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 100px 0;
  background: var(--base);
}

.how-it-works .section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--base);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 24px;
}

.step-icon {
  display: block;
  margin: 0 auto 16px;
  width: 48px;
  height: 48px;
  color: var(--gold);
}

.step-image {
  display: block;
  margin: 0 auto 16px;
  max-height: 140px;
  width: auto;
  border-radius: var(--radius-md);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--text);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================
   WHY YETUNDE (Benefits)
   ============================================ */
.benefits {
  padding: 100px 0;
  background: var(--surface);
}

.benefits .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.benefit-card {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
  border-color: rgba(212, 162, 76, 0.25);
  box-shadow: var(--shadow-glow);
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
  margin-bottom: 16px;
}

.cultural-line {
  text-align: center;
  font-family: 'Noto Serif', Georgia, 'Times New Roman', serif;
  font-size: 22px;
  color: var(--gold-light);
  font-style: italic;
  padding-top: 8px;
}

/* ============================================
   SAFETY & TRUST
   ============================================ */
.safety {
  padding: 100px 0;
  background: var(--base);
}

.safety .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.safety-item {
  text-align: center;
  padding: 24px;
}

.safety-item svg {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 16px;
}

.safety-item h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
}

.safety-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 80px 0;
  background: var(--surface);
}

.testimonials .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 60px;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
  padding-top: 20px;
}

.testimonial-card .attribution {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.testimonial-card .attribution span {
  display: block;
  font-weight: 400;
  color: var(--text-subtle);
  font-size: 13px;
  margin-top: 2px;
}

/* ============================================
   FOUNDER / CEO
   ============================================ */
.founder {
  padding: 100px 0;
  background: var(--base);
}

.founder .container {
  display: flex;
  align-items: center;
  gap: 72px;
}

.founder-image {
  flex: 0 0 340px;
}

.founder-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
}

.founder-content {
  flex: 1;
}

.founder-content h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--text);
  margin-bottom: 28px;
}

.founder-content blockquote {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  padding-left: 28px;
  margin-bottom: 28px;
  font-style: italic;
  position: relative;
  border: none;
}

.founder-content blockquote::before {
  content: '\201C';
  position: absolute;
  left: -8px;
  top: -20px;
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.founder-content blockquote p {
  margin-bottom: 16px;
}

.founder-content .attribution {
  text-align: right;
  font-weight: 600;
  color: var(--text);
  font-size: 17px;
}

.founder-content .attribution span {
  display: block;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 2px;
}

/* ============================================
   FINAL CTA BAND
   ============================================ */
.cta-band {
  background: var(--surface);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.06), transparent 70%);
  pointer-events: none;
}

.cta-band .container {
  text-align: center;
  position: relative;
}

.cta-band h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  color: var(--text);
  margin-bottom: 16px;
}

.cta-band p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-band .store-badges {
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--base);
  color: var(--text-muted);
  padding: 60px 0 36px;
  font-size: 14px;
  border-top: 1px solid var(--border);
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  color: var(--text-subtle);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  min-width: 44px;
  min-height: 44px;
}

.footer-socials a:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(212, 162, 76, 0.08);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.footer-company {
  line-height: 1.6;
}

.footer-contact a {
  color: var(--gold);
}

.footer-adult {
  color: var(--text-subtle);
  font-size: 13px;
}

/* ============================================
   PAGE HEADER (subpages)
   ============================================ */
.page-header {
  background: var(--surface);
  padding: 120px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--text);
}

.page-header p {
  color: var(--text-muted);
  font-size: 18px;
  margin-top: 12px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 40px 18px 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  position: relative;
  line-height: 1.5;
  transition: color 0.2s;
  min-height: 44px;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.2s;
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 18px;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.faq-answer strong {
  color: var(--text);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.legal-content .meta {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--text);
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--text-muted);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
  list-style-position: outside;
  color: var(--text-muted);
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-content strong {
  color: var(--text);
}

.legal-content a {
  color: var(--gold);
}

/* ============================================
   404 PAGE
   ============================================ */
.error-page {
  padding: 160px 0 100px;
  text-align: center;
  background: var(--base);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-page h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--text);
  margin-bottom: 16px;
}

.error-page p {
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 32px;
}

/* ============================================
   ABOUT PAGE - VALUES
   ============================================ */
.values {
  padding: 100px 0;
  background: var(--surface);
}

.values .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.values-grid .value-card:nth-child(4),
.values-grid .value-card:nth-child(5) {
  justify-self: center;
}

.value-card {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
  max-width: 300px;
}

.value-card:hover {
  border-color: rgba(212, 162, 76, 0.25);
  box-shadow: var(--shadow-glow);
}

.value-card svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 16px;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.mission {
  padding: 100px 0;
  background: var(--base);
}

.mission .container {
  max-width: 800px;
}

.mission h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--text);
  margin-bottom: 24px;
}

.mission p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.company-block {
  padding: 80px 0;
  background: var(--base);
  border-top: 1px solid var(--border);
}

.company-block .container {
  max-width: 700px;
  text-align: center;
}

.company-block h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--text);
  margin-bottom: 16px;
}

.company-block p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-options {
  padding: 80px 0;
  background: var(--base);
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
  border-color: rgba(212, 162, 76, 0.25);
  box-shadow: var(--shadow-glow);
}

.contact-card svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 16px;
}

.contact-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.contact-card a {
  color: var(--gold);
  font-weight: 500;
}

.contact-form-section {
  padding: 80px 0;
  background: var(--surface);
}

.contact-form-section .container {
  max-width: 640px;
}

.contact-form-section h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--text);
  margin-bottom: 8px;
  text-align: center;
}

.contact-form-section > .container > p {
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 40px;
  font-size: 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-subtle);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 162, 76, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-privacy {
  font-size: 13px;
  color: var(--text-subtle);
  line-height: 1.6;
}

.form-submit {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.form-success {
  text-align: center;
  padding: 24px;
  background: rgba(212, 162, 76, 0.08);
  border: 1px solid rgba(212, 162, 76, 0.2);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  font-weight: 500;
  display: none;
}

.form-success.visible {
  display: block;
}

.safety-escalation {
  padding: 60px 0;
  background: var(--base);
  text-align: center;
}

.safety-escalation h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--text);
  margin-bottom: 12px;
}

.safety-escalation p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ============================================
   STICKY MOBILE DOWNLOAD BAR
   ============================================ */
.sticky-download {
  display: none;
}

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

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

/* ============================================
   RESPONSIVE: 1024px
   ============================================ */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 48px;
  }

  .section-title {
    font-size: 36px;
  }

  .founder .container {
    gap: 48px;
  }

  .founder-image {
    flex: 0 0 280px;
  }

  .benefits-grid {
    gap: 20px;
  }

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

/* ============================================
   RESPONSIVE: 768px
   ============================================ */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-height));
    background: #14141c;
    flex-direction: column;
    padding: 48px 32px;
    gap: 28px;
    z-index: 999;
    border-top: 1px solid var(--border);
    overflow-y: auto;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    font-size: 22px;
    color: var(--text);
    font-weight: 600;
    padding-bottom: 0;
  }

  .nav a::after {
    display: none;
  }

  .nav a:hover,
  .nav a.active {
    color: var(--gold);
  }

  .nav-badges {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 110px 0 60px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content > p {
    font-size: 16px;
  }

  .store-badges {
    justify-content: center;
  }

  .hero-images {
    min-height: auto;
    justify-content: center;
  }

  .hero-images .phone {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .hero-images .phone-back {
    max-height: 320px;
    transform: rotate(-4deg) translateX(20px);
    z-index: 1;
  }

  .hero-images .phone-back:hover {
    transform: rotate(-4deg) translateX(20px) translateY(-8px);
  }

  .hero-images .phone-front {
    max-height: 360px;
    transform: rotate(3deg) translateX(-20px);
    margin-left: -40px;
    z-index: 2;
  }

  .hero-images .phone-front:hover {
    transform: rotate(3deg) translateX(-20px) translateY(-8px);
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
    margin: 0 auto;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 40px;
  }

  .safety-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 400px;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .founder .container {
    flex-direction: column;
    text-align: center;
  }

  .founder-image {
    flex: none;
    max-width: 280px;
    margin: 0 auto;
  }

  .founder-content blockquote {
    padding-left: 0;
  }

  .founder-content blockquote::before {
    position: static;
    display: block;
    text-align: center;
    margin-bottom: 8px;
  }

  .founder-content h2 {
    font-size: 34px;
  }

  .section-title {
    font-size: 34px;
  }

  .cta-band h2 {
    font-size: 34px;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-header {
    padding: 100px 0 40px;
  }

  .page-header h1 {
    font-size: 34px;
  }

  .how-it-works,
  .benefits,
  .safety,
  .founder,
  .cta-band,
  .testimonials {
    padding: 60px 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .values-grid .value-card:nth-child(4),
  .values-grid .value-card:nth-child(5) {
    justify-self: auto;
  }

  .value-card {
    max-width: 100%;
  }

  .contact-options-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

  /* Sticky download bar on mobile */
  .sticky-download {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .sticky-download .store-badges {
    gap: 10px;
  }

  .sticky-download .store-badges img {
    height: 40px;
  }

  body {
    padding-bottom: 72px;
  }
}

/* ============================================
   RESPONSIVE: 480px
   ============================================ */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .store-badges {
    flex-direction: column;
    align-items: center;
  }

  .hero-images .phone-back {
    max-height: 220px;
    transform: rotate(-4deg) translateX(15px);
  }

  .hero-images .phone-back:hover {
    transform: rotate(-4deg) translateX(15px) translateY(-8px);
  }

  .hero-images .phone-front {
    max-height: 260px;
    transform: rotate(3deg) translateX(-15px);
    margin-left: -30px;
  }

  .hero-images .phone-front:hover {
    transform: rotate(3deg) translateX(-15px) translateY(-8px);
  }

  .section-title {
    font-size: 28px;
  }

  .cta-band h2 {
    font-size: 28px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .sticky-download .store-badges {
    flex-direction: row;
  }
}
