/* Helping Heroes – Light continuous background, high contrast text, no heavy boxes */

:root {
  --primary: #0063A5;
  --primary-dark: #004D82;
  --accent: #0088CC;
  --navy: #1A2B3C;
  --text: #1A2332;
  --text-muted: #4A5A6A;
  --bg: #F0F4F8;
  --bg-soft: #E8EEF4;
  --border: rgba(26, 43, 60, 0.1);
  --radius: 10px;
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }

/* Rich multi-shade atmospheric background – inspired by hero */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(0,99,165,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 20%, rgba(0,160,210,0.09) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(26,43,60,0.06) 0%, transparent 50%),
    linear-gradient(165deg, #E8F0F7 0%, #F0F5FA 35%, #E6EEF5 70%, #F2F6FA 100%);
  z-index: -1;
  pointer-events: none;
}

/* Subtle animated colour wash (very gentle) */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 30% at 70% 60%, rgba(0,99,165,0.04) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* ========== HEADER ========== */
.site-header {
  position: relative;
  z-index: 100;
  background: transparent;
  padding: 1.1rem 0 0.7rem;
}
.header-top {
  max-width: 1200px; margin: 0 auto; padding: 0 1.75rem 0.45rem;
  text-align: center;
}
.logo { display: inline-block; }
.logo img {
  height: 100px; width: auto; margin: 0 auto;
  filter: none; /* original logo colours */
}

.header-bottom {
  max-width: 1200px; margin: 0 auto; padding: 0.35rem 1.75rem 0.7rem;
  display: flex; align-items: center; justify-content: center; gap: 1.4rem;
  flex-wrap: wrap;
}
.nav { display: flex; align-items: center; gap: 0.1rem; justify-content: center; }
.nav a {
  padding: 0.55rem 1.15rem; font-size: 0.95rem; font-weight: 600;
  color: var(--navy); border-radius: 50px; white-space: nowrap;
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
}
.nav a:hover {
  color: var(--primary); background: rgba(0,99,165,0.1);
  border-color: rgba(0,99,165,0.25);
}
.nav a.active {
  color: white; background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(0,99,165,0.3);
}

.header-cta { display: flex; align-items: center; gap: 0.65rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.75rem 1.5rem; font-size: 0.95rem; font-weight: 600;
  border-radius: 50px; border: none; cursor: pointer;
  transition: all var(--transition); text-decoration: none; line-height: 1.2;
}
.btn-primary {
  background: var(--primary); color: white;
  box-shadow: 0 4px 16px rgba(0,99,165,0.3);
}
.btn-primary:hover {
  background: var(--primary-dark); color: white;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: white; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-phone {
  background: var(--navy); color: white; font-weight: 600;
  border-radius: 50px;
}
.btn-phone:hover { background: #243447; color: white; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--navy); }
.menu-toggle svg { width: 26px; height: 26px; }

/* ========== HERO – keeps richer treatment ========== */
.hero {
  position: relative; color: white;
  min-height: 75vh; display: flex; align-items: center;
  padding: 2.5rem 1.75rem 3.5rem; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: #0F1C2A;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  opacity: 0.55; filter: brightness(0.65) contrast(1.15) saturate(1.1);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(10,20,35,0.55) 0%,
    rgba(10,25,45,0.35) 40%,
    rgba(10,20,35,0.8) 100%);
}
.hero-inner {
  max-width: 1000px; margin: 0 auto; position: relative; z-index: 2;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  padding: 0.4rem 1.15rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 1.4rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem); font-weight: 700;
  line-height: 1.12; letter-spacing: -0.035em;
  max-width: 860px; margin: 0 auto 1.15rem;
}
.hero h1 span { color: #7DD3FC; }
.hero p {
  font-size: 1.15rem; opacity: 0.9; max-width: 560px;
  margin: 0 auto 2.1rem; line-height: 1.7;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin-bottom: 1.9rem;
}
.hero .btn-primary {
  background: white; color: var(--navy);
}
.hero .btn-primary:hover { background: #F0F7FC; color: var(--navy); }
.hero .btn-outline {
  border-color: rgba(255,255,255,0.5); color: white;
}
.hero .btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; color: white; }

.audience-paths {
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center;
}
.audience-path {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  padding: 0.65rem 1.25rem; border-radius: 50px; color: white;
  font-size: 0.92rem; font-weight: 500;
  transition: all var(--transition); display: inline-flex; align-items: center; gap: 0.45rem;
}
.audience-path:hover { background: rgba(255,255,255,0.16); color: white; }
.audience-path svg { width: 17px; height: 17px; }

/* ========== IMPACT ========== */
.impact-bar {
  background: linear-gradient(90deg, rgba(0,99,165,0.06) 0%, rgba(0,160,210,0.05) 50%, rgba(0,99,165,0.06) 100%);
  border-top: 1px solid rgba(0,99,165,0.12);
  border-bottom: 1px solid rgba(0,99,165,0.12);
  padding: 2.3rem 1.75rem;
}
.impact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; text-align: center;
}
.impact-item strong {
  display: block; font-size: 2rem; font-weight: 700;
  letter-spacing: -0.03em; margin-bottom: 0.2rem; color: var(--primary);
}
.impact-item span { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }

