/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0f172b;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #0f172b;
  --navy-light: #314158;
  --navy-mid: #45556c;
  --navy-soft: #62748e;
  --pink: #e60076;
  --pink-bright: #f6339a;
  --purple: #9810fa;
  --magenta: #e12afb;
  --green: #008236;
  --green-light: #dbfce7;
  --pink-light: #fdf2f8;
  --warm-white: #faf9f5;
  --gradient: linear-gradient(135deg, #f6339a 0%, #9810fa 100%);
  --gradient-soft: linear-gradient(135deg, rgba(246,51,154,0.08) 0%, rgba(152,16,250,0.08) 100%);
  --shadow-sm: 0 1px 3px rgba(15,23,43,0.08);
  --shadow-md: 0 4px 20px rgba(15,23,43,0.1);
  --shadow-lg: 0 12px 40px rgba(15,23,43,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
}

/* ===== UTILITY ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; transition: all 0.3s ease; cursor: pointer;
  border: none; font-family: inherit;
}
.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 4px 16px rgba(230,0,118,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(230,0,118,0.4); }
.btn-secondary {
  background: #fff; color: var(--navy);
  border: 2px solid #e2e8f0;
}
.btn-secondary:hover { border-color: var(--pink); color: var(--pink); }
.btn-white { background: #fff; color: var(--navy); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--pink);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
  line-height: 1.2; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem; color: var(--navy-soft); max-width: 600px;
  line-height: 1.7;
}

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 12px rgba(15,23,43,0.06), 0 1px 3px rgba(15,23,43,0.04);
}
.header-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.35rem; font-weight: 800; }
.logo-icon { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; object-fit: cover; }
.logo-support { color: var(--navy); }
.logo-match { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > a, .nav-dropdown > .nav-trigger {
  font-size: 0.86rem; font-weight: 500; color: var(--navy-mid);
  transition: all 0.2s ease; padding: 8px 14px; border-radius: 8px;
  position: relative;
}
.nav > a:hover, .nav-dropdown:hover > .nav-trigger {
  color: var(--navy); background: rgba(15,23,43,0.04);
}
.nav > a.active {
  color: var(--pink); background: var(--pink-light);
}
/* Dropdown */
.nav-dropdown { position: relative; }
.nav-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  cursor: pointer; background: none; border: none; font-family: inherit;
}
.nav-trigger svg {
  width: 12px; height: 12px; transition: transform 0.25s ease;
  color: var(--navy-soft);
}
.nav-dropdown:hover .nav-trigger svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(4px);
  min-width: 220px; background: #fff;
  border-radius: 14px; padding: 8px;
  box-shadow: 0 12px 40px rgba(15,23,43,0.12), 0 2px 8px rgba(15,23,43,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  opacity: 0; visibility: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 10px;
  font-size: 0.86rem; font-weight: 500; color: var(--navy-mid);
  transition: all 0.15s ease;
}
.nav-dropdown-menu a:hover {
  background: var(--warm-white); color: var(--navy);
}
.nav-dropdown-menu a .dd-icon {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.nav-dropdown-menu a .dd-text { display: flex; flex-direction: column; }
.nav-dropdown-menu a .dd-label { font-weight: 600; color: var(--navy); font-size: 0.86rem; }
.nav-dropdown-menu a .dd-desc { font-size: 0.75rem; color: var(--navy-soft); font-weight: 400; line-height: 1.4; }
.nav-dropdown-menu .dd-divider { height: 1px; background: #f1f5f9; margin: 6px 8px; }
.header-actions { display: flex; align-items: center; gap: 6px; }
.header-phone {
  font-size: 0.86rem; font-weight: 600; color: var(--navy);
  padding: 8px 14px; border-radius: 8px; transition: all 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.header-phone:hover { background: rgba(15,23,43,0.04); }
.header-phone svg { width: 15px; height: 15px; }
.header-cta {
  padding: 9px 22px; font-size: 0.84rem; border-radius: 10px;
  margin-left: 4px;
}
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; position: relative; width: 40px; height: 40px; border-radius: 8px; transition: background 0.2s; }
.mobile-toggle:hover { background: rgba(15,23,43,0.04); }
.mobile-toggle span {
  display: block; width: 20px; height: 2px; background: var(--navy);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 2px;
  position: absolute; left: 10px;
}
.mobile-toggle span:nth-child(1) { top: 12px; }
.mobile-toggle span:nth-child(2) { top: 19px; }
.mobile-toggle span:nth-child(3) { top: 26px; }
.mobile-toggle.active span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--warm-white) 100%);
}
.hero-bg {
  position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  z-index: 0; overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.7) 30%, rgba(255,255,255,0.15) 70%, rgba(250,249,245,0.3) 100%);
}
.hero-bg::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(transparent, var(--warm-white));
  z-index: 1;
}
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink-light); color: var(--pink); font-size: 0.82rem;
  font-weight: 600; padding: 8px 16px; border-radius: 50px; margin-bottom: 24px;
}
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800;
  line-height: 1.15; margin-bottom: 20px;
}
.hero p { font-size: 1.15rem; color: var(--navy-soft); margin-bottom: 32px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid #e2e8f0;
}
.hero-stat-value { font-size: 1.8rem; font-weight: 800; }
.hero-stat-label { font-size: 0.82rem; color: var(--navy-soft); margin-top: 2px; }

