:root {
  --bg-color: #06060b;
  --glow-gradient: 
    radial-gradient(circle at 10% 20%, rgba(255, 31, 109, 0.18), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(141, 20, 63, 0.12), transparent 45%),
    radial-gradient(circle at 50% 10%, rgba(255, 76, 160, 0.08), transparent 40%);
  --card: rgba(20, 15, 25, 0.85);
  --card-border: rgba(255, 31, 109, 0.15);
  --accent: #ff1f6d;
  --accent-2: #ff4c8b;
  --accent-glow: rgba(255, 31, 109, 0.4);
  --text: #f7f7fb;
  --muted: #a197aa;
  --radius-lg: 24px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: var(--bg-color);
  overflow-x: hidden;
}

.grid-bg {
  position: fixed; 
  inset: 0; 
  z-index: -1;
  background: var(--glow-gradient);
}

.container { 
  width: 92%; 
  max-width: 1200px; 
  margin: 0 auto; 
}

.topbar {
  padding: 15px 0;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  position: sticky; 
  top: 0; 
  z-index: 100;
  color: var(--text);
}

.topbar-inner { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
}

.brand { 
  color: var(--text); 
  text-decoration: none; 
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-badge span {
  width: 4px;
  height: 14px;
  background: var(--accent-2);
  border-radius: 4px;
  box-shadow: 0 0 8px var(--accent-glow);
}

.brand-text .brand-title { 
  font-size: 18px; 
  font-weight: 800; 
  color: white; 
}

.brand-text .brand-subtitle { 
  font-size: 11px; 
  color: var(--muted); 
  text-transform: uppercase; 
  letter-spacing: 0.1em; 
}

.btn {
  padding: 15px 30px;
  border-radius: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 8px 25px var(--accent-glow);
  border: none;
}

.btn-primary:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 12px 35px var(--accent-glow); 
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--card-border);
  color: var(--text);
}

.btn-secondary:hover { 
  background: rgba(255, 255, 255, 0.12); 
  border-color: var(--accent); 
}

.hero { 
  padding: 80px 0 100px; 
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: flex-start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 31, 109, 0.1);
  border: 1px solid var(--card-border);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-2);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-glow);
}

.hero-copy h1 {
  font-size: clamp(32px, 5.5vw, 60px);
  line-height: 1.15;
  font-weight: 900;
  margin: 20px 0 25px;
}

.accent { 
  color: var(--accent); 
  text-shadow: 0 0 18px var(--accent-glow); 
}

.hero-copy p { 
  font-size: 17px; 
  color: #f7f7fbe0; 
  margin-bottom: 30px; 
  max-width: 650px; 
}

.hero-actions { 
  display: flex; 
  gap: 15px; 
  margin-bottom: 50px; 
}

.hero-metrics { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 18px; 
}

.metric {
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 20px;
}

.metric-value { 
  color: var(--accent-2); 
  font-weight: 800; 
  font-size: 18px; 
  margin-bottom: 6px; 
  display: block; 
}

.metric-label { 
  font-size: 13px; 
  color: var(--muted); 
  display: block; 
  line-height: 1.5; 
}