/* ========== SECTIONS ========== */
.section { padding: 3.4rem 1.75rem; background: transparent; position: relative; }
.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(0,99,165,0.03) 0%, transparent 40%, rgba(0,99,165,0.02) 100%);
}
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 2.4rem; }
.section-header h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem); font-weight: 700; color: var(--navy);
  letter-spacing: -0.03em; margin-bottom: 0.65rem;
}
.section-header p { color: var(--text-muted); font-size: 1.08rem; }
.section-alt { background: transparent; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3.2rem; align-items: center; }
.about-content h2 { font-size: 1.9rem; color: var(--navy); margin-bottom: 1rem; letter-spacing: -0.025em; }
.about-content p { margin-bottom: 0.95rem; color: var(--text-muted); font-size: 1.05rem; }
.about-visual {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 12px 36px rgba(26,43,60,0.1);
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.mission-card {
  background: linear-gradient(135deg, rgba(0,99,165,0.08) 0%, rgba(0,160,210,0.06) 100%);
  border-left: 4px solid var(--primary);
  border-radius: 0 10px 10px 0;
  padding: 1.5rem 1.7rem;
  margin-top: 1.4rem;
}
.mission-card h3 { font-size: 0.78rem; color: var(--primary); margin-bottom: 0.45rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.mission-card p { color: var(--text); font-size: 1.05rem; line-height: 1.65; margin: 0; }

/* PROCESS */
.process-track {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; position: relative;
}
.process-track::before {
  content: ''; position: absolute; top: 34px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,99,165,0.35), transparent); z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 68px; height: 68px; margin: 0 auto 1rem;
  background: rgba(0,99,165,0.08); border: 1.5px solid var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700; color: var(--primary);
  transition: all var(--transition);
}
.process-step:hover .process-num {
  background: var(--primary); color: white; transform: scale(1.05);
}
.process-step h3 { font-size: 1.02rem; color: var(--navy); margin-bottom: 0.35rem; font-weight: 600; }
.process-step p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.5; max-width: 160px; margin: 0 auto; }

/* WHY / LEADERSHIP – open, no boxes */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, transparent 100%);
  border: none;
  border-top: 3px solid rgba(0,99,165,0.35);
  border-radius: 0 0 8px 8px;
  padding: 1.5rem 0.8rem 1rem;
  text-align: left;
  transition: all var(--transition);
}
.why-card:hover {
  border-top-color: var(--primary);
  background: linear-gradient(180deg, rgba(0,99,165,0.07) 0%, transparent 100%);
}
.why-icon {
  width: 48px; height: 48px; margin-bottom: 0.95rem;
  background: rgba(0,99,165,0.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--primary);
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 1.12rem; color: var(--navy); margin-bottom: 0.4rem; }
.why-card p { font-size: 0.95rem; color: var(--text-muted); }

/* STORIES */
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.story-card {
  background: transparent;
  border: none;
  border-left: 3px solid var(--primary);
  border-radius: 0;
  padding: 0.2rem 0 0.2rem 1.3rem;
  transition: border-color var(--transition);
}
.story-card:hover { border-left-color: var(--accent); }
.story-quote { font-size: 1.02rem; color: var(--text); line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
.story-meta { display: flex; align-items: center; gap: 0.7rem; }
.story-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,99,165,0.1);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--primary); font-size: 0.9rem;
}
.story-meta strong { display: block; font-size: 0.92rem; color: var(--navy); }
.story-meta span { font-size: 0.8rem; color: var(--text-muted); }