/* Hero Form Card */
.hero-form-card {
  background: #fff; border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,0.05);
}
.hero-form-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.hero-form-card .form-subtitle { font-size: 0.88rem; color: var(--navy-soft); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  margin-bottom: 6px; color: var(--navy-light);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid #e2e8f0;
  border-radius: 10px; font-size: 0.92rem; font-family: inherit;
  transition: border-color 0.2s; background: #fff; color: var(--navy);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--pink-bright);
  box-shadow: 0 0 0 3px rgba(246,51,154,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; margin-top: 4px; }
.form-note { font-size: 0.75rem; color: var(--navy-soft); margin-top: 12px; text-align: center; }

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 40px 0; background: #fff; border-bottom: 1px solid #f1f5f9;
}
.trust-bar .container {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; color: var(--navy-mid); font-weight: 500;
}
.trust-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.trust-icon.pink { background: var(--pink-light); }
.trust-icon.green { background: var(--green-light); }
.trust-icon.purple { background: #f3e8ff; }

/* ===== FEATURES ===== */
.features { padding: 100px 0; background: #fff; }
.features .section-header { text-align: center; margin-bottom: 64px; }
.features .section-subtitle { margin: 0 auto; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
  padding: 32px; border-radius: var(--radius-lg);
  border: 1px solid #f1f5f9; transition: all 0.3s ease;
  background: #fff;
}
.feature-card:hover {
  box-shadow: var(--shadow-md); border-color: transparent;
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.feature-icon.pink { background: var(--pink-light); }
.feature-icon.green { background: var(--green-light); }
.feature-icon.purple { background: #f3e8ff; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 0.92rem; color: var(--navy-soft); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 100px 0; background: var(--warm-white); }
.how-it-works .section-header { text-align: center; margin-bottom: 64px; }
.how-it-works .section-subtitle { margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 44px; left: 16.5%; right: 16.5%;
  height: 2px; background: linear-gradient(90deg, var(--pink-bright), var(--purple));
  opacity: 0.2;
}
.step { text-align: center; position: relative; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: #fff;
  background: var(--gradient); box-shadow: 0 4px 16px rgba(230,0,118,0.25);
}
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.92rem; color: var(--navy-soft); line-height: 1.6; max-width: 280px; margin: 0 auto; }

/* ===== FOR COORDINATORS ===== */
.coordinators {
  padding: 100px 0; background: #fff;
  position: relative; overflow: hidden;
}
.coordinators::before { display: none; }
.coordinators .container {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px;
  align-items: start; position: relative; z-index: 1;
}
.coord-content {}
.coord-pain-points { margin: 32px 0; }
.pain-point {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid #f1f5f9;
}
.pain-point:last-child { border-bottom: none; }
.pain-check {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; margin-top: 2px;
}
.pain-point h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.pain-point p { font-size: 0.85rem; color: var(--navy-soft); }

/* Profile Card */
.profile-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,0.05);
  max-width: 400px; margin-left: auto;
}
.profile-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.profile-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center;
  justify-content: center; color: #fff; font-weight: 700; font-size: 1.2rem;
}
.profile-name { font-size: 1.15rem; font-weight: 700; }
.profile-role { font-size: 0.85rem; color: var(--navy-soft); }
.profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.profile-tag {
  padding: 6px 14px; border-radius: 50px; font-size: 0.78rem;
  font-weight: 500; background: #f1f5f9; color: var(--navy-mid);
}
.profile-tag.green { background: var(--green-light); color: var(--green); }
.profile-tag.pink { background: var(--pink-light); color: var(--pink); }
.profile-details { margin-bottom: 20px; }
.profile-detail {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid #f8fafc; font-size: 0.88rem;
}
.profile-detail-label { color: var(--navy-soft); }
.profile-detail-value { font-weight: 600; }
.profile-cta { text-align: center; }
.profile-note { font-size: 0.75rem; color: var(--navy-soft); margin-top: 12px; text-align: center; font-style: italic; }

/* ===== FOR PARTICIPANTS ===== */
.participants { padding: 100px 0; background: var(--warm-white); }
.participants .container {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center;
}
.participant-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.participant-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; padding: 20px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}
.participant-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.participant-card-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.participant-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.participant-card p { font-size: 0.88rem; color: var(--navy-soft); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: #fff; }
.testimonials .section-header { text-align: center; margin-bottom: 64px; }
.testimonials .section-subtitle { margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--warm-white); border: 1px solid #f1f5f9;
}
.testimonial-stars { color: #f59e0b; margin-bottom: 16px; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; color: var(--navy-light); font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center;
  justify-content: center; color: #fff; font-weight: 700; font-size: 0.85rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--navy-soft); }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--warm-white); }
.faq .section-header { text-align: center; margin-bottom: 64px; }
.faq .section-subtitle { margin: 0 auto; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  background: #fff; border-radius: var(--radius); margin-bottom: 12px;
  border: 1px solid #f1f5f9; overflow: hidden;
}
.faq-question {
  width: 100%; padding: 20px 24px; display: flex;
  align-items: center; justify-content: space-between;
  background: none; border: none; cursor: pointer;
  font-size: 0.95rem; font-weight: 600; color: var(--navy);
  font-family: inherit; text-align: left; gap: 16px;
}
.faq-question:hover { color: var(--pink); }
.faq-chevron {
  width: 20px; height: 20px; transition: transform 0.3s; flex-shrink: 0;
  color: var(--navy-soft);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px; font-size: 0.9rem; color: var(--navy-soft); line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0; position: relative; overflow: hidden;
  background: var(--gradient);
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-section .container { text-align: center; position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
  color: #fff; margin-bottom: 16px;
}
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT SECTION ===== */
.contact { padding: 100px 0; background: #fff; }
.contact .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--navy-soft); margin-bottom: 40px; font-size: 1.05rem; line-height: 1.7; }
.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  padding: 20px; background: var(--warm-white); border-radius: var(--radius);
}
.contact-method-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.contact-method-icon.pink { background: var(--pink-light); }
.contact-method-icon.purple { background: #f3e8ff; }
.contact-method h4 { font-size: 0.82rem; color: var(--navy-soft); font-weight: 500; margin-bottom: 2px; }
.contact-method a, .contact-method span { font-size: 1rem; font-weight: 600; color: var(--navy); }
.contact-method a:hover { color: var(--pink); }
.contact-form-card {
  background: var(--warm-white); border-radius: var(--radius-lg);
  padding: 40px; border: 1px solid #f1f5f9;
}
.contact-form-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 24px; }

