/* ========================================
   JingleSpark — Shared Landing Page Styles
   ======================================== */

:root {
  --purple: #7c3aed;
  --pink: #ec4899;
  --grad: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #ec4899 100%);
  --grad-soft: linear-gradient(135deg, #f5f3ff 0%, #fdf2f8 100%);
  --dark: #0f0720;
  --text: #1e1b4b;
  --muted: #6b7280;
  --light: #f9fafb;
  --white: #ffffff;
  --border: #e5e7eb;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(124,58,237,0.10);
  --shadow-lg: 0 12px 48px rgba(124,58,237,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

a { color: var(--purple); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }

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

/* ---- Utility ---- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.text-center { text-align: center; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.badge {
  display: inline-block;
  background: #f3e8ff;
  color: var(--purple);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); opacity: 1; }
.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,.35);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(124,58,237,.45); }
.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline:hover { background: #f5f3ff; }
.btn-white {
  background: #fff;
  color: var(--purple);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229,231,235,.8);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav-logo {
  font-size: 22px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  font-weight: 500;
  font-size: 15px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--text);
  font-weight: 500;
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; }

/* ---- Hero ---- */
.hero {
  background: var(--grad-soft);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(236,72,153,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,.1);
  color: var(--purple);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.hero-trust-dots { display: flex; }
.hero-trust-dots span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--grad);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-left: -8px;
}
.hero-trust-dots span:first-child { margin-left: 0; }

/* Hero visual card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 380px;
}
.hero-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.hero-card-icon {
  width: 52px; height: 52px;
  background: var(--grad);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.hero-card-title { font-weight: 700; font-size: 17px; }
.hero-card-sub { color: var(--muted); font-size: 13px; }
.waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 56px;
  margin-bottom: 24px;
}
.waveform span {
  flex: 1;
  background: var(--grad);
  border-radius: 4px;
  animation: wave 1.2s ease-in-out infinite;
  opacity: .7;
}
.waveform span:nth-child(odd)  { animation-delay: .1s; }
.waveform span:nth-child(even) { animation-delay: .3s; }
@keyframes wave {
  0%, 100% { height: 12px; }
  50%       { height: 48px; }
}
.hero-card-player {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f9fafb;
  border-radius: 12px;
  padding: 14px;
}
.play-btn {
  width: 42px; height: 42px;
  background: var(--grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  transition: transform .2s;
}
.play-btn:hover { transform: scale(1.08); }
.player-track { flex: 1; }
.player-bar {
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  margin: 6px 0;
  position: relative;
  overflow: hidden;
}
.player-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 45%;
  background: var(--grad);
  border-radius: 4px;
}
.player-time { font-size: 12px; color: var(--muted); display: flex; justify-content: space-between; }
.hero-card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.hero-card-tags span {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: #f3e8ff;
  color: var(--purple);
}

/* ---- Stats bar ---- */
.stats-bar { background: var(--dark); padding: 32px 0; }
.stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 60px;
}
.stat-item { text-align: center; color: #fff; }
.stat-num {
  font-size: 36px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label { font-size: 14px; color: #a78bfa; margin-top: 4px; }

/* ---- Sections ---- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.section-head p { font-size: 17px; color: var(--muted); }

/* ---- Services ---- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: box-shadow .3s, border-color .3s, transform .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transition: transform .3s;
}
.service-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 72px; height: 72px;
  background: var(--grad-soft);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 24px;
}
.service-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--muted); margin-bottom: 24px; line-height: 1.7; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.service-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--grad);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}

/* ---- How it works ---- */
.hiw-bg { background: var(--grad-soft); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(90deg, #c4b5fd, #f9a8d4);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.step-num span {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--grad);
  z-index: -1;
}
.step-num .n { position: relative; z-index: 1; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p { color: var(--muted); font-size: 15px; }

/* ---- Why JingleSpark ---- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow .3s, transform .3s;
}
.benefit-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.benefit-icon { font-size: 36px; margin-bottom: 14px; }
.benefit-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ---- Pricing ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.price-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.price-card.featured {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad) border-box;
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
  z-index: 1;
}
.price-card.featured:hover { transform: scale(1.04) translateY(-3px); }
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .02em;
  box-shadow: 0 4px 14px rgba(124,58,237,.35);
}
.price-name { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.price-desc { font-size: 14px; color: var(--muted); margin-bottom: 20px; min-height: 40px; }
.price-amount { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.price-old {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 600;
}
.price-num {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
}
.price-num.grad-text-num {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-period { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.price-savings {
  display: inline-block;
  background: #dcfce7;
  color: #166534;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.price-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--grad);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  margin-top: 2px;
}
.price-note { text-align: center; margin-top: 32px; color: var(--muted); font-size: 14px; }

/* ---- Who it's for ---- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.who-card {
  text-align: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  transition: box-shadow .3s, transform .3s;
}
.who-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: #c4b5fd; }
.who-icon { font-size: 40px; margin-bottom: 12px; }
.who-card h4 { font-size: 15px; font-weight: 700; }

/* ---- Testimonials ---- */
.testi-bg { background: var(--dark); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
}
.testi-stars { color: #f59e0b; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { color: #e5e7eb; font-size: 15px; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testi-name { font-weight: 700; color: #fff; font-size: 15px; }
.testi-biz  { color: #a78bfa; font-size: 13px; }

/* ---- FAQ ---- */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item.open { box-shadow: var(--shadow); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  background: var(--white);
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text);
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--purple);
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ---- CTA Final ---- */
.cta-final {
  background: var(--grad);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '♪';
  position: absolute;
  font-size: 220px;
  opacity: .06;
  top: -40px; left: -40px;
  color: #fff;
  font-style: normal;
  pointer-events: none;
}
.cta-final::after {
  content: '♫';
  position: absolute;
  font-size: 180px;
  opacity: .06;
  bottom: -30px; right: -20px;
  color: #fff;
  pointer-events: none;
}
.cta-final h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cta-final p { color: rgba(255,255,255,.85); font-size: 18px; margin-bottom: 36px; }
.cta-final-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ---- Contact section ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: 32px; font-weight: 800; margin-bottom: 14px; }
.contact-info p { color: var(--muted); margin-bottom: 32px; font-size: 16px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--grad-soft);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-item-label { font-weight: 600; font-size: 14px; color: var(--muted); }
.contact-item-val { font-weight: 500; font-size: 15px; }
.contact-form { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: var(--light);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124,58,237,.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- Footer ---- */
footer {
  background: var(--dark);
  color: #9ca3af;
  padding: 60px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.footer-brand .logo {
  font-size: 24px;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 300px; }
.footer-col h5 { color: #fff; font-weight: 700; font-size: 15px; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: #9ca3af; font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: #e5e7eb; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom a { color: #9ca3af; }
.footer-bottom a:hover { color: #e5e7eb; }

/* ---- Inner pages (about/privacy/terms) ---- */
.page-hero {
  background: var(--grad-soft);
  padding: 64px 0 52px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero p { color: var(--muted); font-size: 17px; }
.content-wrap { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
.content-wrap h2 { font-size: 22px; font-weight: 700; margin: 36px 0 12px; color: var(--text); }
.content-wrap h3 { font-size: 18px; font-weight: 600; margin: 28px 0 10px; color: var(--text); }
.content-wrap p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; font-size: 15px; }
.content-wrap ul, .content-wrap ol { color: var(--muted); padding-left: 20px; margin-bottom: 16px; }
.content-wrap li { line-height: 1.8; font-size: 15px; margin-bottom: 6px; }
.content-wrap a { color: var(--purple); }
.content-wrap .last-updated { font-size: 13px; color: var(--muted); margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }

/* ---- About page ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px;
}
.team-name { font-weight: 700; font-size: 17px; margin-bottom: 4px; }
.team-role { color: var(--purple); font-size: 14px; font-weight: 600; }
.mission-box {
  background: var(--grad);
  border-radius: var(--radius);
  padding: 48px 40px;
  color: #fff;
  text-align: center;
  margin: 48px 0;
}
.mission-box h2 { font-size: 28px; font-weight: 800; margin-bottom: 14px; }
.mission-box p { font-size: 17px; opacity: .9; line-height: 1.7; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .services-grid, .who-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.featured { transform: none; order: -1; }
  .price-card.featured:hover { transform: translateY(-3px); }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > :first-child { grid-column: 1 / -1; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 52px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero p { max-width: 100%; }
  .hero-visual { order: -1; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .cta-final-btns { flex-direction: column; align-items: center; }
}
