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

:root {
  --primary: #2F3E46;
  --accent: #FE7179;
  --accent-dark: #E85F67;
  --accent-light: rgba(254, 113, 121, 0.22);
  --bg: #FEFEFE;
  --text: #1A1A1A;
  --text-light: #5A5A5A;
  --border: #E8E8E8;
  --shadow: rgba(0,0,0,0.08);
  --radius: 12px;
  --spacing: clamp(1rem, 5vw, 2rem);

  /* DP alias tokens (kept for future use) */
  --dp-coral: #FE7179;
  --dp-coral-deep: #E85F67;
  --dp-coral-soft: rgba(254, 113, 121, 0.12);
}

/* Base */
html, body {
  height: 100%;
}

html {
  overflow-y: auto;
  overflow-x: hidden;
}

body {
  overflow-y: auto;
  overflow-x: hidden;
}

/*html { scroll-behavior: smooth; }*/

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: visible;
}
@supports (overflow-x: clip) {
  html, body {
    overflow-x: clip;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -48px;
  left: 0;
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 2000;
}
.skip-link:focus { top: 0; }

/* Sticky mobile CTA - CORRECTED */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 2px solid var(--accent);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1500;
  box-shadow: 0 -4px 20px var(--shadow);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  pointer-events: none; /* Disabled when hidden */
}

.sticky-cta.visible { 
  transform: translateY(0);
  pointer-events: auto; /* Enabled when visible */
}

/* Make sure children are always clickable when parent is visible */
.sticky-cta * {
  pointer-events: auto;
}

.sticky-cta-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.sticky-cta .btn {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

/* Hide on desktop */
@media (min-width: 769px) {
  .sticky-cta { display: none !important; }
}

/* Header + sticky behaviour
   Important: header is loaded into #site-header, so we style both.
*/
/* Header + sticky behaviour */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
}

header,
#site-header header {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: relative; /* Changed from sticky */
  backdrop-filter: blur(10px);
}

header nav,
#site-header header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.brand-mark {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-name { line-height: 1; }

/* Nav links */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
}

.btn.primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.btn.primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(254, 113, 121, 0.3);
}

.btn.secondary {
  background: white;
  color: var(--accent);
  border-color: var(--accent);
}
.btn.secondary:hover {
  background: var(--accent);
  color: white;
}

/* Link styling */
a { color: var(--accent); }
a:hover { color: var(--accent-dark); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Mobile nav dropdown behaviour */
@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--bg);
    border-top: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    padding: 12px 16px;
    z-index: 1300;
  }

  .nav-links a {
    display: block;
    padding: 12px 6px;
  }

  .nav-links .btn {
    display: inline-flex;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }

  header nav.container,
  #site-header header nav.container {
    position: relative;
  }

  body.nav-open .nav-links { display: block; }
}

/* Sections */
section { padding: 80px 0; }

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 24px;
  max-width: 900px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: -0.5px;
}

.section-lede {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Hero */
.hero {
  padding: 80px 0 80px;
  background: linear-gradient(135deg, #f8fffe 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(254, 113, 121, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.trust-bar {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}
.trust-badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

.kicker {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.strapline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 720px;
  font-weight: 400;
  line-height: 1.5;
}

.lede {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 40px;
  max-width: 680px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hero-meta {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 16px;
}

/* Social proof */
.social-proof {
  padding: 60px 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-header {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  align-items: center;
}
.logo-grid > div {
  display: grid;
  place-items: center;
  height: 56px;
}
.logo-grid img {
  max-height: 40px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: all 0.3s;
}
.logo-grid img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Credentials */
.credentials {
  background: linear-gradient(90deg, rgba(254, 113, 121, 0.05), rgba(47,62,70,0.05));
  padding: 32px 0;
  margin: 0;
}
.credentials-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.credentials-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.cert-badges {
  display: flex;
  gap: 24px;
  align-items: center;
}
.cert-badges img {
  height: 50px;
  filter: grayscale(0.2);
}

/* Two paths */
.paths { background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%); }

.path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.path-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: all 0.3s;
}
.path-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px var(--shadow);
  transform: translateY(-4px);
}
.path-label {
  display: inline-block;
  background: var(--accent-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.path-card h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 16px;
  font-weight: 700;
}
.path-card p {
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.6;
}
.path-card a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  transition: all 0.2s;
}
.path-card a:hover {
  color: var(--accent-dark);
  border-color: var(--accent-dark);
}

/* Story */
.story { background: white; }

.about-inline {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  margin: 48px 0;
  align-items: start;
}
.about-inline img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px var(--shadow);
}
.about-copy {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  max-width: 62ch;
}
.about-copy p { margin: 0 0 14px; }
.about-copy p:last-child { margin-bottom: 0; }

.story-list {
  list-style: none;
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}
.story-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  line-height: 1.6;
}
.story-list strong {
  color: var(--primary);
  display: block;
  margin-bottom: 6px;
}