/* ===== FOOTER ===== */
.footer { padding: 60px 0 32px; background: var(--navy); color: rgba(255,255,255,0.7); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-support { color: #fff; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; }
.footer h4 { color: #fff; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { font-size: 0.88rem; transition: color 0.2s; }
.footer ul a:hover { color: #fff; }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem; flex-wrap: wrap; gap: 16px;
}

/* ===== MOBILE NAV ===== */
.mobile-menu {
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 24px 32px; z-index: 999;
  border-top: 1px solid #f1f5f9;
  overflow-y: auto;
  transform: translateY(-10px);
  opacity: 0; visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; font-size: 0.95rem; font-weight: 500;
  color: var(--navy); border-radius: 12px; margin-bottom: 2px;
  transition: background 0.15s;
}
.mobile-menu a:hover, .mobile-menu a:active { background: var(--warm-white); }
.mobile-menu .mobile-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.mobile-menu .mobile-divider { height: 1px; background: #f1f5f9; margin: 8px 0; }
.mobile-menu .mobile-cta-group { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.mobile-menu .mobile-cta-group .btn { width: 100%; justify-content: center; }

/* ===== INTEGRATED IMAGES ===== */

/* -- Coordinator image with overlapping profile card -- */
.coord-visual {
  position: relative;
}
.coord-image-wrap {
  position: relative; border-radius: 24px 24px 80px 24px;
  overflow: hidden; height: 480px;
}
.coord-image-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.coord-image-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,23,43,0.25) 100%);
  pointer-events: none;
}
.coord-visual .profile-card {
  position: relative; margin-top: -80px; margin-left: 24px;
  margin-right: 24px; z-index: 2;
}

/* -- Participant section with image column -- */
.participant-image-col {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.participant-image-col::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 85%; height: 90%;
  background: var(--gradient); opacity: 0.08;
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  z-index: 0;
}
.participant-image-wrap {
  position: relative; z-index: 1;
  border-radius: 24px 80px 24px 24px; overflow: hidden;
  box-shadow: var(--shadow-lg); max-width: 420px;
}
.participant-image-wrap img {
  width: 100%; height: 520px; object-fit: cover;
  object-position: center top; display: block;
}

/* ===== BEFORE / AFTER ===== */
.before-after { margin-top: 80px; }
.before-after-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch;
}
.ba-card {
  padding: 36px 32px; border-radius: var(--radius-lg); position: relative;
}
.ba-card.before {
  background: #fff; border: 1px solid #f1f5f9;
}
.ba-card.after {
  background: var(--navy); color: #fff;
}
.ba-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 6px 14px; border-radius: 50px;
  margin-bottom: 20px;
}
.ba-card.before .ba-badge { background: #fef2f2; color: #dc2626; }
.ba-card.after .ba-badge { background: rgba(0,130,54,0.2); color: #4ade80; }
.ba-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.ba-card.after h4 { color: #fff; }
.ba-items { display: flex; flex-direction: column; gap: 12px; }
.ba-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem; line-height: 1.5;
}
.ba-card.before .ba-item { color: var(--navy-mid); }
.ba-card.after .ba-item { color: rgba(255,255,255,0.85); }
.ba-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.ba-arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 0 20px; position: relative;
}
.ba-arrow-inner {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 20px rgba(230,0,118,0.3);
  z-index: 2; position: relative;
}
.ba-arrow-inner svg { width: 24px; height: 24px; color: #fff; }
.ba-arrow::before {
  content: ''; position: absolute; top: 20%; bottom: 20%;
  left: 50%; width: 2px; transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(230,0,118,0.15), transparent);
}

/* ===== COMPARISON TABLE ===== */
.comparison { padding: 100px 0; background: #fff; }
.comparison .section-header { text-align: center; margin-bottom: 64px; }
.comparison .section-subtitle { margin: 0 auto; }
.comparison-table-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg); border: 1px solid #f1f5f9;
  box-shadow: var(--shadow-sm); margin-top: 24px;
}
.comparison-table {
  width: 100%; min-width: 680px; border-collapse: collapse;
}
.comparison-table thead th {
  padding: 20px 20px; font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--navy-soft); background: var(--warm-white);
  border-bottom: 2px solid #f1f5f9; text-align: center;
}
.comparison-table thead th:first-child { text-align: left; width: 34%; }
.comparison-table thead th.highlight {
  background: var(--navy); color: #fff; position: relative;
}
.comparison-recommended {
  display: inline-block; background: var(--gradient); color: #fff;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 4px 14px; border-radius: 50px;
  margin-bottom: 6px; white-space: nowrap;
}
.comparison-table tbody td {
  padding: 16px 20px; text-align: center;
  font-size: 0.9rem; color: var(--navy-mid);
  border-bottom: 1px solid #f8fafc;
}
.comparison-table tbody td:first-child {
  text-align: left; font-weight: 600; color: var(--navy);
}
.comparison-table tbody td.highlight {
  background: rgba(246,51,154,0.03); font-weight: 600; color: var(--navy);
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover td { background: rgba(246,51,154,0.02); }
.comparison-table tbody tr:hover td.highlight { background: rgba(246,51,154,0.06); }
.ct-check { color: var(--green); font-size: 1.2rem; font-weight: 700; }
.ct-cross { color: #dc2626; font-size: 1.2rem; opacity: 0.5; }
.ct-partial { color: #f59e0b; font-size: 0.82rem; font-weight: 500; }
.comparison-note {
  text-align: center; margin-top: 24px;
  font-size: 0.85rem; color: var(--navy-soft);
}

/* ===== FOR SUPPORT WORKERS ===== */
.workers { padding: 100px 0; background: #fff; position: relative; overflow: hidden; }
.workers::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: var(--gradient); opacity: 0.04;
}
.workers .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.workers-benefits { display: grid; gap: 16px; margin: 32px 0; }
.worker-benefit {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; background: var(--warm-white); border-radius: var(--radius);
  border: 1px solid #f1f5f9; transition: all 0.3s ease;
}
.worker-benefit:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); }
.worker-benefit-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.worker-benefit h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.worker-benefit p { font-size: 0.85rem; color: var(--navy-soft); line-height: 1.5; }
.worker-form-card {
  background: var(--warm-white); border-radius: var(--radius-lg);
  padding: 40px; border: 1px solid #f1f5f9;
}
.worker-form-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; }
.worker-form-card .form-subtitle { font-size: 0.88rem; color: var(--navy-soft); margin-bottom: 24px; }
.worker-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 32px;
}
.worker-stat {
  text-align: center; padding: 20px 12px; background: var(--warm-white);
  border-radius: var(--radius); border: 1px solid #f1f5f9;
}
.worker-stat-value { font-size: 1.5rem; font-weight: 800; }
.worker-stat-label { font-size: 0.78rem; color: var(--navy-soft); margin-top: 4px; }

