/* VerdiScan Website — style.css */

:root {
  --color-primary: #2e7d32;
  --color-primary-dark: #1b5e20;
  --color-primary-light: #43a047;
  --color-primary-subtle: #e8f5e9;
  --color-accent: #66bb6a;
  --color-bg: #ffffff;
  --color-bg-alt: #fafcfa;
  --color-text: #1a1a1a;
  --color-text-secondary: #5a5a5a;
  --color-text-muted: #8a8a8a;
  --color-border: #e8e8e8;
  --color-success: #2e7d32;
  --color-error: #c62828;
  --max-width: 800px;
  --max-width-wide: 1100px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  height: 60px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.site-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.site-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.site-logo-text span {
  color: var(--color-text);
}

/* Main */
main {
  flex: 1;
}

/* Hero */
.hero {
  position: relative;
  padding: 5rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(170deg, #ffffff 0%, var(--color-primary-subtle) 50%, #c8e6c9 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 125, 50, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-primary);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 0 2.5rem;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.store-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 100px;
  background: var(--color-text);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  opacity: 1;
}

.store-btn-disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.store-btn-badge {
  font-size: 0.7rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  white-space: nowrap;
}

.store-btn-hint {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* Features Section */
.features {
  padding: 4.5rem 2rem;
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 3rem;
}

.features-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.features-header p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--color-primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Bio-Siegel Section */
.bio-section {
  padding: 4rem 2rem;
  background: var(--color-bg-alt);
}

.bio-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  text-align: center;
}

.bio-inner h2 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.bio-inner > p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.bio-labels {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.bio-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  min-width: 130px;
  transition: box-shadow var(--transition);
}

.bio-label:hover {
  box-shadow: var(--shadow-sm);
}

.bio-label-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
}


/* Hero Layout (two-column) */
.hero-content {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-text .hero-badges { justify-content: flex-start; }
.hero-text .store-buttons { justify-content: flex-start; }
.hero-text .store-btn-hint { text-align: left; }

.hero-phone { flex-shrink: 0; }

.phone-mockup {
  width: 260px;
  height: 520px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(0,0,0,0.1);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--color-primary-subtle) 0%, #c8e6c9 50%, #a5d6a7 100%);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 26px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(46,125,50,0.12);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.stat { text-align: center; }
.stat-number { display: block; font-size: 1.6rem; font-weight: 800; color: var(--color-primary); letter-spacing: -0.02em; }
.stat-label { font-size: 0.88rem; color: var(--color-text); font-weight: 600; }

/* Steps Section */
.steps-section { padding: 4.5rem 2rem; }

.steps-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  text-align: center;
}

.steps-inner h2 { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 3rem; }

.steps { display: flex; align-items: flex-start; justify-content: center; }

.step { flex: 1; max-width: 280px; padding: 0 1.5rem; }

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.step h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; }
.step p { font-size: 0.88rem; color: var(--color-text-secondary); line-height: 1.55; }
.step-connector { width: 60px; height: 2px; background: var(--color-border); margin-top: 24px; flex-shrink: 0; }

/* Premium Section */
.premium-section { padding: 4.5rem 2rem; background: var(--color-bg-alt); }

.premium-inner { max-width: 750px; margin: 0 auto; text-align: center; }
.premium-inner h2 { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.premium-inner > p { color: var(--color-text-secondary); font-size: 1.05rem; margin-bottom: 2.5rem; }

.premium-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; text-align: left; }

.premium-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.premium-card.featured {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary), var(--shadow-md);
}

.premium-badge-label {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.8rem;
  border-radius: 100px;
}

.premium-card-header { margin-bottom: 1.5rem; }
.premium-card-header h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.25rem; }
.premium-price { font-size: 1.6rem; font-weight: 800; color: var(--color-text); }
.premium-price small { font-size: 0.85rem; font-weight: 500; color: var(--color-text-muted); }
.premium-alt-price { display: block; font-size: 0.82rem; color: var(--color-text-muted); font-weight: 500; margin-top: 0.15rem; }

.premium-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.premium-features li { font-size: 0.9rem; color: var(--color-text-secondary); display: flex; align-items: center; gap: 0.5rem; }
.premium-features li.limited { opacity: 0.6; }
.check { font-weight: 700; color: var(--color-primary); font-size: 0.85rem; }
.check.dim { color: var(--color-text-muted); }
.check.accent { color: var(--color-primary); }

/* Trust Section */
.trust-section { padding: 4.5rem 2rem; }

.trust-inner { max-width: var(--max-width-wide); margin: 0 auto; text-align: center; }
.trust-inner h2 { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.trust-inner > p { color: var(--color-text-secondary); font-size: 1.05rem; max-width: 520px; margin: 0 auto 2.5rem; }

.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }

.trust-item { padding: 1.5rem 1rem; }
.trust-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.trust-item h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; }
.trust-item p { font-size: 0.82rem; color: var(--color-text-secondary); line-height: 1.5; }

