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

:root {
  --bg:          #080B0B;
  --surface:     #121819;
  --surface-2:   #1B2325;
  --stroke:      rgba(255,255,255,0.09);
  --text:        #F4F7F7;
  --muted:       #9CA9AB;
  --muted-2:     #66757A;
  --mint:        #2AE6C4;
  --mint-ink:    #04241F;
  --mint-text:   #4CF0D3;
  --blue:        #27B7F0;
  --amber:       #FFB733;
  --violet:      #9A8BFF;
  --energy:      #FF7358;
  --radius:      24px;
  --brand-grad:  linear-gradient(135deg, var(--mint), var(--blue));
}

html { scroll-behavior: smooth; }

body {
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* ── NAV ─────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 64px;
  background: rgba(8,11,11,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stroke);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.25rem; font-weight: 800;
  color: var(--text); text-decoration: none;
  white-space: nowrap;
}
.nav-logo img { width: 32px; height: 32px; border-radius: 9px; }
.logo-text span { color: var(--mint-text); }
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--muted); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--mint); color: var(--mint-ink) !important;
  padding: 8px 18px; border-radius: 20px; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--mint-text) !important; color: var(--mint-ink) !important; }
.lang-switch { display: inline-flex; gap: 10px; }
.lang-switch a {
  font-size: 0.78rem; font-weight: 700; color: var(--muted-2);
  padding: 2px 6px; border-radius: 6px;
}
.lang-switch a:hover { color: var(--text); }
.lang-switch a.active { color: var(--mint-text); background: var(--surface-2); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 900px 500px at 50% -10%, rgba(42,230,196,0.16), transparent 60%),
    var(--bg);
  color: var(--text);
  padding: 100px 5vw 70px;
  text-align: center;
}
.accent-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--brand-grad);
}
.hero-app-row {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 10px 20px 10px 10px;
  margin-bottom: 32px;
}
.hero-app-row img {
  width: 48px; height: 48px;
  border-radius: 13px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.hero-app-row-text { text-align: left; }
.hero-app-row-name { font-size: 0.95rem; font-weight: 700; color: var(--text); line-height: 1.2; }
.hero-app-row-badge { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.1; margin-bottom: 20px;
}
.hero h1 span {
  background: var(--brand-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 560px; margin: 0 auto 40px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--mint); color: var(--mint-ink);
  padding: 14px 26px; border-radius: 16px;
  font-weight: 700; font-size: 1rem;
  text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 4px 24px rgba(42,230,196,0.25);
  transition: transform .2s, box-shadow .2s;
  font-family: inherit;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(42,230,196,0.35); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--stroke);
  padding: 14px 26px; border-radius: 16px;
  font-weight: 700; font-size: 1rem;
  text-decoration: none;
  transition: background .2s;
}
.btn-secondary:hover { background: var(--surface-2); }

/* ── PHONE STRIP (hero visual) ───────────────────────────────── */
.hero-shots {
  display: flex; gap: 18px; justify-content: center; flex-wrap: nowrap;
  max-width: 1000px; margin: 0 auto; overflow: hidden;
}
.hero-shots img {
  width: 100%; max-width: 240px; height: auto;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  border: 1px solid var(--stroke);
}
.hero-shots img:nth-child(2) { transform: translateY(-16px); }

/* ── SECTION COMMON ──────────────────────────────────────────── */
section { padding: 80px 5vw; }
.section-label {
  display: block; text-align: center;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mint-text);
  margin-bottom: 10px;
}
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 12px;
}
.section-sub {
  text-align: center; color: var(--muted);
  font-size: 1rem; max-width: 560px;
  margin: 0 auto 52px;
}

/* ── STATS ───────────────────────────────────────────────────── */
.stats { background: var(--surface); }
.stats-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 40px 60px; max-width: 900px; margin: 0 auto;
  text-align: center;
}
.stat-number {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 900; color: var(--mint-text); letter-spacing: -0.03em;
}
.stat-label { font-size: 0.9rem; color: var(--muted); margin-top: 4px; }

