/* ============================================================
   Telmall — Landing styles
   Themes (light/dark), animations, fully responsive
   ============================================================ */

/* ---------- Theme tokens ---------- */
/* Brend ranglari (logodan): yashil #0a3c33 · qaymoq #fbedd2 · oq #fff */
:root {
  --brand: #0a3c33;
  --brand-2: #15604f;
  --brand-grad: linear-gradient(135deg, #157a5f, #0a3c33);
  --cream: #fbedd2;
  --radius: 20px;
  --radius-sm: 14px;
  --container: 1200px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --shadow-sm: 0 4px 16px rgba(8, 32, 26, .08);
  --shadow-lg: 0 24px 60px rgba(8, 32, 26, .18);
  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* Light = qaymoq (cream) fon + oq kartalar + yashil urg'u */
html[data-theme="light"] {
  --bg: #fbfaf5;
  --bg-elev: #ffffff;
  --bg-alt: #f4eedf;
  --surface: rgba(255, 255, 255, .82);
  --border: rgba(10, 60, 51, .12);
  --text: #0c2a22;
  --text-soft: #455c51;
  --text-mute: #6a7e73;
  --header-bg: rgba(251, 250, 245, .82);
  --orb-1: rgba(196, 235, 214, .16);
  --orb-2: rgba(255, 245, 218, .18);
  --orb-3: rgba(214, 240, 224, .12);
}

/* Dark = chuqur yashil fon + qaymoq matn */
html[data-theme="dark"] {
  --bg: #07261f;
  --bg-elev: #0c352b;
  --bg-alt: #092c24;
  --surface: rgba(14, 54, 44, .55);
  --border: rgba(150, 200, 180, .14);
  --text: #f6ecd2;
  --text-soft: #cdddd0;
  --text-mute: #8fab9c;
  --header-bg: rgba(6, 32, 26, .66);
  --orb-1: rgba(21, 122, 79, .40);
  --orb-2: rgba(95, 202, 166, .26);
  --orb-3: rgba(251, 237, 210, .12);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .5s var(--ease), color .5s var(--ease);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Animated background orbs ---------- */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .9;
  animation: float-orb 18s var(--ease) infinite alternate;
}
/* Light rejimda fon toza oq/qaymoq bo'lishi uchun orblar yumshatiladi */
html[data-theme="light"] .orb { opacity: .5; filter: blur(120px); }
html[data-theme="light"] .orb-1 { width: 360px; height: 360px; }
html[data-theme="light"] .orb-2 { width: 320px; height: 320px; }
html[data-theme="light"] .orb-3 { width: 300px; height: 300px; }
.orb-1 { width: 520px; height: 520px; background: var(--orb-1); top: -140px; left: -100px; }
.orb-2 { width: 460px; height: 460px; background: var(--orb-2); top: 30%; right: -120px; animation-delay: -4s; }
.orb-3 { width: 400px; height: 400px; background: var(--orb-3); bottom: -120px; left: 30%; animation-delay: -9s; }

@keyframes float-orb {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(40px, -50px, 0) scale(1.15); }
}

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--pad-y) 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-sm { --pad-y: 10px; padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--brand-grad);
  color: #fff;
  box-shadow: 0 10px 30px rgba(22, 163, 74, .35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 42px rgba(22, 163, 74, .45); }

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--brand); color: var(--brand); }

.btn-light {
  background: #fff;
  color: #1e293b;
  box-shadow: var(--shadow-lg);
}
.btn-light:hover { transform: translateY(-2px); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .5s, box-shadow .3s;
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.logo { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 22px; }
.logo-badge { display: inline-flex; align-items: center; }
.logo-img {
  height: 38px; width: auto; display: block;
  transition: transform .3s var(--ease);
}
.logo:hover .logo-img { transform: rotate(-6deg) scale(1.06); }
.logo-img-cream { display: none; }
html[data-theme="dark"] .logo-img-green { display: none; }
html[data-theme="dark"] .logo-img-cream { display: block; }
.logo-text {
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--text);
}
.lt-mall { color: #157a5f; }
html[data-theme="dark"] .lt-mall { color: #7fe0bd; }

.nav { display: flex; gap: 30px; }
.nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-soft);
  position: relative;
  transition: color .2s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--brand-grad);
  border-radius: 2px;
  transition: width .3s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 12px; }