/* ===== SERVICE AREA MAP ===== */
.service-area { padding: 100px 0; background: var(--warm-white); }
.service-area .section-header { text-align: center; margin-bottom: 64px; }
.service-area .section-subtitle { margin: 0 auto; }
.service-area-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.map-container {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.map-container svg { width: 100%; max-width: 500px; height: auto; }
.map-container svg path.state {
  fill: rgba(152,16,250,0.12); stroke: #9810fa; stroke-width: 0.5;
  transition: all 0.3s ease; cursor: pointer;
}
.map-container svg path.state:hover { fill: rgba(152,16,250,0.3); }
.map-container svg path.state.active { fill: rgba(246,51,154,0.25); stroke: var(--pink); }
.map-legend {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px;
}
.map-legend-item {
  display: flex; align-items: center; gap: 6px; font-size: 0.82rem;
  color: var(--navy-mid); font-weight: 500;
}
.map-legend-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.map-legend-dot.metro { background: var(--pink-bright); }
.map-legend-dot.regional { background: var(--purple); }
.map-legend-dot.remote { background: var(--green); }
.coverage-cards { display: grid; gap: 16px; }
.coverage-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}
.coverage-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.coverage-card-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.coverage-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.coverage-card p { font-size: 0.88rem; color: var(--navy-soft); line-height: 1.6; }
.coverage-highlight {
  text-align: center; margin-top: 48px; padding: 32px;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid #f1f5f9;
}
.coverage-highlight h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.coverage-highlight p { font-size: 0.95rem; color: var(--navy-soft); max-width: 600px; margin: 0 auto; }