.hero-card {
  display: flex; 
  flex-direction: column; 
  gap: 15px;
  width: 100%;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.screen-dots {
  display: flex;
  gap: 6px;
}

.screen-dots span {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.screen-tag {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phone-card {
  background: #000;
  border: 10px solid #1a1a1e;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.phone-content {
  background: #0f0f14;
  border-radius: 26px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 40px 20px 25px;
  position: relative;
  text-align: center;
}

.phone-notch {
  width: 100px; 
  height: 18px; 
  background: #1a1a1e;
  position: absolute; 
  top: 0; 
  left: 50%; 
  transform: translateX(-50%);
  border-bottom-left-radius: 12px; 
  border-bottom-right-radius: 12px;
  z-index: 5;
}

.avatar {
  width: 80px; 
  height: 80px;
  border-radius: 50%; 
  margin: 0 auto 15px;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: 0 10px 20px rgba(255, 31, 109, 0.2);
  background: #1a1a1e;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-name { 
  font-size: 18px; 
  font-weight: 800; 
  margin: 0 0 4px; 
  text-transform: uppercase; 
}

.profile-desc { 
  font-size: 12px; 
  color: var(--muted); 
  margin-bottom: 18px; 
  line-height: 1.5; 
}

.chip-row { 
  display: flex; 
  gap: 8px; 
  justify-content: center; 
  margin-bottom: 25px; 
  flex-wrap: wrap;
}

.chip { 
  font-size: 11px; 
  padding: 5px 12px; 
  border-radius: 999px; 
  background: rgba(255,255,255,0.05); 
  border: 1px solid rgba(255,255,255,0.1); 
}

.mini-cards { 
  display: grid; 
  gap: 12px; 
  margin-top: auto; 
  text-align: left; 
}

.price-card {
  padding: 16px; 
  border-radius: 16px; 
  transition: 0.3s;
}

.price-card.success {
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.3);
}

.price-card.success .price-card-title,
.price-card.success .price-card-note {
  color: #2ecc71;
}

.price-card.analyzing {
  background: rgba(255, 31, 109, 0.08);
  border: 1px solid rgba(255, 31, 109, 0.3);
}

.price-card.analyzing .price-card-title,
.price-card.analyzing .price-card-note {
  color: var(--accent-2);
}

.price-card-title { 
  font-size: 11px; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.05em; 
}

.price-card-value { 
  font-size: 18px; 
  font-weight: 800; 
  color: white; 
  margin-top: 6px; 
}

.price-card-note { 
  font-size: 12px; 
  margin-top: 4px; 
  font-weight: 500; 
}

.section { 
  padding: 90px 0; 
}

.benefits { 
  background-color: rgba(255, 31, 109, 0.02); 
}

.section-title { 
  font-size: 36px; 
  margin-bottom: 50px; 
  font-weight: 900; 
  text-align: center; 
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.section-card {
  padding: 45px 35px;
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-card:hover { 
  border-color: var(--accent); 
  transform: translateY(-7px); 
  background: rgba(255,255,255,0.04); 
}

.icon-box { 
  font-size: 42px; 
  margin-bottom: 25px; 
  display: block; 
}

.faq-section { 
  padding-top: 60px; 
  padding-bottom: 120px; 
}

.faq { 
  display: grid; 
  gap: 20px; 
  margin-top: 40px; 
}

.faq-item {
  padding: 30px;
  background: var(--card);
  border-radius: 20px;
  border: 1px solid rgba(255, 31, 109, 0.12);
  border-left: 5px solid var(--accent);
}

.faq-question { 
  margin: 0 0 12px; 
  font-size: 19px; 
  font-weight: 800; 
  color: white; 
}

.faq-answer { 
  margin: 0; 
  color: #f7f7fbce; 
  font-size: 15px; 
  line-height: 1.7; 
}

.cta { 
  text-align: center; 
  padding: 120px 0 100px; 
}

.cta-box { 
  padding: 80px 50px; 
  border-radius: 30px; 
  background: linear-gradient(145deg, #1a0a1a, #0a060a); 
  border: 2px solid var(--accent); 
  text-align: center; 
  max-width: 900px; 
  margin: 0 auto; 
}

.cta-title { 
  font-size: 38px; 
  font-weight: 900; 
  margin: 0 0 30px; 
}

.cta-actions { 
  display: flex; 
  gap: 15px; 
  justify-content: center; 
  margin: 40px 0 30px; 
}

.disclaimer { 
  font-size: 12px; 
  color: var(--muted); 
}

.footer { 
  padding: 40px 0; 
  border-top: 1px solid rgba(255,255,255,0.05); 
  font-size: 13px; 
  color: var(--muted); 
}

.footer-row { 
  display: flex; 
  justify-content: space-between; 
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 1100px) {
  .hero-grid { 
    grid-template-columns: 1fr; 
    gap: 60px; 
  }
  .hero-copy h1 { 
    text-align: center; 
  }
  .hero-copy p { 
    margin-left: auto; 
    margin-right: auto; 
    text-align: center; 
  }
  .hero-actions { 
    justify-content: center; 
  }
  .eyebrow {
    margin: 0 auto 20px;
    display: flex;
    width: fit-content;
  }
  .hero-metrics {
    max-width: 800px;
    margin: 0 auto;
  }
  .metric { 
    text-align: center; 
  }
  .metric-value { 
    font-size: 17px; 
  }
  .metric-label { 
    font-size: 12px; 
  }
  .hero-card { 
    margin-top: 20px; 
  }
}

@media (max-width: 768px) {
  .topbar-inner .nav-actions .btn {
    padding: 10px 16px;
    font-size: 13px;
  }
  .brand-text .brand-title {
    font-size: 15px;
  }
  .brand-text .brand-subtitle {
    display: none;
  }
  .brand-badge {
    width: 34px;
    height: 34px;
  }
  .hero {
    padding: 50px 0 60px;
  }
  .hero-metrics { 
    grid-template-columns: 1fr; 
    gap: 15px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .section { 
    padding: 60px 0; 
  }
  .section-title { 
    font-size: 28px; 
    margin-bottom: 30px; 
  }
  .section-card {
    padding: 30px 25px;
  }
  .faq-section { 
    padding-top: 50px; 
    padding-bottom: 80px; 
  }
  .faq-item {
    padding: 20px;
  }
  .faq-question {
    font-size: 17px;
  }
  .cta { 
    padding: 80px 0 60px; 
  }
  .cta-box { 
    padding: 40px 20px; 
  }
  .cta-title { 
    font-size: 28px; 
  }
  .cta-actions {
    flex-direction: column;
  }
  .cta-actions .btn {
    width: 100%;
  }
  .footer-row {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 32px;
  }
  .phone-card {
    max-width: 100%;
    border-width: 6px;
    border-radius: 30px;
  }
  .phone-content {
    border-radius: 20px;
    padding: 35px 15px 20px;
    min-height: 480px;
  }
}