/* ---------- Language switcher ---------- */
.lang-switch { position: relative; }
.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.lang-current:hover { border-color: var(--brand); }
.lang-current svg { transition: transform .3s; opacity: .6; }
.lang-switch.open .lang-current svg { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 170px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s;
}
.lang-menu button:hover { background: var(--bg-alt); }
.lang-menu button.active { background: var(--brand); color: #fff; }

/* ---------- Theme toggle ---------- */
.theme-toggle {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: border-color .2s, transform .3s;
}
.theme-toggle:hover { border-color: var(--brand); transform: rotate(15deg); }
.theme-toggle svg { position: absolute; transition: transform .5s var(--ease), opacity .4s; }
html[data-theme="dark"] .icon-sun  { transform: translateY(0) rotate(0); opacity: 1; }
html[data-theme="dark"] .icon-moon { transform: translateY(40px) rotate(90deg); opacity: 0; }
html[data-theme="light"] .icon-sun  { transform: translateY(-40px) rotate(-90deg); opacity: 0; }
html[data-theme="light"] .icon-moon { transform: translateY(0) rotate(0); opacity: 1; }

/* ---------- Mobile menu toggle ---------- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 40px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, .6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 22px 0 20px;
}
.hero-title span { display: block; }
.gradient-text {
  background: linear-gradient(120deg, #157a5f, #0a3c33, #1f8a66);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 5s linear infinite;
}
html[data-theme="dark"] .gradient-text {
  background: linear-gradient(120deg, #7fe0bd, #5fcaa6, #b9f2dc);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
}
@keyframes shimmer { to { background-position: 200% center; } }
.hero-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--text-soft);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual { display: grid; place-items: center; }
.device-stage {
  position: relative;
  width: 340px; height: 340px;
  display: grid;
  place-items: center;
}
.glow-ring {
  position: absolute;
  width: 78%; height: 78%;
  border-radius: 50%;
  background: var(--brand-grad);
  filter: blur(56px);
  opacity: .28;
  z-index: -1;
  animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { transform: scale(.9); opacity:.22; } 50% { transform: scale(1.08); opacity:.4; } }
.device { display: grid; place-items: center; }
.device .dsvg { display: block; }
.device-main { animation: float-main 5s ease-in-out infinite; }
.device-main .dsvg {
  height: 224px; width: auto;
  filter: drop-shadow(0 26px 40px rgba(2, 6, 23, .5));
}
@keyframes float-main { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-18px) rotate(2deg); } }
.device-float {
  position: absolute;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  animation: float-chip 6s ease-in-out infinite;
}
.device-float .dsvg { height: 52px; width: auto; }
.device-1 { top: -6%; right: 2%; animation-delay: -1s; }
.device-2 { bottom: 16%; left: -8%; animation-delay: -2.5s; }
.device-3 { bottom: -4%; right: 12%; animation-delay: -4s; }
@keyframes float-chip { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* ---------- Stats ---------- */
.stats { padding: 30px 0 70px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  text-align: center;
  padding: 28px 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.stat-num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { color: var(--text-soft); font-weight: 600; font-size: 14px; margin-top: 4px; }

/* ---------- Brands marquee ---------- */
.brands { padding: 6px 0 70px; }
.brands-title {
  text-align: center;
  color: var(--text-mute);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.brands-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.brands-track {
  display: flex;
  gap: 70px;
  width: max-content;
  padding-right: 70px;
  animation: marquee 22s linear infinite;
}
.brands-track:hover { animation-play-state: paused; }
.brand-name {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--text);
  opacity: .45;
  white-space: nowrap;
  transition: opacity .3s, color .3s;
  cursor: default;
}
.brand-name:hover { opacity: 1; color: var(--brand); }
html[data-theme="dark"] .brand-name:hover { color: #86efac; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 50px; }
.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(22, 163, 74,.14), rgba(21, 128, 61,.14));
  color: var(--brand);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
html[data-theme="dark"] .tag { color: #86efac; }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.12;
}
.section-sub { color: var(--text-soft); margin-top: 14px; font-size: 1.05rem; }

/* ---------- Filters ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-soft);
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.filter-btn:hover { color: var(--text); border-color: var(--brand); }
.filter-btn.active { background: var(--brand-grad); color: #fff; border-color: transparent; box-shadow: 0 8px 22px rgba(22, 163, 74,.35); }

/* ---------- Products ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(22, 163, 74,.4);
}
.product-media {
  height: 180px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.18), transparent 55%);
  pointer-events: none;
}
.product-brand {
  position: absolute;
  top: 12px; left: 14px;
  z-index: 2;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  background: rgba(0, 0, 0, .28);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 999px;
}
.product-art { display: grid; place-items: center; z-index: 1; }
.product-art .dsvg {
  height: 124px; width: auto;
  filter: drop-shadow(0 14px 22px rgba(2, 6, 23, .4));
  transition: transform .4s var(--ease);
}
.product-card:hover .product-art .dsvg { transform: scale(1.08) rotate(-3deg); }
.product-body { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-name { font-weight: 800; font-size: 1.08rem; }
.product-price { font-weight: 800; font-size: 1.25rem; }
.product-price small { font-weight: 600; font-size: .8rem; color: var(--text-mute); }
.product-monthly {
  font-size: .9rem;
  color: var(--text-soft);
  background: var(--bg-alt);
  padding: 6px 10px;
  border-radius: 10px;
  display: inline-block;
  width: fit-content;
}
.product-monthly b { color: var(--brand); }
html[data-theme="dark"] .product-monthly b { color: #86efac; }
.product-buy {
  margin-top: 12px;
  padding: 11px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
}
.product-buy:hover { background: var(--brand-grad); color: #fff; border-color: transparent; }

/* ---------- Payment ---------- */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 900px;
  margin: 0 auto;
}
.pay-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 32px;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.pay-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pay-card-featured {
  border-color: transparent;
  background:
    linear-gradient(var(--bg-elev), var(--bg-elev)) padding-box,
    var(--brand-grad) border-box;
  border: 2px solid transparent;
  box-shadow: 0 20px 50px rgba(22, 163, 74,.2);
}
.pay-badge {
  position: absolute;
  top: 20px; right: 20px;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  background: var(--bg-alt);
  color: var(--text-soft);
}
.pay-badge-hot { background: var(--brand-grad); color: #fff; }
.pay-icon { font-size: 46px; margin-bottom: 14px; }
.pay-card h3 { font-size: 1.5rem; font-weight: 800; }
.pay-card > p { color: var(--text-soft); margin: 10px 0 22px; }
.pay-list { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; }
.pay-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.check {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: rgba(34,197,94,.15);
  color: #16a34a;
  border-radius: 50%;
  font-size: 13px; font-weight: 900;
  flex-shrink: 0;
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: transform .35s var(--ease), border-color .3s;
}
.feature:hover { transform: translateY(-6px); border-color: rgba(22, 163, 74,.4); }
.feature-icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  font-size: 30px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(22, 163, 74,.16), rgba(21, 128, 61,.16));
  margin-bottom: 18px;
}
.feature h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.feature p { color: var(--text-soft); }

