/* ═══════════════════════════════════════ */
/* PikaTalk — Landing Page               */
/* ═══════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #07070e;
  --bg-card: #0d0d18;
  --bg-raised: #141425;
  --bg-surf: #1a1a30;
  --a: #ff6040;
  --a-soft: rgba(255, 96, 64, 0.12);
  --a-glow: rgba(255, 96, 64, 0.25);
  --b: #3b8bff;
  --b-soft: rgba(59, 139, 255, 0.1);
  --b-glow: rgba(59, 139, 255, 0.25);
  --txt: #eae7f3;
  --txt2: #8a86a2;
  --txt3: #48435e;
  --brd: #23213a;
  --brd2: #302d50;
  --ok: #2dd47a;
  --r: 16px;
  --rs: 10px;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family:
    "DM Sans",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg);
  color: var(--txt);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: rgba(59, 139, 255, 0.3);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.grad-text {
  background: linear-gradient(135deg, var(--a), #ffa960 60%, var(--b));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ═══ NAV ═══ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s;
}

.nav.scrolled {
  background: rgba(7, 7, 14, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--brd);
  padding: 10px 0;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.brand-logo {
  height: 80px;
  width: auto;
  display: block;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--a), #ffaa55 55%, var(--b));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 12px rgba(255, 96, 64, 0.18);
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--a), #ffa960 60%, var(--b));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--txt2);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--txt);
}

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

.btn-nav-secondary {
  font-size: 13px;
  font-weight: 600;
  color: var(--txt2);
  padding: 8px 16px;
  border-radius: var(--rs);
  transition: color 0.2s;
}

.btn-nav-secondary:hover {
  color: var(--txt);
}

.btn-nav-primary {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--rs);
  background: linear-gradient(135deg, var(--a), #ff8f4a 70%);
  transition: all 0.25s;
}

.btn-nav-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--a-glow);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-link-app {
  display: none;
}

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--a), #ff8f4a 70%);
  border: none;
  border-radius: var(--rs);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px var(--a-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  color: var(--txt2);
  background: transparent;
  border: 1px solid var(--brd2);
  border-radius: var(--rs);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-ghost:hover {
  color: var(--txt);
  border-color: var(--txt3);
  background: var(--bg-raised);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.arr {
  transition: transform 0.2s;
}

.btn-primary:hover .arr {
  transform: translateX(3px);
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  max-width: 1120px;
  margin: 0 auto;
  gap: 60px;
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, var(--a-glow) 0%, transparent 60%);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--a);
  background: var(--a-soft);
  border: 1px solid rgba(255, 96, 64, 0.2);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--txt2);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--txt2);
  background: var(--bg-raised);
  border: 1px solid var(--brd);
  border-radius: 20px;
  padding: 6px 14px;
}

/* ═══ PHONE MOCK ═══ */
.hero-visual {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.phone-mock {
  width: 300px;
  background: var(--bg-card);
  border: 1px solid var(--brd2);
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 0 0 1px var(--brd),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px var(--a-glow);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.phone-notch {
  width: 100px;
  height: 6px;
  background: var(--bg-surf);
  border-radius: 4px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: var(--bg);
  border-radius: 24px;
  padding: 16px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
}

.mock-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
}

.mock-mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--a), #ffaa55 55%, var(--b));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.mock-brand span {
  background: linear-gradient(135deg, var(--a), #ffa960 60%, var(--b));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mock-status {
  font-size: 9px;
  font-weight: 600;
  color: var(--ok);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mock-led {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 6px var(--ok);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.mock-langs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 600;
}

.mock-lang {
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--bg-raised);
  border: 1px solid var(--brd);
}

.mock-lang.la {
  border-left: 3px solid var(--a);
}

.mock-lang.lb {
  border-left: 3px solid var(--b);
}

.mock-swap {
  color: var(--txt3);
  font-size: 14px;
}

.mock-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.mock-bubble {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.5;
  max-width: 88%;
  animation: fadeUp 0.5s ease both;
}

.mock-bubble:nth-child(1) {
  animation-delay: 0.3s;
}
.mock-bubble:nth-child(2) {
  animation-delay: 0.8s;
}
.mock-bubble:nth-child(3) {
  animation-delay: 1.3s;
}
.mock-bubble:nth-child(4) {
  animation-delay: 1.8s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mock-bubble.ma {
  background: var(--a-soft);
  border: 1px solid rgba(255, 96, 64, 0.15);
  align-self: flex-start;
}

.mock-bubble.mb {
  background: var(--b-soft);
  border: 1px solid rgba(59, 139, 255, 0.12);
  align-self: flex-end;
}

.mock-lbl {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.mock-lbl.la {
  color: var(--a);
}
.mock-lbl.lb {
  color: var(--b);
}

.mock-controls {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.mock-orb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--brd);
  background: var(--bg-raised);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mock-orb svg {
  width: 18px;
  height: 18px;
}

.mock-orb.oa {
  border-color: rgba(255, 96, 64, 0.3);
  color: var(--a);
  animation: orbGlow 3s ease infinite;
}

.mock-orb.ob {
  border-color: rgba(59, 139, 255, 0.3);
  color: var(--b);
}

@keyframes orbGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
  50% {
    box-shadow:
      0 0 0 6px var(--a-glow),
      0 0 20px var(--a-glow);
  }
}

/* ═══ SOCIAL PROOF ═══ */
.social-proof {
  padding: 48px 0;
  border-top: 1px solid var(--brd);
  border-bottom: 1px solid var(--brd);
}

.proof-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--txt3);
  margin-bottom: 20px;
}

