/* ===================================================================
   SYNERGISTIC OUTCOMES — Shared Stylesheet
   synout.co.za | Strategy • Performance • Results
   =================================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --navy: #1F3A5F;
  --navy-deep: #142840;
  --red: #C8102E;
  --orange: #E87722;
  --blue: #4A90B8;
  --grey: #4A4A4A;
  --grey-light: #8A8A8A;
  --grey-soft: #F2F0EC;
  --cream: #FAF9F7;
  --white: #FEFEFE;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  --amber: #C4923A;
  --off-white: #F2F0EC;
  --max-width: 1160px;
  --section-pad: clamp(4.5rem, 8vw, 8rem);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--grey); line-height: 1.65; font-size: clamp(0.95rem, 1.1vw, 1.05rem); background: var(--cream); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--orange); }

/* ===== UTILITIES ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--section-pad) 0; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.section-tag::before { content: ''; width: 20px; height: 2px; background: currentColor; }

/* ===== NAVIGATION ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(31,58,95,0.08); transition: box-shadow 0.3s; }
.nav.scrolled { box-shadow: 0 2px 20px rgba(31,58,95,0.1); }
.nav-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 0; }
.nav-logo img { height: 60px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--navy); letter-spacing: 0.03em; position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--amber, #C4923A); transition: width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { background: var(--red); color: var(--white) !important; padding: 10px 24px; border-radius: 4px; border: 1.5px solid var(--red); font-weight: 600; font-size: 14px; letter-spacing: 0.03em; transition: background 0.3s, transform 0.2s; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--navy); color: var(--white) !important; border-color: var(--navy); }

/* Desktop mega-menu dropdowns — Base44-inspired */
.nav-links > li { position: relative; }
.nav-links > li > a .dd-arrow { display: inline-block; margin-left: 4px; font-size: 10px; transition: transform 0.3s; }
.nav-links > li:hover > a .dd-arrow { transform: rotate(180deg); }
.nav-dropdown { display: none; position: absolute; top: 100%; padding-top: 8px; left: 50%; transform: translateX(-50%) translateY(8px); min-width: 300px; background: var(--white); border-radius: 8px; box-shadow: 0 16px 48px rgba(31,58,95,0.18), 0 0 0 1px rgba(31,58,95,0.04); padding: 20px 0; z-index: 110; opacity: 0; transition: opacity 0.3s, transform 0.3s; }
.nav-dropdown.wide { min-width: 580px; }
.nav-links > li:hover .nav-dropdown { display: block; opacity: 1; transform: translateX(-50%) translateY(0); }
.nav-dropdown::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 16px; height: 8px; background: var(--white); clip-path: polygon(50% 0%, 0% 100%, 100% 100%); }
.dd-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.dd-column { padding: 0 8px; }
.dd-column:not(:last-child) { border-right: 1px solid rgba(31,58,95,0.06); }
.nav-dropdown .dd-section { padding: 12px 20px 6px; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #888; }
.nav-dropdown a { display: block; padding: 7px 20px; font-size: 13.5px; font-weight: 500; color: var(--grey); line-height: 1.4; border-radius: 6px; margin: 1px 8px; transition: all 0.2s; }
.nav-dropdown a::after { display: none !important; }
.nav-dropdown a:hover { background: var(--cream); color: var(--red); }
.nav-dropdown .dd-overview { font-weight: 700; color: var(--navy); padding: 10px 20px 14px; margin: 0 8px 8px; border-bottom: 1px solid rgba(31,58,95,0.06); border-radius: 0; font-size: 14px; }
.nav-dropdown .dd-overview:hover { background: transparent; color: var(--red); }
.nav-dropdown .dd-viewall { font-weight: 700; color: var(--orange); padding: 12px 20px 8px; margin-top: 8px; border-top: 1px solid rgba(31,58,95,0.06); font-size: 13px; border-radius: 0; }
.nav-dropdown .dd-viewall:hover { color: var(--red); background: transparent; }
.nav-dropdown .dd-viewall svg { display: inline; vertical-align: middle; margin-left: 4px; }
.nav-dropdown .dd-divider { height: 1px; background: rgba(31,58,95,0.06); margin: 6px 20px; }

/* Tailored Tools nav item */
.nav-links .nav-tools { position: relative; }
.nav-links .nav-tools > a { color: var(--orange) !important; }
.nav-links .nav-tools > a::after { background: var(--orange) !important; }

/* Mobile nav */
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: all 0.3s; }
.nav-mobile { display: none !important; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 99; max-height: calc(100vh - 72px); overflow-y: auto; }
.nav-mobile.open { display: block; }
.nav-mobile a { display: block; padding: 14px 24px; font-size: 15px; font-weight: 600; color: var(--navy); border-bottom: 1px solid rgba(31,58,95,0.06); }
.nav-mobile a:hover { background: var(--cream); color: var(--red); }
.nav-mobile .mobile-section-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey-light); padding: 16px 24px 6px; }
.nav-mobile .nav-cta { display: block; margin: 16px 24px; text-align: center; border-radius: 6px; }

