/* ── Creative Media EA — Global Styles ── */
:root {
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #1a1a24;
  --accent: #6c63ff;
  --accent2: #a78bfa;
  --gold: #f59e0b;
  --text: #e8e8f0;
  --muted: #8888a8;
  --border: rgba(108,99,255,0.18);
  --radius: 12px;
  --font: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 6%;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-size: 1.25rem; font-weight: 700; color: var(--text);
  text-decoration: none; letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--accent); color: #fff; border: none;
  padding: 0.55rem 1.4rem; border-radius: 8px; font-size: 0.9rem;
  font-weight: 600; cursor: pointer; text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 6% 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(108,99,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-block;
  background: rgba(108,99,255,0.12); border: 1px solid var(--border);
  color: var(--accent2); padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.03em;
  max-width: 820px; margin: 0 auto 1.5rem;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem; color: var(--muted); max-width: 580px;
  margin: 0 auto 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: #fff;
  padding: 0.85rem 2rem; border-radius: 10px; font-size: 1rem;
  font-weight: 600; text-decoration: none; transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border); padding: 0.85rem 2rem;
  border-radius: 10px; font-size: 1rem; font-weight: 600;
  text-decoration: none; transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ── STATS BAR ── */
.stats-bar {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.stat {
  flex: 1; min-width: 160px; padding: 2rem 1.5rem;
  text-align: center; border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--accent2); }
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 0.25rem; }

/* ── SECTION ── */
section { padding: 6rem 6%; }
.section-tag {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.15;
  max-width: 600px;
}
.section-sub {
  color: var(--muted); margin-top: 1rem; max-width: 560px; font-size: 1.05rem;
}
.section-header { margin-bottom: 3.5rem; }

/* ── CARDS GRID ── */
.cards { display: grid; gap: 1.5rem; }
.cards-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.cards-2 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: border-color 0.25s, transform 0.25s;
}
.card:hover { border-color: var(--accent); transform: translateY(-3px); }
.card-icon {
  width: 48px; height: 48px;
  background: rgba(108,99,255,0.12); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.2rem;
}
.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.92rem; }

/* ── PROCESS ── */
.process-steps { display: flex; flex-direction: column; gap: 1.5rem; max-width: 720px; }
.step {
  display: flex; gap: 1.5rem; align-items: flex-start;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
}
.step-num {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem;
}
.step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.9rem; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, rgba(108,99,255,0.15), rgba(167,139,250,0.08));
  border: 1px solid var(--border);
  border-radius: 20px; padding: 4rem 3rem; text-align: center;
  margin: 0 6% 6rem;
}
.cta-band h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
.cta-band p { color: var(--muted); margin-bottom: 2rem; }

/* ── FOOTER ── */
footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 3rem 6% 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer-brand p { color: var(--muted); font-size: 0.88rem; margin-top: 0.75rem; max-width: 260px; }
.footer-col h4 {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: var(--muted); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 10rem 6% 5rem; text-align: center;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(108,99,255,0.1) 0%, transparent 70%);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; letter-spacing: -0.025em; }
.page-hero p { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }

/* ── LEGAL ── */
.legal-body { max-width: 760px; margin: 0 auto; padding: 3rem 6% 6rem; }
.legal-body h2 { font-size: 1.25rem; font-weight: 700; margin: 2.5rem 0 0.75rem; color: var(--accent2); }
.legal-body p, .legal-body li { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.75rem; }
.legal-body ul { padding-left: 1.5rem; }
.legal-date { font-size: 0.82rem; color: var(--muted); margin-bottom: 2rem; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1000px; margin: 0 auto; }
.contact-info h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; }
.contact-info p { color: var(--muted); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
.contact-item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(108,99,255,0.12); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-item h4 { font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-item p { color: var(--text); margin: 0; }
form { display: flex; flex-direction: column; gap: 1rem; }
form input, form textarea, form select {
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--text); padding: 0.85rem 1rem; border-radius: 8px;
  font-size: 0.95rem; font-family: var(--font); outline: none;
  transition: border-color 0.2s;
}
form input:focus, form textarea:focus { border-color: var(--accent); }
form textarea { min-height: 130px; resize: vertical; }
form button {
  background: var(--accent); color: #fff; border: none;
  padding: 0.9rem 2rem; border-radius: 8px; font-size: 1rem;
  font-weight: 600; cursor: pointer; transition: opacity 0.2s;
}
form button:hover { opacity: 0.88; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  section { padding: 4rem 5%; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
