/* ─── SMOOTH SCROLL ─── */
html { scroll-behavior: smooth; }

/* ─── DESIGN TOKENS ─── */
:root {
  --blue-500: #0098e5;
  --blue-700: #0066b2;
  --blue-900: #003c70;
  --blue-50:  #f4f9ff;
  --blue-100: #e0f0ff;
  --dark:     #0d1b2a;
  --dark-2:   #0a2540;
  --muted:    #5a6e80;
  --border:   #e0eaf4;
  --glass-bg: rgba(255,255,255,0.10);
  --glass-border: rgba(255,255,255,0.18);
  --green:    #3dffa0;
  --red:      #dc2626;
  --radius-card: 20px;
  --radius-pill: 999px;
  --radius-ico:  14px;
  --shadow-card: 0 8px 32px rgba(0,100,180,0.10);
  --shadow-pop:  0 12px 56px rgba(0,100,180,0.32);
}

/* ─── BASE RESET для кастомного лендинга ─── */
.home-custom-template .site-content,
.home-custom-template #primary,
.home-custom-template .entry-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}
.home-custom-template .entry-header { display: none !important; }

/* ─── КОНТЕЙНЕР ─── */
.gma-c {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── ТИПОГРАФИЯ ─── */
.gma-tag {
  font-size: 13px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue-700);
  margin-bottom: 12px;
}
.gma-h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.025em;
  line-height: 1.1;
  max-width: 600px;
  margin-bottom: 14px;
}
.gma-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 52px;
}
.gma-centered { text-align: center; }
.gma-centered .gma-h2,
.gma-centered .gma-sub { max-width: 100%; }

/* ─── СЕКЦИИ — фоны ─── */
.gma-sec        { padding: 88px 0; }
.gma-sec-white  { background: #fff; }
.gma-sec-blue   { background: var(--blue-50); }
.gma-sec-dark   {
  background: linear-gradient(155deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
}
.gma-sec-dark .gma-tag  { color: #5bc0f8; }
.gma-sec-dark .gma-h2   { color: #fff; }
.gma-sec-dark .gma-sub  { color: rgba(255,255,255,0.72); }
.gma-sec-faq { background: #f7fafd; }

/* ─── КНОПКИ ─── */
.gma-btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--blue-700);
  font-weight: 800; padding: 14px 30px;
  border-radius: var(--radius-pill); font-size: 15px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transition: transform 0.2s;
}
.gma-btn-white:hover { transform: translateY(-2px); }
.gma-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.45); color: #fff;
  font-weight: 600; padding: 14px 26px;
  border-radius: var(--radius-pill); font-size: 15px;
  text-decoration: none; backdrop-filter: blur(4px);
}
.gma-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── SCROLL REVEAL (добавляется JS) ─── */
.gma-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.gma-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════
   §1 HERO
   ════════════════════════════════ */
.gma-hero {
  background:
    linear-gradient(155deg, rgba(37,99,235,0.85) 0%, rgba(29,78,216,0.92) 52%, rgba(23,37,84,0.95) 100%),
    url('https://get-my-agent.com/wp-content/uploads/2026/02/hero_ai_modern_light.jpg') center/cover no-repeat;
  padding: 80px 0 68px;
  position: relative;
  overflow: hidden;
}
.gma-hero::before {
  content: '';
  position: absolute; top: -120px; right: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.gma-hero::after {
  content: '';
  position: absolute; bottom: -80px; left: 25%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,160,255,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.gma-hero .gma-c { position: relative; z-index: 1; }

/* Eyebrow */
.gma-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass-bg); border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-pill); padding: 5px 14px;
  color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 600;
  letter-spacing: 0.03em; margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.gma-live-dot {
  width: 6px; height: 6px;
  background: var(--green); border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(61,255,160,0.3);
  animation: livepulse 2s ease-in-out infinite;
}
@keyframes livepulse {
  0%,100% { box-shadow: 0 0 0 2px rgba(61,255,160,0.3); }
  50%      { box-shadow: 0 0 0 6px rgba(61,255,160,0.08); }
}

/* Hero title */
.gma-hero-h1 {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 900; color: #fff;
  line-height: 1.04; letter-spacing: -0.03em;
  max-width: 680px; margin-bottom: 18px;
}
.gma-hero-h1 em { color: rgba(255,255,255,0.78); font-style: normal; }
.gma-hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.87);
  line-height: 1.6; max-width: 520px; margin-bottom: 34px;
}
.gma-hero-cta { margin-bottom: 40px; }

