@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --bg-primary: #06070B;
  --bg-secondary: #0C0D14;
  --bg-card: #12141F;
  --bg-card-hover: #191C2B;
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --indigo: #818CF8;
  --indigo-deep: #6366F1;
  --indigo-darker: #4F46E5;
  --amber: #FBBF24;
  --success: #34D399;
  --danger: #F87171;
  --border: #1E2035;
  --border-hover: rgba(129, 140, 248, 0.25);
  --glow-indigo: rgba(129, 140, 248, 0.12);
  --gradient-indigo: linear-gradient(135deg, #4F46E5, #818CF8);
  --radius-sm: 10px; --radius-md: 14px; --radius-lg: 20px; --radius-xl: 28px; --radius-pill: 100px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth; font-size: 16px;
  overflow-x: hidden; max-width: 100%;
  overscroll-behavior-x: none;
}
body {
  font-family: var(--font); background: var(--bg-primary); color: var(--text-primary);
  line-height: 1.6; overflow-x: hidden; max-width: 100%;
  overscroll-behavior-x: none; touch-action: pan-y pinch-zoom;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; font-family: var(--font); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── NAVBAR ───────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(6, 7, 11, 0.7); backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(30, 32, 53, 0.6); transition: var(--transition);
}
.navbar.scrolled { background: rgba(6, 7, 11, 0.92); border-bottom-color: var(--border); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 38px; height: 38px; border-radius: 10px; }
.nav-brand-text { font-size: 21px; font-weight: 800; letter-spacing: -0.5px; }
.nav-brand-text span { color: var(--indigo); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--text-secondary);
  transition: var(--transition); position: relative;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--indigo); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.3s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #E1306C !important;
  font-weight: 700;
}
.nav-social i { font-size: 15px; }
.nav-social:hover { color: #ff4d8d !important; }
.nav-social::after { display: none !important; }
.nav-cta {
  display: inline-flex !important; align-items: center; gap: 8px;
  padding: 10px 24px !important; border-radius: var(--radius-pill) !important;
  background: var(--gradient-indigo); color: #fff !important;
  font-size: 14px; font-weight: 700; box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(79, 70, 229, 0.45); }
.mobile-toggle { display: none; background: none; color: var(--text-primary); font-size: 24px; }

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative; padding: 140px 0 60px; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99,102,241,0.08) 0%, transparent 60%);
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(129,140,248,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129,140,248,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 20%, transparent 70%);
}
.hero-bg-glow {
  position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none;
}
.hero-bg-glow--1 { width: 600px; height: 600px; top: -250px; right: -100px; background: var(--indigo-deep); opacity: 0.1; }
.hero-bg-glow--2 { width: 400px; height: 400px; bottom: 100px; left: -150px; background: var(--amber); opacity: 0.05; }
.hero-bg-glow--3 { width: 500px; height: 500px; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--indigo); opacity: 0.04; }