/* ── FEATURES ────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(42,230,196,0.35); box-shadow: 0 8px 28px rgba(0,0,0,0.35); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 16px;
  background: var(--surface-2);
}
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }
.badge-premium {
  display: inline-block; margin-top: 12px;
  background: linear-gradient(90deg, #FFB733, #FF7358);
  color: #1a0f00; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px;
}

/* ── SCREENSHOTS ─────────────────────────────────────────────── */
.screenshots-strip {
  display: flex; gap: 20px; overflow-x: auto;
  max-width: 1100px; margin: 0 auto; padding: 8px 5vw 24px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.screenshots-strip::-webkit-scrollbar { display: none; }
.screenshots-strip img {
  display: block;
  height: 480px; width: auto; flex: 0 0 auto;
  border-radius: 26px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
  scroll-snap-align: center;
}

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px; max-width: 900px; margin: 0 auto;
}
.step { text-align: center; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand-grad); color: var(--mint-ink);
  font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.88rem; color: var(--muted); }

/* ── PRICING ─────────────────────────────────────────────────── */
.pricing { background: var(--surface); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 700px; margin: 0 auto;
}
.plan {
  background: var(--bg); border: 1px solid var(--stroke); border-radius: var(--radius);
  padding: 32px 28px;
}
.plan.featured {
  background: linear-gradient(160deg, #0E2723, #0A1720);
  border-color: rgba(42,230,196,0.4);
  box-shadow: 0 8px 32px rgba(42,230,196,0.12);
}
.plan-name { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; color: var(--muted); }
.plan-price { font-size: 1.7rem; font-weight: 900; letter-spacing: -0.02em; }
.plan-desc { font-size: 0.85rem; color: var(--muted); margin: 8px 0 20px; }
.plan-features { list-style: none; }
.plan-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; margin-bottom: 10px; color: var(--text); }
.plan-features li::before { content: "✓"; font-weight: 800; color: var(--muted); flex-shrink: 0; }
.plan.featured .plan-features li::before { color: var(--mint-text); }
.plan.featured .plan-name { color: var(--mint-text); }
.btn-plan {
  display: block; text-align: center;
  margin-top: 24px; padding: 14px;
  border-radius: 14px; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: opacity .2s;
  border: none; cursor: pointer; font-family: inherit; width: 100%;
}
.btn-plan:hover { opacity: 0.85; }
.plan:not(.featured) .btn-plan { background: var(--surface-2); color: var(--text); }
.plan.featured .btn-plan { background: var(--mint); color: var(--mint-ink); }

/* ── CTA ─────────────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  background: radial-gradient(ellipse 800px 400px at 50% 120%, rgba(42,230,196,0.16), transparent 60%), var(--bg);
  position: relative; overflow: hidden;
}
.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; letter-spacing: -0.02em; margin-bottom: 16px;
}
.cta-section p { color: var(--muted); max-width: 500px; margin: 0 auto 36px; }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-box { max-width: 600px; margin: 0 auto; }
.contact-box .section-title, .contact-box .section-sub { text-align: left; }
.contact-meta { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--muted); margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--stroke);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted-2); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(42,230,196,0.16);
}
.form-group textarea { min-height: 130px; }
.btn-submit {
  align-self: flex-start;
  padding: 14px 32px;
  background: var(--mint); color: var(--mint-ink);
  border: none; border-radius: 14px;
  font-size: 1rem; font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-submit:hover { background: var(--mint-text); transform: translateY(-1px); }
.btn-submit:active { transform: translateY(0); }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: #050807; color: var(--muted-2);
  padding: 36px 5vw; text-align: center; font-size: 0.85rem;
  border-top: 1px solid var(--stroke);
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--text); }
.footer-links { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-credit { margin-top: 10px; font-size: 0.8rem; }
.footer-credit a { font-weight: 600; }
.footer-credit a:hover { color: var(--text); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 700px) {
  .hero-shots img:nth-child(3) { display: none; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  section { padding: 60px 6vw; }
  .form-row { grid-template-columns: 1fr; }
  .screenshots-strip img { height: 380px; }
  .hero-shots img:nth-child(2) { display: none; }
}
