/* ============================================================
   BEMI TECH SOLUTIONS — styles.css
   ============================================================ */

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

:root {
  --gold:       #f0a500;
  --gold-dark:  #c98a00;
  --gold-light: #ffe066;
  --gold-glow:  rgba(240, 165, 0, 0.2);
  --bg:         #080808;
  --bg-2:       #0e0e0e;
  --bg-3:       #141414;
  --bg-4:       #1a1a1a;
  --border:     rgba(255,255,255,0.08);
  --border-gold:rgba(240,165,0,0.25);
  --text:       #e8edf2;
  --muted:      #7a8799;
  --white:      #ffffff;
  --font:       'Inter', sans-serif;
  --mono:       'JetBrains Mono', monospace;
  --radius:     10px;
  --radius-lg:  18px;
  --shadow:     0 4px 24px rgba(0,0,0,0.5);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
p { line-height: 1.75; color: var(--muted); }
strong { color: var(--text); }

/* ---- UTILITIES ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.mono { font-family: var(--mono); }

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 14px; color: var(--white); }
.section-desc { color: var(--muted); font-size: 16px; line-height: 1.7; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary { background: var(--gold); color: #000; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px var(--gold-glow); }

.btn-gold { background: var(--gold); color: #000; border-color: var(--gold); font-weight: 700; }
.btn-gold:hover { background: #000; color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }

.btn-ghost { background: rgba(255,255,255,0.05); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #000; transform: translateY(-2px); }

.btn-outline-dark { background: transparent; color: var(--text); border-color: rgba(255,255,255,0.3); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ---- TOP BAR ---- */
.topbar {
  background: var(--gold);
  color: #000;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0;
}
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar a { color: #000; text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: all var(--transition);
}
.navbar.scrolled { padding: 10px 0; border-bottom-color: var(--border-gold); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.logo { text-decoration: none; display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.nav-phone {
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-phone:hover { background: var(--gold-glow); }

.nav-cta { padding: 10px 20px; font-size: 14px; margin-left: 4px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  background: var(--bg);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,165,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(240,165,0,0.08);
  border: 1px solid var(--border-gold);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: blink 2s ease infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-trust { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-size: 24px; font-weight: 800; color: var(--gold); line-height: 1; }
.trust-item span { font-size: 12px; color: var(--muted); margin-top: 3px; }
.trust-divider { width: 1px; height: 36px; background: var(--border); }

.hero-image { display: flex; justify-content: center; }
.hero-img-wrap { position: relative; display: inline-block; }

.hero-avatar {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-gold);
  display: block;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 40px var(--gold-glow);
}

.hero-img-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 8px 24px var(--gold-glow);
}

/* ---- TOPICS GRID ---- */
.topics { background: var(--bg-2); }

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.topic-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}
.topic-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.topic-icon {
  width: 52px; height: 52px;
  background: rgba(240,165,0,0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}

.topic-card h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.topic-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--gold);
  padding: 56px 0;
}
.cta-banner-dark {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner-text h2 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 800; color: #000; margin-bottom: 8px; }
.cta-banner-text p { color: rgba(0,0,0,0.65); font-size: 15px; }
.cta-banner-dark .cta-banner-text h2 { color: var(--white); }
.cta-banner-dark .cta-banner-text p { color: var(--muted); }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- ABOUT ---- */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 72px;
  align-items: center;
}

.about-img-frame {
  position: relative;
}
.about-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-gold);
  display: block;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.about-float-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: #000;
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  box-shadow: 0 8px 32px var(--gold-glow);
}
.float-icon { font-size: 24px; }
.about-float-card strong { display: block; font-weight: 700; font-size: 14px; }
.about-float-card span { font-size: 12px; opacity: 0.7; }

.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-title { text-align: left; font-size: clamp(24px, 3vw, 36px); margin-bottom: 16px; }
.about-content p { margin-bottom: 14px; }

.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 24px; }
.about-tag { font-size: 13px; font-weight: 600; color: var(--gold); background: rgba(240,165,0,0.08); border: 1px solid var(--border-gold); padding: 6px 14px; border-radius: 100px; white-space: nowrap; }

