/* ── Zede Academy – Shared Styles ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --purple:       #6A1B9A;
  --purple-light: #9C27B0;
  --purple-dark:  #4A0072;
  --accent:       #E040FB;
  --bg:           #0A0A18;
  --card:         #12122A;
  --card2:        #1A1A32;
  --text:         #F0F0FF;
  --muted:        #8888AA;
  --border:       rgba(255,255,255,.07);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ── Nav ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 64px;
  background: rgba(10,10,24,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo .z-badge {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 18px; color: #fff;
  box-shadow: 0 4px 14px rgba(106,27,154,.4);
}
.nav-logo span { font-size: 16px; font-weight: 700; color: var(--text); }
.nav-logo span em { color: var(--accent); font-style: normal; }
.nav-links { display: flex; gap: 6px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 14px; font-weight: 500;
  padding: 6px 12px; border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.nav-cta {
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border: none; border-radius: 10px;
  color: #fff; font-family: inherit;
  font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 14px rgba(106,27,154,.35);
  transition: transform .15s, box-shadow .15s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(106,27,154,.5); }

/* ── Hero ── */
.hero {
  min-height: 88vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%,
    rgba(106,27,154,.35) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(106,27,154,.2); border: 1px solid rgba(224,64,251,.3);
  border-radius: 50px; padding: 8px 18px;
  font-size: 13px; font-weight: 600; color: #CE93D8;
  margin-bottom: 28px; letter-spacing: .3px;
}
.hero h1 {
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -1.5px; margin-bottom: 20px;
}
.hero h1 .grad {
  background: linear-gradient(135deg, #CE93D8, var(--accent), #9C27B0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted); max-width: 600px;
  margin: 0 auto 40px; line-height: 1.65;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  border: none; border-radius: 14px;
  color: #fff; font-family: inherit;
  font-size: 16px; font-weight: 700;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 6px 24px rgba(106,27,154,.45);
  transition: transform .15s, box-shadow .15s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(106,27,154,.55); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.15); border-radius: 14px;
  color: var(--text); font-family: inherit;
  font-size: 16px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--accent); background: rgba(224,64,251,.08); }

.btn-tg {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  background: linear-gradient(135deg, #29B6F6, #0288D1);
  border: none; border-radius: 12px;
  color: #fff; font-family: inherit;
  font-size: 15px; font-weight: 700;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 16px rgba(2,136,209,.35);
  transition: transform .15s;
}
.btn-tg:hover { transform: translateY(-2px); }
.btn-phone {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  background: linear-gradient(135deg, #43A047, #2E7D32);
  border: none; border-radius: 12px;
  color: #fff; font-family: inherit;
  font-size: 15px; font-weight: 700;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 16px rgba(46,125,50,.35);
  transition: transform .15s;
}
.btn-phone:hover { transform: translateY(-2px); }

/* ── Sections ── */
section { padding: 80px 24px; max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; margin-bottom: 14px;
  letter-spacing: -.5px;
}
.section-sub { color: var(--muted); font-size: 17px; max-width: 540px; line-height: 1.6; }

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px; margin-top: 48px;
}
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px 24px;
  text-decoration: none; color: inherit;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  display: block;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px;
}
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.service-bar { height: 3px; border-radius: 2px; width: 48px; margin-top: 16px; }

/* ── Stats ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px; margin-top: 48px;
}
.stat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 20px; text-align: center;
}
.stat-number {
  font-size: 36px; font-weight: 900;
  background: linear-gradient(135deg, #CE93D8, var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.stat-label { color: var(--muted); font-size: 14px; }

/* ── Service hero ── */
.service-hero {
  padding: 100px 24px 60px;
  text-align: center; position: relative; overflow: hidden;
}
.service-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900; letter-spacing: -.5px; margin: 24px 0 16px;
}
.service-hero p {
  font-size: 18px; color: var(--muted);
  max-width: 600px; margin: 0 auto 40px;
  line-height: 1.65;
}
.service-big-icon {
  width: 88px; height: 88px; border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; margin: 0 auto 8px;
}

/* ── Feature list ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px; margin-top: 40px;
}
.feature-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px 20px;
  display: flex; gap: 14px; align-items: flex-start;
}
.feature-dot {
  width: 10px; height: 10px; border-radius: 50%;
  flex-shrink: 0; margin-top: 5px;
}
.feature-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.feature-item p { color: var(--muted); font-size: 13px; line-height: 1.5; }

/* ── CTA section ── */
.cta-section {
  text-align: center; padding: 80px 24px;
  background: linear-gradient(135deg, rgba(106,27,154,.15), rgba(156,39,176,.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }

/* ── Footer ── */
footer {
  padding: 48px 24px 32px;
  max-width: 1100px; margin: 0 auto;
  display: grid; gap: 40px;
  grid-template-columns: 2fr 1fr 1fr;
  border-top: 1px solid var(--border);
}
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 10px; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: .8px; margin-bottom: 14px; color: var(--muted); text-transform: uppercase; }
.footer-col a { display: block; color: var(--muted); text-decoration: none; font-size: 14px; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding: 20px 24px; text-align: center;
  border-top: 1px solid var(--border);
  color: var(--muted); font-size: 13px;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  footer { grid-template-columns: 1fr; gap: 28px; }
}
