/* ============================================================
   RYVION — Bloom Organic Theme
   Warm · Organic · Terracotta & Sage
   ============================================================ */

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

:root {
  --cream: #faf7f2;
  --warm: #f5ede0;
  --card: #ffffff;
  --terracotta: #c4714a;
  --terra-light: #e8b4a0;
  --terra-dark: #a85d3a;
  --sage: #7a9e7e;
  --sage-light: rgba(122,158,126,0.12);
  --lavender: #b8aed2;
  --blush: #e8b4a0;
  --text: #2d2420;
  --text-light: #8a7a72;
  --text-dim: #b5a89e;
  --border: rgba(45,36,32,0.08);
  --border-terra: rgba(196,113,74,0.15);
  --shadow: rgba(45,36,32,0.08);
  --shadow-lg: rgba(45,36,32,0.12);
  --radius: 20px;
  --radius-lg: 32px;
  --radius-full: 100px;
  --max-w: 1200px;
  --pad-x: 80px;
  --pad-x-m: 24px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  font-weight: 400;
}

/* --- Blob Backgrounds --- */
.blob-bg {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  filter: blur(80px);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation: morphBlob 14s ease-in-out infinite alternate;
}
.blob1 { width: 500px; height: 400px; background: var(--blush); top: -100px; right: -100px; }
.blob2 { width: 400px; height: 350px; background: var(--lavender); bottom: -80px; left: -80px; animation-delay: -5s; }
.blob3 { width: 300px; height: 300px; background: #d4e8c8; top: 50%; left: 30%; animation-delay: -3s; }

@keyframes morphBlob {
  0% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; transform: scale(1) rotate(0deg); }
  100% { border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%; transform: scale(1.1) rotate(5deg); }
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; font-weight: 400; color: var(--text); }
em, .italic { font-style: italic; color: var(--terracotta); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Dividers --- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-terra), transparent);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ============================================================
   NAVIGATION — Pill-shaped floating
   ============================================================ */
.nav {
  position: fixed;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(250,247,242,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-terra);
  border-radius: var(--radius-full);
  padding: 10px 12px 10px 28px;
  display: flex;
  align-items: center;
  gap: 36px;
  box-shadow: 0 8px 40px var(--shadow);
  max-width: 95vw;
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--terracotta);
  font-style: italic;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--terracotta); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.nav-cta {
  background: var(--terracotta);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 500 !important;
  font-size: 0.88rem;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,113,74,0.3); }

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-toggle button {
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 6px;
  transition: color 0.3s;
}
.lang-toggle button:hover, .lang-toggle button.active { color: var(--terracotta); }
.lang-toggle .sep { color: var(--text-dim); font-size: 0.7rem; }

/* Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(40px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--text);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--terracotta); }
.mobile-menu .lang-toggle { margin-top: 20px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px var(--pad-x) 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-light);
  border: 1px solid rgba(122,158,126,0.25);
  color: var(--sage);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
}
.tag-dot {
  width: 7px; height: 7px;
  background: var(--sage);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-mockup-img {
  max-height: 560px;
  width: auto;
  max-width: 100%;
  filter: drop-shadow(0 30px 60px rgba(45,36,32,0.18));
  animation: mockupFloat 6s ease-in-out infinite;
  object-fit: contain;
}
@keyframes mockupFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Store badges */
.store-badges { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.store-badge {
  height: 46px;
  transition: transform 0.3s;
  border-radius: 10px;
}
.store-badge:hover { transform: translateY(-3px); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  position: relative; z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.stat-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 16px var(--shadow);
}
.stat-box:hover { transform: translateY(-4px); box-shadow: 0 12px 36px var(--shadow-lg); }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.6rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  position: relative; z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px var(--pad-x);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terracotta);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 56px;
}
.section-title em { color: var(--terracotta); }

.section-center {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 56px;
}
.section-center p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 16px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}
.section-header-sub {
  max-width: 320px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: right;
}

/* ============================================================
   STEPS (How it works)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--shadow);
}
.step-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--blush));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.step-card:hover::after { transform: scaleX(1); }
.step-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px var(--shadow-lg); }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(196,113,74,0.1);
  color: var(--terracotta);
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.step-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--shadow);
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--blush));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px var(--shadow-lg); }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: rgba(196,113,74,0.08);
}
.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 300;
}
.feature-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(196,113,74,0.1);
  border: 1px solid rgba(196,113,74,0.2);
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

/* AI cards highlight */
.feature-card.ai {
  background: linear-gradient(135deg, rgba(196,113,74,0.04), var(--card));
  border-color: rgba(196,113,74,0.2);
}
.feature-card.ai .feature-badge {
  background: var(--terracotta);
  color: #fff;
  border: none;
}
.feature-card.ai .feature-icon {
  background: rgba(196,113,74,0.12);
}