/* ===== PAGE HEADER ===== */
.page-header { margin-top: 72px; padding: 60px 0 40px; background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%); position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; top: -50%; right: -20%; width: 60%; height: 200%; background: radial-gradient(ellipse, rgba(232,119,34,0.06), transparent 70%); }
.page-header-inner { position: relative; z-index: 2; max-width: 680px; }
.page-header h1 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: clamp(30px, 3.8vw, 48px); color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.page-header p { font-size: 18px; color: rgba(255,255,255,0.75); line-height: 1.7; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--orange); }

/* ===== HERO (homepage) ===== */
.hero { margin-top: 72px; min-height: calc(100vh - 72px); display: flex; align-items: center; background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #2A5080 100%); position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 200%; background: radial-gradient(ellipse, rgba(232,119,34,0.08) 0%, transparent 70%); }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 120px; background: linear-gradient(to top, rgba(20,40,64,0.4), transparent); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; /* legacy grid */ align-items: center; position: relative; z-index: 2; padding: 80px 0; }
.hero-content { color: var(--white); }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 24px; opacity: 0; animation: fadeUp 0.8s 0.3s forwards; }
.hero-tag::before { content: ''; width: 24px; height: 2px; background: var(--orange); }
.hero h1 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: clamp(36px, 4.5vw, 56px); line-height: 1.15; color: var(--white); margin-bottom: 24px; opacity: 0; animation: fadeUp 0.8s 0.5s forwards; }
.hero h1 em { font-style: italic; color: var(--orange); }
.hero-sub { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.65); font-weight: 300; max-width: 520px; margin-bottom: 40px; opacity: 0; animation: fadeUp 0.8s 0.7s forwards; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 0.9s forwards; }
.hero-image { position: relative; opacity: 0; animation: fadeUp 0.8s 0.6s forwards; }
.hero-image img { border-radius: 8px; box-shadow: 0 24px 64px rgba(0,0,0,0.3); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.hero-image-badge { position: absolute; bottom: -20px; left: -20px; background: var(--white); border-radius: 8px; padding: 16px 20px; box-shadow: 0 8px 32px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 12px; }
.hero-image-badge .badge-num { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 32px; color: var(--red); }
.hero-image-badge .badge-text { font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.3; }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: var(--white); padding: 14px 32px; border-radius: 4px; font-weight: 600; font-size: 16px; transition: all 0.3s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--white); padding: 14px 32px; border-radius: 6px; font-weight: 600; font-size: 16px; border: 2px solid rgba(255,255,255,0.3); transition: all 0.3s; }
.btn-secondary:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.08); }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--cream); border-top: none; border-bottom: 1px solid rgba(31,58,95,0.06); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-num { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 36px; color: var(--red); line-height: 1; }
.stat-label { font-size: 0.75rem; font-weight: 500; color: var(--navy); margin-top: 8px; letter-spacing: 0.1em; text-transform: uppercase; }

/* ===== SECTION HEADINGS ===== */
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: clamp(28px, 3.2vw, 42px); color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-head p { font-size: 18px; color: var(--grey-light); line-height: 1.7; }

