/* ==========================================================================
   Panjani Academy — Dark Purple Theme
   ========================================================================== */

:root {
  --purple-950: #07050f;
  --purple-900: #0d0a1a;
  --purple-850: #120e24;
  --purple-800: #16102e;
  --purple-700: #1e163f;
  --purple-600: #2a1f5e;
  --purple-500: #6d4ff0;
  --purple-400: #9b7bff;
  --purple-300: #c4b5fd;
  --violet-glow: rgba(109, 79, 240, 0.45);
  --pink-accent: #c084fc;
  --amber-400: #c4b5fd;
  --amber-glow: rgba(155, 123, 255, 0.35);

  --ink: #ede9ff;
  --muted: #a99fd4;
  --paper: #0d0a1a;
  --surface: #16102e;
  --surface-2: #1e163f;
  --white: #ffffff;
  --line: rgba(155, 123, 255, 0.14);

  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 6px 24px rgba(0, 0, 0, 0.35);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.55);

  --maxw: 1200px;
  --font-head: "Sora", "Segoe UI", sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;

  /* legacy aliases */
  --indigo-900: var(--purple-900);
  --indigo-800: var(--purple-800);
  --indigo-700: var(--purple-700);
  --indigo-600: var(--purple-600);
  --indigo-500: var(--purple-500);
  --violet-400: var(--purple-400);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }

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

img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--surface); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 0.98rem;
  padding: 14px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: linear-gradient(135deg, var(--purple-500), var(--pink-accent));
  color: var(--white);
  box-shadow: 0 14px 34px var(--violet-glow);
}
.btn--primary:hover { box-shadow: 0 20px 44px rgba(192, 132, 252, 0.5); }
.btn--ghost { background: rgba(255,255,255,0.06); color: var(--white); border-color: rgba(155, 123, 255, 0.35); }
.btn--ghost:hover { background: rgba(155, 123, 255, 0.14); border-color: rgba(155, 123, 255, 0.5); }
.btn--dark {
  background: rgba(109, 79, 240, 0.18);
  color: var(--purple-300);
  border: 1px solid rgba(155, 123, 255, 0.3);
  box-shadow: none;
}
.btn--dark:hover { background: rgba(109, 79, 240, 0.32); color: var(--white); }
.btn--whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.4);
  border-color: transparent;
}
.btn--whatsapp:hover {
  background: linear-gradient(135deg, #2ee56a, #25D366);
  box-shadow: 0 20px 44px rgba(37, 211, 102, 0.55);
}
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(13, 10, 26, 0.88);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--ink); }
.brand__logo {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  object-fit: cover; display: block;
  background: #fff;
  border: 2px solid rgba(155, 123, 255, 0.25);
  box-shadow: 0 8px 24px rgba(109, 79, 240, 0.35);
}
.brand__mark {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-accent));
  display: grid; place-items: center; color: var(--white); font-size: 1.15rem; font-weight: 700;
  box-shadow: 0 8px 24px rgba(109, 79, 240, 0.5);
}
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-family: var(--font-head); font-weight: 500; font-size: 0.95rem;
  padding: 10px 16px; border-radius: 999px; color: rgba(237, 233, 255, 0.82);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a:hover { background: rgba(109, 79, 240, 0.16); color: var(--white); }
.nav-links a.active { color: var(--purple-300); background: rgba(109, 79, 240, 0.22); }
.nav-cta { margin-left: 10px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; border-radius: 12px; }
.nav-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--purple-300); border-radius: 2px; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(192, 132, 252, 0.28), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(109, 79, 240, 0.22), transparent 60%),
    linear-gradient(160deg, var(--purple-950), var(--purple-800) 55%, var(--purple-600));
  color: var(--white);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding: 92px 0 104px; }