/* ===== BLOG / RESOURCES ===== */
.resources { padding: 100px 0; background: #fff; }
.resources .section-header { text-align: center; margin-bottom: 64px; }
.resources .section-subtitle { margin: 0 auto; }
.resources-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.resource-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid #f1f5f9; background: #fff;
  transition: all 0.3s ease;
}
.resource-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.resource-thumb {
  height: 180px; position: relative; overflow: hidden;
}
.resource-thumb-inner {
  width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; font-size: 3rem;
}
.resource-thumb-inner.pink { background: linear-gradient(135deg, var(--pink-light), #fce7f3); }
.resource-thumb-inner.purple { background: linear-gradient(135deg, #f3e8ff, #ede9fe); }
.resource-thumb-inner.green { background: linear-gradient(135deg, var(--green-light), #d1fae5); }
.resource-category {
  position: absolute; top: 16px; left: 16px;
  padding: 4px 12px; border-radius: 50px; font-size: 0.72rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  background: rgba(255,255,255,0.9); color: var(--navy-mid);
  backdrop-filter: blur(8px);
}
.resource-body { padding: 24px; }
.resource-body h3 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 10px;
  line-height: 1.4;
}
.resource-body p { font-size: 0.88rem; color: var(--navy-soft); line-height: 1.6; margin-bottom: 16px; }
.resource-link {
  font-size: 0.88rem; font-weight: 600; color: var(--pink);
  display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s;
}
.resource-link:hover { gap: 10px; }
.resource-link svg { width: 16px; height: 16px; }
.resources-cta { text-align: center; margin-top: 48px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-form-card { max-width: 500px; }
  .coordinators .container { grid-template-columns: 1fr; gap: 48px; }
  .coordinators::before { display: none; }
  .profile-card { margin-left: 0; max-width: 100%; }
  .participants .container { grid-template-columns: 1fr; gap: 48px; }
  .contact .container { grid-template-columns: 1fr; gap: 48px; }
  .workers .container { grid-template-columns: 1fr; gap: 48px; }
  .service-area-content { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .header-phone { display: none; }
  .header-inner { height: 60px; padding: 0 20px; }
  .mobile-menu { top: 60px; }
  .mobile-toggle { display: block; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-bg { display: none; }
  .hero { background: linear-gradient(135deg, rgba(246,51,154,0.06), rgba(152,16,250,0.06)); }
  .coord-image-wrap { height: 320px; }
  .coord-visual .profile-card { margin-left: 0; margin-right: 0; }
  .participant-image-col { order: -1; }
  .participant-image-wrap img { height: 340px; }
  .participant-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .trust-bar .container { gap: 24px; }
  .resources-grid { grid-template-columns: 1fr; }
  .worker-stats { grid-template-columns: repeat(3, 1fr); }
  .before-after-grid { grid-template-columns: 1fr; gap: 0; }
  .ba-arrow { padding: 16px 0; }
  .ba-arrow::before { display: none; }
  .ba-arrow-inner { transform: rotate(90deg); }
  .comparison-table-wrap { margin: 0 -12px; border-radius: var(--radius); }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

/* ===== NEW PAGE STYLES ===== */

/* Announcement / SLA bar */
.sla-bar {
  background: var(--navy); color: #fff; padding: 10px 24px;
  text-align: center; font-size: 0.85rem; font-weight: 500;
  position: relative; z-index: 1001;
}
.sla-bar strong { color: var(--pink-bright); font-weight: 700; }
.sla-bar a { color: #fff; text-decoration: underline; margin-left: 8px; }
body.has-sla-bar .header { top: 40px; }
body.has-sla-bar .mobile-menu { top: 108px; }
@media (max-width: 600px) {
  .sla-bar { font-size: 0.78rem; padding: 8px 16px; }
}

/* Page hero (simpler hero for internal pages) */
.page-hero {
  padding: 140px 0 72px; background: linear-gradient(180deg, #fff 0%, var(--warm-white) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero .container { max-width: 900px; position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.2rem); font-weight: 800;
  line-height: 1.15; margin: 16px 0 20px;
}
.page-hero p.lede {
  font-size: 1.15rem; color: var(--navy-soft);
  max-width: 680px; margin: 0 auto 32px; line-height: 1.7;
}
.breadcrumb {
  display: flex; gap: 8px; justify-content: center; align-items: center;
  font-size: 0.82rem; color: var(--navy-soft); margin-bottom: 16px;
}
.breadcrumb a { color: var(--navy-soft); }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb span { color: var(--navy); font-weight: 500; }

/* Article body */
.article-body {
  padding: 60px 0 100px; background: #fff;
}
.article-body .container { max-width: 780px; }
.article-body h2 {
  font-size: 1.6rem; font-weight: 800; margin: 40px 0 16px;
  line-height: 1.3;
}
.article-body h3 {
  font-size: 1.2rem; font-weight: 700; margin: 28px 0 12px;
}
.article-body p {
  font-size: 1rem; line-height: 1.75; color: var(--navy-light);
  margin-bottom: 16px;
}
.article-body ul, .article-body ol {
  margin: 0 0 20px 24px; padding-left: 0;
}
.article-body ul li, .article-body ol li {
  font-size: 1rem; line-height: 1.75; color: var(--navy-light);
  margin-bottom: 8px; list-style: disc;
}
.article-body ol li { list-style: decimal; }
.article-body strong { color: var(--navy); }
.article-body a { color: var(--pink); font-weight: 500; border-bottom: 1px solid rgba(246,51,154,0.3); }
.article-body a:hover { border-bottom-color: var(--pink); }
.article-body blockquote {
  border-left: 4px solid var(--pink);
  padding: 16px 0 16px 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--navy-mid);
}
.article-body .callout {
  background: var(--pink-light);
  border-radius: var(--radius);
  padding: 24px;
  margin: 24px 0;
  border-left: 4px solid var(--pink);
}
.article-body .callout p:last-child { margin-bottom: 0; }
.article-meta {
  display: flex; gap: 16px; justify-content: center;
  font-size: 0.85rem; color: var(--navy-soft);
  margin-top: 20px;
}

/* Two-column split (audience pages) */
.split { padding: 100px 0; background: #fff; }
.split.alt { background: var(--warm-white); }
.split .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.split .container.wide { grid-template-columns: 1.2fr 1fr; }
.split .container.wide-left { grid-template-columns: 1fr 1.2fr; }
.split-visual {
  background: var(--gradient-soft); border-radius: var(--radius-lg);
  aspect-ratio: 4/3; display: flex; align-items: center;
  justify-content: center; font-size: 5rem;
}
.split-text h2 { margin-bottom: 16px; }
.split-text > p { color: var(--navy-soft); font-size: 1.05rem; line-height: 1.7; margin-bottom: 24px; }
.check-list { display: grid; gap: 14px; margin: 20px 0 28px; }
.check-list .item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.95rem; color: var(--navy-light);
}
.check-list .item .check {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700; margin-top: 2px;
}
@media (max-width: 1024px) {
  .split .container,
  .split .container.wide,
  .split .container.wide-left { grid-template-columns: 1fr; gap: 40px; }
  .split-visual { aspect-ratio: 16/9; }
}

/* Content blocks */
.content-block { padding: 100px 0; background: #fff; }
.content-block.alt { background: var(--warm-white); }
.content-block .section-header { text-align: center; margin-bottom: 56px; }
.content-block .section-subtitle { margin: 0 auto; }

/* Stats grid */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin: 48px 0;
}
.stat-card {
  text-align: center; padding: 32px 20px; background: #fff;
  border-radius: var(--radius-lg); border: 1px solid #f1f5f9;
  box-shadow: var(--shadow-sm);
}
.stat-value {
  font-size: 2.2rem; font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.88rem; color: var(--navy-soft); font-weight: 500; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* Multi-step form */
.stepper-form {
  max-width: 720px; margin: 0 auto; padding: 48px 40px;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid #f1f5f9;
}
.stepper-progress {
  display: flex; justify-content: space-between; margin-bottom: 40px;
  position: relative;
}
.stepper-progress::before {
  content: ''; position: absolute; top: 18px; left: 10%; right: 10%;
  height: 2px; background: #e2e8f0; z-index: 0;
}
.stepper-progress::after {
  content: ''; position: absolute; top: 18px; left: 10%;
  height: 2px; background: var(--gradient); z-index: 1;
  transition: width 0.4s ease; width: 0%;
}
.stepper-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative; z-index: 2;
}
.step-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; border: 2px solid #e2e8f0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--navy-soft); font-size: 0.88rem;
  transition: all 0.3s;
}
.stepper-step.active .step-dot {
  background: var(--gradient); border-color: transparent; color: #fff;
  box-shadow: 0 4px 12px rgba(230,0,118,0.3);
}
.stepper-step.done .step-dot {
  background: var(--green); border-color: var(--green); color: #fff;
}
.step-label {
  font-size: 0.75rem; color: var(--navy-soft); font-weight: 500;
  text-align: center; max-width: 90px;
}
.stepper-step.active .step-label { color: var(--navy); font-weight: 600; }
.stepper-panel { display: none; }
.stepper-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.stepper-panel h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 6px; }
.stepper-panel .panel-desc { font-size: 0.92rem; color: var(--navy-soft); margin-bottom: 24px; }
.radio-group {
  display: grid; gap: 10px; margin-bottom: 16px;
}
.radio-option {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px; border: 1.5px solid #e2e8f0;
  border-radius: 10px; cursor: pointer; transition: all 0.2s;
}
.radio-option:hover { border-color: var(--pink-bright); background: rgba(246,51,154,0.02); }
.radio-option input { margin-top: 3px; accent-color: var(--pink); }
.radio-option .opt-label { font-weight: 600; font-size: 0.92rem; margin-bottom: 2px; }
.radio-option .opt-desc { font-size: 0.82rem; color: var(--navy-soft); }
.radio-option.chosen { border-color: var(--pink); background: var(--pink-light); }
.checkbox-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.checkbox-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border: 1.5px solid #e2e8f0;
  border-radius: 50px; cursor: pointer; transition: all 0.2s;
  font-size: 0.88rem; user-select: none;
}
.checkbox-chip:hover { border-color: var(--pink-bright); }
.checkbox-chip input { accent-color: var(--pink); }
.checkbox-chip.chosen { border-color: var(--pink); background: var(--pink-light); color: var(--pink); font-weight: 600; }
.stepper-nav {
  display: flex; justify-content: space-between; margin-top: 32px;
  gap: 12px;
}
@media (max-width: 600px) {
  .stepper-form { padding: 32px 20px; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .step-label { display: none; }
}

/* Postcode checker */
.checker-card {
  max-width: 520px; margin: 0 auto; padding: 40px;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid #f1f5f9;
  text-align: center;
}
.checker-input-wrap {
  display: flex; gap: 8px; margin: 24px 0 16px;
}
.checker-input-wrap input {
  flex: 1; padding: 14px 18px; font-size: 1rem;
  border: 1.5px solid #e2e8f0; border-radius: 10px;
  font-family: inherit; color: var(--navy);
}
.checker-input-wrap input:focus { outline: none; border-color: var(--pink-bright); }
.checker-result {
  margin-top: 20px; padding: 20px; border-radius: var(--radius);
  display: none; animation: fadeIn 0.3s ease;
}
.checker-result.yes { background: var(--green-light); border: 1px solid var(--green); color: var(--green); }
.checker-result.no { background: #fef2f2; border: 1px solid #fca5a5; color: #dc2626; }
.checker-result h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.checker-result p { font-size: 0.9rem; color: inherit; opacity: 0.9; }

/* Worker profile grid (sample profiles) */
.sample-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 1024px) { .sample-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .sample-grid { grid-template-columns: 1fr; } }
.sample-profile {
  background: #fff; border-radius: var(--radius-lg); padding: 24px;
  border: 1px solid #f1f5f9; box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.sample-profile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sample-profile .redacted {
  position: relative; display: inline-block;
  color: transparent; background: linear-gradient(90deg, #f1f5f9, #e2e8f0);
  border-radius: 4px; padding: 0 4px; user-select: none;
}
.sample-profile .redacted::after {
  content: 'REDACTED'; position: absolute; inset: 0;
  color: var(--navy-soft); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 1px; display: flex; align-items: center; justify-content: center;
}

/* Coverage pill / checklist */
.coverage-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-top: 32px;
}
.coverage-pill {
  padding: 10px 18px; border-radius: 50px; background: #fff;
  border: 1px solid #f1f5f9; font-size: 0.88rem; font-weight: 500;
  color: var(--navy-mid); box-shadow: var(--shadow-sm);
}

/* Category tabs for resources */
.category-tabs {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 40px;
}
.category-tab {
  padding: 8px 18px; border-radius: 50px;
  background: #fff; border: 1.5px solid #e2e8f0;
  font-size: 0.88rem; font-weight: 500; color: var(--navy-mid);
  cursor: pointer; transition: all 0.2s;
  font-family: inherit;
}
.category-tab:hover { border-color: var(--pink-bright); color: var(--pink); }
.category-tab.active { background: var(--gradient); border-color: transparent; color: #fff; }

/* Case study card */
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 768px) { .case-grid { grid-template-columns: 1fr; } }
.case-card {
  background: #fff; padding: 32px; border-radius: var(--radius-lg);
  border: 1px solid #f1f5f9; box-shadow: var(--shadow-sm);
}
.case-header { display: flex; gap: 16px; margin-bottom: 16px; }
.case-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient); color: #fff; display: flex;
  align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.2rem;
}
.case-name { font-weight: 700; font-size: 1.05rem; }
.case-meta { font-size: 0.82rem; color: var(--navy-soft); }
.case-quote { font-style: italic; color: var(--navy-mid); line-height: 1.7; margin-bottom: 16px; }
.case-outcomes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  padding-top: 16px; border-top: 1px solid #f1f5f9;
}
.case-outcome {
  text-align: center;
}
.case-outcome .v { font-size: 1.2rem; font-weight: 800; color: var(--pink); }
.case-outcome .l { font-size: 0.72rem; color: var(--navy-soft); font-weight: 500; }

/* Lead magnet / form page */
.magnet-hero {
  padding: 140px 0 80px; background: linear-gradient(180deg, #fff 0%, var(--warm-white) 100%);
}
.magnet-hero .container {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 1024px) { .magnet-hero .container { grid-template-columns: 1fr; } }
.magnet-mock {
  background: var(--gradient-soft); padding: 40px; border-radius: var(--radius-lg);
  aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative;
}
.magnet-mock::before {
  content: ''; position: absolute; inset: 12px;
  border: 2px dashed rgba(152,16,250,0.2); border-radius: var(--radius);
}
.magnet-toc {
  list-style: none; padding: 0; margin: 24px 0;
}
.magnet-toc li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; font-size: 0.95rem; color: var(--navy-light);
}
.magnet-toc li::before {
  content: '✓'; color: var(--green); font-weight: 700;
  flex-shrink: 0;
}

/* Contact blocks */
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-block {
  padding: 28px; background: var(--warm-white); border-radius: var(--radius-lg);
  border: 1px solid #f1f5f9;
}
.contact-block-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--pink-light); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 14px;
}
.contact-block h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.contact-block p { font-size: 0.92rem; color: var(--navy-soft); margin-bottom: 10px; }
.contact-block a { font-weight: 600; color: var(--pink); }

/* FAQ category */
.faq-category {
  margin-bottom: 48px;
}
.faq-category h3 {
  font-size: 1.2rem; font-weight: 700; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
  color: var(--navy);
}
.faq-category h3 .faq-cat-icon {
  width: 36px; height: 36px; border-radius: 10px; background: var(--pink-light);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}

/* ===== SVG ICONS ===== */
.svg-icon { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* Icon badges — replaces emoji feature-icons */
.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px; margin-bottom: 20px; flex-shrink: 0;
  transition: transform 0.3s ease;
}
.feature-card:hover .icon-badge { transform: scale(1.05) rotate(-3deg); }

.icon-pink   { background: linear-gradient(135deg, rgba(230,0,118,0.1), rgba(230,0,118,0.18));    color: var(--pink);   }
.icon-purple { background: linear-gradient(135deg, rgba(152,16,250,0.1), rgba(152,16,250,0.18));  color: var(--purple); }
.icon-green  { background: linear-gradient(135deg, rgba(0,130,54,0.1),   rgba(0,130,54,0.2));     color: var(--green);  }
.icon-navy   { background: linear-gradient(135deg, rgba(15,23,43,0.06),  rgba(15,23,43,0.12));    color: var(--navy);   }
.icon-gradient { background: var(--gradient); color: #fff; }

/* Small inline icons in text */
.svg-icon.inline { width: 16px; height: 16px; margin-right: 6px; vertical-align: -3px; }

/* Check circles (bullet lists) */
.icon-check-dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,130,54,0.15), rgba(0,130,54,0.25));
  color: var(--green); display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-check-dot .svg-icon { width: 14px; height: 14px; stroke-width: 3; }

/* Trust bar with SVG icons */
.trust-bar .trust-icon {
  background: linear-gradient(135deg, rgba(0,130,54,0.1), rgba(0,130,54,0.2));
  color: var(--green);
}

/* Pain point check using SVG */
.pain-check.svg-wrap {
  background: linear-gradient(135deg, rgba(0,130,54,0.15), rgba(0,130,54,0.25));
}
.pain-check.svg-wrap .svg-icon { width: 16px; height: 16px; stroke-width: 3; color: var(--green); }

/* BA items use SVG */
.ba-icon-svg {
  flex-shrink: 0; margin-top: 2px;
}
.ba-card.before .ba-icon-svg { color: #dc2626; }
.ba-card.after .ba-icon-svg { color: #4ade80; }

/* Step numbers — now with subtle gradient ring */
.step-number {
  position: relative;
}
.step-number::before {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; background: var(--gradient);
  opacity: 0.15; z-index: -1; filter: blur(8px);
}

/* ===== HERO ILLUSTRATION ===== */
.hero-illustration {
  position: relative; width: 100%; aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
}
.hero-illustration svg { width: 100%; height: auto; max-width: 500px; }

/* Decorative gradient orbs */
.gradient-orb {
  position: absolute; border-radius: 50%; filter: blur(60px);
  opacity: 0.5; pointer-events: none; z-index: 0;
}
.gradient-orb.pink { background: radial-gradient(circle, rgba(246,51,154,0.35), transparent); }
.gradient-orb.purple { background: radial-gradient(circle, rgba(152,16,250,0.3), transparent); }
.gradient-orb.top-right { top: -100px; right: -100px; width: 400px; height: 400px; }
.gradient-orb.bottom-left { bottom: -100px; left: -100px; width: 400px; height: 400px; }

/* ===== DECORATIVE PATTERN BACKGROUND ===== */
.pattern-dots {
  background-image: radial-gradient(circle, rgba(15,23,43,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.pattern-grid {
  background-image:
    linear-gradient(rgba(15,23,43,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,43,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ===== CUSTOM ILLUSTRATIONS ===== */
.illus-card {
  background: linear-gradient(135deg, rgba(246,51,154,0.04), rgba(152,16,250,0.04));
  border-radius: var(--radius-lg); padding: 48px; position: relative;
  overflow: hidden; border: 1px solid rgba(152,16,250,0.08);
  aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center;
}
.illus-card svg { width: 100%; height: auto; max-width: 420px; position: relative; z-index: 1; }
.illus-card::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(246,51,154,0.15), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(152,16,250,0.15), transparent 40%);
  z-index: 0;
}

/* Floating chips on illustrations */
.float-chip {
  position: absolute; background: #fff;
  padding: 10px 16px; border-radius: 50px;
  box-shadow: 0 8px 32px rgba(15,23,43,0.12);
  font-size: 0.82rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  z-index: 2;
  animation: float-up 3s ease-in-out infinite;
}
.float-chip .svg-icon { width: 16px; height: 16px; }
.float-chip.green { color: var(--green); border: 1px solid rgba(0,130,54,0.2); }
.float-chip.pink { color: var(--pink); border: 1px solid rgba(230,0,118,0.2); }
.float-chip.purple { color: var(--purple); border: 1px solid rgba(152,16,250,0.2); }
.float-chip.tl { top: 10%; left: -8%; animation-delay: 0s; }
.float-chip.tr { top: 20%; right: -6%; animation-delay: 1s; }
.float-chip.bl { bottom: 18%; left: -4%; animation-delay: 2s; }
.float-chip.br { bottom: 8%; right: -6%; animation-delay: 1.5s; }
@keyframes float-up {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Service illustration (home hero companion) */
.home-visual-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 50px);
  gap: 12px;
}
.home-visual-tile {
  background: #fff; border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15,23,43,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--pink); transition: transform 0.3s ease;
}
.home-visual-tile .svg-icon { width: 28px; height: 28px; }
.home-visual-tile:hover { transform: translateY(-4px); }
.home-visual-tile.t1 { grid-column: 1 / 3; grid-row: 1 / 3; background: var(--gradient); color: #fff; }
.home-visual-tile.t1 .svg-icon { width: 40px; height: 40px; }
.home-visual-tile.t2 { grid-column: 3 / 5; grid-row: 1 / 3; color: var(--purple); }
.home-visual-tile.t3 { grid-column: 5 / 7; grid-row: 1 / 3; color: var(--green); }
.home-visual-tile.t4 { grid-column: 1 / 3; grid-row: 3 / 5; color: var(--pink); }
.home-visual-tile.t5 { grid-column: 3 / 5; grid-row: 3 / 6; background: var(--warm-white); color: var(--purple); }
.home-visual-tile.t5 .svg-icon { width: 36px; height: 36px; }
.home-visual-tile.t6 { grid-column: 5 / 7; grid-row: 3 / 5; color: var(--green); }
.home-visual-tile.t7 { grid-column: 1 / 3; grid-row: 5 / 7; color: var(--pink); }
.home-visual-tile.t8 { grid-column: 5 / 7; grid-row: 5 / 7; color: var(--purple); }
@media (max-width: 1024px) {
  .home-visual-grid { grid-template-rows: repeat(6, 44px); gap: 8px; }
  .home-visual-tile .svg-icon { width: 22px; height: 22px; }
}

/* ===== INTER-PAGE FLOW: Related pages block ===== */
.related-pages {
  padding: 80px 0; background: #fff;
  border-top: 1px solid #f1f5f9;
}
.related-pages .section-header { text-align: center; margin-bottom: 40px; }
.related-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .related-cards { grid-template-columns: 1fr; } }
.related-card {
  display: block; padding: 24px;
  background: #fff; border: 1px solid #f1f5f9;
  border-radius: var(--radius-lg);
  text-decoration: none; color: inherit;
  transition: all 0.3s ease;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md); border-color: transparent;
}
.related-card .icon-badge { width: 44px; height: 44px; margin-bottom: 14px; }
.related-card .icon-badge .svg-icon { width: 20px; height: 20px; }
.related-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.related-card p { font-size: 0.85rem; color: var(--navy-soft); line-height: 1.6; margin-bottom: 12px; }
.related-card .link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--pink);
  transition: gap 0.2s;
}
.related-card:hover .link-arrow { gap: 10px; }
.related-card .link-arrow .svg-icon { width: 14px; height: 14px; }

/* ===== HEADER ICON UPGRADES ===== */
.header-phone .svg-icon,
.nav-trigger .svg-icon { width: 14px; height: 14px; }
.logo .logo-icon-svg {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--gradient); display: flex;
  align-items: center; justify-content: center;
  color: #fff;
}
.logo .logo-icon-svg .svg-icon { width: 20px; height: 20px; stroke-width: 2.5; }

/* Dropdown nav icons — clean SVG versions */
.nav-dropdown-menu a .dd-icon {
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-dropdown-menu a .dd-icon .svg-icon { width: 18px; height: 18px; }
.mobile-menu .mobile-icon {
  display: inline-flex; align-items: center; justify-content: center;
}
.mobile-menu .mobile-icon .svg-icon { width: 18px; height: 18px; }

/* ===== HERO IMAGE BACKGROUND — IMPROVED BLEND ===== */
.hero-bg::after {
  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255,255,255,0.85) 25%,
    rgba(255,255,255,0.4) 55%,
    rgba(250,249,245,0.15) 75%,
    rgba(246,51,154,0.05) 100%
  );
}
.hero-bg::before {
  background: linear-gradient(transparent 60%, var(--warm-white));
  height: 160px;
}

/* Highlight the referral-form footer link */
.footer-referral-callout {
  background: linear-gradient(135deg, rgba(246,51,154,0.06), rgba(152,16,250,0.06));
  border: 1px solid rgba(152,16,250,0.15);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 20px;
}
.footer-referral-callout h4 {
  color: #fff !important;
  font-size: 0.9rem !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  margin-bottom: 6px !important;
}
.footer-referral-callout p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin-bottom: 12px;
}
.footer-referral-callout a.ref-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 50px;
  background: var(--gradient); color: #fff;
  font-size: 0.82rem; font-weight: 600;
  transition: transform 0.2s;
}
.footer-referral-callout a.ref-btn:hover { transform: translateY(-1px); }

