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

:root {
  --bg:          #F5EFE3;
  --surface:     #FAF5E9;
  --surface-el:  #FFFFFF;
  --accent:      #6B7A4F;
  --accent-dark: #4F5C3A;
  --secondary:   #B5642E;
  --text-1:      #2E2419;
  --text-2:      #8B7355;
  --text-3:      #A8AC97;
  --border:      #DDD0B4;
  --soft:        #E8DCC4;
  --reward:      #8AA646;
  --font-head:   'Fraunces', Georgia, serif;
  --font-body:   'Jost', system-ui, sans-serif;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-full: 999px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-1);
  font-size: 16px;
  line-height: 1.6;
}

/* ── Nav ──────────────────────────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-1);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.15s;
}

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

.lang-switch {
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 3px 10px;
  font-size: 0.8125rem !important;
  color: var(--text-2) !important;
}
.lang-switch:hover { background: var(--soft); }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px 100px;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-1);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.badge-link img {
  height: 44px;
  transition: opacity 0.15s;
}

.badge-link:hover img { opacity: 0.8; }

.hero-note {
  font-size: 0.8125rem;
  color: var(--text-3);
}

/* Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 270px;
  background: var(--text-1);
  border-radius: 36px;
  padding: 16px 12px;
  box-shadow: 0 24px 64px rgba(46,36,25,0.22);
}

.phone-screen {
  background: var(--bg);
  border-radius: 24px;
  overflow: hidden;
  padding: 18px 14px 10px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mock-header { margin-bottom: 4px; }

.mock-greeting {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-1);
}

.mock-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-el);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  border: 1px solid var(--border);
}

.mock-avatar {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.mock-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mock-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--text-1);
}

.mock-due {
  font-size: 0.6875rem;
  color: var(--text-2);
  margin-top: 1px;
}

.mock-emoji {
  font-size: 1rem;
}

.mock-wiese {
  text-align: center;
  font-size: 1.125rem;
  margin-top: auto;
  padding-top: 12px;
  letter-spacing: 4px;
  opacity: 0.6;
}

/* ── Section shared ───────────────────────────────────────────── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}

.section-headline {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  color: var(--text-1);
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-2);
  text-align: center;
  margin-bottom: 48px;
}

/* ── Features ─────────────────────────────────────────────────── */
.features { background: var(--surface); }

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

.feature-card {
  background: var(--surface-el);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── Pricing ──────────────────────────────────────────────────── */
.pricing { background: var(--bg); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface-el);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}

.pricing-card-pro {
  border-color: var(--accent);
}

.pro-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.pricing-card h3 {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 12px;
}

.price-big {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.1;
}

.price-note {
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-bottom: 20px;
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-list li {
  font-size: 0.9375rem;
  color: var(--text-2);
}

.price-disclaimer {
  margin-top: 28px;
  font-size: 0.8rem;
  color: var(--text-3, #888);
  text-align: center;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ── Legal pages ──────────────────────────────────────────────── */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 40px 100px;
}

.legal-wrap h1 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 8px;
}

.legal-meta {
  font-size: 0.875rem;
  color: var(--text-3);
  margin-bottom: 48px;
}

.legal-wrap h2 {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-1);
  margin: 40px 0 10px;
}

.legal-wrap h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-1);
  margin: 24px 0 8px;
}

.legal-wrap p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-wrap ul {
  margin: 8px 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-wrap li {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.6;
}

.legal-wrap a {
  color: var(--accent);
  text-decoration: underline;
}

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--text-1);
  padding: 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 600;
  color: #F8F4ED;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: #A8AC97;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: #F8F4ED; }

.footer-copy {
  width: 100%;
  font-size: 0.8125rem;
  color: #A8AC97;
  text-align: center;
  margin-top: 8px;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 16px 20px; }
  .nav-links { gap: 16px; }

  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 20px 64px;
    text-align: center;
  }

  .hero-sub { max-width: 100%; }
  .hero-badges { justify-content: center; }
  .hero-visual { order: -1; }
  .phone-mockup { width: 240px; }

  .section-inner { padding: 60px 20px; }

  .footer { padding: 32px 20px; }
  .footer-inner { justify-content: center; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-copy { margin-top: 16px; }

  .legal-wrap { padding: 40px 20px 80px; }
}
