/* reklama.tg — G.Media advertising landing
   Brand-matched to G.Media: Inter, dark, card-based, signature green accent. */

:root {
  --bg-primary: #070b08;
  --bg-secondary: #0d130f;
  --bg-card: #111811;
  --bg-card-hover: #172018;
  --accent: #33D37F;
  --accent-dark: #2ab86d;
  --accent-soft: rgba(51, 211, 127, 0.12);
  --accent-border: rgba(51, 211, 127, 0.30);
  --text-primary: #ffffff;
  --text-secondary: #93a399;
  --text-muted: #566159;
  --border-color: #1e2a21;
  --gradient: linear-gradient(135deg, #33D37F 0%, #25a862 100%);
  --gradient-soft: linear-gradient(135deg, rgba(51,211,127,.16) 0%, rgba(51,211,127,.03) 100%);
  --radius: 14px;
  --maxw: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
header {
  position: fixed; top: 0; left: 0; right: 0; height: 68px;
  background: rgba(10, 10, 15, 0.72);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000; display: flex; align-items: center;
}
header .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo { font-size: 21px; font-weight: 800; letter-spacing: -.5px; display: flex; align-items: center; gap: 8px; }
.logo b { color: var(--accent); }
nav { display: flex; gap: 30px; align-items: center; }
nav a { color: var(--text-secondary); font-size: 15px; font-weight: 500; transition: color .2s; }
nav a:hover { color: var(--text-primary); }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; }
.lang { font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--text-muted) !important; border: 1px solid var(--border-color); border-radius: 7px; padding: 6px 11px; transition: all .2s; }
.lang:hover { color: var(--text-primary) !important; border-color: var(--accent-border); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 10px; font-size: 15px; font-weight: 600;
  transition: all .2s; cursor: pointer; border: none; white-space: nowrap;
}
.btn-primary { background: var(--gradient); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(51,211,127,.36); }
.btn-secondary { background: var(--bg-card); color: var(--text-primary); border: 1px solid var(--border-color); }
.btn-secondary:hover { background: var(--bg-card-hover); border-color: var(--accent-border); }
.btn-lg { padding: 17px 38px; font-size: 17px; border-radius: 12px; }

/* ── Sections ── */
section { padding: 88px 0; }
.eyebrow { color: var(--accent); font-weight: 700; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
h1 { font-size: clamp(36px, 6vw, 60px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.08; }
h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; }
h3 { font-size: 20px; font-weight: 700; letter-spacing: -.3px; }
.lead { color: var(--text-secondary); font-size: clamp(17px, 2.3vw, 20px); line-height: 1.6; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section-head .lead { margin-top: 14px; }

/* ── Hero ── */
.hero { padding: 150px 0 90px; position: relative; text-align: center; }
.hero::before {
  content: ''; position: absolute; top: 40px; left: 50%; transform: translateX(-50%);
  width: 680px; height: 420px; max-width: 90%;
  background: radial-gradient(ellipse at center, rgba(51,211,127,.22), transparent 70%);
  filter: blur(40px); z-index: -1;
}
.hero h1 { max-width: 880px; margin: 0 auto 22px; }
.hero h1 span { background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero .lead { max-width: 640px; margin: 0 auto 36px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-note { color: var(--text-muted); font-size: 13px; margin-top: 18px; }

/* ── Stats ── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 64px; }
.stat { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 28px 20px; text-align: center; }
.stat .num { font-size: 34px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -1px; }
.stat .label { color: var(--text-secondary); font-size: 14px; margin-top: 6px; }

/* ── Cards grid ── */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius); padding: 30px; transition: all .2s;
}
.card:hover { background: var(--bg-card-hover); border-color: var(--accent-border); transform: translateY(-3px); }
.card .ico { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-soft); border: 1px solid var(--accent-border); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-secondary); font-size: 15px; }
.card ul { list-style: none; margin-top: 14px; }
.card li { color: var(--text-secondary); font-size: 14px; padding-left: 22px; position: relative; margin-bottom: 7px; }
.card li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ── CTA band ── */
.cta-band { background: var(--gradient-soft); border: 1px solid var(--accent-border); border-radius: 22px; padding: 56px 40px; text-align: center; margin: 0 24px; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band .lead { max-width: 560px; margin: 0 auto 30px; }
.cta-band .hero-cta { margin-top: 6px; }

/* ── Split (two funnels) ── */
.split { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.split .card { padding: 38px 32px; display: flex; flex-direction: column; }
.split .card .ico { width: 56px; height: 56px; font-size: 28px; }
.split .card p { flex: 1; margin-bottom: 22px; }

/* ── Contact ── */
.contact-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 820px; margin: 0 auto; }
.contact-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 34px; text-align: center; }
.contact-card .ava { width: 70px; height: 70px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 16px; }
.contact-card .role { color: var(--accent); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.contact-card .handle { color: var(--text-secondary); font-size: 15px; margin: 8px 0 20px; }

/* ── Form inputs ── */
.lf-input {
  width: 100%; background: var(--bg-primary); border: 1px solid var(--border-color);
  border-radius: 10px; padding: 13px 15px; color: var(--text-primary);
  font-family: inherit; font-size: 15px; transition: border-color .2s, box-shadow .2s;
}
.lf-input::placeholder { color: var(--text-muted); }
.lf-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
#lead-form label { font-weight: 500; }

/* ── Footer ── */
footer { border-top: 1px solid var(--border-color); padding: 44px 0; margin-top: 40px; }
footer .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
footer .f-links { display: flex; gap: 24px; flex-wrap: wrap; }
footer .f-links a { color: var(--text-muted); font-size: 14px; transition: color .2s; }
footer .f-links a:hover { color: var(--text-secondary); }
footer .copyright { color: var(--text-muted); font-size: 13px; }

/* ── Responsive ── */
@media (max-width: 860px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid, .grid-2, .split, .contact-row { grid-template-columns: 1fr; }
  nav { display: none; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; background: var(--bg-secondary); border-bottom: 1px solid var(--border-color); padding: 20px 24px; gap: 18px; }
  nav.open { display: flex; }
  .nav-toggle { display: block; }
  section { padding: 60px 0; }
  .hero { padding: 120px 0 60px; }
}