/* ===== TIMELINE COMPONENT ===== */
.timeline-list {
  display: flex; flex-direction: column; gap: 24px;
  max-width: 760px; margin: 0 auto;
  position: relative;
}
.timeline-list::before {
  content: ''; position: absolute;
  left: 23px; top: 24px; bottom: 24px;
  width: 2px; background: linear-gradient(180deg, var(--pink-bright), var(--purple));
  opacity: 0.2;
}
.timeline-item {
  display: flex; gap: 24px; align-items: flex-start;
  position: relative; z-index: 1;
}
.timeline-marker {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 4px 16px rgba(230,0,118,0.25);
}
.timeline-body {
  background: #fff; padding: 20px 24px;
  border-radius: var(--radius-lg); flex: 1;
  box-shadow: var(--shadow-sm); border: 1px solid #f1f5f9;
}
.timeline-time {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--pink); margin-bottom: 4px;
}
.timeline-body h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.timeline-body p { font-size: 0.92rem; color: var(--navy-soft); line-height: 1.6; }
@media (max-width: 600px) {
  .timeline-list::before { left: 19px; }
  .timeline-marker { width: 40px; height: 40px; }
  .timeline-marker .svg-icon { width: 14px; height: 14px; }
}

/* ===== VERIFY GRID ===== */
.verify-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 1024px) { .verify-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .verify-grid { grid-template-columns: 1fr; } }
.verify-item {
  padding: 24px; background: #fff; border-radius: var(--radius-lg);
  border: 1px solid #f1f5f9; box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}
.verify-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.verify-num {
  font-size: 1.6rem; font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px; line-height: 1;
}
.verify-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.verify-item p { font-size: 0.82rem; color: var(--navy-soft); line-height: 1.5; }

/* ===== RIGHTS GRID ===== */
.rights-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .rights-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .rights-grid { grid-template-columns: 1fr; } }
.rights-item {
  padding: 24px; background: #fff; border-radius: var(--radius-lg);
  border: 1px solid #f1f5f9; box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.rights-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rights-item .icon-badge { margin-bottom: 14px; }
.rights-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.rights-item p { font-size: 0.88rem; color: var(--navy-soft); line-height: 1.6; }

/* ===== COMMUNITY MOMENTS GALLERY ===== */
.community-gallery {
  padding: 100px 0; background: #fff;
}
.community-gallery .section-header { text-align: center; margin-bottom: 56px; }
.community-gallery .section-subtitle { margin: 0 auto; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 20px;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 240px); }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 260px); }
}
.gallery-item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,23,43,0.6));
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-caption {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  color: #fff; font-size: 0.92rem; font-weight: 600;
  opacity: 0; transform: translateY(8px);
  transition: all 0.3s; z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }
.gallery-tall { grid-row: span 2; }
@media (max-width: 900px) {
  .gallery-tall { grid-row: span 1; }
}

/* ===== PHOTO SPLIT VISUAL (replaces emoji split-visual for some pages) ===== */
.photo-visual {
  position: relative; border-radius: 24px 80px 24px 24px;
  overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg); max-width: 460px;
  margin: 0 auto;
}
.photo-visual.shape-b { border-radius: 80px 24px 24px 80px; }
.photo-visual.shape-c { border-radius: 24px 24px 80px 24px; }
.photo-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.photo-visual:hover img { transform: scale(1.03); }
.photo-visual::before {
  content: ''; position: absolute; bottom: -30px; left: -30px;
  width: 140px; height: 140px; border-radius: 50%;
  background: var(--gradient); opacity: 0.18; z-index: -1;
  filter: blur(30px);
}

/* Photo hero section (for participants/families page heroes) */
.photo-hero {
  padding: 120px 0 60px; position: relative; overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--warm-white) 100%);
}
.photo-hero .container {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 900px) { .photo-hero .container { grid-template-columns: 1fr; gap: 40px; } }
.photo-hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.2rem); font-weight: 800;
  line-height: 1.15; margin-bottom: 20px;
}
.photo-hero p.lede {
  font-size: 1.15rem; color: var(--navy-soft);
  line-height: 1.7; margin-bottom: 28px;
}