/* TRUST */
.trust-bar {
  background: var(--navy);
  color: white; padding: 2.5rem 1.75rem; text-align: center;
}
.trust-inner { max-width: 960px; margin: 0 auto; }
.trust-bar h3 { font-size: 1.2rem; margin-bottom: 1.2rem; font-weight: 600; }
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem; }
.trust-badge {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  padding: 0.55rem 1.15rem; border-radius: 50px; font-size: 0.86rem; font-weight: 500;
}

/* LOCATIONS */
.locations-box {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px; padding: 2.6rem; text-align: center;
}
.locations-box h2 { font-size: 1.7rem; margin-bottom: 0.85rem; color: var(--navy); }
.locations-box p { color: var(--text-muted); max-width: 700px; margin: 0 auto 1.3rem; line-height: 1.7; }
.team-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.team-list span {
  background: rgba(0,99,165,0.07); padding: 0.35rem 0.95rem; border-radius: 50px;
  font-size: 0.84rem; font-weight: 500; color: var(--text-muted);
}

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; padding: 1.1rem 0; background: none; border: none;
  font-family: inherit; font-size: 1.05rem; font-weight: 600; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q:hover { color: var(--primary); }
.faq-q svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--transition); color: var(--text-muted); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  padding: 0; color: var(--text-muted); font-size: 0.98rem;
}
.faq-item.open .faq-a { max-height: 280px; padding-bottom: 1.15rem; }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(145deg, #0F1C2A 0%, #0A3D6B 45%, #0063A5 100%);
  color: white; padding: 3.2rem 1.75rem 2.8rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(0,160,210,0.25) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero h1 { color: white !important; }
.page-hero p { color: rgba(255,255,255,0.9) !important; }
.page-hero .breadcrumb, .page-hero .breadcrumb a { color: rgba(255,255,255,0.7) !important; }
.page-hero .breadcrumb a:hover { color: white !important; }
.page-hero-inner { max-width: 780px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.9rem, 3.8vw, 2.6rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 0.55rem; color: var(--navy); }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }
.breadcrumb { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 0.85rem; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }

/* CONTENT */
.content-section { padding: 3rem 1.75rem; }
.content-inner { max-width: 780px; margin: 0 auto; }
.content-inner h2 { font-size: 1.35rem; color: var(--navy); margin: 1.7rem 0 0.75rem; }
.content-inner p { margin-bottom: 1.05rem; color: var(--text-muted); font-size: 1.05rem; }
.content-inner ul { margin: 1.05rem 0 1.3rem 1.1rem; }
.content-inner ul li { position: relative; padding-left: 1.1rem; margin-bottom: 0.6rem; color: var(--text-muted); }
.content-inner ul li::before {
  content: ''; position: absolute; left: 0; top: 0.55rem; width: 5px; height: 5px;
  background: var(--primary); border-radius: 50%;
}

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 2.8rem; align-items: start; }
.contact-info h2 { font-size: 1.4rem; color: var(--navy); margin-bottom: 0.85rem; }
.contact-info p { color: var(--text-muted); margin-bottom: 1.3rem; }
.contact-detail { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.95rem; font-size: 1.02rem; }
.contact-detail svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.contact-detail a { font-weight: 600; color: var(--navy); }
.form-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 1.9rem;
}
.form-group { margin-bottom: 1.05rem; }
.form-group label { display: block; font-size: 0.86rem; font-weight: 600; color: var(--navy); margin-bottom: 0.3rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 1rem; color: var(--text);
  background: rgba(255,255,255,0.7);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.75rem; }
.form-success {
  display: none; background: #E6F6ED; color: #2F855A;
  padding: 0.9rem 1.1rem; border-radius: 8px; margin-bottom: 1rem; font-weight: 500;
}

/* RESOURCES */
.resources-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.3rem; }
.resource-card {
  background: transparent;
  border: none;
  border-top: 2px solid rgba(0,99,165,0.25);
  border-radius: 0;
  padding: 1.25rem 0.15rem 0.7rem;
  transition: border-color var(--transition);
  display: flex; flex-direction: column;
}
.resource-card:hover { border-top-color: var(--primary); }
.resource-logo {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 0.55rem;
}
.resource-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.35rem; }
.resource-card p { font-size: 0.9rem; color: var(--text-muted); flex-grow: 1; margin-bottom: 0.75rem; }
.resource-card a { font-weight: 600; font-size: 0.9rem; }

