/* ================================================
   Faxio.site — Main Stylesheet
   Design: Dark Professional Blue 2026
   ================================================ */

:root {
  --bg-primary: #0A0D14;
  --bg-secondary: #111827;
  --bg-card: #111827;
  --bg-card-hover: #1a2235;
  --border: #1E293B;
  --accent: #2563EB;
  --accent-light: #3B82F6;
  --accent-glow: rgba(37, 99, 235, 0.15);
  --text-primary: #F1F5F9;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --white: #FFFFFF;
  --success: #10B981;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-blue: 0 4px 32px rgba(37,99,235,0.2);
  --transition: 0.25s ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { color: var(--text-secondary); line-height: 1.7; }

/* Container */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  background: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 41, 59, 0.6);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
.header__logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}
.header__logo span { color: var(--accent-light); }
.nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__list a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav__list a:hover { color: var(--white); }
.nav__cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav__cta:hover {
  background: var(--accent-light) !important;
  transform: translateY(-1px);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-glow);
  border: 1px solid rgba(37,99,235,0.3);
  color: var(--accent-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero__badge svg { width: 14px; height: 14px; }
.hero__title {
  margin-bottom: 20px;
  color: var(--white);
}
.hero__title span {
  background: linear-gradient(135deg, #3B82F6, #60A5FA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--accent-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(37,99,235,0.3);
}
.btn-primary svg { width: 20px; height: 20px; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 24px;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.btn-secondary:hover {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent-glow);
}
.hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}
.hero__stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}
.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero__phone-wrap {
  position: relative;
  width: 280px;
}
.hero__phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.hero__phone-img {
  width: 100%;
  border-radius: 36px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(37,99,235,0.15);
}
.hero__float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}
.hero__float-card--1 { left: -60px; top: 80px; animation-delay: 0s; }
.hero__float-card--2 { right: -50px; bottom: 120px; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.float-icon {
  width: 36px; height: 36px;
  background: var(--accent-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
}
.float-text-top {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}
.float-text-bot {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ---- SECTION COMMON ---- */
.section {
  padding: 100px 0;
}
.section--alt {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #0D1220 50%, var(--bg-primary) 100%);
}
.section__label {
  display: inline-block;
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.section__title {
  margin-bottom: 16px;
  color: var(--white);
}
.section__subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 60px;
}
.section__header--center {
  text-align: center;
}
.section__header--center .section__subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ---- FEATURES ---- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  border-color: rgba(37,99,235,0.4);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  background: var(--accent-glow);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-light);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.9rem; }

/* ---- HOW IT WORKS ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent), transparent);
  opacity: 0.3;
}
.step {
  text-align: center;
  position: relative;
}
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 8px rgba(37,99,235,0.1);
}
.step h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.step p { font-size: 0.85rem; }

/* ---- PRICING ---- */
.pricing__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.pricing__title-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.plan-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
}
.plan-card:hover {
  border-color: var(--accent);
  background: var(--bg-card-hover);
}
.plan-card--popular {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(59,130,246,0.04));
  position: relative;
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.plan-name {
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
}
.plan-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.plan-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}
.plan-period { font-size: 0.8rem; color: var(--text-muted); font-weight: 400; }

/* Credits */
.credits__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.credit-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
}
.credit-item:hover {
  border-color: rgba(37,99,235,0.3);
  background: var(--bg-card-hover);
}
.credit-amount { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.credit-price { font-weight: 600; color: var(--accent-light); font-size: 0.9rem; }
.credit-savings {
  font-size: 0.7rem;
  color: var(--success);
  font-weight: 600;
}

/* ---- BLOG ---- */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}
.blog-card__img {
  height: 180px;
  background: linear-gradient(135deg, #0f1a35, #1e3a5f);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(59,130,246,0.1));
}
.blog-card__img-icon {
  width: 52px; height: 52px;
  color: rgba(59,130,246,0.5);
  position: relative;
  z-index: 1;
}
.blog-card__body { padding: 24px; }
.blog-card__tag {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent-light);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.blog-card h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card__coming {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 12px;
}
.blog-card__coming::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent-light);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, #1a2a50, #0f1a35);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; position: relative; }
.cta-banner p { font-size: 1.1rem; margin-bottom: 36px; position: relative; }