.hero-content-centered {
  text-align: center; max-width: 720px; margin: 0 auto;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px 8px 12px; border-radius: var(--radius-pill);
  background: rgba(129,140,248,0.08); border: 1px solid rgba(129,140,248,0.15);
  font-size: 13px; font-weight: 700; color: var(--indigo);
  margin-bottom: 32px; animation: fadeInUp 0.6s ease;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(34px, 5vw, 58px); font-weight: 900;
  line-height: 1.08; letter-spacing: -2px; margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.gradient-text {
  background: var(--gradient-indigo);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: 17px; color: var(--text-secondary); line-height: 1.75;
  margin: 0 auto 24px; max-width: 540px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-highlights {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 32px; animation: fadeInUp 0.6s ease 0.25s both;
}
.hero-highlight {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--radius-pill);
  background: rgba(52,211,153,0.08); border: 1px solid rgba(52,211,153,0.2);
  color: var(--success); font-size: 13px; font-weight: 700;
}
.hero-highlight i { font-size: 14px; }
.hero-highlight:last-child {
  background: rgba(129,140,248,0.08); border-color: rgba(129,140,248,0.2);
  color: var(--indigo);
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.btn-store {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 28px; border-radius: var(--radius-md);
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-primary); transition: var(--transition); min-width: 200px;
}
.btn-store i { font-size: 28px; }
.btn-store:hover {
  background: var(--bg-card-hover); border-color: var(--border-hover);
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.btn-store-text { text-align: left; }
.btn-store-text .label { font-size: 11px; color: var(--text-muted); font-weight: 500; display: block; }
.btn-store-text .store { font-size: 16px; font-weight: 700; }
.btn-store--light {
  background: rgba(129,140,248,0.1); border-color: rgba(129,140,248,0.2);
}
.btn-store--light:hover {
  background: rgba(129,140,248,0.18); border-color: rgba(129,140,248,0.35);
}
.btn-store--soon {
  opacity: 0.72;
  cursor: default;
  pointer-events: none;
}
.btn-store--soon:hover {
  transform: none;
  box-shadow: none;
  background: var(--bg-card);
  border-color: var(--border);
}
.btn-store--light.btn-store--soon:hover {
  background: rgba(129,140,248,0.1);
  border-color: rgba(129,140,248,0.2);
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-social-link i {
  font-size: 18px;
  color: #E1306C;
}
.footer-social-link:hover {
  color: var(--text-primary);
}

/* Hero Phones */
.hero-phones {
  display: flex; justify-content: center; align-items: flex-end;
  gap: 0; margin-top: 72px; position: relative; z-index: 2;
  perspective: 1200px; transition: transform 0.1s linear;
}
.hero-phone img {
  border-radius: 28px; object-fit: cover;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}
.hero-phone--center img { width: 280px; position: relative; z-index: 3; }
.hero-phone--left { transform: translateX(30px) rotateY(8deg) scale(0.88); z-index: 1; opacity: 0.75; }
.hero-phone--left img { width: 250px; }
.hero-phone--right { transform: translateX(-30px) rotateY(-8deg) scale(0.88); z-index: 1; opacity: 0.75; }
.hero-phone--right img { width: 250px; }
.hero-phones-glow {
  position: absolute; width: 600px; height: 300px; bottom: -60px; left: 50%;
  transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(ellipse, rgba(99,102,241,0.15), transparent 70%);
  pointer-events: none; z-index: 0;
}

/* Trust Bar */
.trust-bar {
  display: flex; align-items: center; justify-content: center; gap: 40px;
  margin-top: 72px; padding: 28px 40px; border-radius: var(--radius-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  position: relative; z-index: 2;
  animation: fadeInUp 0.6s ease 0.6s both;
}
.trust-divider { width: 1px; height: 40px; background: var(--border); }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(129,140,248,0.1); color: var(--indigo);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.trust-icon--green { background: rgba(52,211,153,0.1); color: var(--success); }
.trust-icon--amber { background: rgba(251,191,36,0.1); color: var(--amber); }
.trust-text { display: flex; flex-direction: column; }
.trust-value { font-size: 15px; font-weight: 800; }
.trust-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }

/* ─── FEATURES ─────────────────────────────────────────── */
.features {
  padding: 120px 0; position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--indigo);
  text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 16px;
}
.section-eyebrow .line { width: 24px; height: 2px; background: var(--indigo); border-radius: 2px; }
.section-title {
  font-size: clamp(26px, 4vw, 40px); font-weight: 900;
  letter-spacing: -1px; line-height: 1.2; margin-bottom: 16px;
}
.section-subtitle { font-size: 16px; color: var(--text-secondary); max-width: 540px; margin: 0 auto; line-height: 1.7; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px 24px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gradient-indigo);
  transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  border-color: var(--border-hover); transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px var(--glow-indigo);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.feature-icon--indigo { background: rgba(129,140,248,0.1); color: var(--indigo); }
.feature-icon--amber { background: rgba(251,191,36,0.1); color: var(--amber); }
.feature-icon--success { background: rgba(52,211,153,0.1); color: var(--success); }
.feature-icon--danger { background: rgba(248,113,113,0.1); color: var(--danger); }
.feature-title { font-size: 17px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.3px; }
.feature-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ─── SHOWCASE ─────────────────────────────────────────── */
.app-showcase {
  padding: 120px 0; position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
}
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.showcase-visual { display: flex; justify-content: center; position: relative; }
.showcase-phone img {
  width: 300px; border-radius: 32px; position: relative; z-index: 2;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.5));
}
.showcase-phone-glow {
  position: absolute; width: 350px; height: 350px; top: 50%; left: 50%;
  transform: translate(-50%,-50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(251,191,36,0.1), transparent 70%);
  z-index: 1;
}
.showcase-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.showcase-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px; border-radius: var(--radius-md);
  background: var(--bg-card); border: 1px solid var(--border); transition: var(--transition);
}
.showcase-list li:hover { border-color: var(--border-hover); transform: translateX(4px); }
.showcase-list .check {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(52,211,153,0.1); display: flex; align-items: center;
  justify-content: center; color: var(--success); font-size: 13px; flex-shrink: 0; margin-top: 2px;
}
.showcase-list .item-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.showcase-list .item-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ─── HOW IT WORKS ─────────────────────────────────────── */
.how-it-works { padding: 120px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step-card { text-align: center; position: relative; }
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gradient-indigo);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: #fff;
  margin: 0 auto 18px; box-shadow: 0 4px 24px rgba(79,70,229,0.3);
}
.step-card::after {
  content: ''; position: absolute; top: 26px;
  left: calc(50% + 34px); right: calc(-50% + 34px);
  height: 2px; background: var(--border);
}
.step-card:last-child::after { display: none; }
.step-title { font-size: 15px; font-weight: 800; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ─── TARIFFS ──────────────────────────────────────────── */
.tariffs { padding: 120px 0; }
.tariff-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px; margin-top: 48px;
}
.tariff-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); transition: var(--transition);
}
.tariff-item:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }
.tariff-name { font-size: 13px; font-weight: 600; flex: 1; padding-right: 12px; }
.tariff-meta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.tariff-price {
  font-size: 12px; font-weight: 800; color: var(--success);
  background: rgba(52,211,153,0.08); padding: 4px 10px; border-radius: var(--radius-pill);
}
.tariff-points {
  font-size: 11px; font-weight: 700; color: var(--indigo);
  background: rgba(129,140,248,0.08); padding: 4px 8px; border-radius: var(--radius-pill);
}