/* How it works */
.how { background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 48px;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Fix for your screenshot issue: use grid centring with high specificity */
.steps .num {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.step strong {
  display: block;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}
.step .small {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Pricing */
.pricing { background: white; }

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--border);
  border-radius: 30px;
  padding: 4px;
  max-width: 400px;
  margin: 0 auto 48px;
}
.toggle-btn {
  flex: 1;
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-radius: 26px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text-light);
}
.toggle-btn.active {
  background: white;
  color: var(--accent);
  box-shadow: 0 2px 8px var(--shadow);
}

.pricing-section { display: none; }
.pricing-section.active { display: block; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.price-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px var(--shadow);
  transform: translateY(-4px);
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(254, 113, 121, 0.15);
}

.ribbon {
  position: absolute;
  top: 20px;
  right: -8px;
  background: var(--accent);
  color: white;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.ribbon::before {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 0;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--accent-dark);
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.card-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}
.card-price small {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}
.card-desc {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 24px;
  min-height: 48px;
}

.features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}
.features li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.features li:last-child { border-bottom: none; }
.check {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.enterprise-tier {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s;
}
.enterprise-tier:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px var(--shadow);
}
.tier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 16px;
}
.tier-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}
.tier-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.tier-desc {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Outcomes */
.outcomes { background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%); }

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.outcome-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.outcome-card:hover {
  box-shadow: 0 4px 16px var(--shadow);
  transform: translateY(-4px);
}

/* Fix for your screenshot issue: use grid centring with high specificity */
.outcome-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.outcome-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-dark);
  fill: none;
  stroke-width: 2;
  display: block;
}

.outcome-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.outcome-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
}
.outcome-desc a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
}

/* Participation Studio */
.participation {
  background: var(--primary);
  color: white;
  padding: 72px 0;
}
.participation-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.participation h2 {
  color: white;
  text-align: left;
  margin-bottom: 12px;
}
.participation .section-lede {
  text-align: left;
  color: rgba(255,255,255,0.82);
  margin-bottom: 0;
  max-width: 720px;
}
.participation-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 28px;
}
.participation-card p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 18px;
  line-height: 1.7;
}

.participation .btn.ps-btn {
  background: #7D5CFF;
  border-color: #7D5CFF;
  color: #fff;
}

.participation .btn.ps-btn:hover {
  background: #6A49FF;
  border-color: #6A49FF;
  color: #fff;
}
.participation .btn.ps-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(125, 92, 255, 0.25);
}


/* Results */
.proof { background: white; }

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.kpi-card {
  background: linear-gradient(135deg, rgba(254, 113, 121, 0.05) 0%, rgba(47,62,70,0.02) 100%);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}
.kpi-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}
.kpi-label {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* Testimonials */
.testimonials { background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.testi-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px var(--shadow);
}
.testi-logo {
  max-width: 120px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 20px;
}
.testi-quote {
  font-size: 17px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.6;
}
.testi-author {
  font-weight: 600;
  color: var(--primary);
  font-size: 15px;
}

/* FAQ */
.faq { background: white; }

details {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all 0.3s;
}
details:hover { box-shadow: 0 2px 8px var(--shadow); }
details[open] { border-color: var(--accent); }

summary {
  font-weight: 600;
  color: var(--primary);
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 24px;
  color: var(--accent);
  font-weight: 700;
}
details[open] summary::after { content: '−'; }
details div {
  padding-top: 16px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Contact */
.contact { background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%); }

form {
  max-width: 600px;
  margin: 48px auto 0;
  background: white;
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px var(--shadow);
}

label { display: block; margin-bottom: 24px; }

label > span {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--text);
}

