*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #368a71;
  --primary-dark: #2c7260;
  --emerald: #43aa8b;
  --emerald-dark: #368a71;
  --gold: #f9c74f;
  --steel: #577590;
  --text: #2D3436;
  --text-muted: #7f8c8d;
  --bg: #f8fafb;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(54,138,113,0.10);
  --shadow-lg: 0 12px 48px rgba(54,138,113,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary);
}
.nav-logo img { width: 36px; height: 36px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta-outline {
  background: transparent;
  color: var(--primary) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid var(--primary);
  transition: all 0.2s;
}
.nav-cta-outline:hover { background: var(--primary); color: var(--white) !important; transform: translateY(-1px); }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(54,138,113,0.08);
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 600;
}
.lang-switch button {
  border: none;
  background: transparent;
  color: var(--text-muted);
  padding: 5px 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.8rem;
  font-family: inherit;
  transition: all 0.2s;
}
.lang-switch button.active {
  background: var(--primary);
  color: var(--white);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(160deg, rgba(240,247,250,0.92) 0%, rgba(232,245,240,0.90) 50%, rgba(253,248,232,0.88) 100%),
              url('assets/mintnd-toyota.webp') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54,138,113,0.06) 0%, transparent 70%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(54,138,113,0.08);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--primary-dark), var(--emerald));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-store-badges { display: flex; align-items: flex-start; gap: 14px; flex-wrap: wrap; }
.hero-store-badges a { display: inline-block; transition: transform 0.2s, opacity 0.2s; }
.hero-store-badges a:hover { transform: translateY(-2px); opacity: 0.85; }
.hero-store-badges img { height: 44px; width: auto; border-radius: 8px; }
.btn-web-app.btn-primary { padding: 12px 24px; font-size: 0.85rem; }

/* Coming Soon badges */
.store-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.store-badge-wrap a.disabled { transform: none; opacity: 0.6; cursor: default;}
.coming-soon-tag {
  display: inline-block;
  background: var(--gold);
  color: #333;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 10px;
  border-radius: 10px;
}
.coming-soon-inline {
  display: inline-block;
  background: var(--gold);
  color: #333;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1px 8px;
  border-radius: 8px;
  margin-left: 4px;
  vertical-align: middle;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--primary);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

.hero-screenshot {
  position: relative;
  z-index: 1;
}
.hero-screenshot img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero-screenshot .phone-frame {
  position: absolute;
  right: -30px;
  bottom: -20px;
  width: 200px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  border: 6px solid #222;
  background: #222;
  overflow: hidden;
}
.hero-screenshot .phone-frame img { border-radius: 0; }



/* ── FEATURES ── */
.features {
  padding: 100px 0;
  background: var(--bg);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .label {
  display: inline-block;
  background: rgba(54,138,113,0.08);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(0,0,0,0.04);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--white);
}
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ── SHOWCASE ── */
.showcase {
  padding: 100px 0;
  background: var(--white);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.showcase-grid.reverse { direction: rtl; }
.showcase-grid.reverse > * { direction: ltr; }
.showcase-text .label {
  display: inline-block;
  background: rgba(67,170,139,0.1);
  color: var(--emerald-dark);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.showcase-text h3 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; }
.showcase-text p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 24px; }
.showcase-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}
.showcase-list .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(67,170,139,0.12);
  color: var(--emerald-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 2px;
}
.showcase-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* ── VEHICLE SHOWCASE ── */
.vehicle-showcase {
  padding: 100px 0;
  background: linear-gradient(160deg, #1a2a3a 0%, #0d1f2d 100%);
  color: var(--white);
}
.vehicle-showcase .section-header h2 { color: var(--white); }
.vehicle-showcase .section-header p { color: rgba(255,255,255,0.7); }
.vehicle-showcase .section-header .label { background: rgba(249,199,79,0.15); color: var(--gold); }
.vehicle-card-demo {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.vehicle-header-demo {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}
.vehicle-header-demo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.vehicle-header-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
.vehicle-header-overlay h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.vehicle-header-overlay p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.vehicle-stats-demo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}
.v-stat {
  padding: 24px;
  text-align: center;
  background: rgba(255,255,255,0.03);
}
.v-stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  margin-bottom: 6px;
}
.v-stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}
.v-stat-value small {
  font-size: 0.65em;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ── PRICING ── */
.pricing {
  padding: 100px 0;
  background: var(--white);
}
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}
.pricing-toggle .toggle-track {
  width: 48px;
  height: 26px;
  background: var(--primary);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}