/* ─── CTA ──────────────────────────────────────────────── */
.cta-section { padding: 100px 0; }
.cta-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 80px 48px;
  position: relative; overflow: hidden; text-align: center;
}
.cta-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gradient-indigo);
}
.cta-card-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: var(--indigo-deep); filter: blur(120px); opacity: 0.06;
  top: -200px; left: 50%; transform: translateX(-50%); pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title { font-size: clamp(26px, 4vw, 38px); font-weight: 900; letter-spacing: -1px; margin-bottom: 16px; }
.cta-subtitle { font-size: 16px; color: var(--text-secondary); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ───────────────────────────────────────────── */
.footer { padding: 64px 0 32px; border-top: 1px solid var(--border); background: var(--bg-secondary); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-logo img { width: 34px; height: 34px; border-radius: 8px; }
.footer-brand-logo .text { font-size: 19px; font-weight: 800; }
.footer-brand-logo .text span { color: var(--indigo); }
.footer-brand-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; max-width: 300px; }
.footer-col-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-primary); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--text-secondary); transition: var(--transition); }
.footer-links a:hover { color: var(--indigo); }
.footer-email { display: flex; align-items: center; gap: 8px; }
.footer-email i { color: var(--indigo); font-size: 14px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: center;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-muted);
}

/* ─── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-phones {
    width: min(100%, 380px);
    gap: 0; max-width: 100%; margin-left: auto; margin-right: auto;
    overflow: hidden; perspective: none; justify-content: center;
    padding: 0;
  }
  .hero-phone--left {
    display: block;
    transform: scale(0.84);
    margin-right: -40px;
    opacity: 0.92; z-index: 2;
  }
  .hero-phone--right {
    display: block;
    transform: scale(0.84);
    margin-left: -40px;
    opacity: 0.92; z-index: 2;
  }
  .hero-phone--center { transform: none; z-index: 3; }
  .hero-phone--center img { width: 190px; }
  .hero-phone--left img,
  .hero-phone--right img { width: 158px; }
  .hero-phones-glow { width: 100%; max-width: 360px; }
  .hero-bg-glow--1 { width: 280px; height: 280px; right: -80px; top: -120px; }
  .hero-bg-glow--2 { width: 220px; height: 220px; left: -80px; }
  .hero-bg-glow--3 { width: 260px; height: 260px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card::after { display: none; }
  .showcase-grid { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .showcase-visual { order: -1; }
  .showcase-content .section-title { text-align: center !important; }
  .showcase-content .section-subtitle { text-align: center !important; margin-left: auto !important; margin-right: auto !important; }
  .showcase-content .section-eyebrow { justify-content: center; }
  .showcase-list li { text-align: left; }
  .showcase-phone img { width: 240px; }
  .trust-bar { flex-wrap: wrap; gap: 20px; padding: 24px; }
  .trust-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.active {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(6,7,11,0.98); backdrop-filter: blur(20px);
    padding: 24px; gap: 20px; border-bottom: 1px solid var(--border);
  }
  .nav-cta { width: 100%; justify-content: center; }
  .hero { padding: 100px 0 40px; overflow: hidden; }
  .hero-title { letter-spacing: -1px; font-size: 32px; }
  .hero-subtitle { font-size: 15px; }
  .hero-highlights { gap: 10px; margin-bottom: 28px; }
  .hero-highlight { font-size: 12px; padding: 8px 14px; }
  .hero-phones { margin-top: 48px; width: min(100%, 340px); }
  .hero-phone--center img { width: 165px; }
  .hero-phone--left img,
  .hero-phone--right img { width: 135px; }
  .hero-phone--left { transform: scale(0.82); margin-right: -34px; }
  .hero-phone--right { transform: scale(0.82); margin-left: -34px; }
  .features, .app-showcase, .how-it-works, .tariffs { padding: 80px 0; }
  .cta-section { padding: 60px 0; }
  .section-header { margin-bottom: 48px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .tariff-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 48px 20px; }
  .cta-title { font-size: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { text-align: center; }
  .btn-store { min-width: 0; flex: 1; }
  .trust-bar { margin-top: 48px; padding: 20px; gap: 16px; flex-direction: column; align-items: stretch; }
  .trust-item { justify-content: flex-start; }
  .showcase-phone img { width: 200px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 28px; letter-spacing: -0.5px; }
  .hero-title br { display: none; }
  .hero-subtitle { font-size: 14px; margin-bottom: 20px; }
  .hero-highlights { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-store { width: 100%; justify-content: center; min-width: 0; }
  .hero-phones { width: min(100%, 300px); }
  .hero-phone--center img { width: 138px; }
  .hero-phone--left img,
  .hero-phone--right img { width: 112px; }
  .hero-phone--left { transform: scale(0.78); margin-right: -28px; }
  .hero-phone--right { transform: scale(0.78); margin-left: -28px; }
  .steps-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 24px 20px; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-title { font-size: 22px; }
  .showcase-phone img { width: 180px; }
}

.article-page .legal-content { max-width: 820px; }
.article-lead {
  font-size: 17px;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 12px;
}
.article-disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.article-toc {
  max-width: 820px;
  margin: 0 auto 24px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.article-toc-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--indigo);
  margin-bottom: 12px;
}
.article-toc ol {
  padding-left: 20px;
  margin: 0;
}
.article-toc li {
  margin-bottom: 6px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}
.article-toc a {
  color: var(--text-secondary);
  transition: var(--transition);
}
.article-toc a:hover { color: var(--indigo); }
.article-table-wrap {
  overflow-x: auto;
  margin: 16px 0 20px;
}
.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.article-table th,
.article-table td {
  padding: 12px 14px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.article-table th {
  background: var(--glow-indigo);
  color: var(--text-primary);
  font-weight: 700;
}
.article-table td { color: var(--text-secondary); }
.article-cta {
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(79,70,229,0.12), rgba(129,140,248,0.06));
  border: 1px solid rgba(129,140,248,0.25);
}
.article-cta h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.article-cta p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ─── LEGAL PAGES ─────────────────────────────────────── */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}
.legal-header {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.legal-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--glow-indigo);
  border: 1px solid var(--border-hover);
  color: var(--indigo);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.legal-header h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.legal-meta {
  color: var(--text-muted);
  font-size: 14px;
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
}
.legal-content section {
  margin-bottom: 28px;
}
.legal-content section:last-child {
  margin-bottom: 0;
}
.legal-content h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
}
.legal-content ul {
  padding-left: 20px;
  margin-top: 8px;
}
.legal-content li { margin-bottom: 6px; }
.legal-content a {
  color: var(--indigo);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 20px 0 10px;
}
.legal-footer-links {
  max-width: 760px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.legal-footer-links a {
  color: var(--indigo);
  font-weight: 600;
  font-size: 14px;
}
@media (max-width: 768px) {
  .legal-content { padding: 28px 20px; }
  .legal-page { padding-top: 100px; }
}

/* ─── DYNAMIC PLAYGROUND (LIVE FEED & CALCULATOR) ────────── */
.dynamic-playground {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}
.playground-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.playground-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.playground-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gradient-indigo);
  transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left;
}
.playground-card:hover::before { transform: scaleX(1); }
.playground-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px var(--glow-indigo);
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.card-header h3 {
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pulse-icon {
  color: var(--indigo);
  animation: pulse-icon-anim 2s infinite;
}
@keyframes pulse-icon-anim {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.15); }
}
.live-badge {
  background: rgba(248, 113, 113, 0.1);
  color: var(--danger);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
  border: 1px solid rgba(248, 113, 113, 0.2);
}