/* ============================================================
   APP GALLERY
   ============================================================ */
.gallery-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 var(--pad-x) 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--terra-light) transparent;
}
.gallery-scroll::-webkit-scrollbar { height: 4px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--terra-light); border-radius: 4px; }

.gallery-item {
  flex-shrink: 0;
  width: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  scroll-snap-align: start;
  transition: var(--transition);
  box-shadow: 0 8px 32px var(--shadow);
  border: 1px solid var(--border);
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: 0 16px 48px var(--shadow-lg); }
.gallery-item img { width: 100%; height: auto; display: block; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--shadow);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px var(--shadow-lg); }
.testimonial-stars { color: #f5a623; font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-text { font-size: 0.92rem; color: var(--text-light); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-size: 0.78rem; font-weight: 600; color: var(--terracotta); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  text-align: left;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
  line-height: 1.3;
}
.faq-question:hover { color: var(--terracotta); }
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--terracotta);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.faq-answer-inner { padding: 0 0 24px; font-size: 0.92rem; color: var(--text-light); line-height: 1.8; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--shadow);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--terracotta);
  background: linear-gradient(180deg, rgba(196,113,74,0.06), var(--card));
  transform: scale(1.04);
  z-index: 2;
  box-shadow: 0 24px 64px rgba(196,113,74,0.15);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-bestseller {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--terracotta);
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 22px;
  border-radius: 0 0 14px 14px;
}
.pricing-tier { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terracotta); font-weight: 600; margin-bottom: 12px; }
.pricing-price { font-family: 'DM Serif Display', serif; font-size: 3rem; color: var(--text); line-height: 1; margin-bottom: 4px; }
.pricing-price-sub { font-size: 0.8rem; color: var(--text-light); margin-bottom: 6px; }
.pricing-annual { font-size: 0.78rem; color: var(--terracotta); margin-bottom: 28px; opacity: 0.8; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  font-size: 0.88rem; color: var(--text-light); padding: 9px 0;
  border-bottom: 1px solid rgba(45,36,32,0.04);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li::before { content: '✓'; color: var(--sage); font-weight: 600; flex-shrink: 0; }
.pricing-features li.disabled { color: var(--text-dim); }
.pricing-features li.disabled::before { content: '—'; color: var(--text-dim); }

.comparison-table { width: 100%; border-collapse: collapse; margin-top: 80px; }
.comparison-table th, .comparison-table td {
  padding: 14px 20px; text-align: center; border-bottom: 1px solid var(--border); font-size: 0.85rem;
}
.comparison-table th { color: var(--terracotta); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; }
.comparison-table td:first-child { text-align: left; color: var(--text-light); }
.comparison-table .check { color: var(--sage); font-weight: 700; }
.comparison-table .dash { color: var(--text-dim); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 8px 32px rgba(196,113,74,0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(196,113,74,0.35); }

.btn-soft {
  background: var(--card);
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: 0 4px 16px var(--shadow);
}
.btn-soft:hover { border-color: var(--terracotta); transform: translateY(-2px); color: var(--terracotta); }

.btn-sm { padding: 10px 22px; font-size: 0.82rem; }

/* ============================================================
   CTA Section
   ============================================================ */
.cta-section {
  position: relative; z-index: 1;
  margin: 0 var(--pad-x) 80px;
  background: var(--terracotta);
  border-radius: var(--radius-lg);
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  top: -200px; right: -100px;
}
.cta-section h2 { font-family: 'DM Serif Display', serif; font-size: clamp(2rem,4vw,3rem); color: #fff; line-height: 1.2; }
.cta-section h2 em { color: rgba(255,255,255,0.7); }
.cta-right p { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; }

.btn-white {
  background: #fff; color: var(--terracotta);
  border-radius: var(--radius-full); padding: 14px 28px;
  font-weight: 500; display: flex; align-items: center; gap: 10px; font-size: 0.92rem;
  transition: var(--transition); justify-content: center; text-decoration: none;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-full); padding: 14px 28px;
  font-weight: 500; display: flex; align-items: center; gap: 10px; font-size: 0.92rem;
  transition: var(--transition); justify-content: center; text-decoration: none;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
  padding: 72px var(--pad-x) 36px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3,1fr);
  gap: 40px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo { margin-bottom: 14px; display: inline-block; }
.footer-brand p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.88rem; color: var(--text-light); transition: color 0.3s; }
.footer-col a:hover { color: var(--terracotta); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-dim); font-size: 0.78rem;
}
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--text-light); transition: color 0.3s; }
.footer-social a:hover { color: var(--terracotta); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info h3 { font-size: 1.8rem; margin-bottom: 16px; }
.contact-info p { color: var(--text-light); font-size: 0.95rem; line-height: 1.75; margin-bottom: 28px; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; color: var(--text-light); font-size: 0.9rem; }
.contact-detail-icon { color: var(--terracotta); font-size: 1.1rem; }

.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); font-weight: 600; margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--card); border: 1.5px solid var(--border);
  color: var(--text); padding: 13px 16px; border-radius: 14px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; transition: border-color 0.3s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--terracotta); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