/* ===== PRACTICE CARDS ===== */
.practice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.practice-card { background: var(--cream); border-radius: 8px; padding: 40px 32px; border: 1px solid rgba(31,58,95,0.06); transition: all 0.4s; position: relative; overflow: hidden; }
.practice-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--amber, var(--orange)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.practice-card:hover { transform: translateY(-4px); box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.practice-card:hover::before { transform: scaleX(1); }
.practice-icon { width: 56px; height: 56px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 24px; }
.practice-icon.strategy { background: rgba(31,58,95,0.08); color: var(--navy); }
.practice-icon.learning { background: rgba(200,16,46,0.08); color: var(--red); }
.practice-icon.assessments { background: rgba(232,119,34,0.08); color: var(--orange); }
.practice-card h3 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 22px; color: var(--navy); margin-bottom: 12px; }
.practice-card p { font-size: 15px; line-height: 1.7; color: var(--grey); margin-bottom: 20px; }
.practice-link { font-size: 14px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 6px; letter-spacing: 0.03em; }
.practice-link svg { transition: transform 0.3s; }
.practice-card:hover .practice-link svg { transform: translateX(4px); }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card { background: var(--white); border-radius: 8px; padding: 36px 28px; border: 1px solid rgba(31,58,95,0.06); position: relative; transition: transform 0.3s, box-shadow 0.3s; }
.testi-card:hover { transform: translateY(-3px); box-shadow: 0 3px 10px rgba(0,0,0,0.04); }
.testi-quote-mark { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 64px; color: var(--red); line-height: 1; opacity: 0.15; position: absolute; top: 20px; left: 24px; }
.testi-text { font-family: var(--font-display); font-size: clamp(1rem, 1.6vw, 1.2rem); line-height: 1.55; color: #2A2A28; margin-bottom: 20px; font-style: italic; position: relative; z-index: 2; }
.testi-author { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--navy); }
.testi-role { font-size: 13px; color: var(--grey-light); }

/* ===== INSIGHTS CARDS ===== */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.insight-card { border-radius: 8px; border: 1px solid rgba(31,58,95,0.08); overflow: hidden; transition: all 0.3s; background: var(--white); }
.insight-card:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
.insight-tag { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.insight-tag.leadership { background: rgba(31,58,95,0.06); color: var(--navy); font-size: 0.68rem; letter-spacing: 0.12em; }
.insight-tag.team { background: rgba(200,16,46,0.08); color: var(--red); }
.insight-tag.culture { background: rgba(232,119,34,0.08); color: var(--orange); }
.insight-body { padding: 28px 24px; }
.insight-card h3 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 19px; color: var(--navy); line-height: 1.35; margin-bottom: 12px; }
.insight-card p { font-size: 14px; color: var(--grey-light); line-height: 1.6; margin-bottom: 16px; }
.insight-link { font-size: 13px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 6px; }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(200,16,46,0.08), transparent 60%); }
.cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: clamp(28px, 3.5vw, 44px); color: var(--white); margin-bottom: 20px; }
.cta-inner p { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.7; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.6); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo img { height: 36px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer h4 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 16px; color: var(--white); margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); opacity: 0.75; transition: opacity 0.3s; }
.footer-links a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: all 0.3s; color: rgba(255,255,255,0.6); }
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; opacity: 0.45; }

