:root {
  --purple: #4C007F;
  --purple-light: #8B3FBF;
  --orange: #FF5E00;
  --mint: #6DFFBF;
  --yellow: #E2FF83;
  --pink: #F8B5C5;
  --dark: #E6E1E8;
  --glass: rgba(255,255,255,0.5);
  --glass-border: rgba(76,0,127,0.1);
  --text: #4C007F;
  --muted: rgba(76,0,127,0.5);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

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

img { max-width: 100%; height: auto; }

/* ── CANVAS PARTICLES ── */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── DYNAMIC BLOBS ── */
.blob-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: blobMove 18s ease-in-out infinite alternate;
}
.blob-1 { width: 600px; height: 600px; background: #8B3FBF; top: -200px; left: -150px; animation-delay: 0s; }
.blob-2 { width: 500px; height: 500px; background: var(--orange); top: 30%; right: -200px; animation-delay: -6s; }
.blob-3 { width: 400px; height: 400px; background: var(--mint); bottom: 10%; left: 20%; animation-delay: -12s; }
@keyframes blobMove {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -60px) scale(1.08); }
  66%  { transform: translate(-30px, 40px) scale(0.94); }
  100% { transform: translate(20px, 20px) scale(1.04); }
}

/* ── GLASSMORPHISM UTILITY ── */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-radius: 24px;
}
.glass-card {
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(76,0,127,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease, border-color 0.3s ease;
}
.glass-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(76,0,127,0.15);
  border-color: rgba(76,0,127,0.2);
}

/* ── NAV ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0px) saturate(100%);
  -webkit-backdrop-filter: blur(0px) saturate(100%);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.header-scrolled {
  background: rgba(230,225,232,0.88);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 4px 30px rgba(76,0,127,0.08);
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 28px;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: gap 0.3s ease;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.nav-logo img,
.nav-logo .custom-logo {
  height: 56px;
  width: auto;
  display: block;
}
.footer-inner .nav-logo img {
  height: 66px;
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}
.nav-links li {
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(76,0,127,0.6);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover {
  color: #4C007F;
  background: rgba(76,0,127,0.06);
}
.nav-cta {
  background: #6DFFBF !important;
  color: #4C007F !important;
  padding: 10px 22px !important;
  border-radius: 100px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.nav-cta:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 8px 30px rgba(109,255,191,0.5) !important;
  background: #6DFFBF !important;
  color: #4C007F !important;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 3px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(76,0,127,0.08);
  border: 1px solid rgba(76,0,127,0.15);
  font-size: 0.8rem;
  font-weight: 600;
  color: #8B3FBF;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.4)} }

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 900px;
  color: var(--text);
  animation: fadeUp 0.7s 0.15s ease both;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #FF5E00 0%, #8B3FBF 60%, #6DFFBF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gradientShift 4s ease infinite;
}
@keyframes gradientShift {
  0%,100%{background-position:0%} 50%{background-position:100%}
}

.hero-sub {
  margin-top: 24px;
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.65;
  animation: fadeUp 0.7s 0.28s ease both;
}

.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.7s 0.4s ease both;
}
.btn-primary {
  padding: 16px 36px;
  border-radius: 100px;
  background: #6DFFBF;
  color: #4C007F;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.3);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 16px 40px rgba(109,255,191,0.45);
}

.btn-ghost {
  padding: 15px 36px;
  border-radius: 100px;
  background: rgba(255,255,255,0.4);
  border: 2px solid #4C007F;
  color: #4C007F;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: transform 0.25s ease, background 0.25s ease;
}
.btn-ghost:hover {
  transform: scale(1.04);
  background: rgba(76,0,127,0.06);
}

.hero-stats {
  margin-top: 72px;
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.55s ease both;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8B3FBF, #6DFFBF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── SECTIONS ── */
section {
  position: relative;
  z-index: 1;
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FF5E00;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 600px;
  color: var(--text);
}
.section-title em {
  font-style: normal;
  color: #8B3FBF;
}

/* ── SERVICES GRID ── */
.services-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent, var(--purple)) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}
.service-card:hover::after { opacity: 0.06; }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ── AI BANNER ── */
.ai-banner {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.ai-inner {
  padding: 60px 56px;
  background: linear-gradient(135deg, rgba(76,0,127,0.08), rgba(255,94,0,0.06));
  border: 1px solid rgba(76,0,127,0.12);
  backdrop-filter: blur(30px);
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.ai-inner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
}
.ai-inner p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 500px;
}
.ai-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(109,255,191,0.15);
  border: 1px solid rgba(109,255,191,0.3);
  color: #4C007F;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ── PLANS ── */