.form-checkbox input[type="checkbox"] { accent-color: var(--terracotta); margin-top: 3px; flex-shrink: 0; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  position: relative; z-index: 1;
  max-width: 860px; margin: 0 auto;
  padding: 160px var(--pad-x) 100px;
}
.legal-content h1 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 8px; }
.legal-subtitle { font-size: 0.85rem; color: var(--text-light); margin-bottom: 40px; }
.legal-divider { height: 2px; background: linear-gradient(90deg, var(--terracotta), transparent); max-width: 120px; margin-bottom: 40px; }

.legal-body h2 { font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600; color: var(--terracotta); margin-top: 40px; margin-bottom: 14px; }
.legal-body h3 { font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 600; margin-top: 28px; margin-bottom: 10px; color: var(--text); }
.legal-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.85; margin-bottom: 14px; }
.legal-body ul { list-style: none; margin-bottom: 14px; padding-left: 16px; }
.legal-body ul li { font-size: 0.88rem; color: var(--text-light); line-height: 1.8; padding: 3px 0; padding-left: 16px; position: relative; }
.legal-body ul li::before { content: '•'; color: var(--terracotta); position: absolute; left: 0; }
.legal-body a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.legal-body strong { font-weight: 600; color: var(--text); }
.legal-body .important-notice {
  background: rgba(196,113,74,0.06); border-left: 3px solid var(--terracotta);
  padding: 20px 24px; margin: 20px 0; border-radius: 0 14px 14px 0;
  font-size: 0.82rem; line-height: 1.85; color: var(--text);
}

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero {
  position: relative; z-index: 1;
  padding: 160px var(--pad-x) 60px;
  max-width: var(--max-w); margin: 0 auto;
}
.page-hero h1 { font-size: clamp(2.2rem,4.5vw,4rem); line-height: 1.15; margin-bottom: 16px; }
.page-hero-sub { font-size: 1rem; color: var(--text-light); max-width: 500px; line-height: 1.75; }

/* About page */
.about-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-vision-text h3 { font-size: 2rem; margin-bottom: 16px; }
.about-vision-text p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }
.about-image-placeholder { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--warm), #fff); border: 1px solid var(--border); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--text-dim); font-size: 0.8rem; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* Feature deep dive */
.feature-deep { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 80px; }
.feature-deep.reversed { direction: rtl; }
.feature-deep.reversed > * { direction: ltr; }
.feature-deep-visual { aspect-ratio: 4/3; background: linear-gradient(135deg, rgba(196,113,74,0.05), var(--card)); border: 1px solid var(--border); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--text-dim); font-size: 0.8rem; box-shadow: 0 8px 32px var(--shadow); }
.feature-deep-text h3 { font-size: 2rem; margin-bottom: 16px; }
.feature-deep-text p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }
.feature-deep-list { list-style: none; margin-top: 20px; }
.feature-deep-list li { font-size: 0.88rem; color: var(--text-light); padding: 9px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.feature-deep-list li::before { content: '→'; color: var(--terracotta); font-weight: 600; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 9999; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  border: 1px solid var(--border-terra); border-radius: var(--radius);
  padding: 22px 28px; max-width: 560px; width: calc(100% - 48px);
  display: none; box-shadow: 0 16px 48px var(--shadow-lg);
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; margin-bottom: 14px; }
.cookie-banner p a { color: var(--terracotta); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-vision { grid-template-columns: 1fr; }
  .feature-deep { grid-template-columns: 1fr; }
  .feature-deep.reversed { direction: ltr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --pad-x: 24px; }
  .nav { gap: 12px; padding: 10px 16px 10px 20px; top: 12px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-right .lang-toggle { display: none; }

  .hero { padding: 100px var(--pad-x-m) 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  /* MOCKUP: show on mobile, smaller */
  .hero-visual { justify-content: center; }
  .hero-mockup-img { max-height: 360px; }

  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stats-strip { padding: 0 var(--pad-x-m); }

  .section { padding: 60px var(--pad-x-m); }
  .section-header { flex-direction: column; align-items: flex-start; }
  .section-header-sub { text-align: left; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }
  .values-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .cta-section { margin: 0 var(--pad-x-m) 60px; grid-template-columns: 1fr; padding: 48px var(--pad-x-m); }

  .page-hero { padding: 130px var(--pad-x-m) 48px; }
  .footer { padding: 48px var(--pad-x-m) 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .legal-content { padding: 130px var(--pad-x-m) 60px; }
  .comparison-table { overflow-x: auto; display: block; }
  .gallery-scroll { padding: 0 var(--pad-x-m) 20px; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .store-badges { flex-direction: column; align-items: flex-start; }
  .hero-mockup-img { max-height: 280px; }
}

/* ============================================================
   COMING SOON BADGE
   ============================================================ */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,113,74,0.1);
  border: 1.5px solid rgba(196,113,74,0.25);
  color: var(--terracotta);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-top: 16px;
}
.coming-soon-badge .pulse-dot {
  width: 8px; height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

/* ============================================================
   CTA BUTTON GAP FIX
   ============================================================ */
.cta-right { display: flex; flex-direction: column; gap: 14px; }

/* ============================================================
   FREE FEATURES SECTION
   ============================================================ */
.free-features-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.free-feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: 0 2px 12px var(--shadow);
}
.free-feature-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px var(--shadow-lg); }
.free-feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  background: var(--sage-light);
}
.free-feature-card h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.free-feature-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}
.free-badge {
  display: inline-block;
  background: var(--sage-light);
  color: var(--sage);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 4px;
}