/* ===== SERVICE SECTION PAGES ===== */
.intro-grid { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.intro-content h2 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: clamp(24px,2.8vw,32px); color: var(--navy); margin-bottom: 20px; }
.intro-content p { font-size: 16px; margin-bottom: 16px; line-height: 1.8; }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 900px; }
.pain-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.7; padding: 16px; background: var(--white); border-radius: 8px; border: 1px solid rgba(31,58,95,0.06); }
.pain-item::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 8px; }
.service-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.service-card { display: block; padding: 28px 24px; background: var(--cream); border-radius: 8px; border: 1px solid rgba(31,58,95,0.06); transition: all 0.3s; color: var(--grey); }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.04); border-color: rgba(200,16,46,0.15); color: var(--grey); }
.service-card h4 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 14px; line-height: 1.65; margin-bottom: 12px; }
.card-link { font-size: 13px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 6px; }
.theme-title { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 18px; color: var(--orange); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid rgba(232,119,34,0.15); }
.theme-group { margin-bottom: 40px; }
.hww-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; position: relative; z-index: 2; }
.hww-item { padding: 28px 24px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; }
.hww-label { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 17px; color: var(--orange); margin-bottom: 8px; }
.hww-item p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; }
.outcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 900px; }
.outcome-item { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.7; }
.outcome-item::before { content: ''; width: 24px; height: 24px; border-radius: 50%; background: rgba(200,16,46,0.08); flex-shrink: 0; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23C8102E' stroke-width='2'%3E%3Cpath d='M3 7l3 3 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.section-testimonial { max-width: 720px; margin: 40px auto 0; text-align: center; padding: 48px 32px; background: var(--white); border-radius: 8px; border: 1px solid rgba(31,58,95,0.06); }
.tq { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 72px; color: var(--red); line-height: 1; opacity: 0.15; margin-bottom: -20px; }
.section-testimonial blockquote { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: clamp(18px,2vw,22px); color: var(--navy); line-height: 1.5; margin-bottom: 20px; font-style: italic; }
.section-testimonial cite { font-size: 0.8rem; color: var(--grey-light); font-style: normal; letter-spacing: 0.05em; text-transform: uppercase; }
.section-testimonial cite strong { color: var(--navy); display: block; font-size: 15px; }
.learner-quote { max-width: 720px; margin: 24px auto 0; padding: 24px 28px; background: var(--cream); border-radius: 8px; border-left: 4px solid var(--orange); display: flex; gap: 16px; align-items: flex-start; }
.lq-icon { flex-shrink: 0; margin-top: 4px; color: var(--orange); }
.learner-quote blockquote { font-size: 15px; color: var(--grey); line-height: 1.7; font-style: italic; }
.learner-quote cite { display: block; font-size: 13px; color: var(--grey-light); margin-top: 8px; font-style: normal; }

/* ===== INDIVIDUAL SERVICE PAGES ===== */
.svc-content { max-width: 780px; }
.svc-content h2 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: clamp(22px,2.5vw,28px); color: var(--navy); margin-bottom: 16px; }
.svc-content h3 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 20px; color: var(--red); margin-bottom: 12px; }
.svc-content p { font-size: 16px; margin-bottom: 14px; line-height: 1.8; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.svc-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.7; }
.svc-list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 9px; }
.svc-list.check li::before { width: 20px; height: 20px; border-radius: 50%; background: rgba(200,16,46,0.08); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23C8102E' stroke-width='2'%3E%3Cpath d='M2 6l3 3 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; margin-top: 3px; }
.duration-box { padding: 16px 20px; background: var(--cream); border-radius: 8px; border-left: 4px solid var(--orange); font-size: 15px; margin-bottom: 24px; }
.duration-box strong { color: var(--navy); }
.extension-note { padding: 20px 24px; background: rgba(31,58,95,0.03); border-radius: 8px; border: 1px solid rgba(31,58,95,0.06); font-size: 15px; font-style: italic; color: var(--grey); margin-top: 24px; display: flex; gap: 12px; align-items: flex-start; }
.extension-note strong { color: var(--navy); font-style: normal; }
.tools-section { margin: 24px 0; }
.tools-section h3 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.tools-section > p { font-size: 14px; color: var(--grey-light); margin-bottom: 16px; }
.tool-badge { display: flex; border: 1px solid rgba(31,58,95,0.1); border-radius: 8px; overflow: hidden; margin-bottom: 12px; }
.tool-label { background: var(--red); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; padding: 16px 14px; display: flex; align-items: center; justify-content: center; min-width: 60px; }
.tool-info { padding: 14px 18px; background: var(--cream); }
.tool-info strong { display: block; font-size: 15px; color: var(--navy); margin-bottom: 2px; }
.tool-info span { font-size: 13px; color: var(--grey-light); line-height: 1.5; }
.related-section { background: var(--cream); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.related-card { display: block; padding: 20px; background: var(--white); border-radius: 8px; border: 1px solid rgba(31,58,95,0.06); transition: all 0.3s; color: var(--grey); }
.related-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(31,58,95,0.08); color: var(--grey); }
.rc-section { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--grey-light); display: block; margin-bottom: 4px; }
.related-card h4 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 16px; color: var(--navy); }
.cta-bar { background: var(--navy-deep); text-align: center; padding: 48px 0; }
.cta-bar h2 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: clamp(22px,2.8vw,32px); color: var(--white); margin-bottom: 16px; }
.cta-bar p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ===== COOKIE BANNER ===== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy-deep); color: rgba(255,255,255,0.8); padding: 16px 24px; z-index: 200; display: none; align-items: center; justify-content: center; gap: 20px; font-size: 14px; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
.cookie-banner.show { display: flex; }
.cookie-banner a { color: var(--orange); }
.cookie-btn { background: var(--red); color: var(--white); border: none; padding: 8px 20px; border-radius: 4px; font-weight: 600; font-size: 13px; cursor: pointer; white-space: nowrap; }
.cookie-btn:hover { background: var(--orange); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0.15; transform: translateY(16px); transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ===== TAILORED TOOLS CALLOUT BLOCKS (on section pages) ===== */
.tools-callout { background: linear-gradient(135deg, #FEF7F0, #FFF9F5); border-radius: 16px; padding: 48px 40px; border: 1px solid rgba(232,119,34,0.12); margin-top: 48px; }
.tools-callout-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.tools-callout-tag svg { width: 18px; height: 18px; }
.tools-callout h3 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 24px; color: var(--navy); margin-bottom: 8px; }
.tools-callout > p { font-size: 15px; color: var(--grey); margin-bottom: 24px; }
.tools-callout-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tool-example { padding: 20px; background: var(--white); border-radius: 8px; border: 1px solid rgba(232,119,34,0.08); }
.tool-example-label { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.tool-example h4 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.tool-example p { font-size: 13px; color: var(--grey-light); line-height: 1.5; }
.tools-callout-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: 14px; font-weight: 700; color: var(--orange); }
.tools-callout-link:hover { color: var(--red); }

/* ===== TAILORED TOOLS HOMEPAGE SECTION ===== */
.tools-home { background: linear-gradient(135deg, #FEF7F0 0%, #FFFAF6 50%, var(--cream) 100%); position: relative; overflow: hidden; }
.tools-home::before { content: ''; position: absolute; right: 0; top: 0; width: 40%; height: 100%; background: radial-gradient(ellipse at 80% 50%, rgba(232,119,34,0.06), transparent 70%); }
.tools-home-inner { position: relative; z-index: 2; }
.tools-home .section-head h2 em { color: var(--orange); font-style: italic; }
.tools-home-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.tools-home-card { padding: 24px 20px; background: var(--white); border-radius: 8px; border: 1px solid rgba(232,119,34,0.08); transition: all 0.3s; }
.tools-home-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(232,119,34,0.1); }
.tools-home-card .thc-category { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); background: var(--orange); padding: 3px 10px; border-radius: 4px; display: inline-block; margin-bottom: 10px; }
.tools-home-card h4 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.tools-home-card p { font-size: 13px; color: var(--grey-light); line-height: 1.5; }
.tools-home-collab { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(232,119,34,0.12); }
.collab-item { text-align: center; }
.collab-item h4 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.collab-item p { font-size: 13px; color: var(--grey-light); line-height: 1.5; }

/* Scroll to top button */
.scroll-top { position: fixed; bottom: 32px; right: 32px; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 90; opacity: 0; transform: translateY(16px); transition: all 0.3s; box-shadow: 0 4px 16px rgba(31,58,95,0.2); }
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--red); transform: translateY(-2px); }