input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
}
textarea {
  min-height: 120px;
  resize: vertical;
}

.hint {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 6px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.consent input {
  width: auto;
  margin-top: 4px;
}

button[type="submit"] {
  width: 100%;
  background: var(--accent);
  border: none;
  color: white;
  font-size: 18px;
  padding: 16px;
  border-radius: var(--radius);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
button[type="submit"]:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(254, 113, 121, 0.3);
}

.legal {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 16px;
  line-height: 1.5;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Footer */
footer {
  background: var(--primary);
  color: white;
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 40px;
}
.footer-section h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--accent-light);
  font-weight: 700;
}
.footer-section a {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.2s;
  font-size: 15px;
}
.footer-section a:hover { color: white; }
.footer-section p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
}
.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* Utility */
.small { font-size: 14px; }

/* Responsive */
@media (max-width: 900px) {
  .about-inline {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-copy { max-width: 100%; }
  .story-list {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }
}

/* Ensure path cards don't get blocked on mobile */
@media (max-width: 768px) {
  .hero { padding: 60px 0 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  form { padding: 32px 24px; }
  .steps { grid-template-columns: 1fr; }
  .trust-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .participation-inner { grid-template-columns: 1fr; gap: 24px; }
  .participation { padding: 56px 0; }
  
  /* Add breathing room so sticky CTA doesn't overlap clickable content */
  section:last-of-type {
    padding-bottom: 100px;
  }
}

/* Sticky header hard override */
#site-header,
#site-header * {
  transform: none;
}

#site-header {
  overflow: visible !important;
}

#site-header header,
header {
  position: sticky !important;
  top: 0 !important;
  z-index: 5000 !important;
}

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  background: none;
  border: none;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  padding: 8px 4px;
  font-family: inherit;
  transition: color 0.2s;
}

.nav-dropdown-trigger:hover {
  color: var(--accent);
}

.nav-dropdown-trigger span {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.2s;
}

.nav-dropdown-trigger[aria-expanded="true"] span {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 4px 16px var(--shadow);
  min-width: 220px;
  padding: 8px 0;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s;
  z-index: 100;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  transition: background 0.2s;
}

.nav-dropdown-menu a:hover {
  background: var(--accent-light);
  color: var(--primary);
}

.nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile dropdown */
@media (max-width: 820px) {
  .nav-dropdown {
    width: 100%;
  }
  
  .nav-dropdown-trigger {
    width: 100%;
    text-align: left;
    padding: 12px 6px;
  }
  
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--accent);
    margin: 0 0 0 12px;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }
  
  .nav-dropdown-trigger[aria-expanded="true"] + .nav-dropdown-menu {
    max-height: 400px;
  }
  
  .nav-dropdown-menu a {
    padding: 10px 12px;
    font-size: 14px;
  }
}

/* Participation Studio link styling in dropdown */
.ps-menu-link {
  background: linear-gradient(135deg, rgba(125, 92, 255, 0.1) 0%, rgba(106, 73, 255, 0.05) 100%) !important;
  color: #7D5CFF !important;
  font-weight: 600 !important;
  border-radius: 6px;
  margin-top: 4px;
}

.ps-menu-link:hover {
  background: linear-gradient(135deg, rgba(125, 92, 255, 0.15) 0%, rgba(106, 73, 255, 0.1) 100%) !important;
  color: #6A49FF !important;
}

/* Hover to expand dropdown (desktop only) */
@media (min-width: 821px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .nav-dropdown:hover .nav-dropdown-trigger span {
    transform: rotate(180deg);
  }
}

section[id] { scroll-margin-top: 100px; }