.plans-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.plan-card {
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.plan-card.featured {
  background: linear-gradient(145deg, rgba(76,0,127,0.06), rgba(139,63,191,0.04));
  border-color: rgba(76,0,127,0.2);
  box-shadow: 0 0 60px rgba(76,0,127,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
}
.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, #FF5E00, #FF3CAC);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}
.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin: 20px 0 8px;
}
.plan-price sup {
  font-size: 1.4rem;
  vertical-align: super;
}
.plan-name {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 28px;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}
.plan-features li::before {
  content: '✓';
  color: #6DFFBF;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── TESTIMONIALS ── */
.section-pink {
  background: #F8B5C5;
  max-width: 100%;
  padding: 100px 24px;
}
.section-pink .testimonials-grid {
  max-width: 1200px;
  margin: 56px auto 0;
}
.section-pink .section-title {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.section-pink .section-label {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial-card { padding: 32px 28px; }
.stars { color: #E2FF83; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(76,0,127,0.7);
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #FF5E00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.author-info .name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.author-info .role { font-size: 0.78rem; color: var(--muted); }

/* ── PROCESS ── */
.process-steps {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.step-card {
  padding: 32px 24px;
  position: relative;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8B3FBF, #6DFFBF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.4;
}
.step-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ── CTA FINAL ── */
.cta-section {
  text-align: center;
  padding: 120px 24px;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.cta-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109,255,191,0.25), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.cta-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}
.cta-section p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

/* ── FOOTER ── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(76,0,127,0.1);
  padding: 48px 24px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copy { font-size: 0.82rem; color: var(--muted); }

/* ── SCROLL INDICATOR ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), #FF5E00, #6DFFBF);
  z-index: 9999;
  transition: width 0.1s ease;
  border-radius: 0 4px 4px 0;
}

/* ── MAGNETIC CURSOR ── */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: #8B3FBF;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid rgba(76,0,127,0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transition: transform 0.4s ease, width 0.4s ease, height 0.4s ease, opacity 0.4s ease, border-color 0.3s ease;
  transform: translate(-50%, -50%);
}

/* ── FLOATING ELEMENTS ── */
.float-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(76,0,127,0.12);
  backdrop-filter: blur(20px);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #4C007F;
  animation: floatY 3s ease-in-out infinite;
  position: absolute;
}
@keyframes floatY {
  0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)}
}
.float-badge-1 { top: 18%; left: 5%; animation-delay: 0s; }
.float-badge-2 { top: 28%; right: 5%; animation-delay: -1.5s; color: #FF5E00; background: rgba(255,255,255,0.5); border-color: rgba(255,94,0,0.2); }
.float-badge-3 { bottom: 18%; left: 8%; animation-delay: -3s; color: #4C007F; background: rgba(255,255,255,0.5); border-color: rgba(226,255,131,0.3); }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(76,0,127,0.1), transparent);
  margin: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── TICKER ── */
.ticker-wrapper {
  overflow: hidden;
  padding: 24px 0;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(76,0,127,0.06);
  border-bottom: 1px solid rgba(76,0,127,0.06);
  background: rgba(255,255,255,0.2);
}
.ticker-track {
  display: flex;
  gap: 64px;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 16px;
}
.ticker-item span { color: #FF5E00; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── DEFAULT PAGE ── */
.page-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 140px auto 60px;
  padding: 0 24px;
}
.page-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}
.page-content h2, .page-content h3 {
  font-family: 'Syne', sans-serif;
  margin: 32px 0 16px;
}
.page-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ── BLOG ARCHIVE ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.blog-card {
  padding: 28px;
}
.blog-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: #8B3FBF; }
.blog-card .excerpt {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}
.blog-card .meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 16px;
}

/* ── PAGINATION ── */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 60px 0;
}
.pagination a, .pagination span {
  padding: 10px 16px;
  border-radius: 100px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-size: 0.85rem;
  color: var(--muted);
}
.pagination .current {
  background: linear-gradient(135deg, var(--purple), #8B3FBF);
  color: #fff;
  border-color: transparent;
}

/* ── 404 ── */
.error-404 {
  text-align: center;
  padding: 200px 24px;
  position: relative;
  z-index: 1;
}
.error-404 h1 {
  font-family: 'Syne', sans-serif;
  font-size: 8rem;
  background: linear-gradient(135deg, #FF5E00, #8B3FBF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.error-404 p {
  color: var(--muted);
  font-size: 1.2rem;
  margin: 20px 0 40px;
}

/* ── SEARCH ── */
.search-form {
  display: flex;
  gap: 12px;
  margin: 40px 0;
}
.search-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 100px;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(76,0,127,0.12);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
}
.search-form input::placeholder { color: var(--muted); }
.search-form button {
  padding: 14px 28px;
  border-radius: 100px;
  background: #6DFFBF;
  color: #4C007F;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

/* ── BREADCRUMBS ── */
.breadcrumbs {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.breadcrumbs a { color: #8B3FBF; }
.breadcrumbs a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 2px;
    background: rgba(230,225,232,0.98);
    border: 1px solid rgba(76,0,127,0.1);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border-radius: 16px;
    padding: 8px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
  }
  .nav-links a:hover { background: rgba(76,0,127,0.06); }
  .nav-links .nav-cta {
    margin-top: 4px;
    text-align: center;
    padding: 10px 14px !important;
  }
  .menu-toggle { display: flex; }
  .header-inner { padding: 14px 16px; }
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav-logo img,
  .nav-logo .custom-logo { height: 48px; }
  .site-header { width: 100%; }

  .float-badge { display: none; }

  .ai-inner {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .hero-stats { gap: 24px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }

  .footer-inner { flex-direction: column; text-align: center; }
}