/* Download CTA */
.download-section {
  padding: 4.5rem 2rem;
  background: linear-gradient(170deg, var(--color-primary-subtle) 0%, #c8e6c9 100%);
  text-align: center;
}

.download-inner { max-width: 600px; margin: 0 auto; }
.download-inner h2 { font-size: 2rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.download-inner > p { color: var(--color-text-secondary); font-size: 1.05rem; margin-bottom: 2rem; }

/* Contact Page (two-column) */
.contact-page {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h1 { font-size: 1.85rem; font-weight: 700; color: var(--color-text); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.contact-info > p { color: var(--color-text-secondary); margin-bottom: 2rem; }
.contact-detail { margin-bottom: 1.5rem; }
.contact-detail h3 { font-size: 0.88rem; font-weight: 600; color: var(--color-text); margin-bottom: 0.25rem; }
.contact-detail p, .contact-detail a { font-size: 0.9rem; color: var(--color-text-secondary); }
.contact-detail a { color: var(--color-primary); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }

.contact-form-wrapper {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem;
}

/* Checkbox */
.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox input[type="checkbox"] { width: auto; margin-top: 0.2rem; flex-shrink: 0; accent-color: var(--color-primary); }
.form-checkbox a { color: var(--color-primary); text-decoration: underline; }

/* 404 Page */
.error-page { text-align: center; padding: 6rem 2rem; }
.error-code { display: block; font-size: 5rem; font-weight: 800; color: var(--color-border); letter-spacing: -0.05em; line-height: 1; margin-bottom: 1rem; }
.error-page h1 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }
.error-page p { color: var(--color-text-secondary); margin-bottom: 2rem; }

.error-link {
  display: inline-flex;
  padding: 0.7rem 1.8rem;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition);
}

.error-link:hover { background: var(--color-primary-dark); }

/* Footer additions */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo img { width: 24px; height: 24px; border-radius: 4px; }
.footer-logo span { font-size: 0.95rem; font-weight: 600; color: var(--color-text); }
.footer-made { color: var(--color-text-muted); font-size: 0.78rem; margin-top: 0.5rem; }

/* Legal TOC */
.legal-toc {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.legal-toc h3 { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.6rem; color: var(--color-text); }
.legal-toc ol { list-style: none; counter-reset: toc; padding: 0; margin: 0; }
.legal-toc li { counter-increment: toc; margin-bottom: 0.3rem; }
.legal-toc li::before { content: counter(toc) ". "; color: var(--color-text-muted); font-size: 0.82rem; }
.legal-toc a { color: var(--color-text-secondary); text-decoration: none; font-size: 0.88rem; transition: color var(--transition); }
.legal-toc a:hover { color: var(--color-primary); }

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Legal pages */
.legal-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.legal-content h1 {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.legal-content .legal-date {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
  scroll-margin-top: 80px;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  margin-bottom: 0.85rem;
  color: var(--color-text-secondary);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 0.85rem;
  padding-left: 1.5rem;
  color: var(--color-text-secondary);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

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

.legal-content a {
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.legal-content a:hover {
  border-bottom-color: var(--color-primary);
}

.legal-content hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 2.5rem 0;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.25rem;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.legal-content table td,
.legal-content table th {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--color-border);
  vertical-align: top;
}

.legal-content table td:first-child {
  font-weight: 600;
  width: 35%;
  background: var(--color-bg-alt);
  color: var(--color-text);
}

.legal-content .warning-box {
  background: #fff8e1;
  border-left: 3px solid #ffa000;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal-content .warning-box p {
  color: var(--color-text);
  margin: 0;
}

/* Kontaktformular */
.contact-section {
  max-width: 560px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.contact-section h1 {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.contact-section > p {
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

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

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

/* Honeypot */
.ohnehonig {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-submit:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  background: var(--color-text-muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-message {
  margin-top: 1.25rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  background: var(--color-primary-subtle);
  color: var(--color-success);
  display: block;
}

.form-message.error {
  background: #ffebee;
  color: var(--color-error);
  display: block;
}

/* Footer */
.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.footer-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: color var(--transition);
}

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

.footer-copy {
  color: var(--color-text-muted);
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 3.5rem 1.5rem 3rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
  }

  /* Hero two-column → stacked */
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

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

  .hero-text .hero-badges { justify-content: center; }
  .hero-text .store-buttons { justify-content: center; }
  .hero-text .store-btn-hint { text-align: center; }

  .hero-phone { display: none; }

  .hero-stats {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    gap: 2rem;
  }

  .features {
    padding: 3rem 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .features-header h2,
  .bio-inner h2,
  .cta-section h2,
  .steps-inner h2,
  .premium-inner h2,
  .trust-inner h2,
  .download-inner h2 {
    font-size: 1.5rem;
  }

  .bio-section {
    padding: 3rem 1.5rem;
  }

  .bio-labels {
    gap: 0.75rem;
  }

  .bio-label {
    min-width: 110px;
    padding: 1rem;
  }

  /* Steps → stacked */
  .steps-section { padding: 3rem 1.5rem; }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .step { max-width: 100%; padding: 0; }

  .step-connector {
    width: 2px;
    height: 30px;
    margin: 0;
  }

  /* Premium → single column */
  .premium-section { padding: 3rem 1.5rem; }
  .premium-cards { grid-template-columns: 1fr; }

  /* Trust → 2 columns */
  .trust-section { padding: 3rem 1.5rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Download */
  .download-section { padding: 3rem 1.5rem; }

  /* Contact → single column */
  .contact-page {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem 3.5rem;
  }

  .contact-info h1 { font-size: 1.5rem; }

  .legal-content h1,
  .contact-section h1 {
    font-size: 1.5rem;
  }

  .legal-content table td:first-child {
    width: 38%;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 1.25rem;
  }

  .legal-content,
  .contact-section {
    padding: 2rem 1.25rem 3.5rem;
  }

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

  .legal-content table {
    font-size: 0.82rem;
  }

  .hero-badges {
    gap: 0.4rem;
  }

  .badge {
    font-size: 0.78rem;
    padding: 0.35rem 0.7rem;
  }

  /* Trust → single column on small screens */
  .trust-grid { grid-template-columns: 1fr; }

  /* Stats → tighter */
  .hero-stats { gap: 1.5rem; }
  .stat-number { font-size: 1.3rem; }
}