/* ============================================================
   ABOUT PAGE — Solo Founder Redesign
   ============================================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 80px;
}
.founder-portrait {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--warm), #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 0.8rem;
  text-align: center;
  padding: 20px;
  position: sticky;
  top: 120px;
}
.founder-portrait img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }

.about-text h3 { font-size: 2rem; margin-bottom: 20px; line-height: 1.2; }
.about-text p { font-size: 0.95rem; color: var(--text-light); line-height: 1.85; margin-bottom: 16px; }

.quote-block {
  background: var(--warm);
  border-left: 4px solid var(--terracotta);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 48px 56px;
  margin: 60px 0;
  text-align: center;
}
.quote-block blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 16px;
}
.quote-block cite {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--terracotta);
  font-style: normal;
  font-weight: 600;
}

/* Ecosystem graphic placeholder */
.ecosystem-visual {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  box-shadow: 0 8px 32px var(--shadow);
  margin-bottom: 80px;
}
.ecosystem-center-logo {
  width: 80px; height: 80px;
  border-radius: 20px;
  background: var(--terracotta);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  font-style: italic;
}
.ecosystem-ring {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.ecosystem-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.ecosystem-node-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  border: 1.5px solid var(--border);
  background: var(--cream);
  transition: var(--transition);
}
.ecosystem-node-icon:hover { border-color: var(--terracotta); transform: scale(1.08); }
.ecosystem-node span { font-size: 0.72rem; color: var(--text-light); font-weight: 500; }

/* Before/After comparison */
.comparison-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
}
.comparison-side {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow);
}
.comparison-side.old { opacity: 0.7; }
.comparison-side h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.comparison-side.old h4 { color: var(--text-dim); }
.comparison-side.new h4 { color: var(--terracotta); }
.comparison-icons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.comp-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  border: 1px solid var(--border);
  background: var(--cream);
  position: relative;
}
.comp-icon.x::after {
  content: '✕';
  position: absolute;
  top: -6px; right: -6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #e74c3c;
  color: #fff;
  font-size: 0.55rem;
  display: flex; align-items: center; justify-content: center;
}
.comp-icon.check::after {
  content: '✓';
  position: absolute;
  top: -6px; right: -6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-size: 0.55rem;
  display: flex; align-items: center; justify-content: center;
}

.germany-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1.5px solid var(--border);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 32px;
  box-shadow: 0 2px 12px var(--shadow);
}
.germany-badge span { font-size: 1.1rem; }

/* ============================================================
   FOOTER SOCIAL SVG ICONS
   ============================================================ */
.footer-social { display: flex; gap: 14px; align-items: center; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-light);
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--terracotta); color: var(--terracotta); transform: translateY(-2px); }
.footer-social a svg { width: 16px; height: 16px; fill: currentColor; }

/* ============================================================
   RESPONSIVE — Additional
   ============================================================ */
@media (max-width: 900px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .founder-portrait { position: static; max-width: 240px; margin: 0 auto; }
  .comparison-split { grid-template-columns: 1fr; }
  .quote-block { padding: 32px 24px; }
  .free-features-grid { grid-template-columns: 1fr; }
}

/* Utility */
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