.hero__grid--solo {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin-inline: auto;
  justify-items: center;
}
.hero__grid--solo .hero__copy {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__grid--solo .hero__eyebrow { justify-content: center; }
.hero__grid--solo .hero__copy p.lead { margin-inline: auto; }
.hero__grid--solo .hero__actions { justify-content: center; width: 100%; }
.hero__grid--solo .hero__stats { justify-content: center; width: 100%; }
.hero__grid--solo h1 { text-align: center; width: 100%; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(109, 79, 240, 0.14); border: 1px solid rgba(155, 123, 255, 0.28);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 22px;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple-400); box-shadow: 0 0 0 4px var(--amber-glow); }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.7rem); margin-bottom: 20px; color: var(--white); }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--purple-300), var(--pink-accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead { font-size: 1.12rem; color: rgba(237, 233, 255, 0.78); max-width: 520px; margin-bottom: 32px; }
.hero p.lead.tagline {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--purple-300);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero__stats .stat b { font-family: var(--font-head); font-size: 1.7rem; display: block; color: var(--purple-300); }
.hero__stats .stat span { font-size: 0.85rem; color: rgba(237, 233, 255, 0.65); }

.hero__visual { position: relative; }
.hero-card {
  background: rgba(30, 22, 63, 0.65);
  border: 1px solid rgba(155, 123, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 26px; backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { font-size: 1.05rem; margin-bottom: 4px; color: var(--white); }
.hero-card .subtle { color: rgba(237, 233, 255, 0.62); font-size: 0.85rem; margin-bottom: 18px; }
.hero-course-list { display: grid; gap: 12px; }
.hero-course {
  display: flex; align-items: center; gap: 14px;
  background: rgba(109, 79, 240, 0.1); border: 1px solid rgba(155, 123, 255, 0.16);
  padding: 14px 16px; border-radius: var(--radius-sm);
  transition: transform 0.25s ease, background 0.25s ease;
}
.hero-course:hover { transform: translateX(4px); background: rgba(109, 79, 240, 0.2); }
.hero-course .ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-size: 1.2rem; background: rgba(109, 79, 240, 0.25); flex: none; }
.hero-course b { font-size: 0.95rem; color: var(--white); }
.hero-course span { font-size: 0.78rem; color: rgba(237, 233, 255, 0.58); }
.hero-badge {
  position: absolute; top: -20px; right: -14px;
  background: linear-gradient(135deg, var(--purple-500), var(--pink-accent));
  color: var(--white);
  padding: 12px 16px; border-radius: 16px; box-shadow: 0 12px 32px rgba(109, 79, 240, 0.5);
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; gap: 8px;
}
.hero-badge .em { font-size: 1.3rem; }
.hero__wave { display: block; width: 100%; height: auto; margin-bottom: -6px; }

/* ---------- Section heading ---------- */
.eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--purple-400); margin-bottom: 12px; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.6rem); color: var(--ink); margin-bottom: 14px; }
.section-sub { color: var(--muted); font-size: 1.05rem; max-width: 620px; }
.section-head { margin-bottom: 52px; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--center .section-sub { margin-inline: auto; }

/* ---------- Feature / value cards ---------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.feature {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(155, 123, 255, 0.3); }
.feature .ico {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(109,79,240,0.25), rgba(192,132,252,0.18));
}
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--ink); }
.feature p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Course cards ---------- */
.course-card {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column;
}
.course-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(155, 123, 255, 0.35); }
.course-card__top {
  padding: 30px; color: var(--white); position: relative; overflow: hidden;
}
.course-card__top::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(300px 160px at 85% 0%, rgba(255,255,255,0.2), transparent 70%);
}
.course-card__ico { font-size: 2.4rem; position: relative; z-index: 1; }
.course-card__tag {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.72rem; font-weight: 600; padding: 5px 12px; border-radius: 999px;
  font-family: var(--font-head);
}
.course-card__body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.course-card__body h3 { font-size: 1.3rem; color: var(--ink); margin-bottom: 8px; }
.course-card__body p { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }
.course-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.chip {
  font-size: 0.76rem; font-weight: 600; padding: 6px 12px; border-radius: 999px;
  background: rgba(109, 79, 240, 0.18); color: var(--purple-300);
  border: 1px solid rgba(155, 123, 255, 0.2);
}
.course-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }

