/* Studio Gambar Ara — Ilustrator & Seniman Digital */
/* Color: #4a0072 primary | #e040fb accent | #fdf5ff bg */

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

:root {
  --primary: #4a0072;
  --primary-dark: #2e0046;
  --primary-light: #7b1fa2;
  --accent: #e040fb;
  --accent-light: #f3b3ff;
  --bg: #fdf5ff;
  --bg2: #f5e6ff;
  --text: #1a0028;
  --text-mid: #5a3870;
  --text-light: #9e7ab5;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(74,0,114,0.12);
  --shadow-lg: 0 8px 40px rgba(74,0,114,0.2);
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ── DEMO BAR ── */
.demo-bar {
  background: var(--primary-dark);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}
.demo-bar a { color: var(--accent-light); text-decoration: underline; }
.demo-bar a:hover { color: #fff; }

/* ── NAV ── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--bg2);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(74,0,114,0.07);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }

/* Checkbox hack mobile menu */
.menu-toggle { display: none; }
.menu-icon {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.menu-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

@media (max-width: 680px) {
  .menu-icon { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px 20px;
    gap: 0;
    border-bottom: 2px solid var(--bg2);
    box-shadow: 0 8px 24px rgba(74,0,114,0.1);
  }
  .nav-links a { padding: 12px 0; display: block; border-bottom: 1px solid var(--bg2); }
  .menu-toggle:checked ~ .nav-links { display: flex; }
  .menu-toggle:checked ~ .menu-icon span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .menu-toggle:checked ~ .menu-icon span:nth-child(2) { opacity: 0; }
  .menu-toggle:checked ~ .menu-icon span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
}

/* ── UTILS ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-mid);
  font-size: 1rem;
  margin-bottom: 36px;
}
.pill {
  display: inline-block;
  background: var(--bg2);
  color: var(--primary);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(224,64,251,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,64,251,0.45); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ── HERO (index) ── */
.hero {
  background: linear-gradient(160deg, var(--primary) 0%, #7b1fa2 50%, #ad1fe4 100%);
  color: #fff;
  padding: 72px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(224,64,251,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.hero-inner { position: relative; max-width: 700px; margin: 0 auto; }

/* Avatar SVG container */
.avatar-wrap {
  width: 140px; height: 140px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 4px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(224,64,251,0.4);
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--accent-light); }
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  opacity: 0.9;
  margin-bottom: 12px;
}
.hero-desc {
  opacity: 0.8;
  margin-bottom: 32px;
  font-size: 0.95rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 800;
}
.btn-white:hover { background: var(--accent-light); }
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

/* floating deco shapes */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}
.deco1 { width:200px; height:200px; background: var(--accent); top:-60px; left:-60px; }
.deco2 { width:140px; height:140px; background: #fff; bottom:-40px; right:-40px; }
.deco3 { width:80px; height:80px; background: var(--accent); bottom:40px; left:10%; }

/* ── MEDIUM STATS STRIP ── */
.stats-strip {
  background: var(--primary);
  color: #fff;
  padding: 24px 20px;
}
.stats-grid {
  display: flex;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
}
.stat-item span { font-size: 0.82rem; opacity: 0.8; }

/* ── FEATURED WORKS (index) ── */
.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.work-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.work-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.work-info { padding: 16px; }
.work-info h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.work-info p { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 10px; }
.work-tag {
  display: inline-block;
  background: var(--bg2);
  color: var(--primary-light);
  border-radius: 100px;
  padding: 2px 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Decorative SVG artworks (CSS generated) */
.art-bg-1 { background: linear-gradient(135deg, #f8b4ff 0%, #c77dff 40%, #7b2ff7 100%); }
.art-bg-2 { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fad0c4 100%); }
.art-bg-3 { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
.art-bg-4 { background: linear-gradient(135deg, #fddb92 0%, #d1fdff 100%); }
.art-bg-5 { background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%); }
.art-bg-6 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.art-bg-7 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.art-bg-8 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.art-bg-9 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

/* ── SERVICES (index) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  transition: transform 0.2s;
}
.svc-card:hover { transform: translateY(-3px); }
.svc-icon { font-size: 2rem; margin-bottom: 12px; }
.svc-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.svc-card p { font-size: 0.87rem; color: var(--text-mid); }

/* ── TESTIMONIAL ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 20px;
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.3;
}
.testi-text { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 16px; padding-top: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; color: #fff;
  flex-shrink: 0;
}
.testi-author-info strong { display: block; font-size: 0.88rem; color: var(--primary); }
.testi-author-info span { font-size: 0.78rem; color: var(--text-light); }
.stars { color: #f4c430; font-size: 0.9rem; margin-bottom: 4px; }

/* ── KARYA PAGE ── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: #fff;
}
.karya-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.karya-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.karya-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.karya-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.karya-label {
  position: absolute;
  bottom: 8px; left: 8px;
  background: rgba(74,0,114,0.8);
  color: #fff;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.73rem;
  font-weight: 600;
}
.karya-info { padding: 14px 16px; }
.karya-info h3 { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.karya-info p { font-size: 0.82rem; color: var(--text-mid); }

/* ── KOMISI PAGE ── */
.komisi-header {
  background: linear-gradient(160deg, var(--primary) 0%, #9c27b0 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.komisi-header h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 10px; }
.komisi-header p { opacity: 0.85; max-width: 560px; margin: 0 auto; }

.paket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.paket-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 2px solid var(--bg2);
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
}
.paket-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.paket-card.popular {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(224,64,251,0.2);
}
.popular-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.paket-name { font-size: 1.1rem; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.paket-price {
  font-size: 2rem; font-weight: 900; color: var(--accent);
  line-height: 1; margin-bottom: 4px;
}
.paket-price sub { font-size: 0.9rem; font-weight: 500; color: var(--text-mid); }
.paket-desc { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 20px; }
.paket-features { list-style: none; margin-bottom: 24px; }
.paket-features li {
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--text);
  border-bottom: 1px solid var(--bg2);
  display: flex; gap: 8px; align-items: flex-start;
}
.paket-features li::before { content: '✦'; color: var(--accent); flex-shrink: 0; font-size: 0.7rem; margin-top: 3px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  counter-increment: step;
  position: relative;
}
.step-num {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem;
  margin: 0 auto 12px;
}
.step-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.step-card p { font-size: 0.82rem; color: var(--text-mid); }

.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
}
.faq-item h3 { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.faq-item p { font-size: 0.87rem; color: var(--text-mid); }

/* ── TENTANG PAGE ── */
.about-hero {
  background: linear-gradient(160deg, var(--primary) 0%, #ad1fe4 100%);
  color: #fff;
  padding: 60px 20px;
}
.about-hero-inner {
  max-width: 900px; margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 640px) {
  .about-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .about-hero-inner .avatar-lg { margin: 0 auto; }
}
.avatar-lg {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 4px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-intro h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 6px; }
.about-intro .role { font-size: 1rem; opacity: 0.85; margin-bottom: 12px; color: var(--accent-light); }
.about-intro p { opacity: 0.88; font-size: 0.95rem; }

.timeline { max-width: 700px; margin: 0 auto; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 20px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--primary));
}
.tl-item {
  padding-left: 56px;
  padding-bottom: 28px;
  position: relative;
}
.tl-dot {
  position: absolute;
  left: 10px; top: 4px;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  border-radius: 50%;
  border: 3px solid var(--bg);
}
.tl-year { font-size: 0.78rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; }
.tl-item h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin: 2px 0 4px; }
.tl-item p { font-size: 0.87rem; color: var(--text-mid); }

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.skill-item { background: var(--white); border-radius: var(--radius-sm); padding: 18px; box-shadow: var(--shadow); }
.skill-label { display: flex; justify-content: space-between; margin-bottom: 8px; }
.skill-label strong { font-size: 0.88rem; color: var(--primary); }
.skill-label span { font-size: 0.82rem; color: var(--text-light); }
.skill-bar { height: 6px; background: var(--bg2); border-radius: 6px; overflow: hidden; }
.skill-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--primary-light)); border-radius: 6px; }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.award-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex; gap: 14px; align-items: flex-start;
}
.award-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff; font-size: 1.1rem;
}
.award-text strong { display: block; font-size: 0.92rem; color: var(--primary); }
.award-text span { font-size: 0.8rem; color: var(--text-light); }

/* ── KONTAK PAGE ── */
.kontak-hero {
  background: linear-gradient(160deg, var(--primary) 0%, #9c27b0 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.kontak-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 8px; }
.kontak-hero p { opacity: 0.85; max-width: 480px; margin: 0 auto; }

.kontak-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 700px) { .kontak-layout { grid-template-columns: 1fr; } }

.kontak-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--bg2);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }

.kontak-info { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.info-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.info-item {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 12px;
}
.info-item:last-child { margin-bottom: 0; }
.info-icon {
  width: 36px; height: 36px;
  background: var(--bg2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; fill: var(--primary); }
.info-text strong { display: block; font-size: 0.85rem; color: var(--text); }
.info-text span { font-size: 0.82rem; color: var(--text-light); }

.sosmed-links { display: flex; flex-wrap: wrap; gap: 10px; }
.sosmed-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s;
}
.sosmed-ig { background: #f3b3ff; color: var(--primary); }
.sosmed-ig:hover { background: var(--accent); color: #fff; }
.sosmed-tt { background: #ffe0fb; color: var(--primary); }
.sosmed-tt:hover { background: var(--primary); color: #fff; }
.sosmed-be { background: #dde8ff; color: #1a3caa; }
.sosmed-be:hover { background: #1a3caa; color: #fff; }
.sosmed-wa { background: #d4f5e2; color: #1a6b3a; }
.sosmed-wa:hover { background: #25d366; color: #fff; }

/* ── FOOTER ── */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 40px 20px 24px;
  text-align: center;
}
footer .footer-logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}
footer .footer-logo span { color: var(--accent-light); }
footer p { font-size: 0.85rem; margin-bottom: 16px; }
.footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { color: var(--accent-light); text-decoration: none; font-size: 0.85rem; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.78rem; opacity: 0.5; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #ad1fe4 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.cta-section h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 10px; }
.cta-section p { opacity: 0.85; margin-bottom: 28px; font-size: 0.95rem; }

/* ── MISC ── */
.bg-alt { background: var(--bg2); }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
