:root {
  color-scheme: dark;
  --bg: #04070d;
  --blue: #2563eb;
  --blue-light: #60a5fa;
  --blue-bright: #93c5fd;
  --silver: #94a3b8;
  --silver-light: #cbd5e1;
  --green: #22c55e;
  --glass-bg: rgba(148,163,184,.03);
  --glass-border: rgba(148,163,184,.1);
  --radius: 20px;
  --radius-sm: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg); color: rgba(255,255,255,.9);
  line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

h1, h2, h3, .logo-text, .price, .stat strong, .step-num, .reward-badge, .btn {
  font-family: "Space Grotesk", "Inter", system-ui, sans-serif;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: rgba(37,99,235,.35); }
.container { width: min(1100px, 90%); margin: 0 auto; }

/* ═══ AURORA (Blue + Silver) ═══ */
@keyframes aurora { 0% { background-position: 50% 50%, 50% 50%; } 100% { background-position: 350% 50%, 350% 50%; } }
@keyframes shimmer { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.aurora-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(100deg, transparent 0%, transparent 5%, rgba(37,99,235,.08) 10%, rgba(96,165,250,.06) 15%, transparent 20%),
    repeating-linear-gradient(100deg, transparent 0%, transparent 5%, rgba(148,163,184,.05) 10%, rgba(37,99,235,.06) 15%, transparent 20%);
  background-size: 300% 300%; animation: aurora 60s linear infinite; mix-blend-mode: screen;
}
.aurora-overlay {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at top, rgba(15,23,42,.4), rgba(4,7,13,.9) 50%, var(--bg));
}

/* ═══ GLASS ═══ */
.glass {
  background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); box-shadow: 0 4px 24px rgba(0,0,0,.2);
}

/* ═══ NAV ═══ */
.nav { position: fixed; top: 16px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 960px; z-index: 100; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 52px;
  background: rgba(4,7,13,.8); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); border-radius: 100px;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo-icon {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, #1d4ed8, #2563eb, #60a5fa, #2563eb);
  background-size: 300% 300%; animation: shimmer 6s ease infinite;
  border-radius: 8px; display: grid; place-items: center;
  font-weight: 800; font-size: 11px; color: #fff;
  box-shadow: 0 0 16px rgba(37,99,235,.3);
}
.logo-icon-sm { width: 24px; height: 24px; font-size: 9px; border-radius: 6px; }
.logo-text {
  font-weight: 700; font-size: 15px; letter-spacing: -.01em;
  background: linear-gradient(90deg, #fff, var(--silver));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 16px; }
.nav-links a { color: var(--silver); font-size: 13px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 4px; padding: 4px; }
.burger span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 2px; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 100px; border: 1px solid transparent;
  padding: 11px 22px; font-size: 14px; font-weight: 600;
  color: #fff; cursor: pointer; transition: all .3s cubic-bezier(.4,0,.2,1);
  white-space: nowrap; text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8); color: #fff;
  box-shadow: 0 0 32px rgba(37,99,235,.2), 0 4px 16px rgba(37,99,235,.15);
}
.btn-primary:hover { transform: scale(1.04); box-shadow: 0 0 48px rgba(37,99,235,.3), 0 4px 24px rgba(37,99,235,.2); }
.btn-outline { border-color: rgba(148,163,184,.15); background: rgba(148,163,184,.04); }
.btn-outline:hover { border-color: rgba(148,163,184,.3); background: rgba(148,163,184,.08); }
.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-full { width: 100%; }

