/* =========================================================
   Tech Call Training - Dark Orange / Gold / Green Theme
   Palette: black-orange bg + gold, white, blue, amazon green
   ========================================================= */

:root {
  --bg:        #0b0604;
  --bg-2:      #150a03;
  --bg-3:      #1f0d04;
  --panel:     #1a0e07;
  --panel-2:   #271507;
  --border:    rgba(255,178,92,.14);
  --border-2:  rgba(255,178,92,.25);

  --orange:    #ff7a18;
  --orange-2:  #ff9a3d;
  --gold:      #f5c451;
  --gold-2:    #ffdf80;
  --blue:      #2f7dff;
  --blue-2:    #5ea0ff;
  --green:     #00C853;      /* amazon / prime green */
  --green-2:   #3ee08a;
  --white:     #ffffff;
  --off:       #e7e1d5;
  --muted:     #9a8f7e;
  --danger:    #ef4444;

  --radius:    14px;
  --radius-sm: 10px;
  --shadow:    0 14px 40px rgba(0,0,0,.55);
  --shadow-gold: 0 10px 30px rgba(245,196,81,.18);
  --maxw:      1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--off);
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(255,122,24,.22), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(245,196,81,.10), transparent 60%),
    radial-gradient(900px 600px at 100% 100%, rgba(0,200,83,.10), transparent 60%),
    linear-gradient(180deg, #0b0604 0%, #140804 100%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .15s; }
a:hover { color: var(--orange-2); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }
.small { font-size: .88rem; }
.text-green { color: var(--green); }
.text-gold  { color: var(--gold); }
.text-orange { color: var(--orange); }
.text-blue  { color: var(--blue-2); }

/* ====== Buttons ====== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: .95rem; border: 1px solid transparent;
  cursor: pointer; transition: all .2s ease; text-decoration: none;
  line-height: 1; letter-spacing: .01em;
}
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary {
  color: #1a0e07;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  box-shadow: 0 10px 25px rgba(255,122,24,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255,122,24,.5);
  color: #1a0e07;
}
.btn-ghost {
  background: rgba(255,255,255,.04); color: var(--off);
  border-color: var(--border-2);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); color: var(--white); }
.btn-green {
  color: #04200f; background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 10px 25px rgba(0,200,83,.3);
}
.btn-green:hover { transform: translateY(-2px); color: #04200f; box-shadow: 0 14px 30px rgba(0,200,83,.45); }
.btn-gold {
  color: #1a0e07; background: linear-gradient(135deg, var(--gold), var(--gold-2));
}
.btn-gold:hover { transform: translateY(-2px); color: #1a0e07; }
.btn-blue {
  color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 10px 25px rgba(47,125,255,.3);
}
.btn-blue:hover { transform: translateY(-2px); color: #fff; }

/* ====== Marquee / Top Bar ====== */
.top-marquee {
  background: linear-gradient(90deg, #0a0402, #150a03 40%, #0a0402 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.top-marquee .marq-track {
  display: inline-flex; gap: 48px; white-space: nowrap;
  padding: 10px 0;
  animation: marq 32s linear infinite;
  color: var(--gold-2); font-size: .88rem; font-weight: 600;
}
.top-marquee .marq-track a { color: var(--gold-2); }
.top-marquee .marq-track a:hover { color: var(--white); }
.top-marquee .sep { color: var(--orange); }
@keyframes marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ====== Header ====== */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(11,6,4,.78);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.1rem; color: var(--white); }
.logo img { height: 38px; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #1a0e07; display: grid; place-items: center; font-size: 1rem;
  box-shadow: 0 6px 18px rgba(255,122,24,.45);
}

/* === Glowing animated logo text === */
.logo-text {
  background: linear-gradient(90deg, var(--gold), var(--orange-2), var(--green), var(--blue-2), var(--gold));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: logoShift 6s linear infinite;
  text-shadow: 0 0 12px rgba(245,196,81,.25);
  font-weight: 800; letter-spacing: .02em;
}
@keyframes logoShift {
  0%   { background-position: 0% 50%; filter: drop-shadow(0 0 4px rgba(255,122,24,.4)); }
  50%  { background-position: 100% 50%; filter: drop-shadow(0 0 14px rgba(0,200,83,.35)); }
  100% { background-position: 200% 50%; filter: drop-shadow(0 0 4px rgba(47,125,255,.35)); }
}

.main-nav { display: flex; gap: 26px; align-items: center; }
.main-nav a { color: var(--off); font-weight: 500; font-size: .93rem; }
.main-nav a:hover { color: var(--gold); }
.main-nav .nav-cta {
  color: #1a0e07; background: linear-gradient(135deg, var(--orange), var(--gold));
  padding: 10px 18px; border-radius: var(--radius-sm); font-weight: 700;
}
.main-nav .nav-cta:hover { color: #1a0e07; transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.3rem; color: var(--white); cursor: pointer; }

/* ====== Hero ====== */
.hero {
  padding: 70px 0 80px;
  position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(600px 400px at 20% 10%, rgba(255,122,24,.18), transparent 60%),
    radial-gradient(600px 400px at 80% 0%, rgba(245,196,81,.12), transparent 60%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
  position: relative;
}
.hero-copy .pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,122,24,.12); color: var(--gold-2);
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--border-2);
  font-size: .8rem; font-weight: 600; margin-bottom: 20px;
}
.hero-copy h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 3.2rem); line-height: 1.1; margin: 0 0 18px; letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.hero-copy h1 .hl {
  background: linear-gradient(90deg, var(--orange), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-copy .hook {
  color: var(--off); font-size: 1.12rem; font-weight: 500; margin: 0 0 14px;
}
.hero-copy .sub {
  color: var(--muted); font-size: 1.05rem; margin: 0 0 30px; max-width: 560px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.7rem; color: var(--gold); font-weight: 800; }
.hero-stats span { font-size: .85rem; color: var(--muted); }

/* Hero visual card */
.hero-visual img { border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border-2); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.hc-head {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  background: rgba(0,0,0,.3); border-bottom: 1px solid var(--border);
}
.hc-head .dot { width: 10px; height: 10px; border-radius: 50%; background: #444; }
.hc-head .dot.r { background: #f87171; } .hc-head .dot.y { background: var(--gold); } .hc-head .dot.g { background: var(--green); }
.hc-title { margin-left: 10px; font-weight: 700; font-size: .9rem; color: var(--gold-2); }
.hc-body { padding: 20px 22px; }
.hc-row {
  display: flex; justify-content: space-between; padding: 11px 0;
  border-bottom: 1px dashed var(--border); font-size: .95rem;
  color: var(--off);
}
.hc-row:last-of-type { border-bottom: 0; }
.hc-row span { color: var(--muted); }
.hc-row strong { color: var(--white); }
.hc-row .text-green { color: var(--green); }
.hc-bar {
  height: 10px; background: rgba(255,255,255,.06);
  border-radius: 999px; margin-top: 16px; overflow: hidden;
}
.hc-bar-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  box-shadow: 0 0 12px rgba(245,196,81,.5);
}
.hc-note { margin-top: 10px; color: var(--muted); font-size: .85rem; }

/* ====== Sections ====== */
.section { padding: 80px 0; position: relative; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .14em;
  font-size: .78rem; font-weight: 800; color: var(--orange); margin-bottom: 10px;
}
.eyebrow.light { color: var(--gold); opacity: .95; }
.section-head h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem); letter-spacing: -0.02em; margin: 0 0 12px;
}
.section-head h2 .hl {
  background: linear-gradient(90deg, var(--gold), var(--orange));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px;
}
.learn-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px 24px;
  transition: all .2s ease; position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(245,196,81,.04), transparent 50%);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
  box-shadow: var(--shadow-gold);
}
.card h3 { color: var(--white); margin: 10px 0 8px; font-size: 1.05rem; }
.card p  { margin: 0; color: var(--muted); font-size: .95rem; }
.card-icon {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  font-size: 1.2rem;
}
.card-icon.brand {
  background: rgba(255,122,24,.14); color: var(--orange);
  border: 1px solid rgba(255,122,24,.35);
}
.card-icon.success {
  background: rgba(0,200,83,.12); color: var(--green);
  border: 1px solid rgba(0,200,83,.35);
}
.card-icon.danger {
  background: rgba(239,68,68,.1); color: #ff7070;
  border: 1px solid rgba(239,68,68,.3);
}
.step-no {
  position: absolute; top: 16px; right: 16px;
  font-size: .75rem; letter-spacing: .1em; color: var(--gold); font-weight: 700;
}