/* ---- FOOTER ---- */
.footer {
  background: #07090F;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}
.footer__brand img {
  width: 32px; height: 32px;
  border-radius: 7px;
}
.footer__brand span { color: var(--accent-light); }
.footer__desc { font-size: 0.9rem; max-width: 280px; }
.footer__heading {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer__links li { margin-bottom: 12px; }
.footer__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--text-primary); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer__appstore {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
}
.footer__appstore:hover {
  border-color: var(--accent);
  color: var(--white);
}
.footer__appstore svg { width: 20px; height: 20px; }

/* ---- BREADCRUMBS ---- */
.breadcrumbs {
  padding: 100px 0 0;
  margin-bottom: 0;
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumbs__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumbs__list li a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.breadcrumbs__list li a:hover { color: var(--accent-light); }
.breadcrumbs__list li:last-child { color: var(--text-secondary); }
.breadcrumbs__sep { color: var(--text-muted); font-size: 0.75rem; }

/* ---- ARTICLE ---- */
.article-header {
  padding: 48px 0 56px;
  max-width: 800px;
  margin: 0 auto;
}
.article-header__tag {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
}
.article-header__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.article-header__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.article-header__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-header__divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 40px auto 0;
  max-width: 800px;
}
.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 0 80px;
}
.article-body h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  color: var(--white);
  margin: 48px 0 16px;
  padding-top: 8px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin: 28px 0 10px;
}
.article-body p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1rem;
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li {
  color: var(--text-secondary);
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: 1rem;
}
.article-body strong { color: var(--text-primary); font-weight: 600; }
.article-body a { color: var(--accent-light); }
.article-body a:hover { color: var(--white); }
.article-callout {
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(59,130,246,0.04));
  border: 1px solid rgba(37,99,235,0.25);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.article-callout p { margin: 0; color: var(--text-primary); }
.article-step-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 16px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.article-step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}
.article-step-content h3 { margin: 0 0 6px; font-size: 1rem; color: var(--white); }
.article-step-content p { margin: 0; font-size: 0.9rem; }
.article-cta {
  background: linear-gradient(135deg, #1a2a50, #0f1a35);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin: 48px 0 0;
}
.article-cta h3 { color: var(--white); margin-bottom: 10px; font-size: 1.3rem; }
.article-cta p { margin-bottom: 24px; }
.article-related {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.article-related__title {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 700;
}

/* ---- INNER PAGES ---- */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero__title { color: var(--white); margin-bottom: 16px; }
.page-hero__sub { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.prose {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0 100px;
}
.prose h2 {
  font-size: 1.4rem;
  color: var(--white);
  margin: 40px 0 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.prose h2:first-child { margin-top: 0; border-top: none; }
.prose p, .prose li { color: var(--text-secondary); margin-bottom: 14px; line-height: 1.8; }
.prose ul { padding-left: 24px; list-style: disc; }
.prose a { color: var(--accent-light); }
.prose a:hover { color: var(--white); }
.prose strong { color: var(--text-primary); }

/* ---- SUPPORT ---- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.support-card h3 { color: var(--white); margin-bottom: 12px; font-size: 1.1rem; }
.support-card p { font-size: 0.9rem; }
.support-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--accent-light);
  font-weight: 600;
}
.faq { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  cursor: pointer;
}
.faq-a { font-size: 0.9rem; color: var(--text-secondary); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .pricing__wrap { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header__logo { font-size: 1.1rem; }
  .nav { display: none; position: fixed; inset: 0; top: 68px; background: rgba(10,13,20,0.98); backdrop-filter: blur(20px); flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
  .nav.open { display: flex; }
  .nav__list { flex-direction: column; align-items: center; gap: 28px; }
  .nav__list a { font-size: 1.2rem; }
  .burger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero__subtitle { margin: 0 auto 36px; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__phone-wrap { width: 220px; }
  .hero__float-card--1, .hero__float-card--2 { display: none; }
  .features__grid { grid-template-columns: 1fr; }
  .blog__grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .credits__grid { grid-template-columns: 1fr; }
  .pricing__wrap { gap: 24px; }
}

@media (max-width: 480px) {
  .section { padding: 70px 0; }
  .hero { padding: 100px 0 60px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .hero__actions { flex-direction: column; }
  .steps { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