.g-blue   { background: linear-gradient(135deg, #4b31b8, #6d4ff0); }
.g-teal   { background: linear-gradient(135deg, #5b21b6, #7c3aed); }
.g-rose   { background: linear-gradient(135deg, #7e22ce, #c026d3); }
.g-amber  { background: linear-gradient(135deg, #6d28d9, #9333ea); }
.g-purple { background: linear-gradient(135deg, #581c87, #a855f7); }
.g-green  { background: linear-gradient(135deg, #4c1d95, #8b5cf6); }

/* ---------- Split / about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-media {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  background: linear-gradient(160deg, var(--purple-800), var(--purple-500));
  min-height: 420px; box-shadow: var(--shadow); display: grid; place-items: center; color: #fff; padding: 40px;
  border: 1px solid var(--line);
}
.about-media .float-stat {
  position: absolute;
  background: var(--surface-2);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px; padding: 14px 18px; box-shadow: var(--shadow); font-family: var(--font-head);
}
.about-media .float-stat b { font-size: 1.4rem; display: block; color: var(--purple-300); }
.about-media .float-stat span { font-size: 0.76rem; color: var(--muted); font-family: var(--font-body); }
.fs-1 { top: 26px; left: 26px; }
.fs-2 { bottom: 26px; right: 26px; }

.check-list { list-style: none; display: grid; gap: 14px; margin-top: 8px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); }
.check-list .tick {
  width: 26px; height: 26px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: rgba(109, 79, 240, 0.22); color: var(--purple-300); font-size: 0.85rem; margin-top: 2px;
}

/* ---------- Stats band ---------- */
.stat-band {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(109, 79, 240, 0.2), transparent 70%),
    var(--purple-850);
  color: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-band .grid { text-align: center; }
.stat-band b { font-family: var(--font-head); font-size: 2.4rem; display: block; }
.stat-band .grad {
  background: linear-gradient(120deg, var(--purple-300), var(--pink-accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-band span { color: rgba(237, 233, 255, 0.65); font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testi-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(155, 123, 255, 0.3); }
.stars { color: var(--purple-400); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { color: rgba(237, 233, 255, 0.88); font-size: 1rem; margin-bottom: 22px; flex: 1; }
.testi-quote { font-size: 3rem; line-height: 0.5; color: rgba(109, 79, 240, 0.35); font-family: Georgia, serif; margin-bottom: 6px; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 48px; height: 48px; border-radius: 50%; flex: none; display: grid; place-items: center;
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
}
.testi-person b { display: block; color: var(--ink); font-family: var(--font-head); }
.testi-person span { font-size: 0.83rem; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; align-items: start; }
.info-card {
  background: linear-gradient(160deg, var(--purple-800), var(--purple-600));
  color: #fff; border-radius: var(--radius-lg); padding: 38px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(155, 123, 255, 0.2);
}
.info-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.info-card > p { color: rgba(237, 233, 255, 0.78); margin-bottom: 28px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.info-item .ico { width: 46px; height: 46px; border-radius: 13px; flex: none; display: grid; place-items: center; font-size: 1.2rem; background: rgba(109, 79, 240, 0.25); }
.info-item b { font-family: var(--font-head); font-size: 0.95rem; }
.info-item a, .info-item span { color: rgba(237, 233, 255, 0.82); font-size: 0.95rem; word-break: break-word; }
.info-item a:hover { color: var(--purple-300); }

.form-card {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; color: var(--ink); }
.field label .req { color: var(--purple-400); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--surface);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  transition: border 0.2s, box-shadow 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(169, 159, 212, 0.6); }
.field select option { background: var(--surface-2); color: var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--purple-500);
  box-shadow: 0 0 0 4px rgba(109, 79, 240, 0.18);
  background: var(--purple-850);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 14px; text-align: center; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); margin-top: 30px; }
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(30%) brightness(0.75) contrast(1.1); }

/* ---------- CTA band ---------- */
.cta {
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(192, 132, 252, 0.25), transparent 60%),
    linear-gradient(135deg, var(--purple-800), var(--purple-600));
  color: #fff; border-radius: var(--radius-lg); padding: 60px; text-align: center;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  border: 1px solid rgba(155, 123, 255, 0.2);
}
.cta h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 14px; color: var(--white); }
.cta p { color: rgba(237, 233, 255, 0.82); max-width: 560px; margin: 0 auto 28px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 500px at 90% -20%, rgba(192, 132, 252, 0.22), transparent 60%),
    linear-gradient(160deg, var(--purple-950), var(--purple-700));
  color: #fff; padding: 74px 0 84px; text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); margin-bottom: 14px; color: var(--white); }
.page-hero p { color: rgba(237, 233, 255, 0.78); max-width: 620px; margin: 0 auto; font-size: 1.08rem; }
.crumbs { display: inline-flex; gap: 8px; font-size: 0.82rem; color: rgba(237, 233, 255, 0.6); margin-bottom: 18px; }
.crumbs a:hover { color: var(--purple-300); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--purple-950);
  color: rgba(237, 233, 255, 0.65);
  padding: 66px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer p { font-size: 0.92rem; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 0.04em; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a { font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--purple-300); }
.footer-contact li { display: flex; gap: 10px; font-size: 0.9rem; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; font-family: var(--font-head); font-weight: 600;
  padding: 13px 18px 13px 15px; border-radius: 999px;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 20px 44px rgba(37,211,102,0.55); }
.wa-float svg { width: 24px; height: 24px; flex: none; }
.wa-float .wa-label { font-size: 0.95rem; }
.wa-float::before {
  content: ""; position: absolute; inset: -6px; border-radius: 999px;
  border: 2px solid rgba(37,211,102,0.5); animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(0.9); opacity: 0.8; } 100% { transform: scale(1.35); opacity: 0; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero__visual { order: -1; }
  .about-media { min-height: 320px; }
}
@media (max-width: 760px) {
  .nav-links {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--purple-900);
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: 0.25s ease;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 12px 14px; }
  .nav-cta { margin: 6px 0 0; }
  .nav-toggle { display: block; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .section { padding: 68px 0; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta { padding: 44px 26px; }
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 14px; }
}