/* ====== Pain, Solution, Learn, Format section backgrounds ====== */
.section-pain, .section-learn { background: rgba(0,0,0,.2); }

/* ====== Lead Magnet ====== */
.section-magnet { background: transparent; padding: 40px 0 80px; }
.magnet-card {
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(245,196,81,.18), transparent 60%),
    linear-gradient(135deg, #1a0e07, #2b1608);
  color: var(--white); border-radius: 24px; padding: 48px;
  border: 1px solid var(--border-2);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
  box-shadow: var(--shadow);
  overflow: hidden; position: relative;
}
.magnet-card::before {
  content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,24,.25), transparent 70%);
  top: -140px; right: -120px;
}
.magnet-card h2 {
  color: var(--white); font-size: 1.9rem; margin: 8px 0 14px;
}
.magnet-card h2 .hl {
  background: linear-gradient(90deg, var(--gold), var(--orange));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.magnet-card p { color: rgba(255,255,255,.85); font-size: 1.02rem; margin: 0 0 24px; }
.magnet-mock {
  background: rgba(0,0,0,.35); border: 1px dashed rgba(245,196,81,.3);
  border-radius: var(--radius); padding: 40px; text-align: center; color: var(--gold-2);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.magnet-mock i { font-size: 3rem; color: var(--orange); }

/* ====== CTA ====== */
.section-cta {
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(0,200,83,.15), transparent 60%),
    radial-gradient(800px 400px at 0% 100%, rgba(255,122,24,.18), transparent 60%),
    linear-gradient(180deg, #0a0402, #140804);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.cta-copy h2 { color: var(--white); font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin: 0 0 16px; letter-spacing: -0.02em; }
.cta-copy p { color: #c9bca9; font-size: 1.05rem; margin: 0 0 22px; }
.cta-list { list-style: none; padding: 0; margin: 0; }
.cta-list li { padding: 8px 0; color: var(--off); }
.cta-list i { color: var(--green); margin-right: 10px; }

.cta-form {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  color: var(--off); padding: 28px; border-radius: var(--radius);
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow);
}
.cta-form h3 { color: var(--white); margin: 0 0 16px; font-size: 1.2rem; }
.cta-form label { display: block; font-size: .88rem; color: var(--muted); margin-bottom: 12px; font-weight: 500; }
.cta-form input, .cta-form textarea, .cta-form select {
  width: 100%; padding: 12px 14px; font-size: .95rem;
  border: 1px solid var(--border-2); border-radius: var(--radius-sm);
  margin-top: 6px; font-family: inherit; color: var(--off);
  background: rgba(0,0,0,.35);
  transition: border .2s, box-shadow .2s;
}
.cta-form input:focus, .cta-form textarea:focus, .cta-form select:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,122,24,.18);
}
.cta-form textarea { resize: vertical; }
.alert {
  padding: 11px 14px; border-radius: var(--radius-sm); margin-bottom: 14px; font-size: .92rem;
  display: flex; align-items: center; gap: 8px;
}
.alert.success { background: rgba(0,200,83,.12); color: var(--green-2); border: 1px solid rgba(0,200,83,.35); }
.alert.error { background: rgba(239,68,68,.12); color: #ff8a8a; border: 1px solid rgba(239,68,68,.35); }

/* ====== Telegram channel CTA strip ====== */
.tg-strip {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 16px 22px; margin: 24px 0;
  background: linear-gradient(90deg, rgba(47,125,255,.15), rgba(47,125,255,.05));
  border: 1px solid rgba(47,125,255,.35);
  border-radius: var(--radius);
  flex-wrap: wrap;
}
.tg-strip i { color: var(--blue-2); font-size: 1.5rem; }
.tg-strip .t { color: var(--white); font-weight: 600; }
.tg-strip .t small { display: block; color: #9dbaf0; font-weight: 400; font-size: .82rem; }
.tg-strip .btn { margin-left: auto; }

/* ====== Footer ====== */
.site-footer {
  background: linear-gradient(180deg, #0a0402, #000);
  color: #b8ac9a; padding: 56px 0 0; margin-top: 0;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 12px; padding-bottom: 28px;
}
.footer-top .logo-footer { font-size: 1.3rem; justify-content: center; }
.footer-tagline { max-width: 520px; margin: 0 auto; color: var(--muted); font-size: .95rem; }

.footer-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px; padding: 24px 0 32px;
  border-top: 1px solid var(--border);
  align-items: start;
  justify-items: center;
  text-align: center;
}
.footer-grid.centered .f-col { width: 100%; max-width: 240px; }
.f-col h4 { color: var(--gold); margin: 0 0 12px; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; }
.site-footer h4 { color: var(--gold); margin: 0 0 12px; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; }
.site-footer p { margin: 6px 0; font-size: .92rem; }
.site-footer a { color: #c9bfae; }
.site-footer a:hover { color: var(--gold); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { padding: 4px 0; }
.legal-links { list-style: none; padding: 0; margin: 0; }
.legal-links li { padding: 4px 0; }
.legal-links a { color: #c9bfae; }
.legal-links a:hover { color: var(--gold); }
.socials { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--off); transition: all .2s;
}
.socials a:hover { background: rgba(255,122,24,.2); border-color: var(--orange); color: var(--gold); }

.footer-bottom {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 10px;
  padding: 18px 24px; border-top: 1px solid var(--border);
  font-size: .84rem; color: #7a6f5f; text-align: center;
}
.footer-bottom.centered { justify-content: center; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 20px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Visitor counter */
.visitor-count {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-2); font-weight: 600;
}
.visitor-count i { color: var(--green); }

/* ====== Floating chat buttons ====== */
.float-chat {
  position: fixed; bottom: 22px; z-index: 60;
  display: flex; flex-direction: column; gap: 14px;
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.float-chat.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-right { right: 22px; }
.float-left  { left: 22px; }
.fchat-btn {
  position: relative; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-size: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,.35), 0 4px 10px rgba(0,0,0,.25);
  transition: transform .2s, width .25s, border-radius .25s; overflow: hidden; text-decoration: none;
}
.fchat-btn:hover { transform: translateY(-3px) scale(1.04); color: #fff; }
.fchat-wa { background: #25D366; }
.fchat-tg { background: #229ED9; }
.fchat-label {
  position: absolute; top: 50%; transform: translateY(-50%); white-space: nowrap;
  font-size: .88rem; font-weight: 700; opacity: 0; pointer-events: none;
  padding: 0 14px 0 56px; line-height: 56px; transition: opacity .2s;
}
.float-right .fchat-btn .fchat-label { right: 0; }
.float-left  .fchat-btn .fchat-label { left: 0; padding: 0 56px 0 14px; }
@media (hover: hover) {
  .fchat-btn:hover { width: 150px; border-radius: 30px; }
  .fchat-btn:hover .fchat-label { opacity: 1; }
}
.fchat-ping {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.55);
  animation: fchat-ping 1.8s ease-out infinite; pointer-events: none;
}
@keyframes fchat-ping {
  0%   { transform: scale(.9);  opacity: .9; }
  80%  { transform: scale(1.45); opacity: 0;  }
  100% { transform: scale(1.45); opacity: 0;  }
}

/* ====== Popup modal ====== */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal-card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border-2); border-radius: 18px;
  width: 100%; max-width: 480px;
  box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 40px rgba(255,122,24,.15);
  transform: scale(.95); transition: transform .25s;
  max-height: 92vh; overflow-y: auto;
}
.modal-backdrop.open .modal-card { transform: scale(1); }
.modal-head {
  padding: 26px 28px 10px; text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.modal-head h2 {
  color: var(--white); margin: 0 0 8px; font-size: 1.35rem; letter-spacing: -0.01em;
}
.modal-head h2 .hl {
  background: linear-gradient(90deg, var(--gold), var(--orange));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.modal-head p { color: var(--muted); margin: 0 0 16px; font-size: .94rem; }
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.06); color: var(--off);
  display: grid; place-items: center; font-size: 1rem;
}
.modal-close:hover { background: rgba(255,122,24,.2); color: var(--gold); }
.modal-body { padding: 22px 28px 26px; }
.modal-body label { display: block; font-size: .85rem; color: var(--muted); margin-bottom: 14px; font-weight: 600; }
.modal-body input, .modal-body select {
  width: 100%; padding: 12px 14px; margin-top: 6px; font-size: .95rem;
  background: rgba(0,0,0,.35); color: var(--off);
  border: 1px solid var(--border-2); border-radius: var(--radius-sm);
  font-family: inherit;
}
.modal-body input:focus, .modal-body select:focus {
  outline: none; border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,122,24,.18);
}
.phone-row {
  display: grid; grid-template-columns: 130px 1fr; gap: 8px; margin-top: 6px;
}
.phone-row select, .phone-row input { margin-top: 0; }

/* ====== Cookie banner ====== */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  background: linear-gradient(180deg, var(--panel-2), #0a0402);
  border-top: 1px solid var(--border-2);
  padding: 14px 20px;
  transform: translateY(100%); transition: transform .35s;
  box-shadow: 0 -10px 40px rgba(0,0,0,.5);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar .inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.cookie-bar p { margin: 0; color: var(--off); font-size: .88rem; flex: 1; min-width: 260px; }
.cookie-bar p a { color: var(--gold); text-decoration: underline; }
.cookie-bar .actions { display: flex; gap: 8px; }
.cookie-bar .btn { padding: 9px 18px; font-size: .85rem; }

/* ====== Social proof (fake WhatsApp enquiry toast) ====== */
.whatsapp-toast {
  position: fixed; bottom: 92px; right: 22px; z-index: 70;
  width: 290px; max-width: calc(100vw - 44px);
  background: #fff; color: #111;
  border-radius: 14px; padding: 10px 14px 12px;
  box-shadow: 0 14px 35px rgba(0,0,0,.45);
  display: flex; align-items: flex-start; gap: 10px;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .4s, transform .4s;
}
.whatsapp-toast.show { opacity: 1; transform: translateY(0); }
.whatsapp-toast.left  { right: auto; left: 22px; }
.wa-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff; display: grid; place-items: center; font-weight: 700;
  font-size: .95rem;
}
.wa-info { flex: 1; min-width: 0; }
.wa-info .wa-head {
  display: flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 700; color: #075E54;
}
.wa-info .wa-head i { color: #25D366; font-size: .95rem; }
.wa-info .wa-msg { font-size: .85rem; color: #333; margin-top: 2px; line-height: 1.35; }
.wa-info .wa-time { font-size: .72rem; color: #888; margin-top: 3px; }

/* ====== Responsive ====== */
@media (max-width: 980px) {
  .hero-grid, .cta-grid, .magnet-card { grid-template-columns: 1fr; }
  .hero { padding: 56px 0; }
  .magnet-card { padding: 32px; }
  .whatsapp-toast { bottom: 82px; }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(11,6,4,.98);
    flex-direction: column; padding: 16px 24px; gap: 14px;
    border-bottom: 1px solid var(--border-2); display: none;
    box-shadow: 0 10px 40px rgba(0,0,0,.5);
  }
  .main-nav.open { display: flex; }
  .section { padding: 56px 0; }
  .hero-copy h1 { font-size: 2rem; }
  .float-chat { bottom: 16px; gap: 10px; }
  .float-right { right: 16px; }
  .float-left  { left: 16px; }
  .fchat-btn { width: 52px; height: 52px; font-size: 1.35rem; }
  .whatsapp-toast { width: calc(100vw - 32px); right: 16px; bottom: 84px; }
  .whatsapp-toast.left { left: 16px; }
}

/* =========================================================
   v2 additions — marquee ticker, glowing logo, popup modal,
   cookie banner, WA social-proof toast, Telegram strip,
   visitor counter, legal pages, honeypot, telegram btn
   ========================================================= */

a { text-decoration: none; color: inherit; }

/* ---- Marquee bar (sits below header on a blue band) ---- */
.marquee-bar {
  background: linear-gradient(90deg, #0a2747 0%, #123f78 50%, #0a2747 100%);
  border-top: 1px solid rgba(47,125,255,.35);
  border-bottom: 1px solid rgba(47,125,255,.35);
  overflow: hidden; position: relative; height: 42px;
  box-shadow: 0 4px 18px rgba(47,125,255,.15);
}
.marquee-bar.marquee-blue { /* explicit alias */ }
.marquee-track {
  display: inline-flex; align-items: center; gap: 18px; white-space: nowrap;
  animation: marqueeScroll 38s linear infinite; padding: 0 24px; line-height: 42px;
}
.marquee-item { color: #d8e7ff; font-weight: 600; font-size: .92rem; }
.marquee-item i { color: var(--gold); margin-right: 4px; }
.marquee-item .m-url { color: #8fc6ff; margin-left: 6px; font-weight: 500; text-decoration: underline; }
.marquee-item:hover { color: var(--white); }
.marquee-item:hover .m-url { color: var(--white); }
.marquee-sep { color: rgba(255,255,255,.55); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 720px) {
  .marquee-bar { height: 38px; }
  .marquee-track { line-height: 38px; gap: 12px; animation-duration: 26s; }
  .marquee-item { font-size: .82rem; }
  .marquee-item .m-url { display: none; } /* hide long URLs on small screens */
}

/* ---- Glowing logo text (alternate alias, same animation) ---- */
.glow-logo {
  background: linear-gradient(90deg, var(--gold), var(--orange-2), var(--green-2), var(--blue-2), var(--gold));
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: logoShift 6s linear infinite;
  text-shadow: 0 0 18px rgba(255,154,61,.25);
  font-weight: 800;
}

/* Telegram-coloured button */
.btn-tg {
  background: linear-gradient(135deg, #229ED9 0%, #2f7dff 100%);
  color: #fff; box-shadow: 0 10px 26px rgba(34,158,217,.35);
}
.btn-tg:hover { transform: translateY(-2px); color: #fff; filter: brightness(1.08); }
.nav-tg { color: var(--blue-2) !important; }
.nav-tg i { margin-right: 4px; }

/* Telegram strip — container inner grid overrides */
.tg-strip { padding: 30px 0; background: linear-gradient(135deg, rgba(34,158,217,.12), rgba(47,125,255,.08)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tg-strip-inner { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.tg-left { display: flex; align-items: center; gap: 18px; flex: 1; min-width: 280px; }
.tg-big { font-size: 2.4rem; color: var(--blue-2); }
.tg-strip-inner strong { color: var(--white); font-size: 1.08rem; display: block; }
.tg-strip-inner p { margin: 4px 0 0; color: #9dbaf0; font-size: .9rem; }

/* Phone row (country code + number) */
.phone-row { display: grid; grid-template-columns: 110px 1fr; gap: 10px; margin-bottom: 12px; }
.phone-row label { margin-bottom: 0; }

/* Honeypot */
.hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; height: 1px; width: 1px; pointer-events: none; }

/* Visitor counter (alias) */
.visitor-counter {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 14px; padding: 10px 14px;
  background: rgba(0,200,83,.08); border: 1px solid rgba(0,200,83,.25);
  border-radius: 10px; font-weight: 600; color: var(--off);
}
.visitor-counter i { color: var(--green); }
.visitor-counter .vc-num { color: var(--gold); font-weight: 800; }
.visitor-counter .vc-label { color: var(--muted); font-weight: 500; font-size: .86rem; }

/* Legal footer links */
.legal-links { list-style: none; padding: 0; margin: 0; }
.legal-links li { padding: 3px 0; }
.legal-links a { color: #b8ac9a; }
.legal-links a:hover { color: var(--gold); }

/* ============ Popup Modal (matches index.php) ============ */
.modal-dialog {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--border-2);
  border-radius: 18px;
  max-width: 480px; width: calc(100vw - 32px);
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(245,196,81,.08);
  transform: scale(.95); transition: transform .25s ease;
  overflow: hidden;
}
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.75); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  z-index: 9000; opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal-backdrop.open .modal-dialog { transform: scale(1); }
.modal-close {
  position: absolute; top: 10px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.08); color: var(--off);
  font-size: 1.5rem; line-height: 1; cursor: pointer; z-index: 2;
}
.modal-close:hover { background: rgba(255,122,24,.2); color: var(--gold); }
.modal-head { padding: 28px 28px 6px; }
.modal-badge {
  display: inline-block; padding: 4px 12px; background: rgba(255,122,24,.15);
  color: var(--gold); border: 1px solid rgba(255,122,24,.3);
  border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: 12px;
}
.modal-badge i { color: var(--orange); margin-right: 4px; }
.modal-head h3 { color: var(--white); margin: 0 0 8px; font-size: 1.4rem; letter-spacing: -0.01em; }
.modal-head p { color: var(--muted); margin: 0; font-size: .92rem; }
.modal-form { padding: 18px 28px 26px; }
.modal-form label { display: block; font-size: .85rem; color: var(--muted); margin-bottom: 12px; font-weight: 600; }
.modal-form input, .modal-form select, .modal-form textarea {
  width: 100%; margin-top: 6px; padding: 12px 14px;
  border: 1px solid var(--border-2); border-radius: 10px;
  background: rgba(0,0,0,.35); color: var(--white); font: inherit;
  transition: border-color .2s, box-shadow .2s;
}
.modal-form input:focus, .modal-form select:focus, .modal-form textarea:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,122,24,.18);
}
.modal-alert { padding: 10px 14px; border-radius: 10px; font-size: .9rem; margin-bottom: 12px; font-weight: 600; }
.modal-alert.success { background: rgba(0,200,83,.12); color: var(--green-2); border: 1px solid rgba(0,200,83,.35); }
.modal-alert.error { background: rgba(239,68,68,.12); color: #ff8a8a; border: 1px solid rgba(239,68,68,.35); }
body.modal-locked { overflow: hidden; }

/* Also extend the older .cta-form style to match the new .phone-row layout */
.cta-form .phone-row { margin-bottom: 12px; }
.cta-form .phone-row label { margin-bottom: 0; }

/* ============ Cookie Banner (aliases + .visible) ============ */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--border-2); border-radius: 14px;
  padding: 14px 18px; z-index: 8500;
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  box-shadow: var(--shadow);
  transform: translateY(calc(100% + 40px)); transition: transform .4s ease;
}
.cookie-bar.visible, .cookie-bar.show { transform: translateY(0); }
.cookie-text { flex: 1; min-width: 240px; color: var(--off); font-size: .88rem; display: flex; align-items: center; gap: 10px; }
.cookie-text i { color: var(--gold); font-size: 1.15rem; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }

/* ============ WhatsApp-style Social Proof Toast (new structure) ============ */
.wa-toast {
  position: fixed; left: 18px; bottom: 18px;
  width: 300px; max-width: calc(100vw - 36px);
  background: #ffffff; color: #111; border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  padding: 10px 12px; z-index: 7000;
  transform: translateY(140%); opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  font-size: .9rem; border: 1px solid #e5e5e5;
}
.wa-toast.show { transform: translateY(0); opacity: 1; }
.wa-toast-head { display: flex; align-items: center; gap: 10px; }
.wa-toast .wa-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #25D366; color: #fff; display: inline-flex;
  align-items: center; justify-content: center; font-size: 1rem;
  flex-shrink: 0;
}
.wa-toast .wa-who { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.2; }
.wa-toast .wa-name { color: #075E54; font-weight: 700; font-size: .92rem; }
.wa-toast .wa-time { color: #8a8a8a; font-size: .72rem; margin-top: 2px; }
.wa-toast .wa-close {
  background: none; border: 0; font-size: 1.3rem; color: #9a9a9a; cursor: pointer; line-height: 1;
  padding: 0 4px;
}
.wa-toast .wa-msg { margin-top: 6px; color: #333; font-size: .84rem; line-height: 1.4; }
.wa-toast .wa-topic { color: #075E54; font-weight: 600; }

/* ============ Legal page layout ============ */
.legal-body { background:
  radial-gradient(1000px 600px at 90% -10%, rgba(255,122,24,.18), transparent 55%),
  linear-gradient(180deg, #0b0604 0%, #140804 100%);
  background-attachment: fixed; min-height: 100vh; }
.legal-wrap { padding: 56px 0 80px; }
.legal-grid { display: grid; grid-template-columns: 240px 1fr; gap: 36px; align-items: start; }
.legal-side {
  background: rgba(26,14,7,.6); border: 1px solid var(--border);
  padding: 18px 18px; border-radius: 14px; position: sticky; top: 24px;
}
.legal-side h4 { color: var(--gold); margin: 0 0 10px; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; }
.legal-side ul { list-style: none; padding: 0; margin: 0; }
.legal-side li a {
  display: block; padding: 8px 10px; color: var(--off);
  border-radius: 8px; font-size: .92rem; font-weight: 500;
}
.legal-side li a:hover { background: rgba(255,122,24,.08); color: var(--gold); }
.legal-side li a.active { background: rgba(255,122,24,.16); color: var(--gold); border: 1px solid var(--border-2); }
.legal-body-content {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 36px 42px; box-shadow: var(--shadow);
}
.legal-title { color: var(--white); margin: 0 0 8px; font-size: 2rem; letter-spacing: -0.02em; }
.legal-content p { color: var(--off); margin: 10px 0 14px; line-height: 1.75; font-size: .98rem; }
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-h2 { color: var(--gold-2); margin: 28px 0 8px; font-size: 1.2rem; }
.legal-h1 { color: var(--white); margin: 28px 0 10px; font-size: 1.6rem; }

@media (max-width: 820px) {
  .legal-grid { grid-template-columns: 1fr; }
  .legal-side { position: static; }
  .legal-body-content { padding: 24px 20px; }
  .tg-strip-inner .btn { margin-left: 0; }
  .phone-row { grid-template-columns: 90px 1fr; }
}