.pricing-toggle .toggle-track::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.2s;
}
.pricing-toggle .toggle-track.yearly::after {
  transform: translateX(22px);
}
.pricing-toggle .save-badge {
  background: rgba(67,170,139,0.12);
  color: var(--emerald-dark);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.recommended {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
}
.pricing-card .badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.pricing-card .price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}
.pricing-card .price small {
  font-size: 0.4em;
  font-weight: 500;
  color: var(--text-muted);
}
.pricing-card .price-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}
.pricing-features .check {
  color: var(--emerald);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.pricing-card .btn-primary,
.pricing-card .btn-outline { width: 100%; justify-content: center; }

/* ── PLATFORMS ── */
.platforms {
  padding: 100px 0;
  background: var(--bg);
}
.platforms-devices {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 60px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.device-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.device-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.device-label .icon { display: inline-flex; }
.device-label .icon svg { width: 20px; height: 20px; fill: currentColor; }
/* Phone mockup */
.device-phone {
  position: relative;
  width: 260px;
  height: 520px;
  border-radius: 36px;
  background: #1a1a1a;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), inset 0 0 0 2px #333;
}
.device-phone.iphone {
  border-radius: 40px;
  padding: 14px;
}
.device-phone .device-screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #f0f0f0;
}
.device-phone.iphone .device-screen {
  border-radius: 30px;
}
.device-phone .device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
/* iPhone notch */
.device-phone.iphone::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
/* Android camera dot */
.device-phone.android::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 50%;
  z-index: 2;
  box-shadow: inset 0 0 0 2px #444;
}
.device-store-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.device-store-badge a.disabled { opacity: 0.6; transform: none; cursor: default; }
.device-store-badge img {
  height: 44px;
  width: auto;
  border-radius: 8px;
}
.device-store-badge img:hover {
  transform: none;
  opacity: 1;
}
.platforms-web {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.platforms-web p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.platforms-web .btn-primary {
  padding: 10px 28px;
  font-size: 0.9rem;
}

/* ── CTA ── */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(44,114,96,0.88), rgba(67,170,139,0.85)),
              url('assets/mintnd-audi.webp') center/cover no-repeat;
  text-align: center;
  color: var(--white);
}
.cta h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 16px; }
.cta p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.btn-white {
  background: var(--white);
  color: var(--primary);
  padding: 16px 40px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }

/* ── FOOTER ── */
.footer {
  padding: 60px 0 32px;
  background: #0d1f2d;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}
.footer-brand .logo img { width: 32px; height: 32px; border-radius: 8px; }
.footer-brand p { font-size: 0.9rem; max-width: 300px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .hero { padding: 100px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-store-badges { justify-content: center; }
  .hero-screenshot .phone-frame { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .showcase-grid, .showcase-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
  .vehicle-stats-demo { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .platforms-devices { gap: 32px; }
  .device-phone { width: 220px; height: 440px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section-header h2 { font-size: 1.8rem; }
}

/* ── FAQ ── */
.faq {
  padding: 100px 0;
  background: linear-gradient(rgba(13, 13, 13, 0.88), rgba(13, 13, 13, 0.92)),
              url('assets/mintnd-amg.webp') center/cover no-repeat fixed;
  color: #fff;
}
.faq .section-header .label {
  background: rgba(201, 169, 110, 0.2);
  color: #c9a96e;
}
.faq .section-header h2 {
  color: #fff;
}
.faq .section-header p {
  color: rgba(255,255,255,0.7);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(8px);
}
.faq-item:hover {
  background: rgba(255,255,255,0.09);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover {
  color: #c9a96e;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #c9a96e;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: #c9a96e;
  color: #0d0d0d;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 28px 22px;
}
.faq-answer p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Screenshot placeholder styling */
.screenshot-placeholder {
  background: linear-gradient(135deg, #e8f0f5 0%, #dce8ee 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  min-height: 400px;
  flex-direction: column;
  gap: 12px;
  border: 2px dashed rgba(54,138,113,0.15);
}
.screenshot-placeholder .icon { font-size: 2rem; opacity: 0.4; }
