/* ===== Design system: terracotta accent, warm neutrals ===== */
:root {
  --color-bg: #faf9f7;
  --color-bg-soft: #f5f0eb;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-accent: #c2410c;
  --color-accent-hover: #9a3412;
  --color-accent-soft: #ffedd5;
  --color-border: #e7e5e4;
  --color-disclaimer-bg: #fef3c7;
  --color-disclaimer-border: #f59e0b;
  --color-ad-banner: #1e293b;
  --color-ad-banner-text: #f8fafc;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-btn: 8px;
  --shadow: 0 4px 20px rgba(30, 41, 59, 0.08);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Ad banner (top, always visible) ===== */
.ad-banner {
  background: var(--color-ad-banner);
  color: var(--color-ad-banner-text);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-text);
  text-decoration: none;
  transition: transform var(--transition);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--color-accent);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-ghost {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: var(--radius-btn);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
  font-family: inherit;
}

.btn-ghost:hover {
  color: var(--color-accent);
  background: var(--color-accent-soft);
}

.btn-primary {
  background: var(--color-accent);
  color: white;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  text-decoration: none;
  font-family: inherit;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 65, 12, 0.35);
}

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Disclaimer (bright) ===== */
.disclaimer-block {
  background: var(--color-disclaimer-bg);
  border: 2px solid var(--color-disclaimer-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 32px auto;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  animation: pulseBorder 2s ease-in-out infinite;
}

@keyframes pulseBorder {
  0%, 100% { border-color: var(--color-disclaimer-border); box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.3); }
  50% { border-color: #d97706; box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.15); }
}

.disclaimer-block h3 {
  color: #92400e;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.disclaimer-block p {
  color: #78350f;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== Hero ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-text);
}

.hero p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-form {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-btn);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color var(--transition);
}

.hero-form input:focus {
  outline: none;
  border-color: var(--color-accent);
}

.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-cta-buttons .btn-video::before {
  content: '▶ ';
  font-size: 0.85em;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  animation: countIn 0.8s ease-out backwards;
}

.hero-stat:nth-child(1) { animation-delay: 0.2s; }
.hero-stat:nth-child(2) { animation-delay: 0.35s; }
.hero-stat:nth-child(3) { animation-delay: 0.5s; }

@keyframes countIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.hero-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.hero-stat .stars {
  color: var(--color-accent);
  letter-spacing: 2px;
}

.hero-visual {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-illustration {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-illustration svg,
.hero-illustration img {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.hero-fallback {
  display: none;
  width: 100%;
  max-width: 100%;
}

.hero-fallback.hero-fallback-visible {
  display: block;
}

.hero-fallback svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Partners ===== */
.partners {
  padding: 48px 24px;
  text-align: center;
  background: var(--color-bg-soft);
}

.partners h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.85;
}

.partners-logos span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ===== Section: Official statistics ===== */
.section-stats {
  padding: 64px 24px 80px;
  background: var(--color-bg-soft);
}

.section-stats .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-stats-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.section-stats-intro {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}

.stat-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

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

.stat-card .stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.2;
  margin-bottom: 10px;
}

.stat-card .stat-label {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.45;
  margin-bottom: 12px;
  flex: 1;
}

.stat-card .stat-source {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.section-stats-footer {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.section-stats-footer a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 500;
}

.section-stats-footer a:hover {
  text-decoration: underline;
}

/* ===== Section: Unlock ===== */
.section-unlock {
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-unlock h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-unlock h2.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.section-unlock > p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.section-unlock > p.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.section-header-cta {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.illustration-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.illustration-strip .illus-card {
  flex: 1 1 140px;
  min-width: 140px;
  max-width: 200px;
  min-height: 160px;
  padding: 24px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
}

.illustration-strip .illus-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

/* Fixed-height icon area so all cards align evenly */
.illustration-strip .illus-card > svg {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--color-accent);
  display: block;
}

.illustration-strip .illus-card > span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 2.8em;
  line-height: 1.35;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}

/* ===== Section: Features ===== */
.section-features {
  padding: 80px 24px 100px;
  background: var(--color-bg-soft);
}

.section-features .section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.section-features h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-features .section-sub {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(24px);
}

.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.feature-card .prompt-box {
  background: var(--color-bg-soft);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-btn);
  padding: 12px 14px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prompt-box .plus {
  color: var(--color-accent);
  font-weight: 700;
}

.feature-illus {
  width: 100%;
  height: 120px;
  min-height: 120px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-soft);
  border-radius: var(--radius-btn);
}

.feature-illus svg {
  width: 80px;
  height: 80px;
  color: var(--color-accent);
  opacity: 0.9;
}

/* ===== Product block (advertising) ===== */
.section-product {
  padding: 64px 24px 80px;
  background: var(--color-bg-soft);
}

.section-product .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== Product block (compact two-column) ===== */
.product-block--compact {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 360px);
  gap: 36px;
  align-items: center;
  background: white;
  border-radius: var(--radius);
  padding: 32px 40px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  max-width: 960px;
  margin: 0 auto;
}

.product-block--compact .product-block-media {
  padding: 0;
  background: transparent;
}

.product-block--compact .product-block-img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
  border-radius: var(--radius-btn);
}

.product-block--compact .product-block-body {
  padding: 0;
  text-align: left;
  min-width: 0;
}

.product-block-top {
  margin-bottom: 20px;
}

.product-block-badge {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.product-block-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

.product-block-desc {
  color: var(--color-text);
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
}

.product-block-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}