/* ═══ HERO ═══ */
.hero {
  position: relative; z-index: 1; padding: 140px 0 60px;
  overflow: hidden;
}
.hero-split {
  display: grid; grid-template-columns: auto 1fr;
  gap: 24px; align-items: center;
}
.hero-agent {
  position: relative; width: 340px; flex-shrink: 0;
}
.hero-agent img {
  width: 100%; height: auto; display: block;
  position: relative; z-index: 2;
  filter: drop-shadow(0 0 40px rgba(37,99,235,.15));
  mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 75%, transparent 100%);
}
.hero-agent-glow {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 280px; height: 200px;
  background: radial-gradient(ellipse, rgba(37,99,235,.12) 0%, transparent 70%);
  z-index: 1; pointer-events: none;
}
.hero-content {
  text-align: left;
  padding: 20px 0;
}
.hero-heading {
  font-size: clamp(36px, 5.5vw, 68px); font-weight: 700;
  line-height: 1.04; letter-spacing: -.04em;
}
.hero-heading span {
  background: linear-gradient(90deg, var(--blue-bright), var(--blue-light), var(--silver-light), var(--blue-bright));
  background-size: 300% 100%; animation: shimmer 8s ease infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.subtitle { margin-top: 20px; max-width: 520px; color: var(--silver); font-size: 15px; line-height: 1.7; font-weight: 400; }
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 40px; width: 100%;
  border-top: 1px solid rgba(148,163,184,.08); border-bottom: 1px solid rgba(148,163,184,.08);
  padding: 24px 0;
}
.stat { text-align: center; }
.stat strong {
  display: block; font-size: 24px; font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat span { color: rgba(148,163,184,.5); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; font-weight: 500; }

/* ═══ TG BAR ═══ */
.tg-bar { position: relative; z-index: 1; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); padding: 12px 0; background: rgba(148,163,184,.015); }
.tg-bar-inner { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.tg-link { display: inline-flex; align-items: center; gap: 6px; color: var(--silver); font-size: 13px; font-weight: 500; transition: color .2s; }
.tg-link:hover { color: #fff; }
.tg-link svg { color: #229ED9; flex-shrink: 0; }
.tg-link-accent { color: var(--blue-light); font-weight: 600; }
.tg-link-accent svg { color: var(--blue-light); }

/* ═══ SECTIONS ═══ */
.section { padding: 72px 0; position: relative; z-index: 1; }
.section-dark { background: rgba(148,163,184,.01); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.section-label { color: var(--blue-light); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 6px; }
.section-title { font-size: clamp(22px, 3vw, 32px); font-weight: 700; line-height: 1.15; margin-bottom: 32px; max-width: 540px; letter-spacing: -.02em; }

/* ═══ GRIDS ═══ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

/* ═══ SERVICE CARDS ═══ */
.service-card {
  background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 22px; transition: transform .4s, border-color .3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: -30px; right: -30px;
  width: 80px; height: 80px; background: rgba(37,99,235,.03);
  border-radius: 50%; filter: blur(30px); transition: background .5s;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(148,163,184,.18); }
.service-card:hover::before { background: rgba(37,99,235,.06); }
.service-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(96,165,250,.08));
  border: 1px solid rgba(96,165,250,.15); border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 14px; color: var(--blue-light);
  box-shadow: 0 0 16px rgba(37,99,235,.06); transition: all .4s; position: relative;
}
.service-icon::after {
  content: ""; position: absolute; inset: -1px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(37,99,235,.3), rgba(96,165,250,.2), rgba(148,163,184,.2), rgba(37,99,235,.3));
  background-size: 300% 300%; animation: shimmer 6s ease infinite;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude; -webkit-mask-composite: xor; padding: 1px; opacity: 0; transition: opacity .4s;
}
.service-card:hover .service-icon::after { opacity: 1; }
.service-card:hover .service-icon { color: var(--blue-bright); }
.service-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: rgba(255,255,255,.88); }
.service-card p { color: var(--silver); font-size: 13px; line-height: 1.6; }

/* ═══ STEPS ═══ */
.steps { display: flex; align-items: flex-start; gap: 14px; }
.step {
  flex: 1; background: var(--glass-bg); backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 24px 20px;
}
.step-num {
  font-size: 36px; font-weight: 700;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-light), var(--silver-light));
  background-size: 200% 100%; animation: shimmer 6s ease infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 10px; line-height: 1;
}
.step h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.step p { color: var(--silver); font-size: 13px; line-height: 1.6; }
.step-arrow { display: grid; place-items: center; padding-top: 40px; color: rgba(148,163,184,.15); flex-shrink: 0; }

/* ═══ AUDIENCE ═══ */
.audience-card {
  background: var(--glass-bg); backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 22px;
  transition: transform .3s, border-color .3s;
}
.audience-card:hover { border-color: rgba(148,163,184,.18); transform: translateY(-2px); }
.audience-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.audience-card p { color: var(--silver); font-size: 13px; line-height: 1.6; }