.about-pillars { display: flex; flex-direction: column; gap: 18px; margin: 28px 0; }
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar-num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(240,165,0,0.08);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pillar strong { display: block; color: var(--white); font-weight: 600; font-size: 15px; margin-bottom: 3px; }
.pillar p { font-size: 14px; color: var(--muted); margin: 0; }
.about-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- METRICS ---- */
.metrics {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.metric-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid var(--border);
}
.metric-item:last-child { border-right: none; }
.metric-icon { color: var(--gold); margin-bottom: 12px; display: flex; justify-content: center; }
.metric-num { font-size: 40px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.metric-label { font-size: 14px; color: var(--muted); font-weight: 500; }

/* ---- COURSES ---- */
.courses { background: var(--bg); }

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.course-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.course-card:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.course-card.featured { border-color: var(--gold); }

/* ebook covers */
.ebook-cover-link { display: block; text-decoration: none; }
.ebook-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.ebook-cover-link:hover .ebook-cover { transform: translateY(-4px); }

.ebook-spine { width: 14px; flex-shrink: 0; background: rgba(0,0,0,0.4); border-right: 1px solid rgba(255,255,255,0.05); }
.ebook-cover-inner { flex: 1; display: flex; flex-direction: column; padding: 20px 16px; position: relative; z-index: 1; }

.ebook-cover-1 { background: linear-gradient(145deg, #0e0e0e 0%, #1a1400 60%, #0e0e0e 100%); border-bottom: 3px solid var(--gold); }
.ebook-cover-1::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(240,165,0,0.15) 0%, transparent 60%); }
.ebook-cover-2 { background: linear-gradient(145deg, #080808 0%, #0f1500 60%, #080808 100%); border-bottom: 3px solid var(--gold); }
.ebook-cover-2::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 80%, rgba(240,165,0,0.12) 0%, transparent 60%); }
.ebook-cover-3 { background: linear-gradient(145deg, #0a0a0a 0%, #180a00 60%, #0a0a0a 100%); border-bottom: 3px solid var(--gold); }
.ebook-cover-3::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 10%, rgba(240,165,0,0.18) 0%, transparent 55%); }
.ebook-cover-4 { background: linear-gradient(145deg, #0c0c0c 0%, #1a1200 60%, #0c0c0c 100%); border-bottom: 3px solid var(--gold); }
.ebook-cover-4::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 80%, rgba(240,165,0,0.12) 0%, transparent 55%); }

.ebook-logo-mark { font-family: var(--mono); font-size: 10px; font-weight: 700; color: rgba(240,165,0,0.4); letter-spacing: 1px; margin-bottom: auto; }
.ebook-tag-cover { display: inline-block; font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(240,165,0,0.35); padding: 2px 7px; border-radius: 4px; margin-bottom: 12px; width: fit-content; }
.ebook-title { font-size: 17px; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 6px; letter-spacing: -0.3px; }
.ebook-subtitle { font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.4; margin-bottom: 12px; }
.ebook-icon { color: rgba(240,165,0,0.55); margin-top: 10px; margin-bottom: auto; }
.ebook-pages { font-family: var(--mono); font-size: 9px; color: rgba(240,165,0,0.45); letter-spacing: 1px; margin-top: 14px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.05); }

.ebook-hover-overlay { position: absolute; inset: 0; background: rgba(240,165,0,0.92); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; z-index: 2; }
.ebook-hover-overlay span { font-size: 15px; font-weight: 700; color: #000; }
.ebook-cover-link:hover .ebook-hover-overlay { opacity: 1; }

.course-card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.course-card-body h3 { font-size: 15px; font-weight: 700; color: var(--white); line-height: 1.3; }
.course-card-body p { color: var(--muted); font-size: 13px; line-height: 1.6; flex: 1; }

.course-tag { display: inline-block; font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); background: rgba(240,165,0,0.08); padding: 3px 8px; border-radius: 6px; width: fit-content; }

.courses-cta { text-align: center; }

/* ---- SERVICE TABS ---- */
.service-tabs-section { background: var(--bg-2); }

.tabs-wrap { max-width: 900px; margin: 0 auto; }

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}

.tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: -1px;
  border-radius: 8px 8px 0 0;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); background: rgba(240,165,0,0.05); }

.tab-panel { display: none; animation: fadeIn 0.3s ease; }
.tab-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.tab-content-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.tab-content-grid h3 { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.tab-content-grid > div > p { margin-bottom: 20px; }

.tab-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.tab-list li { font-size: 14px; color: var(--muted); padding-left: 20px; position: relative; }
.tab-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: 12px; }

.tab-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tab-icon-item {
  background: var(--bg-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: all var(--transition);
}
.tab-icon-item:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.tab-icon-item span { font-size: 13px; font-weight: 600; color: var(--text); }

/* ---- VIDEOS ---- */
.videos { background: var(--bg); }

.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }

.video-card { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); }
.video-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }

.video-embed { width: 100%; aspect-ratio: 16/9; background: var(--bg-3); position: relative; overflow: hidden; }
.video-embed iframe { width: 100%; height: 100%; border: none; display: block; }