/* Page fade in */
body { animation: pageIn 0.4s ease-out; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }


/* ===== FULL-WIDTH HERO WITH BACKGROUND IMAGE ===== */
.hero-fullwidth {
  margin-top: 72px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--navy-deep);
}
.hero-fullwidth::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20,40,64,0.92) 0%,
    rgba(20,40,64,0.85) 30%,
    rgba(31,58,95,0.6) 65%,
    rgba(31,58,95,0.35) 100%
  );
  z-index: 1;
}
.hero-fullwidth::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(20,40,64,0.6), transparent);
  z-index: 1;
}
.hero-inner-full {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: clamp(80px, 12vw, 140px) 0;
  color: var(--white);
}
.hero-fullwidth .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber, #C4923A);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-fullwidth .hero-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--amber, #C4923A);
}
.hero-fullwidth h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero-fullwidth h1 em {
  font-style: italic;
  color: var(--amber, #C4923A);
}
.hero-fullwidth .hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-fullwidth .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-image { max-width: 560px; margin: 0 auto; }
  .hero-image-badge { left: auto; right: 20px; bottom: -16px; }
  .intro-grid { grid-template-columns: 1fr; }
  .hww-grid { grid-template-columns: 1fr; }
  .pain-grid, .outcome-grid { grid-template-columns: 1fr; }
  .practice-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .insights-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .service-cards { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cookie-banner { flex-direction: column; text-align: center; }
}

/* ===== PRINT ===== */
@media print {
  .nav, .footer, .cta-section, .cta-bar, .cookie-banner, .nav-mobile { display: none !important; }
  .page-header { margin-top: 0; background: none !important; color: var(--navy) !important; padding: 20px 0; }
  .page-header h1 { color: var(--navy) !important; }
  .page-header p { color: var(--grey) !important; }
  .hero { margin-top: 0; min-height: auto; background: none !important; color: var(--navy) !important; padding: 20px 0; }
  body { font-size: 12pt; }
  .container { max-width: 100%; padding: 0; }
  a { color: var(--navy); }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ===== ATMOSPHERIC SECTION BACKGROUNDS ===== */
/* Custom gradient atmospheres instead of stock photos — faster, unique, branded */

.atmosphere-strategy {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 40%, #2A5080 100%);
  position: relative;
}
.atmosphere-strategy::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 50%;
  background: radial-gradient(ellipse at 80% 50%, rgba(74,144,184,0.12), transparent 70%);
}

.atmosphere-learning {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #2E1A3D 40%, var(--navy) 100%);
  position: relative;
}
.atmosphere-learning::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 50%;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,16,46,0.08), transparent 70%);
}