/* ═══ PRICING ═══ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pricing-subtitle { color: var(--silver); font-size: 14px; margin-top: -20px; margin-bottom: 28px; }
.pricing-note-bottom { text-align: center; color: rgba(148,163,184,.35); font-size: 12px; margin-top: 20px; }
.pricing-card {
  background: var(--glass-bg); backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 26px;
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  border-color: rgba(37,99,235,.35);
  box-shadow: 0 0 32px rgba(37,99,235,.06); position: relative;
}
.pricing-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #1d4ed8, #2563eb, #60a5fa);
  color: #fff; font-size: 10px; font-weight: 700; padding: 3px 12px; border-radius: 100px;
  box-shadow: 0 4px 12px rgba(37,99,235,.25);
}
.pricing-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 2px; }
.pricing-card .price { font-size: 30px; font-weight: 700; margin: 8px 0 2px; }
.pricing-card .price small { font-size: 13px; font-weight: 400; color: var(--silver); }
.pricing-card .price-note { color: var(--silver); font-size: 12px; margin-bottom: 14px; }
.pricing-features { display: grid; gap: 6px; margin-bottom: 20px; flex: 1; }
.pricing-features li { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--silver-light); }
.pricing-features li::before { content: "✓"; color: var(--blue-light); font-weight: 700; font-size: 12px; width: 16px; text-align: center; flex-shrink: 0; }

/* ═══ REVIEWS ═══ */
.review-card {
  background: var(--glass-bg); backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); border-radius: var(--radius); padding: 22px;
}
.review-card > p { color: var(--silver-light); font-size: 14px; line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.review-card footer { display: flex; flex-direction: column; }
.review-card footer strong { font-size: 13px; font-weight: 600; }
.review-card footer span { color: var(--silver); font-size: 12px; }
.reviews-cta { margin-top: 24px; text-align: center; }

/* ═══ FORM ═══ */
.section-form { padding: 72px 0; position: relative; z-index: 1; background: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,.03), transparent 60%); }
.form-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: center; }
.form-info p { color: var(--silver); font-size: 14px; line-height: 1.7; margin-top: 10px; max-width: 440px; }
.check-list { margin-top: 16px; display: grid; gap: 8px; }
.check-list li { display: flex; align-items: center; gap: 8px; color: var(--silver-light); font-size: 14px; }
.check-list li::before {
  content: "✓"; font-weight: 700; font-size: 11px; width: 20px; height: 20px; flex-shrink: 0;
  background: rgba(37,99,235,.08); border: 1px solid rgba(37,99,235,.2); border-radius: 6px;
  display: grid; place-items: center; color: var(--blue-light);
}
.form-card {
  background: var(--glass-bg); backdrop-filter: blur(20px); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 26px; display: grid; gap: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}
.form-card h3 { font-size: 17px; font-weight: 700; }
.form-card label { display: grid; gap: 4px; }
.form-card label span { color: var(--silver); font-size: 12px; font-weight: 600; }
.form-card input, .form-card select {
  background: rgba(4,7,13,.5); border: 1px solid var(--glass-border); color: #fff;
  border-radius: 10px; padding: 11px 14px; font-family: inherit; font-size: 13px; transition: border-color .2s;
}
.form-card input:focus, .form-card select:focus { outline: none; border-color: var(--blue); }
.form-card input::placeholder { color: rgba(148,163,184,.35); }
.status { min-height: 18px; color: var(--green); font-size: 13px; }
.form-hint { color: rgba(148,163,184,.4); font-size: 12px; text-align: center; }
.form-hint a { color: var(--blue-light); text-decoration: underline; }

/* ═══ JOBS ═══ */
.jobs-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-bottom: 6px; flex-wrap: wrap; }
.jobs-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.jobs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.job-card {
  padding: 18px; border-radius: var(--radius); border: 1px solid var(--glass-border);
  background: var(--glass-bg); backdrop-filter: blur(20px); transition: transform .3s, border-color .3s;
}
.job-card:hover { border-color: rgba(148,163,184,.18); transform: translateY(-2px); }
.job-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; line-height: 1.3; }
.job-meta { color: var(--silver); font-size: 12px; margin-bottom: 3px; }
.job-salary { color: var(--green); font-size: 12px; font-weight: 600; margin-bottom: 8px; }
.job-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 10px; }
.job-tag { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 5px; background: rgba(37,99,235,.06); color: var(--blue-light); border: 1px solid rgba(37,99,235,.12); }
.job-card a { color: var(--blue-light); font-size: 12px; font-weight: 600; }
.job-card a:hover { text-decoration: underline; }

