/* ============================================
   SOLDATSEIN LANDING v4
   Community-fokussiert · Dark Mode · Mobile-first
   ============================================ */

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

:root {
  --gold:        #E5B800;
  --gold-hover:  #F5CA10;
  --bg:          #0A0A0A;
  --bg-2:        #111111;
  --bg-3:        #181818;
  --card-bg:     #161616;
  --card-border: rgba(255,255,255,0.08);
  --fg:          #FFFFFF;
  --muted-fg:    rgba(255,255,255,0.55);
  --dim-fg:      rgba(255,255,255,0.35);
  --border:      rgba(255,255,255,0.1);
  --radius:      14px;
  --radius-sm:   8px;
  --max-w:       720px;
  --font:        'General Sans', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
strong { font-weight: 600; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 3.5rem 0; }
.section-dark { background: var(--bg-2); }

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.25s ease;
}
.header--hidden { transform: translateY(-100%); }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.header-logo img { border-radius: 6px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.1s ease;
}
.btn:active { transform: scale(0.97); }
.btn:hover { opacity: 0.88; }

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  border-radius: 8px;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  border-radius: 12px;
}

/* Store Buttons */
.btn-store {
  padding: 0.625rem 1.125rem;
  border-radius: 12px;
  gap: 0.625rem;
  font-size: 0.75rem;
  line-height: 1.3;
  min-width: 155px;
}
.btn-store-ios {
  background: var(--gold);
  color: #000;
}
.btn-store-android {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.store-icon { flex-shrink: 0; }
.store-label { font-size: 0.6875rem; font-weight: 400; opacity: 0.75; }
.store-name { font-size: 0.875rem; font-weight: 700; }

/* Header CTA — hidden until scrolled */
.header-cta { opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.header-cta.visible { opacity: 1; pointer-events: auto; }

/* Store buttons group */
.store-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.25rem auto 0;
}

.cta-note {
  font-size: 0.75rem;
  color: var(--muted-fg);
  text-align: center;
  margin-top: 0.625rem;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.25) 25%,
    rgba(10,10,10,0.35) 55%,
    rgba(10,10,10,0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 5rem;
}

/* Trust bar */
.trust-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item { display: flex; align-items: center; gap: 0.375rem; }
.trust-tp { color: var(--fg); }
.trust-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }
.trust-divider--mobile-hide { display: none; }
.stars-row { color: #00B67A; letter-spacing: 1px; font-size: 0.8rem; }

.hero-title {
  font-size: clamp(2.5rem, 10vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

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

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 0 auto 0.25rem;
  line-height: 1.6;
}

/* ---- PRESS LOGOS ---- */
.section-press {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.press-known-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim-fg);
  text-align: center;
  margin-bottom: 1rem;
}
.press-logos-img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.press-logo-img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.75;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.press-logo-img:hover { opacity: 1; }

.press-ad-label {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-fg);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  padding: 1px 5px;
  vertical-align: middle;
  margin-left: 0.4rem;
  opacity: 0.6;
}

/* ---- REVIEWS ---- */
.reviews-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.reviews-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  background: rgba(0,182,122,0.1);
  border: 1px solid rgba(0,182,122,0.2);
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
  color: #00B67A;
  white-space: nowrap;
}
.reviews-subtitle {
  font-size: 0.8125rem;
  color: var(--muted-fg);
}
.reviews-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-scroll::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 280px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.125rem;
  scroll-snap-align: start;
}
.review-stars {
  color: #00B67A;
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-bottom: 0.625rem;
}
.review-text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 0.75rem;
  flex: 1;
}
.review-author {
  font-size: 0.6875rem;
  color: var(--muted-fg);
  font-weight: 500;
}

/* ---- SECTION TITLES ---- */
.section-title {
  font-size: clamp(1.375rem, 4.5vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* ---- FEATURE LAYOUT ---- */
.feature-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.feature-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.feature-text { order: 1; }
.feature-visual { order: 2; }

.feature-img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}

.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
}
.feature-checklist li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ---- MID CTA SECTION ---- */
.section-cta-mid { background: var(--bg-2); text-align: center; }
.mid-cta-title {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}
.mid-cta-sub {
  font-size: 0.875rem;
  color: var(--muted-fg);
  margin-bottom: 0.25rem;
}

/* ---- TRUST NUMBERS ---- */
.trust-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1rem;
  margin-bottom: 2rem;
  text-align: center;
}
.trust-num-value {
  display: block;
  font-size: clamp(1.625rem, 5vw, 2.25rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.trust-num-label {
  font-size: 0.75rem;
  color: var(--muted-fg);
}

/* ---- TRUST BADGES ---- */
.trust-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-fg);
}
.trust-badge-item svg { color: var(--gold); flex-shrink: 0; }

/* ---- FAQ ---- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.5rem;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  list-style: none;
  user-select: none;
  -webkit-user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--muted-fg);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer { padding: 0 0 1rem; }
.faq-answer p {
  font-size: 0.8125rem;
  color: var(--muted-fg);
  line-height: 1.65;
}

/* ---- FINAL CTA ---- */
.final-cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,184,0,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.final-cta-title {
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
}
.final-trust-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-top: 1rem;
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}
.footer-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.75rem;
  color: var(--dim-fg);
}
.footer-links a:hover { color: var(--muted-fg); }
.footer-copy {
  font-size: 0.6875rem;
  color: var(--dim-fg);
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   DESKTOP — >= 768px
   ============================================ */
@media (min-width: 768px) {
  :root { --max-w: 820px; }

  .section { padding: 5rem 0; }

  .trust-divider--mobile-hide { display: block; }

  /* Hero larger */
  .hero { min-height: 85svh; }
  .hero-img { object-position: center 55%; }
  .hero-title { font-size: 4rem; }
  .hero-sub { font-size: 1.0625rem; }

  /* Press logos bigger */
  .press-logo-img { height: 40px; max-width: 160px; }

  /* Reviews 3-col */
  .reviews-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    padding-bottom: 0;
  }
  .review-card { flex: none; }
  .reviews-scroll .review-card:nth-child(n+4) { display: none; }

  /* Feature layout side-by-side */
  .feature-layout {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }
  .feature-layout--reverse { flex-direction: row-reverse; }
  .feature-text { flex: 1; order: unset; }
  .feature-visual { flex: 1; order: unset; }
  .feature-img { max-width: 100%; margin: 0; }

  /* Trust numbers 4-col */
  .trust-numbers { grid-template-columns: repeat(4, 1fr); }

  /* FAQ max-width */
  .faq-list { max-width: 680px; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* Header store mini buttons */
.header-store-btns {
  display: flex;
  gap: 6px;
  align-items: center;
}

.btn-store-mini {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  background: var(--gold);
  border: none;
  color: #000;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.btn-store-mini:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}