.product-block-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}

.product-block-list li {
  position: relative;
  padding-left: 18px;
}

.product-block-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
}

.product-block-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.product-block-actions .btn-primary,
.product-block-actions .btn-ghost {
  font-size: 1.05rem;
  padding: 12px 22px;
}

.product-block-actions .btn-buy {
  flex-shrink: 0;
}

.product-block-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-block-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-btn);
}

.product-block-body {
  min-width: 0;
}

/* Legacy */
.product-block {
  margin: 0 auto;
}

.product-cta-wrap {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.product-cta-wrap .btn-buy {
  flex-shrink: 0;
}

/* ===== Product block mobile ===== */
@media (max-width: 640px) {
  .product-block--compact {
    grid-template-columns: 1fr;
    padding: 20px 20px;
    gap: 20px;
  }

  .product-block--compact .product-block-body {
    text-align: center;
  }

  .product-block-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .product-block--compact .product-block-list {
    grid-template-columns: 1fr;
    text-align: left;
    justify-items: start;
  }

  .product-block--compact .product-block-actions {
    justify-content: center;
  }

  .product-block--compact .product-block-media {
    order: -1;
  }

  .product-block--compact .product-block-img {
    max-height: 200px;
  }
}

/* ===== Official sources ===== */
.section-sources {
  padding: 64px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-sources h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-sources > p {
  color: var(--color-text-muted);
  margin-bottom: 28px;
  max-width: 640px;
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.source-card {
  background: white;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.source-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow);
}

.source-card a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
}

.source-card a:hover {
  text-decoration: underline;
}

.source-card p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ===== Checkout page ===== */
.checkout-page {
  padding: 48px 24px 80px;
  min-height: 60vh;
}

.checkout-container {
  max-width: 960px;
  margin: 0 auto;
}

.checkout-container h1 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  margin-bottom: 8px;
}

.checkout-intro {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.checkout-summary {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 100px;
}

.checkout-summary h2 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.checkout-product {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.checkout-product-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: var(--radius-btn);
  background: var(--color-bg-soft);
}

.checkout-product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.95rem;
}

.checkout-product-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

.checkout-product-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.checkout-disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin: 0;
}

.checkout-form {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.checkout-fieldset {
  border: none;
  margin: 0 0 24px;
  padding: 0;
}

.checkout-fieldset legend {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 16px;
  padding: 0;
}

.form-row {
  margin-bottom: 18px;
}

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

.form-row label,
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-row input,
.form-row select,
.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-btn);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-row input:focus,
.form-group input:focus,
.form-row select:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-row input[aria-invalid="true"],
.form-group input[aria-invalid="true"] {
  border-color: #dc2626;
}

.form-error {
  display: block;
  font-size: 0.85rem;
  color: #dc2626;
  margin-top: 4px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

@media (max-width: 768px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

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

/* ===== Thank you page ===== */
.thankyou-page {
  padding: 80px 24px 120px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-container {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.thankyou-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: var(--color-accent);
  color: white;
  font-size: 2rem;
  font-weight: 700;
  line-height: 64px;
  border-radius: 50%;
}

.thankyou-container h1 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 16px;
}

.thankyou-message {
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.thankyou-order {
  font-size: 1rem;
  margin-bottom: 16px;
}

.thankyou-contact {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.thankyou-contact a {
  color: var(--color-accent);
  text-decoration: none;
}

.thankyou-contact a:hover {
  text-decoration: underline;
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 0;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-text);
  color: #94a3b8;
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.footer-inner h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-inner ul {
  list-style: none;
}

.footer-inner a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-inner a:hover {
  color: #fbbf24;
}

.footer-inner li {
  margin-bottom: 10px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #334155;
  font-size: 0.85rem;
  text-align: center;
}

/* ===== Extra animations ===== */
.btn-primary:active {
  transform: translateY(0);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.source-card {
  animation: fadeInUp 0.5s ease-out backwards;
}

.source-card:nth-child(1) { animation-delay: 0.05s; }
.source-card:nth-child(2) { animation-delay: 0.1s; }
.source-card:nth-child(3) { animation-delay: 0.15s; }
.source-card:nth-child(4) { animation-delay: 0.2s; }
.source-card:nth-child(5) { animation-delay: 0.25s; }
.source-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.illus-card {
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.illus-card:hover {
  border-color: var(--color-accent);
}

.hero-form input:focus {
  animation: inputGlow 0.3s ease;
}

@keyframes inputGlow {
  to { box-shadow: 0 0 0 3px var(--color-accent-soft); }
}

.reveal.visible {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.partners-logos span {
  transition: color var(--transition), transform var(--transition);
}

.partners-logos span:hover {
  color: var(--color-accent);
  transform: scale(1.05);
}

/* ===== Legal pages layout ===== */
.legal-page {
  padding: 48px 24px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 24px;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-page p, .legal-page li {
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.legal-page ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.legal-page a {
  color: var(--color-accent);
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

.legal-page {
  animation: pageFadeIn 0.5s ease-out;
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== Contact page ===== */
.contact-form-wrap {
  max-width: 560px;
  margin-top: 32px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-btn);
  font-family: inherit;
  margin-bottom: 20px;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

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

/* ===== Mobile menu (optional) ===== */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p { margin-left: auto; margin-right: auto; }
  .hero-form { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }

  .nav-links {
    display: none;
  }

  .section-features .section-top {
    flex-direction: column;
  }
}

/* ===== Scroll-triggered animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
}

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