/* Live Feed Container */
.live-feed-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 320px;
  overflow-y: hidden;
}
.feed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(6, 7, 11, 0.3);
  border: 1px solid rgba(30, 32, 53, 0.4);
  border-radius: var(--radius-md);
  animation: slideInFeed 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: var(--transition);
}
.feed-item:hover {
  background: rgba(30, 32, 53, 0.3);
  border-color: rgba(129, 140, 248, 0.2);
}
@keyframes slideInFeed {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
.feed-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(129, 140, 248, 0.1);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.feed-icon.green { background: rgba(52, 211, 153, 0.1); color: var(--success); }
.feed-icon.amber { background: rgba(251, 191, 36, 0.1); color: var(--amber); }

.feed-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.feed-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}
.feed-meta {
  font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
}
.feed-time {
  color: var(--text-muted);
}

/* Estimator Styling */
.estimator-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.estimator-select {
  width: 100%;
  background-color: rgba(6, 7, 11, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  transition: var(--transition);
}
.estimator-select:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 2px rgba(129, 140, 248, 0.15);
}
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: rgba(6, 7, 11, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.radio-label input {
  accent-color: var(--indigo);
}
.radio-label span {
  font-size: 13px;
  font-weight: 600;
}
.radio-label:has(input:checked) {
  border-color: var(--indigo);
  background: rgba(129, 140, 248, 0.05);
}
.estimator-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
}
.result-box {
  background: rgba(6, 7, 11, 0.5);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.result-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.result-value {
  font-size: 24px;
  font-weight: 900;
  color: var(--success);
}
.result-value--indigo {
  color: var(--indigo);
}

/* ─── FAQ Accordion ────────────────────────────────────── */
.faq-section {
  padding: 120px 0;
  background: var(--bg-primary);
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--border-hover);
}
.faq-question {
  width: 100%;
  background: transparent;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  transition: var(--transition);
}
.faq-question i {
  color: var(--text-secondary);
  font-size: 13px;
  transition: transform 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
}
.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}
.faq-item.active {
  border-color: var(--border-hover);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.faq-item.active .faq-question {
  color: var(--indigo);
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--indigo);
}