/* Hero illustration (70% от ширины контейнера, по центру) */
.gma-hero-img-wrap {
  margin: 0 auto 40px;
  max-width: 70%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.gma-hero-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  .gma-hero-img-wrap { max-width: 100%; }
}

/* Bento grid */
.gma-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.gma-bc {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  color: #fff;
  transition: background 0.2s;
}
.gma-bc:hover { background: rgba(255,255,255,0.16); }
.gma-bc-lbl {
  font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.7;
  font-weight: 700; margin-bottom: 8px;
}
.gma-bc-val {
  font-size: 38px; font-weight: 900;
  letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px;
}
.gma-bc-txt { font-size: 14px; opacity: 0.78; line-height: 1.4; }
.gma-bc-wide { grid-column: span 2; }

/* Platform chips */
.gma-platforms { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gma-platform {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.14);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 5px 12px; font-size: 13px; font-weight: 600;
}

/* Chat demo in bento */
.gma-chat-msg { display: flex; align-items: flex-end; gap: 6px; margin-bottom: 8px; }
.gma-chat-msg.gma-me { flex-direction: row-reverse; }
.gma-chat-av {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,0.22); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.gma-chat-b {
  padding: 7px 11px; border-radius: 12px;
  font-size: 14px; line-height: 1.4; max-width: 78%;
}
.gma-chat-b.u { background: rgba(255,255,255,0.20); }
.gma-chat-b.a { background: #fff; color: #0055a0; font-weight: 600; }
.gma-dots {
  display: flex; gap: 3px; align-items: center;
  padding: 8px 12px;
  background: rgba(255,255,255,0.16); border-radius: 12px;
}
.gma-dots span {
  width: 5px; height: 5px; background: rgba(255,255,255,0.65);
  border-radius: 50%; animation: dp 1.2s ease-in-out infinite;
}
.gma-dots span:nth-child(2) { animation-delay: .2s; }
.gma-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes dp {
  0%,80%,100% { opacity:.3; transform:scale(.8); }
  40%          { opacity:1;  transform:scale(1); }
}

/* ════════════════════════════════
   §2 ECONOMICS
   ════════════════════════════════ */
.gma-econ-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 24px;
}
.gma-econ-card { border-radius: 22px; padding: 34px 32px; }
.gma-econ-before { background: #f5f7fa; border: 1px solid #e2e8f0; }
.gma-econ-after {
  background: linear-gradient(145deg, var(--blue-500), #00509e);
  color: #fff;
  box-shadow: var(--shadow-pop);
}
.gma-ec-badge {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; padding: 4px 10px; border-radius: var(--radius-pill);
  display: inline-block; margin-bottom: 18px;
}
.gma-ec-badge-bad  { background: #fee2e2; color: #c81e1e; }
.gma-ec-badge-good { background: rgba(255,255,255,0.2); color: #fff; }
.gma-ec-price { font-size: 50px; font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; }
.gma-ec-price-bad  { color: var(--red); }
.gma-ec-price-good { color: #fff; }
.gma-ec-period { font-size: 14px; opacity: 0.58; margin-bottom: 20px; }
.gma-ec-list { list-style: none; }
.gma-ec-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 14px; margin-bottom: 10px; opacity: 0.82;
}
.gma-ec-list li::before { font-weight: 700; margin-top: 1px; flex-shrink: 0; }
.gma-econ-before .gma-ec-list li::before { content: '✕'; color: var(--red); }
.gma-econ-after  .gma-ec-list li::before { content: '✓'; color: var(--green); }
.gma-econ-after  .gma-ec-list li { color: rgba(255,255,255,0.92); opacity: 1; }
.gma-econ-banner {
  background: linear-gradient(90deg, #e8f3ff, #f0f8ff);
  border: 1px solid #bee8ff; border-radius: 18px;
  padding: 26px 32px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.gma-econ-banner-val { font-size: 32px; font-weight: 900; color: var(--blue-700); letter-spacing: -0.03em; }

/* ════════════════════════════════
   §3 FEATURES
   ════════════════════════════════ */
.gma-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gma-feat-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow 0.2s;
}
.gma-feat-card:hover { box-shadow: var(--shadow-card); }
.gma-feat-ico {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  border-radius: var(--radius-ico);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.gma-feat-name { font-size: 18px; font-weight: 800; color: var(--dark); letter-spacing: -0.01em; }
.gma-feat-desc { font-size: 15px; color: var(--muted); line-height: 1.6; }
.gma-feat-tag {
  font-size: 12px; font-weight: 700; color: var(--blue-700);
  background: var(--blue-100); padding: 3px 9px;
  border-radius: var(--radius-pill); width: fit-content;
}

/* ════════════════════════════════
   §4 NICHES
   ════════════════════════════════ */
.gma-niches-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gma-niche-card {
  border-radius: var(--radius-card); padding: 28px 22px;
  background: #fff; border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.gma-niche-ico  { font-size: 32px; margin-bottom: 4px; }
.gma-niche-name { font-size: 16px; font-weight: 800; color: var(--dark); }
.gma-niche-problem {
  font-size: 14px; color: #c0392b;
  background: #fff5f5; padding: 8px 12px; border-radius: 8px; line-height: 1.45;
}
.gma-niche-solution {
  font-size: 14px; color: #1a7a4a;
  background: #f0fff6; padding: 8px 12px; border-radius: 8px; line-height: 1.45;
}

/* ════════════════════════════════
   §5 HOW IT WORKS
   ════════════════════════════════ */
.gma-steps {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 0; position: relative;
}
.gma-steps::before {
  content: '';
  position: absolute; top: 32px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--blue-900));
  border-radius: 2px; z-index: 0;
}
.gma-step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.gma-step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff; font-size: 22px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 24px rgba(0,100,180,0.30);
  border: 3px solid #fff;
}
.gma-step-title { font-size: 18px; font-weight: 800; color: var(--dark); margin-bottom: 10px; letter-spacing: -0.01em; }
.gma-step-desc  { font-size: 15px; color: var(--muted); line-height: 1.6; }
.gma-step-detail {
  margin-top: 12px; background: var(--blue-100);
  border: 1px solid #c8e4f8; border-radius: 10px;
  padding: 10px 14px; font-size: 12px; color: var(--blue-700); font-weight: 600;
}

/* ════════════════════════════════
   §6 RESULTS
   ════════════════════════════════ */
.gma-results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.gma-result-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-card); padding: 28px;
  backdrop-filter: blur(10px);
}
.gma-result-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.gma-result-av {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.gma-result-name { font-size: 15px; font-weight: 700; color: #fff; }
.gma-result-role { font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.gma-result-metrics { display: flex; gap: 16px; margin-bottom: 16px; }
.gma-result-m { text-align: center; }
.gma-result-val { font-size: 28px; font-weight: 900; color: var(--green); letter-spacing: -0.03em; }
.gma-result-lbl { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.gma-result-quote {
  font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; font-style: italic;
  border-left: 3px solid rgba(255,255,255,0.2); padding-left: 14px;
}

/* ════════════════════════════════
   §7 INTEGRATIONS
   ════════════════════════════════ */
.gma-int-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.gma-int-card {
  border-radius: var(--radius-card); background: #fff;
  border: 1.5px solid var(--border); padding: 28px 20px;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gma-int-card:hover { border-color: var(--blue-500); box-shadow: var(--shadow-card); }
.gma-int-logo {
  width: 56px; height: 56px; border-radius: var(--radius-ico);
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.gma-int-name { font-size: 15px; font-weight: 800; color: var(--dark); }
.gma-int-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }
.gma-int-status { font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: var(--radius-pill); }
.gma-int-status-ready { background: #e8fff2; color: #1a7a4a; }
.gma-int-status-soon  { background: #fff8e0; color: #b07800; }
.gma-int-note {
  text-align: center; background: var(--blue-50);
  border: 1px solid var(--blue-100); border-radius: 14px;
  padding: 16px 24px; font-size: 14px; color: var(--muted);
}
.gma-int-note strong { color: var(--blue-700); }
.gma-int-note a { color: var(--blue-700); font-weight: 700; }

/* ════════════════════════════════
   §8 URGENCY
   ════════════════════════════════ */
.gma-urgency {
  background: linear-gradient(155deg, var(--blue-500) 0%, var(--blue-700) 52%, var(--blue-900) 100%);
  padding: 72px 0; text-align: center; position: relative; overflow: hidden;
}
.gma-urgency::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.gma-urgency-inner { max-width: 680px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 1; }
.gma-urgency-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill); padding: 6px 16px;
  font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 24px;
}
.gma-urgency-h {
  font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.1; color: #fff; margin-bottom: 16px;
}
.gma-urgency-sub { font-size: 16px; color: rgba(255,255,255,0.82); line-height: 1.6; margin-bottom: 32px; }
.gma-urgency-stats { display: flex; justify-content: center; gap: 48px; margin-bottom: 36px; }
.gma-u-stat-val { font-size: 36px; font-weight: 900; letter-spacing: -0.03em; color: #fff; }
.gma-u-stat-lbl { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 3px; }

/* ════════════════════════════════
   §9 COMPARISON TABLE
   ════════════════════════════════ */
.gma-comp-wrap { overflow-x: auto; }
.gma-comp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.gma-comp-table th {
  padding: 16px 20px; text-align: center; font-weight: 800;
  font-size: 13px; background: var(--blue-50);
}
.gma-comp-table th:first-child { text-align: left; background: transparent; }
.gma-comp-table th.gma-col-hl {
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff; border-radius: 12px 12px 0 0;
}
.gma-comp-table td {
  padding: 14px 20px; text-align: center;
  border-bottom: 1px solid #eef2f7; vertical-align: middle;
}
.gma-comp-table td:first-child { text-align: left; font-weight: 500; color: #3a4a5a; }
.gma-comp-table td.gma-col-hl { background: #edf6ff; }
.gma-comp-table tr:last-child td { border-bottom: none; }
.gma-comp-yes  { color: #1a7a4a; font-weight: 700; font-size: 18px; }
.gma-comp-no   { color: #c0c8d0; font-size: 18px; }
.gma-comp-part { color: #b07800; font-weight: 600; font-size: 14px; }
.gma-comp-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff; font-size: 12px; font-weight: 700;
  padding: 3px 9px; border-radius: var(--radius-pill); margin-top: 4px;
}

/* ════════════════════════════════
   §10 PRICING
   ════════════════════════════════ */
.gma-pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 20px; align-items: flex-start;
}
.gma-price-card {
  border-radius: 22px; padding: 32px 28px;
  border: 1.5px solid var(--border); background: #fff;
  display: flex; flex-direction: column;
}
.gma-price-card.gma-popular {
  background: linear-gradient(145deg, var(--blue-500), #00509e);
  color: #fff; border: none;
  box-shadow: var(--shadow-pop);
  transform: scale(1.03);
}
.gma-price-badge {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 12px;
  border-radius: var(--radius-pill); margin-bottom: 16px; width: fit-content;
}
.gma-pb-free { background: #e8fff2; color: #1a7a4a; }
.gma-pb-pop  { background: rgba(255,255,255,0.22); color: #fff; }
.gma-pb-biz  { background: #f0f0f0; color: #4a5a6a; }
.gma-price-name { font-size: 18px; font-weight: 800; margin-bottom: 6px; color: var(--dark); }
.gma-popular .gma-price-name { color: #fff; }
.gma-price-desc { font-size: 14px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }
.gma-popular .gma-price-desc { color: rgba(255,255,255,0.72); }
.gma-price-val  { font-size: 46px; font-weight: 900; letter-spacing: -0.04em; line-height: 1; margin-bottom: 4px; color: var(--dark); }
.gma-popular .gma-price-val { color: #fff; }
.gma-price-per  { font-size: 13px; color: #8a9aaa; margin-bottom: 24px; }
.gma-popular .gma-price-per { color: rgba(255,255,255,0.6); }
.gma-price-sep  { border: none; border-top: 1px solid var(--border); margin-bottom: 20px; }
.gma-popular .gma-price-sep { border-color: rgba(255,255,255,0.2); }
.gma-price-features { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.gma-price-features li { display: flex; align-items: center; gap: 9px; font-size: 14px; color: #3a4a5a; }
.gma-price-features li::before { content: '✓'; color: var(--blue-700); font-weight: 700; flex-shrink: 0; }
.gma-popular .gma-price-features li { color: rgba(255,255,255,0.9); }
.gma-popular .gma-price-features li::before { color: var(--green); }
.gma-price-features li.dim { color: #b0bec8; }
.gma-price-features li.dim::before { color: #d0d8e0; }
.gma-price-btn {
  margin-top: 28px; padding: 13px; border-radius: var(--radius-pill);
  text-align: center; font-size: 14px; font-weight: 700; cursor: pointer;
  text-decoration: none; display: block;
}
.gma-pb-light { background: var(--blue-100); color: var(--blue-700); }
.gma-pb-white { background: #fff; color: var(--blue-700); }
.gma-pb-dark  { background: var(--dark); color: #fff; }

/* ════════════════════════════════
   §11 FAQ
   ════════════════════════════════ */
.gma-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gma-faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 22px;
  cursor: pointer; transition: border-color 0.2s;
}
.gma-faq-item:hover { border-color: var(--blue-500); }
.gma-faq-item.gma-faq-wide { grid-column: span 2; }
.gma-faq-q {
  font-size: 15px; font-weight: 700; color: var(--dark);
  margin-bottom: 8px; display: flex; justify-content: space-between;
  align-items: flex-start; gap: 12px;
}
.gma-faq-arrow { color: var(--blue-700); font-weight: 700; flex-shrink: 0; transition: transform 0.2s; }
.gma-faq-item.open .gma-faq-arrow { transform: rotate(180deg); }
.gma-faq-a {
  font-size: 14px; color: var(--muted); line-height: 1.65;
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.gma-faq-item.open .gma-faq-a { max-height: 200px; }

/* ════════════════════════════════
   §12 CONTACT + FOOTER
   ════════════════════════════════ */
.gma-footer-top { background: var(--dark); padding: 80px 0 56px; }
.gma-footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }
.gma-footer-title { font-size: 32px; font-weight: 900; color: #fff; letter-spacing: -0.02em; margin-bottom: 14px; }
.gma-footer-sub   { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 28px; max-width: 400px; }
.gma-footer-contacts { display: flex; flex-direction: column; gap: 12px; }
.gma-footer-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: rgba(255,255,255,0.8); text-decoration: none;
}
.gma-footer-link-ico {
  width: 36px; height: 36px; background: rgba(255,255,255,0.10);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.gma-footer-link-ico svg { width: 20px; height: 20px; display: block; }
.gma-footer-link:hover .gma-footer-link-ico { background: rgba(255,255,255,0.18); }
.gma-cta-form {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px; padding: 32px 28px;
}
.gma-form-title { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 22px; }
.gma-form-input {
  width: 100% !important; background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.22) !important; border-radius: 12px !important;
  padding: 13px 16px !important; color: #fff !important; font-size: 14px !important; outline: none !important;
  font-family: inherit; margin-bottom: 12px;
  box-sizing: border-box;
}
.gma-form-input:focus { border-color: rgba(255,255,255,0.5) !important; background: rgba(255,255,255,0.12) !important; }
.gma-form-input::placeholder { color: rgba(255,255,255,0.65) !important; opacity: 1 !important; }
.gma-form-input::-webkit-input-placeholder { color: rgba(255,255,255,0.65) !important; }
.gma-form-input::-moz-placeholder { color: rgba(255,255,255,0.65) !important; opacity: 1 !important; }
.gma-form-btn {
  width: 100%; background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff; font-weight: 800; font-size: 15px;
  padding: 14px; border-radius: var(--radius-pill); border: none; cursor: pointer;
}
.gma-footer-bar {
  background: #080f1a; padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.gma-footer-bar-links { display: flex; gap: 20px; }
.gma-footer-bar-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; }
.gma-footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }

/* ════════════════════════════════
   MOBILE RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 1024px) {
  .gma-c { padding: 0 32px; }
  .gma-niches-grid { grid-template-columns: 1fr 1fr; }
  .gma-int-grid    { grid-template-columns: 1fr 1fr; }
  .gma-pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .gma-popular { transform: scale(1); }
}

@media (max-width: 768px) {
  .gma-c { padding: 0 20px; }
  .gma-sec { padding: 56px 0; }

  /* Hero */
  .gma-bento { grid-template-columns: 1fr 1fr; }
  .gma-bc-wide { grid-column: span 2; }
  .gma-hero-h1 { font-size: clamp(28px, 7vw, 40px); }
  .gma-cta-row { flex-direction: column; align-items: flex-start; }

  /* Sections */
  .gma-econ-grid { grid-template-columns: 1fr; }
  .gma-feat-grid { grid-template-columns: 1fr; }
  .gma-niches-grid { grid-template-columns: 1fr; }
  .gma-results-grid { grid-template-columns: 1fr; }
  .gma-int-grid { grid-template-columns: 1fr 1fr; }

  /* Steps — вертикально */
  .gma-steps { grid-template-columns: 1fr; gap: 32px; }
  .gma-steps::before { display: none; }

  /* Comparison table */
  .gma-comp-table { font-size: 12px; }
  .gma-comp-table th, .gma-comp-table td { padding: 10px 12px; }

  /* Pricing */
  .gma-pricing-grid { grid-template-columns: 1fr; }
  .gma-popular { transform: none; }

  /* FAQ */
  .gma-faq-grid { grid-template-columns: 1fr; }
  .gma-faq-item.gma-faq-wide { grid-column: span 1; }

  /* Footer */
  .gma-footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .gma-footer-bar { flex-direction: column; gap: 10px; padding: 20px; }

  /* Urgency stats */
  .gma-urgency-stats { gap: 24px; }
  .gma-u-stat-val { font-size: 28px; }

  /* backdrop-filter — fallback for low-end mobile */
  .gma-bc, .gma-result-card {
    backdrop-filter: none;
    background: rgba(0, 90, 160, 0.95);
  }
}

@media (max-width: 480px) {
  .gma-bento { grid-template-columns: 1fr; }
  .gma-bc-wide { grid-column: span 1; }
  .gma-int-grid { grid-template-columns: 1fr; }
  .gma-hero-cta .gma-btn-white,
  .gma-hero-cta .gma-btn-outline { width: 100%; justify-content: center; }
}

/* ════════════════════════════════
   NAVBAR OVERRIDE (Astra → glass blue)
   ════════════════════════════════ */
.home-custom-template #masthead,
.home-custom-template .site-header {
  background: rgba(0, 80, 155, 0.88) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(255,255,255,0.12) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 999 !important;
  box-shadow: 0 2px 24px rgba(0,0,0,0.18) !important;
}
.home-custom-template .ast-primary-header-bar,
.home-custom-template .main-header-bar,
.home-custom-template .ast-above-header-bar {
  background: transparent !important;
}

/* Лого */
.home-custom-template .ast-site-identity .site-title a,
.home-custom-template .ast-site-identity .site-title,
.home-custom-template .site-title a { color: #fff !important; }

/* Логотип: SVG уже с белым текстом, инверсия не нужна */
.home-custom-template .custom-logo { filter: none; max-height: 44px; width: auto; }

/* Пункты меню */
.home-custom-template .ast-nav-menu > li > a,
.home-custom-template .main-navigation .menu-item > a,
.home-custom-template .ast-hf-menu-list .menu-item > a {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}
.home-custom-template .ast-nav-menu > li > a:hover,
.home-custom-template .main-navigation .menu-item > a:hover {
  color: #fff !important;
  opacity: 1 !important;
}

/* Мобильный toggler */
.home-custom-template .ast-mobile-menu-trigger-minimal .menu-toggle,
.home-custom-template button.menu-toggle {
  color: #fff !important;
}
.home-custom-template .ast-mobile-menu-trigger-minimal .menu-toggle span,
.home-custom-template .ast-mobile-menu-trigger-minimal .menu-toggle span::before,
.home-custom-template .ast-mobile-menu-trigger-minimal .menu-toggle span::after {
  background: #fff !important;
}

/* CTA-кнопка в хедере (если есть) */
.home-custom-template .ast-header-button .ast-button,
.home-custom-template .hfe-nav-menu .ast-button {
  background: #fff !important; color: var(--blue-700) !important;
  border-radius: 999px !important; font-weight: 700 !important;
}

/* Скрыть стандартный Astra nav и кнопки на главной (заменён кастомным) */
.home-custom-template #primary-site-navigation { display: none !important; }
.home-custom-template #ast-desktop-header .main-header-bar-navigation { display: none !important; }
.home-custom-template .ast-header-button-1 { display: none !important; }
.home-custom-template .ast-builder-button-wrap { display: none !important; }

/* ─── КАСТОМНЫЙ NAV (GMA) ─── */
.gma-custom-nav {
  position: fixed;
  top: 0; right: 180px;
  height: 70px;
  display: flex; align-items: center;
  z-index: 10000;
  pointer-events: auto;
}
.gma-custom-nav-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 4px;
}
.gma-custom-nav-list li a {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.gma-custom-nav-list li a:hover {
  background: rgba(255,255,255,0.12);
  color: #fff !important;
}
.gma-custom-nav-list .gma-nav-cta-item a {
  background: var(--green) !important;
  color: #003c70 !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  padding: 7px 16px !important;
  border-radius: 999px !important;
  margin-left: 8px;
}
.gma-custom-nav-list .gma-nav-cta-item a:hover {
  background: rgba(61,255,160,0.85) !important;
}
@media (max-width: 768px) {
  .gma-custom-nav { display: none; }
}

/* CTA пункт в nav меню */
.home-custom-template .gma-nav-cta > a {
  background: var(--green) !important;
  color: #003c70 !important;
  border-radius: 999px !important;
  padding: 7px 18px !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  transition: opacity 0.2s !important;
}
.home-custom-template .gma-nav-cta > a:hover { opacity: 0.88 !important; }

/* Скрыть нативный Astra footer (у нас свой в §12) */
.home-custom-template #colophon,
.home-custom-template .site-footer { display: none !important; }

/* ─── STICKY FLOAT CTA ─── */
.gma-float-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--green);
  color: #003c70;
  font-weight: 800; font-size: 14px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), opacity 0.35s;
  white-space: nowrap;
}
.gma-float-cta.visible {
  transform: translateY(0);
  opacity: 1;
}
.gma-float-cta:hover { transform: translateY(-3px); opacity: 1; }

/* ─── КНОПКА НАВЕРХ ─── */
.gma-to-top {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 44px; height: 44px;
  background: rgba(0,80,155,0.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0,120,220,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-700);
  font-size: 18px; text-decoration: none;
  z-index: 9999;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.gma-to-top.visible { opacity: 1; pointer-events: auto; }
.gma-to-top:hover { transform: translateY(-3px); background: rgba(0,80,155,0.3); }

/* ─── URGENCY TIMER ─── */
.gma-timer {
  display: flex; gap: 12px; justify-content: center;
  margin-top: 20px;
}
.gma-timer-block {
  display: flex; flex-direction: column; align-items: center;
  min-width: 60px;
}
.gma-timer-num {
  font-size: 32px; font-weight: 900;
  color: var(--green); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.gma-timer-label {
  font-size: 12px; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 4px;
}
.gma-timer-sep {
  font-size: 28px; font-weight: 900;
  color: var(--green); line-height: 1.15;
  align-self: flex-start; margin-top: 4px;
}
