/* ===========================
   KAUCJONER – Landing Page CSS
   GREEN / LIGHT THEME (matches the app)
   =========================== */

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

:root {
  --bg: #eef4ea;
  --bg-2: #e3ede0;
  --bg-card: #ffffff;
  --bg-card-hover: #f6faf3;
  --border: rgba(46,90,62,.12);
  --border-hover: rgba(46,90,62,.28);
  --text: #1a2e1f;
  --text-muted: #566b58;
  --text-dim: #8a9a86;
  --accent: #2e7d52;
  --accent-2: #007aff;
  --accent-3: #34c759;
  --gradient: linear-gradient(135deg, #2e7d52 0%, #4caf6e 100%);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 10px 34px rgba(46,90,62,.14);
  --shadow-glow: 0 20px 60px rgba(46,125,82,.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: linear-gradient(170deg, #f1f6ed 0%, #dde9d6 45%, #c9ddc2 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.2rem; margin-bottom: .5rem; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: 14px; }
.btn-sm { padding: 8px 18px; font-size: .85rem; border-radius: 10px; }

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(46,125,82,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(46,125,82,.45);
}

.btn-ghost {
  background: rgba(46,125,82,.08);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(46,125,82,.14);
  border-color: var(--border-hover);
}

/* ===== SECTION TAGS & HEADERS ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46,125,82,.12);
  color: var(--accent);
  border: 1px solid rgba(46,125,82,.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tag-light { background: rgba(46,125,82,.12); color: var(--accent); border-color: rgba(46,125,82,.25); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 16px auto 0;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(241,246,237,.8);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.1rem;
}
.nav-logo-icon { font-size: 1.4rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(46,125,82,.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 12px 6px 9px;
  color: var(--text-muted);
  font-family: inherit;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.theme-toggle:hover { color: var(--text); border-color: var(--border-hover); background: rgba(46,125,82,.14); }
.theme-toggle-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d1120 0%, #2a3550 100%);
  box-shadow: 0 0 0 2px rgba(46,90,62,.18);
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.lang-toggle:hover { color: var(--text); border-color: var(--border-hover); background: rgba(46,125,82,.14); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #4caf6e 0%, transparent 70%);
  top: -200px; left: -100px;
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #7ec98f 0%, transparent 70%);
  top: 0; right: -100px;
}
.blob-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #34c759 0%, transparent 70%);
  bottom: -100px; left: 40%;
  opacity: .2;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,125,82,.1);
  border: 1px solid rgba(46,125,82,.22);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent-3);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.hero-title { margin-bottom: 20px; }
.hero-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-desc strong { color: var(--text); }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: var(--text-muted);
}
.trust-icon { font-size: 1rem; }

/* ===== PHONE MOCKUP ===== */
.hero-phone { position: relative; display: flex; justify-content: center; }

.phone-frame {
  width: 280px;
  background: #1c2b20;
  border-radius: 40px;
  border: 2px solid rgba(255,255,255,.5);
  box-shadow: 0 40px 80px rgba(46,90,62,.3), inset 0 1px 0 rgba(255,255,255,.2);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.phone-screen { padding: 0; }

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px 8px;
  font-size: .7rem;
  font-weight: 600;
  color: var(--text);
  background: linear-gradient(180deg, #eef4e9 0%, #dfe9d8 100%);
}
.status-icons { display: flex; align-items: center; gap: 6px; }

.phone-app {
  background: linear-gradient(180deg, #eef4e9 0%, #d4e2cb 100%);
  min-height: 480px;
  position: relative;
  padding-bottom: 80px;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(46,90,62,.1);
}
.app-title { font-size: .95rem; font-weight: 700; }
.app-count {
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  padding: 2px 9px;
  font-size: .75rem;
  font-weight: 700;
}

.coupon-list { padding: 8px 0; }
.coupon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  cursor: pointer;
  transition: background .15s;
  border-bottom: 1px solid rgba(46,90,62,.07);
}
.coupon-item:hover { background: rgba(255,255,255,.4); }

.coupon-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.coupon-icon.qr { background: rgba(46,125,82,.15); color: var(--accent); }
.coupon-icon.barcode { background: rgba(0,122,255,.14); color: var(--accent-2); }

.coupon-info { flex: 1; min-width: 0; }
.coupon-name { font-size: .82rem; font-weight: 600; margin-bottom: 2px; }
.coupon-status { font-size: .72rem; font-weight: 500; }
.coupon-status.valid { color: #1f9d4d; }
.coupon-status.soon { color: #d98309; }
.coupon-status.expired { color: #94a08f; }

.coupon-arrow { color: var(--text-dim); font-size: 1.2rem; }

.app-fab {
  position: absolute;
  bottom: 24px;
  right: 20px;
  width: 48px; height: 48px;
  background: var(--accent-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 300;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,122,255,.4);
}

.phone-glow {
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 240px; height: 120px;
  background: radial-gradient(ellipse, rgba(76,175,110,.5) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.45);
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  padding: 16px 48px;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: .8rem; color: var(--text-muted); }
.stat-divider {
  width: 1px; height: 50px;
  background: var(--border);
}

/* ===== FEATURES ===== */
.features { padding: 100px 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-main { grid-column: span 1; }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(46,90,62,.06);
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.icon-blue   { background: rgba(46,125,82,.15); color: var(--accent); }
.icon-purple { background: rgba(0,122,255,.14); color: var(--accent-2); }
.icon-green  { background: rgba(52,199,89,.16); color: #1f9d4d; }
.icon-orange { background: rgba(251,146,60,.16); color: #e07b1a; }
.icon-red    { background: rgba(248,113,113,.16); color: #e0584f; }
.icon-teal   { background: rgba(20,160,140,.16); color: #14a08c; }

.feature-card p { color: var(--text-muted); font-size: .9rem; }

.feature-banner {
  grid-column: span 3;
  background: linear-gradient(135deg, rgba(46,125,82,.1) 0%, rgba(52,199,89,.1) 100%);
  border-color: rgba(46,125,82,.28);
  box-shadow: 0 4px 20px rgba(46,90,62,.06);
}
.feature-banner-inner { display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.feature-banner-text { flex: 1; min-width: 200px; }
.feature-banner-text h3 { margin-bottom: 8px; }
.feature-banner-text p { max-width: 780px; }

.feature-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.feature-formats span {
  background: rgba(46,125,82,.1);
  color: var(--accent);
  border: 1px solid rgba(46,125,82,.2);
  border-radius: 6px;
  padding: 3px 8px;
  font-size: .75rem;
  font-weight: 600;
}
.feature-formats .more {
  background: rgba(46,90,62,.06);
  color: var(--text-muted);
  border-color: var(--border);
}

/* ===== PRIVACY ===== */
.privacy {
  padding: 100px 0;
  background: rgba(255,255,255,.45);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.privacy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.privacy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.privacy-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.privacy-check {
  width: 22px; height: 22px;
  background: rgba(52,199,89,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: #1f9d4d;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
}
.privacy-list strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.privacy-list span { font-size: .85rem; color: var(--text-muted); }

.privacy-visual { display: flex; justify-content: center; }
.privacy-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow-glow);
}
.privacy-card-icon { font-size: 2.5rem; margin-bottom: 12px; }
.privacy-card-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 28px; }

.privacy-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}
.metric {}
.metric-val {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}
.metric-lbl { font-size: .78rem; color: var(--text-muted); }

.privacy-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(52,199,89,.12);
  border: 1px solid rgba(52,199,89,.25);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .82rem;
  font-weight: 600;
  color: #1f9d4d;
}

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 100px 0; }
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(46,90,62,.06);
}
.step:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--gradient);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.step-icon { font-size: 2.4rem; margin-bottom: 12px; }
.step p { font-size: .88rem; color: var(--text-muted); margin-top: 8px; }
.step-arrow { font-size: 1.5rem; color: var(--accent); flex-shrink: 0; opacity: .6; }

/* ===== DOWNLOAD ===== */
.download {
  padding: 100px 0;
  background: rgba(255,255,255,.45);
  border-top: 1px solid var(--border);
}
.download-inner {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 60px 40px;
  background: linear-gradient(135deg, #2e7d52 0%, #3f9c63 100%);
  border: 1px solid rgba(46,125,82,.4);
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(46,125,82,.28);
}
.download-bg-blob {
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,.18) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.download-inner .section-tag,
.download-inner .tag-light {
  background: rgba(255,255,255,.18);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.download-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
  position: relative;
  color: #fff;
}
.download-desc {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  margin-bottom: 36px;
  position: relative;
}
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  position: relative;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0a160e;
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  padding: 12px 22px;
  text-decoration: none;
  transition: all .2s;
  min-width: 180px;
}
.store-btn:hover {
  background: #060d08;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.store-logo { width: 28px; height: 28px; flex-shrink: 0; }
.store-btn-text { text-align: left; }
.store-btn-sub { display: block; font-size: .7rem; opacity: .7; }
.store-btn-main { display: block; font-size: 1rem; font-weight: 700; }

.download-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  position: relative;
  flex-wrap: wrap;
}

.qr-section { margin-top: 36px; position: relative; }
.qr-hint { font-size: .8rem; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.qr-placeholder { display: flex; justify-content: center; }
.qr-mock {
  width: 96px; height: 96px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.qr-inner {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(0deg, #0a160e 0, #0a160e 3px, transparent 3px, transparent 6px),
    repeating-linear-gradient(90deg, #0a160e 0, #0a160e 3px, transparent 3px, transparent 6px);
  background-size: 6px 6px;
  border-radius: 2px;
}

/* ===== FAQ ===== */
.faq { padding: 100px 0; }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
  box-shadow: 0 4px 16px rgba(46,90,62,.05);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-item[open] { border-color: rgba(46,125,82,.35); }

.faq-item summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 300;
  transition: transform .2s;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(255,255,255,.5);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: .85rem;
  margin-top: 12px;
  max-width: 260px;
}
.footer-links {
  display: flex;
  gap: 48px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: .875rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-phone { order: -1; }
  .hero-text { text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .privacy-inner { grid-template-columns: 1fr; gap: 48px; }
  .stat { padding: 16px 24px; }
  .stat-divider { display: none; }
}

@media (max-width: 600px) {
  .nav-links a:not(.btn) { display: none; }
  .nav-links { gap: 8px; }
  .theme-toggle { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 32px; }
  .stats-row { flex-direction: column; }
  .download-inner { padding: 40px 20px; }
}

/* ===== SCREENSHOTS GALLERY ===== */
.screenshots {
  padding: 100px 0 0;
  overflow: hidden;
}

.screenshots-track-wrap {
  margin-top: 60px;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding-bottom: 40px;
}
.screenshots-track-wrap::-webkit-scrollbar { display: none; }
.screenshots-track-wrap.dragging { cursor: grabbing; }

.screenshots-track {
  display: flex;
  gap: 28px;
  padding: 20px max(calc((100vw - 1140px) / 2), 24px) 20px;
  width: max-content;
}

.ss-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
  width: 240px;
}

.ss-phone {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.7);
  box-shadow: 0 24px 60px rgba(46,90,62,.22), 0 0 0 1px rgba(46,90,62,.05);
  background: #1c2b20;
  transition: transform .3s, box-shadow .3s;
}
.ss-phone:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 40px 80px rgba(46,90,62,.3), 0 0 0 1px rgba(46,90,62,.08);
}
.ss-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 34px;
}

.ss-caption {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ss-num {
  font-size: .7rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(46,125,82,.12);
  border: 1px solid rgba(46,125,82,.2);
  border-radius: 6px;
  padding: 3px 7px;
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: .04em;
}
.ss-caption strong {
  display: block;
  font-size: .88rem;
  margin-bottom: 3px;
}
.ss-caption span {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* scroll hint gradient edges */
.screenshots-track-wrap {
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