.atmosphere-assessments {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #1A3040 40%, var(--navy) 100%);
  position: relative;
}
.atmosphere-assessments::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 50%;
  background: radial-gradient(ellipse at 80% 50%, rgba(232,119,34,0.1), transparent 70%);
}

/* Why-us section with texture */
.why-us {
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(232,119,34,0.06), transparent 70%);
}
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.why-content h2 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: clamp(28px, 3vw, 38px); color: var(--white); margin-bottom: 24px; }
.why-content > p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 32px; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.why-list li { display: flex; align-items: flex-start; gap: 16px; font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.why-check { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: rgba(200,16,46,0.15); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.why-check svg { width: 14px; height: 14px; stroke: var(--red); }
.why-image img { border-radius: 8px; box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.why-award { display: flex; align-items: center; gap: 16px; margin-top: 40px; padding: 20px 24px; background: rgba(255,255,255,0.05); border-radius: 8px; border: 1px solid rgba(255,255,255,0.08); }
.why-award img { width: 72px; height: 72px; border-radius: 8px; object-fit: cover; }
.why-award-text { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.why-award-text strong { color: var(--white); display: block; font-size: 15px; margin-bottom: 2px; }

/* Dark section styles */
.dark-section { background: var(--navy-deep); color: var(--white); position: relative; overflow: hidden; }
.dark-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at right, rgba(232,119,34,0.05), transparent 60%); }
.dark-section h2 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: clamp(24px,2.8vw,32px); color: var(--white); margin-bottom: 40px; position: relative; z-index: 2; }

/* Contact form styles */
.contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 64px; align-items: start; }
.form-row { margin-bottom: 24px; }
.form-row-double { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-label .required { color: var(--red); }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 16px; border: 1.5px solid rgba(31,58,95,0.15); border-radius: 8px; font-family: var(--font-body); font-size: 16px; color: var(--grey); transition: border-color 0.3s, box-shadow 0.3s; background: var(--white); }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(74,144,184,0.12); }
.form-textarea { min-height: 140px; resize: vertical; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%234A4A4A' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-submit { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: var(--white); padding: 14px 36px; border-radius: 8px; font-weight: 600; font-size: 16px; font-family: var(--font-body); border: none; cursor: pointer; transition: all 0.3s; }
.form-submit:hover { background: var(--navy); transform: translateY(-2px); }
.form-note { font-size: 13px; color: var(--grey-light); margin-top: 16px; }
.sidebar-card { background: var(--cream); border-radius: 8px; padding: 32px 28px; border: 1px solid rgba(31,58,95,0.06); margin-bottom: 24px; }
.sidebar-card h3 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 20px; color: var(--navy); margin-bottom: 16px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.contact-detail-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 8px; background: rgba(200,16,46,0.08); display: flex; align-items: center; justify-content: center; }
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 2; }
.contact-detail-text { font-size: 15px; }
.contact-detail-text strong { display: block; color: var(--navy); font-size: 14px; margin-bottom: 2px; }
.contact-detail-text a { color: var(--grey); }
.contact-detail-text a:hover { color: var(--red); }
.founder-strip { display: flex; align-items: center; gap: 16px; padding: 24px; background: var(--cream); border-radius: 8px; border: 1px solid rgba(31,58,95,0.06); }
.founder-strip img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.founder-strip-text { font-size: 14px; color: var(--grey); line-height: 1.5; }
.founder-strip-text strong { color: var(--navy); display: block; }
.form-success { display: none; text-align: center; padding: 60px 32px; background: var(--cream); border-radius: 8px; border: 1px solid rgba(31,58,95,0.06); }
.form-success.show { display: block; }