/* SERVICES blocks */
.service-block {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.4rem; align-items: center;
  padding: 2.6rem 0;
  border-bottom: 1px solid var(--border);
}
.service-block:nth-child(even) { direction: rtl; }
.service-block:nth-child(even) > * { direction: ltr; }
.service-block:last-child { border-bottom: none; }
.service-block-content h2 {
  font-size: 1.5rem; color: var(--navy); font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.service-block-content p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.7; margin-bottom: 1.2rem; }
.service-block-photo {
  border-radius: 10px; overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 10px 30px rgba(26,43,60,0.08);
}
.service-block-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-block:hover .service-block-photo img { transform: scale(1.03); }

/* FOOTER */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75); padding: 3.4rem 1.75rem 1.7rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.1rem; margin-bottom: 2.1rem; }
.footer-brand p { font-size: 0.9rem; opacity: 0.8; margin-top: 0.65rem; max-width: 260px; line-height: 1.6; }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: white; margin-bottom: 0.85rem; font-weight: 600; }
.footer-col a { display: block; color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 0.4rem; transition: color var(--transition); }
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.35rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem; font-size: 0.84rem; opacity: 0.65;
}
.acknowledgment {
  max-width: 1100px; margin: 0 auto 1.25rem; font-size: 0.84rem; opacity: 0.55; line-height: 1.6; text-align: center;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .process-track { grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
  .process-track::before { display: none; }
  .stories-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .impact-inner { grid-template-columns: repeat(2, 1fr); }
  .service-block { grid-template-columns: 1fr; gap: 1.3rem; }
  .service-block:nth-child(even) { direction: ltr; }
}
@media (max-width: 960px) {
  .header-bottom { justify-content: space-between; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(240,244,248,0.98); flex-direction: column; padding: 1rem;
    border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.8rem 1.1rem; width: 100%; color: var(--text); }
  .menu-toggle { display: block; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.7rem; }
  .logo img { height: 80px; }
}
@media (max-width: 640px) {
  .hero { min-height: 68vh; padding: 2.2rem 1.3rem 2.8rem; }
  .section { padding: 2.6rem 1.3rem; }
  .process-track, .stories-grid, .why-grid, .impact-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .logo img { height: 70px; }
  .audience-paths { flex-direction: column; align-items: center; }
}

/* Services page hero – match the rich home energy */
.services-hero {
  background: linear-gradient(145deg, #0F1C2A 0%, #0A3D6B 45%, #0063A5 100%) !important;
  color: white !important;
  text-align: center;
  padding: 3.2rem 1.75rem 2.8rem !important;
  position: relative;
  overflow: hidden;
}
.services-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(0,160,210,0.25) 0%, transparent 55%);
  pointer-events: none;
}
.services-hero h1 { color: white !important; }
.services-hero p { color: rgba(255,255,255,0.9) !important; }

/* ========== IDEWAVE-INSPIRED LAYER ========== */

/* Monospaced bracketed labels */
.label-mono {
  display: inline-block;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', 'Liberation Mono', Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.9rem;
  opacity: 0.9;
}
.label-mono::before { content: '[ '; }
.label-mono::after { content: ' ]'; }

/* Hero badge becomes mono style */
.hero-badge {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace !important;
  letter-spacing: 0.12em !important;
  font-size: 0.7rem !important;
}

/* Stronger display typography */
.section-header h2,
.about-content h2,
.page-hero h1 {
  letter-spacing: -0.04em;
}

/* Cinematic reveal states */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Line-style text reveal for headings */
.reveal-line {
  overflow: hidden;
}
.reveal-line > span {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-line.visible > span {
  opacity: 1;
  transform: translateY(0);
}

/* Magnetic / elevated CTA feel */
.btn-primary, .btn-outline, .btn-phone {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,99,165,0.4);
}

/* Section divider with mono label style */
.section-label {
  text-align: center;
  margin-bottom: 1.2rem;
}
.section-label .label-mono {
  margin-bottom: 0;
}

/* Subtle horizontal rule with colour */
.rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,99,165,0.35), transparent);
  margin: 2.5rem auto;
  max-width: 120px;
}