/* ---------- Steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: flex-start;
  gap: 10px;
}
.step { text-align: center; padding: 10px; }
.step-num {
  width: 66px; height: 66px;
  margin: 0 auto 20px;
  display: grid; place-items: center;
  font-size: 1.6rem; font-weight: 800;
  color: #fff;
  border-radius: 50%;
  background: var(--brand-grad);
  box-shadow: 0 14px 30px rgba(22, 163, 74,.4);
  position: relative;
}
.step-num::after {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(22, 163, 74,.4);
  animation: spin 14s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.step h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.step p { color: var(--text-soft); max-width: 260px; margin: 0 auto; }
.step-line {
  height: 2px;
  margin-top: 33px;
  background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
  min-width: 40px;
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testimonial {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform .35s var(--ease);
}
.testimonial:hover { transform: translateY(-6px); }
.stars { color: #fbbf24; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial blockquote { font-size: 1.05rem; color: var(--text); margin-bottom: 22px; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand-grad);
  color: #fff; font-weight: 800;
  flex-shrink: 0;
}
.t-meta { display: flex; flex-direction: column; }
.t-meta strong { font-weight: 800; }
.t-meta small { color: var(--text-mute); }

/* ---------- CTA band ---------- */
.cta-band {
  margin: 0 24px;
  padding: 70px 0;
  border-radius: 32px;
  background: var(--brand-grad);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.25), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.18), transparent 40%);
}
.cta-inner { text-align: center; position: relative; color: #fff; }
.cta-inner h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 12px; }
.cta-inner p { font-size: 1.1rem; opacity: .92; margin-bottom: 28px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .25s, transform .25s;
}
a.contact-item:hover { border-color: var(--brand); transform: translateX(4px); }
.contact-ic {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  font-size: 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(22, 163, 74,.16), rgba(21, 128, 61,.16));
  flex-shrink: 0;
}
.contact-item small { display: block; color: var(--text-mute); font-size: 13px; }
.contact-item strong { font-weight: 700; }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.social {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  font-size: 20px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform .25s, border-color .25s;
}
.social:hover { transform: translateY(-4px); border-color: var(--brand); }

.contact-form {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .25s, box-shadow .25s;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-mute); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(22, 163, 74,.15);
}
.form-note {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.45;
  margin-top: 2px;
}
.form-success { color: #16a34a; }
.form-error { color: #ef4444; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 56px;
  margin-top: 90px;
  background: var(--bg-alt);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.footer-col a, .footer-col span { color: var(--text-soft); transition: color .2s; }
.footer-col a:hover { color: var(--brand); }
.footer-about { color: var(--text-soft); max-width: 320px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 24px;
  text-align: center;
  color: var(--text-mute);
  font-size: 14px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; margin-bottom: 20px; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--header-bg);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    padding: 10px 24px 20px;
    transform: translateY(-120%);
    transition: transform .4s var(--ease);
    z-index: 90;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav a::after { display: none; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 30px; }
  .step-line { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding-top: 120px; min-height: auto; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .device-stage { width: 280px; height: 300px; }
  .device-main .dsvg { height: 190px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
