
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  --navy-deep: #070D1E;
  --navy-card: #0F172A;
  --navy-border: #1E293B;
  --teal-accent: #0D9488;
  --teal-light: #14B8A6;
  --teal-glow: rgba(13, 148, 136, 0.2);
  --amber-urgent: #F59E0B;
  --coral-emergency: #E11D48;
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  --bg-gradient: linear-gradient(180deg, #070D1E 0%, #0F172A 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--navy-deep);
  color: var(--text-main);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; font-weight: 700; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* HEADER */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 13, 30, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navy-border);
  padding: 1rem 0;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 0.75rem; font-size: 1.35rem; font-weight: 800; color: #FFF; }
.brand-badge { background: linear-gradient(135deg, #0D9488, #10B981); color: #FFF; padding: 0.2rem 0.6rem; border-radius: 6px; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.5px; }

.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--teal-light); }

.btn-header-call {
  background: linear-gradient(135deg, #E11D48, #BE123C);
  color: #FFF !important;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(225, 29, 72, 0.35);
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(225, 29, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

/* HERO */
.hero {
  padding: 4.5rem 0 3.5rem;
  background: radial-gradient(circle at 50% 20%, rgba(13, 148, 136, 0.12), transparent 70%);
  text-align: center;
}
.pill-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(13, 148, 136, 0.15);
  border: 1px solid var(--teal-accent);
  color: var(--teal-light);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: #FFF;
}
.hero h1 span {
  background: linear-gradient(135deg, #2DD4BF, #38BDF8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 840px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem;
}
.btn-wa {
  background: #25D366; color: #FFF;
  padding: 0.9rem 1.8rem; border-radius: 50px;
  font-weight: 700; font-size: 1.05rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s;
}
.btn-wa:hover { transform: translateY(-2px); }

.btn-phone {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--navy-border);
  color: #FFF;
  padding: 0.9rem 1.8rem; border-radius: 50px;
  font-weight: 700; font-size: 1.05rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
  transition: background 0.2s;
}
.btn-phone:hover { background: rgba(255, 255, 255, 0.15); }

/* STATS */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; max-width: 960px; margin: 0 auto;
}
.stat-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
}
.stat-card .num { font-size: 1.8rem; font-weight: 800; color: #38BDF8; font-family: 'Outfit', sans-serif; }
.stat-card .lbl { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.2rem; }

/* SECTIONS */
section { padding: 4rem 0; }
.section-title { font-size: 2.2rem; text-align: center; margin-bottom: 0.75rem; color: #FFF; }
.section-sub { font-size: 1.05rem; color: var(--text-muted); text-align: center; max-width: 760px; margin: 0 auto 3rem; }

/* COMPARISON MATRIX (TRAIGALO A ARMENIA) */
.comparison-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) { .comparison-container { grid-template-columns: 1fr; padding: 1.5rem; } }

.comp-col-bad {
  background: rgba(225, 29, 72, 0.04);
  border: 1px solid rgba(225, 29, 72, 0.2);
  border-radius: 14px;
  padding: 1.8rem;
}
.comp-col-bad h3 { color: #FDA4AF; font-size: 1.3rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.comp-col-bad ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.comp-col-bad li { color: #CBD5E1; font-size: 0.95rem; display: flex; align-items: flex-start; gap: 0.6rem; }
.comp-col-bad li span { color: #F43F5E; font-weight: 800; }

.comp-col-good {
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid var(--teal-accent);
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: 0 10px 30px rgba(13, 148, 136, 0.15);
}
.comp-col-good h3 { color: #5EEAD4; font-size: 1.3rem; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.comp-col-good ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.comp-col-good li { color: #F1F5F9; font-size: 0.95rem; display: flex; align-items: flex-start; gap: 0.6rem; }
.comp-col-good li span { color: #2DD4BF; font-weight: 800; }

/* 4-STEP TIMELINE */
.timeline-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.step-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  padding: 1.8rem;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.step-card:hover { transform: translateY(-4px); border-color: var(--teal-accent); }
.step-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--teal-accent); color: #FFF;
  font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.step-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; color: #FFF; }
.step-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* PROGRAM GRID */
.programs-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.program-item {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: all 0.2s;
}
.program-item:hover { border-color: #38BDF8; transform: translateY(-3px); }
.program-item h3 { font-size: 1.15rem; color: #38BDF8; margin-bottom: 0.5rem; }
.program-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 1rem; }
.program-link { font-size: 0.85rem; font-weight: 700; color: var(--teal-light); display: inline-flex; align-items: center; gap: 0.3rem; }

/* FAQ ACCORDION */
.faq-list { display: flex; flex-direction: column; gap: 1rem; max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
}
.faq-item summary {
  font-weight: 700; font-size: 1.05rem; color: #F1F5F9;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-item p { margin-top: 0.8rem; font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* EMERGENCY CALLOUT */
.emergency-banner {
  background: linear-gradient(135deg, #1E1B4B, #311042);
  border: 1px solid #701A75;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  margin: 3rem 0;
}
.emergency-banner h2 { font-size: 2rem; color: #FFF; margin-bottom: 0.75rem; }
.emergency-banner p { font-size: 1.1rem; color: #E2E8F0; max-width: 680px; margin: 0 auto 1.8rem; }

/* FOOTER */
footer {
  background: #040814;
  border-top: 1px solid var(--navy-border);
  padding: 4rem 0 6rem;
}
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem; margin-bottom: 3rem;
}
.footer-col h4 { color: #FFF; font-size: 1.1rem; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--teal-light); }

/* MOBILE FLOAT BAR */
.mobile-sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: rgba(7, 13, 30, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--navy-border);
  padding: 0.75rem 1rem;
  display: none;
  justify-content: space-around;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .mobile-sticky-bar { display: flex; }
  .nav-links { display: none; }
}
.btn-mobile-wa {
  flex: 1; background: #25D366; color: #FFF;
  padding: 0.7rem; border-radius: 10px;
  font-weight: 700; font-size: 0.9rem; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.btn-mobile-call {
  flex: 1; background: var(--coral-emergency); color: #FFF;
  padding: 0.7rem; border-radius: 10px;
  font-weight: 700; font-size: 0.9rem; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