/* ═══ FAQ ═══ */
.faq-container { max-width: 680px; }
.faq-list { display: grid; gap: 8px; }
.faq-item { background: var(--glass-bg); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary { padding: 14px 18px; font-weight: 600; font-size: 14px; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; }
.faq-item summary::after { content: "+"; font-size: 18px; color: var(--silver); }
.faq-item[open] summary::after { content: "−"; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 18px 14px; color: var(--silver); font-size: 13px; line-height: 1.65; }
.faq-item a { color: var(--blue-light); text-decoration: underline; }

/* ═══ REFERRAL ═══ */
.referral-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px; align-items: center; }
.referral-info p { color: var(--silver); font-size: 14px; line-height: 1.65; margin-top: 6px; }
.referral-steps { display: grid; gap: 10px; margin-top: 20px; }
.ref-step { display: flex; gap: 12px; align-items: flex-start; color: var(--silver-light); font-size: 13px; line-height: 1.5; }
.ref-step strong { color: rgba(255,255,255,.85); }
.ref-step-num {
  width: 28px; height: 28px; flex-shrink: 0;
  background: rgba(37,99,235,.08); border: 1px solid rgba(37,99,235,.2);
  border-radius: 8px; display: grid; place-items: center;
  font-weight: 800; font-size: 12px; color: var(--blue-light);
}
.referral-card { border-radius: var(--radius); padding: 28px; text-align: center; display: flex; flex-direction: column; gap: 16px; align-items: center; }
.referral-reward { display: flex; align-items: center; gap: 10px; }
.reward-badge {
  font-size: 28px; font-weight: 700;
  background: linear-gradient(90deg, var(--blue-bright), var(--blue-light), var(--silver-light), var(--blue-bright));
  background-size: 300% 100%; animation: shimmer 5s ease infinite;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.referral-reward span { color: var(--silver); font-size: 13px; }

/* ═══ CHANNELS ═══ */
.channels-desc { color: var(--silver); max-width: 460px; margin: 0 auto 24px; font-size: 14px; }
.channels-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 640px; margin: 0 auto; }
.channel-card { border-radius: var(--radius); padding: 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: transform .3s, border-color .3s; }
.channel-card:hover { transform: translateY(-3px); border-color: rgba(148,163,184,.18); }
.channel-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 2px; }
.channel-icon-blue { background: rgba(37,99,235,.08); border: 1px solid rgba(37,99,235,.18); color: var(--blue-bright); box-shadow: 0 0 16px rgba(37,99,235,.06); }
.channel-icon-emerald { background: rgba(34,197,94,.06); border: 1px solid rgba(34,197,94,.18); color: #86efac; box-shadow: 0 0 16px rgba(34,197,94,.05); }
.channel-card h3 { font-size: 15px; font-weight: 600; }
.channel-card p { color: var(--silver); font-size: 12px; line-height: 1.5; }
.channel-cta { color: var(--blue-light); font-size: 13px; font-weight: 600; }

/* ═══ CONTACTS ═══ */
.contacts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 720px; margin: 0 auto; }
.contact-card { border-radius: var(--radius); padding: 24px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.contact-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: rgba(37,99,235,.08); border: 1px solid rgba(37,99,235,.18); color: var(--blue-light); margin-bottom: 4px; }
.contact-card h3 { font-size: 15px; font-weight: 600; }
.contact-card a { color: var(--blue-light); font-size: 14px; font-weight: 500; transition: color .2s; }
.contact-card a:hover { color: #fff; }

/* ═══ FOOTER ═══ */
.footer { padding: 40px 0 20px; border-top: 1px solid var(--glass-border); position: relative; z-index: 1; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 24px; }
.footer-brand p { color: var(--silver); font-size: 13px; margin-top: 10px; max-width: 260px; line-height: 1.55; }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; color: rgba(148,163,184,.6); }
.footer-links a { color: var(--silver); font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 28px; padding-top: 14px; border-top: 1px solid var(--glass-border); color: rgba(148,163,184,.3); font-size: 12px; }
.footer-bottom a { color: rgba(148,163,184,.4); transition: color .2s; margin: 0 2px; }
.footer-bottom a:hover { color: var(--blue-light); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav .btn-sm { display: none; }
  .burger { display: flex; }
  .grid-3, .pricing-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .form-layout { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .referral-layout { grid-template-columns: 1fr; }
  .channels-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-agent { width: 220px; margin: 0 auto; }
  .hero-content { text-align: center; }
  .hero-actions { justify-content: center; }
}

@media (max-width: 480px) {
  .hero { padding: 110px 0 40px; }
  .hero-heading { font-size: 32px; }
  .hero-agent { width: 180px; }
  .subtitle { font-size: 14px; }
  .section { padding: 48px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .tg-bar-inner { flex-direction: column; gap: 10px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .btn-lg { padding: 13px 22px; font-size: 14px; }
  .nav-inner { padding: 0 14px; height: 46px; }
  .nav { top: 10px; }
}