/* ─── CONTACT SECTION ─────────────────────────────────── */
.contact-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gradient-indigo);
}
.contact-card-glow {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: var(--indigo-deep); filter: blur(100px); opacity: 0.05;
  top: -150px; left: 50%; transform: translateX(-50%); pointer-events: none;
}
.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.contact-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}
.contact-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.6;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.contact-input {
  width: 100%;
  background: rgba(6, 7, 11, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  font-family: var(--font);
}
.contact-input:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 2px rgba(129, 140, 248, 0.15);
}
.btn-submit {
  background: var(--gradient-indigo);
  color: white;
  border-radius: var(--radius-md);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
  transition: var(--transition);
  margin-top: 12px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(79, 70, 229, 0.45);
}

/* Success Card */
.success-card {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: scaleUpSuccess 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes scaleUpSuccess {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.2);
  margin-bottom: 8px;
}
.success-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
}
.success-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 420px;
}

@media (max-width: 1024px) {
  .playground-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-card { padding: 40px 20px; }
  .faq-question { padding: 16px 20px; font-size: 14px; }
}

/* ─── COOKIE CONSENT ───────────────────────────────────── */
body.cookie-modal-open { overflow: hidden; }

.cookie-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(6, 7, 11, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.cookie-overlay.is-visible { opacity: 1; visibility: visible; }

.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9999;
  max-width: 920px; margin: 0 auto;
  background: rgba(18, 20, 31, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(129, 140, 248, 0.08);
  transform: translateY(24px); opacity: 0; visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}
.cookie-banner.is-visible {
  transform: translateY(0); opacity: 1; visibility: visible;
}

.cookie-banner-inner { padding: 24px; }
.cookie-banner-main {
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px;
}
.cookie-banner-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(129, 140, 248, 0.12); color: var(--indigo);
  display: flex; align-items: center; justify-content: center;
}
.cookie-banner-icon svg { width: 22px; height: 22px; fill: currentColor; }
.cookie-banner-title {
  font-size: 18px; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.3px;
}
.cookie-banner-text {
  font-size: 14px; color: var(--text-secondary); line-height: 1.65;
}
.cookie-banner-text a {
  color: var(--indigo); text-decoration: underline; text-underline-offset: 3px;
}
.cookie-banner-actions {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end;
}