/* About page specific */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-content h2 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: clamp(26px,3vw,36px); color: var(--navy); margin-bottom: 20px; }
.story-content p { font-size: 16px; margin-bottom: 16px; line-height: 1.8; }
.story-image img { border-radius: 8px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.phil-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto; }
.phil-card { background: var(--white); border-radius: 8px; padding: 40px 32px; border: 1px solid rgba(31,58,95,0.06); display: flex; gap: 20px; align-items: flex-start; }
.phil-letter { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 48px; color: var(--red); line-height: 1; flex-shrink: 0; width: 56px; }
.phil-card h3 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.phil-card p { font-size: 15px; line-height: 1.7; color: var(--grey); }
.evo-inner { position: relative; z-index: 2; max-width: 720px; }
.evo-inner h2 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: clamp(26px,3vw,36px); color: var(--white); margin-bottom: 20px; }
.evo-inner p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 16px; line-height: 1.8; }
.founder-grid { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: start; }
.founder-photo img { border-radius: 8px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.founder-content h2 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: clamp(26px,3vw,36px); color: var(--navy); margin-bottom: 6px; }
.founder-content .founder-role { font-size: 17px; color: var(--orange); font-weight: 600; margin-bottom: 20px; }
.founder-content p { font-size: 16px; margin-bottom: 16px; line-height: 1.8; }
.founder-traits { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.founder-traits li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--grey); }
.founder-traits li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.value-card { padding: 28px 24px; border-radius: 8px; border: 1px solid rgba(31,58,95,0.06); background: var(--cream); }
.value-card h4 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 18px; color: var(--red); margin-bottom: 8px; }
.value-card p { font-size: 14px; line-height: 1.7; color: var(--grey); }
.vision-mission { max-width: 720px; margin-bottom: 48px; }
.vision-mission h3 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 20px; color: var(--navy); margin-bottom: 8px; margin-top: 24px; }
.vision-mission p { font-size: 16px; line-height: 1.7; }
.award-strip { background: var(--cream); padding: 48px 0; border-top: 1px solid rgba(31,58,95,0.06); border-bottom: 1px solid rgba(31,58,95,0.06); }
.award-inner { display: flex; align-items: center; gap: 32px; max-width: 800px; margin: 0 auto; }
.award-inner img { width: 120px; height: 120px; border-radius: 8px; object-fit: cover; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.award-text h3 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.award-text p { font-size: 15px; color: var(--grey); line-height: 1.6; }
.client-list { list-style: none; display: flex; flex-direction: column; gap: 12px; max-width: 720px; }
.client-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; line-height: 1.7; }
.client-list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 8px; }

/* Tailored tools specific */
.example-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.example-card { background: var(--white); border-radius: 8px; padding: 28px 24px; border: 1px solid rgba(31,58,95,0.06); }
.example-card h4 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 18px; color: var(--red); margin-bottom: 10px; }
.example-card p { font-size: 14px; line-height: 1.7; color: var(--grey); margin-bottom: 0; }
.value-list { list-style: none; display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.value-list li { display: flex; align-items: flex-start; gap: 16px; font-size: 16px; line-height: 1.7; }
.value-list li strong { color: var(--navy); display: block; font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 17px; margin-bottom: 2px; }
.vl-dot { flex-shrink: 0; width: 10px; height: 10px; border-radius: 50%; margin-top: 7px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.step-card { padding: 24px 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; }
.step-num { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 28px; color: var(--orange); margin-bottom: 8px; }
.step-card h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.step-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; margin-bottom: 0; }
.expect-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.expect-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.7; }
.expect-list li::before { content: ''; width: 20px; height: 20px; border-radius: 50%; background: rgba(200,16,46,0.08); flex-shrink: 0; margin-top: 3px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23C8102E' stroke-width='2'%3E%3Cpath d='M2 6l3 3 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }
.honest-note { background: var(--cream); border-radius: 8px; padding: 36px 32px; border-left: 4px solid var(--orange); margin-top: 36px; }
.honest-note h3 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 20px; color: var(--navy); margin-bottom: 12px; }
.honest-note p { font-size: 15px; line-height: 1.8; margin-bottom: 12px; }
.content-inner { max-width: 780px; }
.content-inner h2 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: clamp(24px,2.8vw,34px); color: var(--navy); margin-bottom: 8px; }
.content-inner .sub { font-size: 17px; color: var(--orange); font-style: italic; margin-bottom: 24px; }
.content-inner p { font-size: 16px; margin-bottom: 16px; line-height: 1.8; }

/* Insights page */
.articles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.article-card { display: block; border-radius: 8px; border: 1px solid rgba(31,58,95,0.08); overflow: hidden; transition: all 0.3s; background: var(--white); color: var(--grey); }
.article-card:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,0.04); color: var(--grey); }
.article-body { padding: 32px 28px; }
.article-tag { display: inline-block; padding: 4px 14px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; }
.article-tag.leadership { background: rgba(31,58,95,0.08); color: var(--navy); }
.article-tag.strategy { background: rgba(200,16,46,0.08); color: var(--red); }
.article-tag.team { background: rgba(74,144,184,0.1); color: var(--blue); }
.article-tag.culture { background: rgba(232,119,34,0.08); color: var(--orange); }
.article-tag.personal { background: rgba(31,58,95,0.05); color: var(--grey-light); }
.article-card h3 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 22px; color: var(--navy); line-height: 1.35; margin-bottom: 12px; }
.article-card p { font-size: 15px; color: var(--grey-light); line-height: 1.65; margin-bottom: 16px; }
.article-link { font-size: 13px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 6px; }