.proof-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--txt2);
  background: var(--bg-raised);
  border: 1px solid var(--brd);
  border-radius: 20px;
  padding: 8px 18px;
  transition: all 0.2s;
}

.proof-tag:hover {
  border-color: var(--brd2);
  color: var(--txt);
}

/* ═══ SECTIONS ═══ */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--txt2);
}

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

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--brd);
  border-radius: var(--r);
  padding: 32px 28px;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: var(--brd2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--txt2);
}

/* ═══ LANGUAGES ═══ */
.languages {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--brd);
  border-bottom: 1px solid var(--brd);
}

.lang-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.lc-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--txt3);
  background: var(--bg-raised);
  border: 1px solid var(--brd);
  border-radius: 20px;
  padding: 6px 16px;
  transition: all 0.2s;
}

.lc-tag.native {
  color: var(--txt2);
  border-color: var(--brd2);
}

.lc-tag.more {
  color: var(--a);
  border-color: rgba(255, 96, 64, 0.2);
  background: var(--a-soft);
  font-weight: 600;
}

.lang-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.lang-stat {
  text-align: center;
}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--a), var(--b));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-lbl {
  font-size: 12px;
  font-weight: 600;
  color: var(--txt3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

/* ═══ HOW IT WORKS ═══ */
.how-it-works {
  padding: 100px 0;
}

.steps {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--brd);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--a), var(--b));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
  line-height: 1;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--txt2);
}

/* ═══ PRICING ═══ */
.pricing {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--brd);
  border-bottom: 1px solid var(--brd);
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto 48px;
  background: var(--bg);
  border: 1px solid var(--brd2);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
}

.pricing-rate {
  margin-bottom: 28px;
}

.pricing-amt {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
}

.pricing-per {
  font-size: 16px;
  color: var(--txt2);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--txt2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.check {
  color: var(--ok);
  font-weight: 700;
  font-size: 14px;
}

.pricing-presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.preset {
  background: var(--bg-raised);
  border: 1px solid var(--brd);
  border-radius: var(--rs);
  padding: 14px 8px;
  text-align: center;
  transition: all 0.2s;
  position: relative;
}

.preset:hover {
  border-color: var(--brd2);
}

.preset.featured {
  border-color: var(--a);
  background: var(--a-soft);
}

.preset-badge {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  background: var(--a);
  padding: 2px 8px;
  border-radius: 8px;
}

.preset-price {
  font-size: 18px;
  font-weight: 700;
}

.preset-mins {
  font-size: 11px;
  color: var(--txt3);
  margin-top: 2px;
}

.preset-bonus {
  font-size: 9px;
  font-weight: 700;
  color: #34d399;
  margin-top: 2px;
}

.pricing-note {
  font-size: 12px;
  color: var(--txt3);
  margin-top: 14px;
}

.pricing-compare {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.pricing-compare h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.compare-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.compare-item {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--brd);
  border-radius: var(--r);
  padding: 24px 20px;
}

.compare-item.us {
  border-color: var(--a);
  box-shadow: 0 0 30px var(--a-glow);
}

.compare-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--txt3);
  margin-bottom: 8px;
}

.compare-price {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.compare-item.us .compare-price {
  color: var(--ok);
}

.compare-note {
  font-size: 12px;
  color: var(--txt3);
  line-height: 1.5;
}

.compare-vs {
  font-size: 14px;
  font-weight: 700;
  color: var(--txt3);
  flex-shrink: 0;
}

/* ═══ FAQ ═══ */
.faq {
  padding: 100px 0;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--brd);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--a);
}

.faq-arrow {
  font-size: 16px;
  color: var(--txt3);
  transition: transform 0.2s;
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--txt2);
  padding-bottom: 20px;
}

/* ═══ CTA ═══ */
.cta {
  padding: 100px 0;
  text-align: center;
  background: var(--bg-card);
  border-top: 1px solid var(--brd);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, var(--a-glow) 0%, transparent 60%);
  opacity: 0.2;
  pointer-events: none;
}

.cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
  position: relative;
}

.cta p {
  font-size: 16px;
  color: var(--txt2);
  margin-bottom: 32px;
  position: relative;
}

.cta .btn-primary {
  position: relative;
}

/* ═══ FOOTER ═══ */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--brd);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.8fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--txt3);
  margin-top: 14px;
}

.footer-legal {
  font-size: 11px !important;
  color: var(--txt3) !important;
  margin-top: 8px !important;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--txt2);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: var(--txt3);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--txt);
}

.footer-addr {
  font-size: 12px;
  line-height: 1.6;
  color: var(--txt3);
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid var(--brd);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--txt3);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
    gap: 40px;
    min-height: auto;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-chips {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 7, 14, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 20px;
    font-weight: 600;
  }

  .nav-link-app {
    display: block !important;
    color: var(--a) !important;
    font-weight: 700 !important;
    margin-top: 8px;
    padding: 12px 28px;
    background: var(--a-soft);
    border-radius: var(--rs);
  }

  .nav-actions {
    display: none;
  }

  .nav-burger {
    display: flex;
    z-index: 101;
  }

  .hero {
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .lang-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .pricing-presets {
    grid-template-columns: repeat(2, 1fr);
  }

  .compare-row {
    flex-direction: column;
    gap: 12px;
  }

  .compare-vs {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .phone-mock {
    width: 260px;
  }

  .phone-screen {
    min-height: 380px;
  }

  /* Mobile logo size reduction */
  .brand-logo {
    height: 60px; /* Reduced from 80px (25% reduction) */
  }

  /* Mobile text brightness improvement */
  .hero-sub {
    color: var(--txt); /* Changed from var(--txt2) for better readability */
  }
}