.cookie-btn {
  border: 1px solid transparent; border-radius: var(--radius-pill);
  padding: 11px 20px; font-size: 13px; font-weight: 700;
  transition: var(--transition); white-space: nowrap;
}
.cookie-btn--primary {
  background: var(--gradient-indigo); color: #fff;
  box-shadow: 0 4px 18px rgba(79, 70, 229, 0.35);
}
.cookie-btn--primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(79, 70, 229, 0.45); }
.cookie-btn--outline {
  background: transparent; color: var(--text-primary);
  border-color: var(--border);
}
.cookie-btn--outline:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }
.cookie-btn--ghost {
  background: transparent; color: var(--text-secondary);
  border-color: transparent;
}
.cookie-btn--ghost:hover { color: var(--text-primary); background: rgba(255,255,255,0.04); }

.cookie-panel {
  display: none; margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
.cookie-panel.is-open { display: block; }
.cookie-panel-title { font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.cookie-panel-desc { font-size: 13px; color: var(--text-secondary); margin-bottom: 16px; }

.cookie-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.cookie-option {
  background: rgba(6, 7, 11, 0.45); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 14px 16px;
}
.cookie-option--locked { opacity: 0.92; }
.cookie-option-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 8px;
}
.cookie-option-head strong { display: block; font-size: 14px; }
.cookie-option-head span {
  display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px;
}
.cookie-option p { font-size: 12px; color: var(--text-secondary); line-height: 1.55; }

.cookie-switch {
  position: relative; display: inline-flex; align-items: center; flex-shrink: 0;
}
.cookie-switch input {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.cookie-switch span {
  width: 44px; height: 26px; border-radius: 999px;
  background: rgba(100, 116, 139, 0.35); position: relative;
  transition: background 0.25s ease;
}
.cookie-switch span::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%; background: #fff;
  transition: transform 0.25s ease;
}
.cookie-switch input:checked + span { background: var(--indigo-deep); }
.cookie-switch input:checked + span::after { transform: translateX(18px); }
.cookie-switch input:disabled + span { opacity: 0.65; }

.cookie-panel-actions {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end;
}

@media (max-width: 768px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner-inner { padding: 18px; }
  .cookie-banner-main { flex-direction: column; gap: 12px; }
  .cookie-banner-actions,
  .cookie-panel-actions {
    flex-direction: column; align-items: stretch;
  }
  .cookie-btn { width: 100%; justify-content: center; text-align: center; }
}