/* ===== COOKIE CONSENT BANNER ===== */
#sm-cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 820px; margin: 0 auto;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(15,23,43,0.18);
  border: 1px solid rgba(0,0,0,0.06);
  z-index: 1005; padding: 20px 24px;
  animation: smCookieSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes smCookieSlideUp { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.sm-cookie-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
}
.sm-cookie-text strong { font-size: 0.98rem; font-weight: 700; display: block; margin-bottom: 4px; color: var(--navy); }
.sm-cookie-text p { font-size: 0.86rem; color: var(--navy-soft); line-height: 1.6; }
.sm-cookie-text a { color: var(--pink); font-weight: 500; text-decoration: underline; }
.sm-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.sm-cookie-actions .btn { padding: 10px 20px; font-size: 0.88rem; }
@media (max-width: 700px) {
  #sm-cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px 18px; }
  .sm-cookie-inner { grid-template-columns: 1fr; gap: 14px; }
  .sm-cookie-actions { justify-content: stretch; }
  .sm-cookie-actions .btn { flex: 1; }
}

/* ===== FOOTER LEGAL ROW ===== */
.footer-legal-row {
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
  padding: 20px 0 0; margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-legal-row a {
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-legal-row a:hover { color: #fff; }

/* ===== VIDEO EMBED BLOCK ===== */
.video-block {
  padding: 100px 0;
  background: var(--warm-white);
  position: relative;
}
.video-block .section-header { margin-bottom: 48px; }
.video-block .section-subtitle { margin: 0 auto; max-width: 600px; }
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(15,23,43,0.15);
  background: var(--navy);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}
@media (max-width: 768px) {
  .video-block { padding: 70px 0; }
}