/* Privacy page */
.policy { padding: 60px 0 100px; }
.policy-inner { max-width: 760px; }
.policy-inner h2 { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 22px; color: var(--navy); margin: 40px 0 12px; padding-top: 16px; border-top: 1px solid rgba(31,58,95,0.06); }
.policy-inner h2:first-of-type { border-top: none; margin-top: 0; }
.policy-inner p { font-size: 15px; margin-bottom: 14px; line-height: 1.8; }
.policy-inner ul { margin: 8px 0 16px 20px; }
.policy-inner li { font-size: 15px; line-height: 1.8; margin-bottom: 6px; }

/* Additional responsive */
@media (max-width: 1024px) {
  .why-inner, .story-grid, .founder-grid { grid-template-columns: 1fr; }
  .phil-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .example-grid, .steps-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .award-inner { flex-direction: column; text-align: center; }
  .articles-grid { grid-template-columns: 1fr; }
  .nav-dropdown { display: none !important; }
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .form-row-double { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .tools-callout-grid, .tools-home-grid, .tools-home-collab { grid-template-columns: 1fr; }
  .dd-columns { grid-template-columns: 1fr; }
  .dd-column:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(31,58,95,0.06); padding-bottom: 8px; margin-bottom: 8px; }
  .nav-dropdown { display: none !important; }
}
/* Hero with background image */
.page-header-img { position: relative; }
.page-header-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(20,40,64,0.88) 0%, rgba(31,58,95,0.82) 50%, rgba(31,58,95,0.7) 100%); }
.page-header-img .page-header-inner, .page-header-img .container { position: relative; z-index: 2; }
.hero-bg { position: relative; }
.hero-bg::before { content: ''; position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(20,40,64,0.92) 0%, rgba(31,58,95,0.8) 60%, rgba(31,58,95,0.65) 100%); z-index: 1; }

/* Footer logo */
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 48px; width: auto; }

/* Premium accent — warm amber */
:root { --amber: oklch(78% 0.09 72); --amber-fallback: #D4A04A; }
@supports not (color: oklch(78% 0.09 72)) { :root { --amber: #D4A04A; } }

/* Premium heading treatment */
h1, h2, h3, .page-header h1, .section-head h2, .hero h1 { line-height: 1.15; }
p { text-wrap: pretty; }

/* Hero italic accent */
.hero h1 em { color: var(--amber, var(--orange)); }

/* Amber accent text */
.text-amber { color: var(--amber, #C4923A); }
.hero h1 em { color: var(--amber, #C4923A); }

/* Alternating section backgrounds */
.section-alt { background: var(--off-white, #F2F0EC); }

/* Refined section testimonial blockquote border */
.section-testimonial { border: 1px solid #E8E6E1; }
.learner-quote { border-left-color: var(--amber, #C4923A); }

/* Stats vertical dividers */
.stats-grid > div { position: relative; }
.stats-grid > div:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(31,58,95,0.12); }

/* Card borders refined */
.service-card { border: 1px solid #E8E6E1; }
.practice-card { border: 1px solid #E8E6E1; }
.testi-card { border: 1px solid #E8E6E1; }
.tool-example { border: 1px solid #E8E6E1; }
.tools-home-card { border: 1px solid rgba(232,119,34,0.1); }

/* Text-wrap for paragraphs */
p { text-wrap: pretty; }

/* Dropdown category headers - muted */
.nav-dropdown .dd-section { color: #888; }

/* Hero with African landscape background */
.hero[style*="background-image"] { background-color: var(--navy-deep); }
.hero[style*="background-image"]::before { background: linear-gradient(135deg, rgba(20,40,64,0.88) 0%, rgba(31,58,95,0.75) 50%, rgba(31,58,95,0.6) 100%); z-index: 1; }
.hero[style*="background-image"]::after { background: linear-gradient(to top, rgba(20,40,64,0.5), transparent 40%); z-index: 1; }
.hero[style*="background-image"] .hero-inner { z-index: 2; }
/* hero-with-bg marker */

@media (max-width: 768px) {
  .hero-fullwidth { min-height: 70vh; }
  .hero-inner-full { padding: 60px 0 80px; }
}