.video-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--muted); font-size: 13px; }
.video-placeholder p { font-weight: 600; color: var(--text); margin: 0; }
.video-placeholder .mono { font-size: 11px; color: var(--muted); }

.video-info { padding: 18px; display: flex; flex-direction: column; gap: 6px; }
.video-tag { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
.video-info h4 { font-size: 14px; font-weight: 600; color: var(--text); }

.social-platforms { text-align: center; }
.social-platforms p { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.platform-links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.platform-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; padding: 11px 22px; border-radius: var(--radius); text-decoration: none; transition: all var(--transition); border: 1px solid var(--border); }
.platform-btn:hover { transform: translateY(-2px); }
.platform-btn.youtube { color: #ff0000; background: rgba(255,0,0,0.07); border-color: rgba(255,0,0,0.2); }
.platform-btn.youtube:hover { background: rgba(255,0,0,0.14); }
.platform-btn.tiktok { color: var(--white); background: rgba(255,255,255,0.04); }
.platform-btn.tiktok:hover { background: rgba(255,255,255,0.09); }
.platform-btn.instagram { color: #e1306c; background: rgba(225,48,108,0.07); border-color: rgba(225,48,108,0.2); }
.platform-btn.instagram:hover { background: rgba(225,48,108,0.14); }
.platform-btn.linkedin { color: #0a66c2; background: rgba(10,102,194,0.07); border-color: rgba(10,102,194,0.2); }
.platform-btn.linkedin:hover { background: rgba(10,102,194,0.14); }
.platform-btn.skool { color: var(--gold); background: rgba(240,165,0,0.07); border-color: var(--border-gold); }
.platform-btn.skool:hover { background: rgba(240,165,0,0.14); }

/* ---- CONTACT ---- */
.contact { background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: start; }
.contact-info .section-title { text-align: left; font-size: clamp(24px, 2.8vw, 34px); }
.contact-info > p { margin-bottom: 28px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon { width: 40px; height: 40px; background: rgba(240,165,0,0.08); border: 1px solid var(--border-gold); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-item a, .contact-item span { color: var(--text); text-decoration: none; font-size: 15px; line-height: 1.6; transition: color var(--transition); }
.contact-item a:hover { color: var(--gold); }

.contact-socials { display: flex; gap: 10px; }
.social-icon { width: 42px; height: 42px; background: var(--bg-3); border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--muted); text-decoration: none; transition: all var(--transition); }
.social-icon:hover { background: var(--gold); color: #000; border-color: var(--gold); transform: translateY(-2px); }

.contact-form-wrap { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 14px; font-weight: 500; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); color: var(--text); font-family: var(--font); font-size: 15px; padding: 12px 16px; width: 100%; outline: none; transition: border-color var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group select option { background: var(--bg-2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { text-align: center; font-size: 14px; min-height: 20px; }
.form-note.success { color: #4ade80; }
.form-note.error { color: var(--gold); }

/* ---- FOOTER ---- */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding-top: 64px; }

.footer-inner { display: flex; justify-content: space-between; gap: 48px; padding-bottom: 48px; flex-wrap: wrap; }
.footer-brand { max-width: 280px; }
.footer-brand .logo { display: inline-block; margin-bottom: 16px; }
.footer-brand > p { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }

.footer-contact-mini { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--muted); }
.footer-contact-mini a { color: var(--gold); text-decoration: none; }
.footer-contact-mini a:hover { text-decoration: underline; }

.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: var(--muted); font-size: 13px; }

/* ---- SCROLL REVEAL ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .topics-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-item:nth-child(2) { border-right: none; }
  .metric-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .metric-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { order: -1; }
  .hero-avatar { max-width: 320px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-col { max-width: 380px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .tab-content-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .topbar-inner { flex-direction: column; text-align: center; gap: 4px; }
  .topbar-right { gap: 16px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,8,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 18px; padding: 12px 24px; }
  .nav-phone { font-size: 16px; }
  .nav-cta { font-size: 16px; padding: 14px 32px; }
  .hamburger { display: flex; z-index: 1000; }

  .topics-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .tab-buttons { gap: 4px; }
  .tab-btn { font-size: 13px; padding: 10px 14px; }
  .tab-content-grid { padding: 24px; }
  .contact-form-wrap { padding: 24px; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .about-float-card { position: static; margin-top: 16px; width: fit-content; }
  .platform-links { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-trust { gap: 16px; }
  .trust-divider { display: none; }
  .tab-icon-grid { grid-template-columns: 1fr 1fr; }
}