/* Soft parallax feel on photos */
.service-block-photo,
.about-visual {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-block:hover .service-block-photo {
  transform: scale(1.02) translateY(-4px);
}

/* ========== TEAM GRID (equal cards – fixes Jess layout) ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  max-width: 920px;
  margin: 0 auto;
}
.team-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.25) 100%);
  border: 1px solid rgba(0,99,165,0.12);
  border-radius: 12px;
  padding: 1.6rem 1.5rem 1.4rem;
  text-align: left;
  transition: all 0.35s ease;
}
.team-card:hover {
  border-color: rgba(0,99,165,0.3);
  box-shadow: 0 10px 30px rgba(0,99,165,0.08);
  transform: translateY(-3px);
}
.team-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0063A5 0%, #0A3D6B 100%);
  color: white;
  font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.team-card h3 {
  font-size: 1.15rem; color: var(--navy); margin-bottom: 0.25rem;
}
.team-role {
  color: var(--primary) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  margin-bottom: 0.75rem !important;
}
.team-card p {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.6;
}

@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* Subheading interest on content pages */
.content-inner h2,
.service-block-content h2 {
  position: relative;
  padding-bottom: 0.55rem;
}
.content-inner h2::after,
.service-block-content h2::after {
  content: '';
  display: block;
  width: 36px; height: 3px;
  background: linear-gradient(90deg, var(--primary), #4FC3F7);
  border-radius: 2px;
  margin-top: 0.55rem;
}

/* ========== CONTRASTING HEADING BOXES + ANIMATION ========== */

/* Page hero headings – glass box */
.page-hero h1,
.services-hero h1 {
  display: inline-block;
  background: rgba(10, 20, 35, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 0.75rem 1.6rem 0.85rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  animation: headingBoxIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.page-hero p,
.services-hero p {
  display: inline-block;
  background: rgba(10, 20, 35, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  margin-top: 0.6rem;
  animation: headingBoxIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

/* Home hero h1 – subtle box for tighter feel */
.hero h1 {
  display: inline-block;
  background: rgba(8, 16, 28, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 0.85rem 1.8rem 1rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  animation: headingBoxIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.hero p {
  display: inline-block;
  background: rgba(8, 16, 28, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 0.65rem 1.3rem;
  animation: headingBoxIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

/* Section headers – light contrasting box on light pages */
.section-header h2 {
  display: inline-block;
  background: linear-gradient(135deg, #0A3D6B 0%, #0063A5 100%);
  color: #fff !important;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 1.4rem 0.65rem;
  box-shadow: 0 6px 24px rgba(0,99,165,0.25);
  animation: headingBoxIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Content page h2 – accent box */
.content-inner h2 {
  display: inline-block;
  background: linear-gradient(135deg, #0A3D6B 0%, #0063A5 100%);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 0.45rem 1.15rem 0.5rem;
  box-shadow: 0 4px 16px rgba(0,99,165,0.2);
  animation: headingBoxIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.content-inner h2::after { display: none; } /* remove old underline – box replaces it */

/* Service block headings */
.service-block-content h2 {
  display: inline-block;
  background: linear-gradient(135deg, #0A3D6B 0%, #0063A5 100%);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.2rem;
  box-shadow: 0 6px 20px rgba(0,99,165,0.22);
  animation: headingBoxIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.service-block-content h2::after { display: none; }

/* Keyframe */
@keyframes headingBoxIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Stagger children in section headers */
.section-header .label-mono {
  animation: headingBoxIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.section-header p {
  animation: headingBoxIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}


/* Final override: no white heading boxes */
.section-header h2,
.service-block-content h2,
.content-inner h2 {
  background: linear-gradient(135deg, #0A3D6B 0%, #0063A5 100%) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 6px 22px rgba(0,99,165,0.22) !important;
}
.section-header h2::after,
.service-block-content h2::after,
.content-inner h2::after {
  display: none !important;
}


/* —— Story film (landscape, full portrait visible, slightly larger) —— */
.story-film-section {
  display: flex;
  justify-content: center;
  padding: 1.5rem 1rem 0.75rem;
  background: transparent;
}
.story-film-inner {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 720px;
}
.story-film-frame {
  position: relative;
  width: min(560px, 92vw);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(47, 127, 214, 0.4);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
  background: #0a1628;
}
.story-film-frame--landscape {
  aspect-ratio: 16 / 9;
  width: min(640px, 94vw);
}
.story-film-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain; /* never crop top/bottom */
  background: #0a1628;
}
.story-film-tap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  background: rgba(6, 16, 24, 0.55);
  color: #f2f7ff;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}
.story-film-tap[hidden] {
  display: none !important;
}
.story-film-tap-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: #2f7fd6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 8px 20px rgba(47, 127, 214, 0.4);
}
