@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --navy:        #0d1f3c;
  --navy-mid:    #152a4e;
  --navy-light:  #1e3a68;
  --gold:        #b8882a;
  --gold-light:  #d4a843;
  --gold-pale:   #f5edd9;
  --white:       #ffffff;
  --off-white:   #f8f9fc;
  --light-gray:  #eef1f6;
  --mid-gray:    #8a96a8;
  --dark-gray:   #3a4558;
  --text:        #2c3548;
  --text-light:  #5a6478;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --max-w: 1160px;
  --radius: 4px;
  --shadow: 0 2px 24px rgba(13,31,60,0.10);
  --shadow-hover: 0 8px 40px rgba(13,31,60,0.16);
  --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--white); color: var(--text); font-family: var(--font-body); font-weight: 400; line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

.btn { display: inline-block; font-family: var(--font-body); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.07em; text-transform: uppercase; padding: 0.85rem 2rem; border-radius: var(--radius); transition: var(--transition); cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,136,42,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-hover); }

.section-label { font-family: var(--font-body); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.75rem; }
.section-title { font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--navy); line-height: 1.2; margin-bottom: 1.2rem; }
.section-title.light { color: var(--white); }
.section-intro { font-size: 1.05rem; color: var(--text-light); max-width: 600px; line-height: 1.8; }
.section-intro.light { color: rgba(255,255,255,0.72); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.97); border-bottom: 1px solid rgba(13,31,60,0.08); backdrop-filter: blur(12px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo-mark { width: 40px; height: 40px; background: var(--navy); border-radius: 3px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo-mark span { font-family: var(--font-body); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.04em; color: var(--gold-light); }
.nav-logo-name { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); display: block; line-height: 1.2; }
.nav-logo-sub { font-size: 0.62rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--mid-gray); display: block; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--dark-gray); letter-spacing: 0.02em; transition: color var(--transition); position: relative; padding-bottom: 2px; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { padding: 0.55rem 1.25rem !important; font-size: 0.78rem !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* HERO */
.hero { background: var(--navy); padding: 160px 0 120px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0d1f3c 0%, #0a1830 100%); }
.hero-grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(184,136,42,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(184,136,42,0.05) 1px, transparent 1px); background-size: 60px 60px; }
.hero-glow { position: absolute; top: -20%; right: -10%; width: 60%; height: 140%; background: radial-gradient(ellipse, rgba(30,58,104,0.8) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 80px; background: var(--white); clip-path: polygon(0 100%, 100% 100%, 100% 0); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.5rem; }
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold-light); }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 3.8rem); color: var(--white); line-height: 1.15; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub { font-size: 1.08rem; color: rgba(255,255,255,0.68); margin-bottom: 2.5rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-panel { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 2.5rem; backdrop-filter: blur(8px); display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.stat-item { text-align: center; padding: 1.25rem; }
.stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
.stat-number { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-light); display: block; line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* TRUST BAR */
.trust-bar { background: var(--light-gray); border-bottom: 1px solid rgba(13,31,60,0.06); padding: 1.2rem 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.55rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark-gray); }
.trust-icon { width: 26px; height: 26px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 13px; height: 13px; fill: var(--gold-light); }
.trust-sep { width: 1px; height: 20px; background: rgba(13,31,60,0.12); }

/* WHAT WE DO */
.what-we-do { padding: 100px 0; background: var(--white); }
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.what-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.what-feature { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem; border: 1px solid var(--light-gray); border-radius: 6px; transition: var(--transition); }
.what-feature:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateX(4px); }
.feat-icon { width: 42px; height: 42px; flex-shrink: 0; background: var(--gold-pale); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.feat-icon svg { width: 21px; height: 21px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.feat-text h4 { font-weight: 600; font-size: 0.95rem; color: var(--navy); margin-bottom: 0.2rem; }
.feat-text p { font-size: 0.85rem; color: var(--text-light); }
.what-visual { position: relative; padding-bottom: 40px; padding-right: 40px; }
.what-card-main { background: var(--navy); border-radius: 10px; padding: 2.5rem; position: relative; z-index: 2; }
.what-card-main h3 { font-family: var(--font-display); font-size: 1.5rem; color: white; margin-bottom: 0.75rem; }
.what-card-main p { color: rgba(255,255,255,0.65); font-size: 0.92rem; margin-bottom: 1.5rem; }
.what-card-accent { position: absolute; bottom: 0; right: 0; width: 75%; height: 75%; background: var(--gold-pale); border-radius: 10px; z-index: 1; }
.serve-list { display: flex; flex-direction: column; gap: 0.5rem; }
.serve-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.serve-item::before { content: ''; display: block; width: 5px; height: 5px; background: var(--gold-light); border-radius: 50%; flex-shrink: 0; }

/* SERVICES */
.services-section { padding: 100px 0; background: var(--off-white); }
.services-header { text-align: center; margin-bottom: 4rem; }
.services-header .section-intro { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: var(--white); border-radius: 8px; padding: 2rem; border: 1px solid rgba(13,31,60,0.07); transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); transform-origin: left; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { transform: scaleX(1); }
.svc-icon { width: 50px; height: 50px; background: var(--gold-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.svc-icon svg { width: 25px; height: 25px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); margin-bottom: 0.7rem; }
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1.2rem; }
.svc-link { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 0.35rem; transition: gap var(--transition); }
.svc-link:hover { gap: 0.6rem; }
.service-card.dark { background: var(--navy); border-color: transparent; }
.service-card.dark h3 { color: white; }
.service-card.dark p { color: rgba(255,255,255,0.65); }
.service-card.dark .svc-icon { background: rgba(255,255,255,0.1); }
.service-card.dark .svc-icon svg { stroke: var(--gold-light); }
.service-card.dark .svc-link { color: var(--gold-light); }
.service-card.dark::before { background: var(--gold-light); }
.svc-tag { display: inline-block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); background: rgba(184,136,42,0.2); padding: 0.18rem 0.5rem; border-radius: 2px; margin-bottom: 0.7rem; }

/* FOUNDER STRIP */
.founder-strip { padding: 100px 0; background: var(--white); }
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.founder-photo-wrap { position: relative; padding-bottom: 40px; padding-right: 30px; }
.founder-photo-frame { background: var(--light-gray); border-radius: 8px; aspect-ratio: 4/5; overflow: hidden; position: relative; z-index: 2; }
.photo-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(145deg, var(--navy-mid), var(--navy)); gap: 0.75rem; }
.photo-placeholder svg { width: 60px; height: 60px; stroke: rgba(255,255,255,0.25); fill: none; stroke-width: 0.9; }
.photo-placeholder span { font-size: 0.72rem; color: rgba(255,255,255,0.3); letter-spacing: 0.12em; text-transform: uppercase; }
.founder-accent { position: absolute; bottom: 0; right: 0; width: 70%; height: 70%; background: var(--gold-pale); border-radius: 8px; z-index: 1; }
.founder-badge { position: absolute; top: 2rem; left: -20px; background: var(--gold); color: white; border-radius: 6px; padding: 1rem 1.25rem; text-align: center; box-shadow: var(--shadow); z-index: 3; }
.badge-num { font-family: var(--font-display); font-size: 1.9rem; display: block; line-height: 1; }
.badge-text { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.founder-content .section-intro { margin-bottom: 2rem; }
.creds-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-bottom: 2.5rem; }
.cred-item { display: flex; align-items: flex-start; gap: 0.7rem; padding: 0.9rem; background: var(--off-white); border-radius: 6px; border-left: 3px solid var(--gold); }
.cred-ico { width: 30px; height: 30px; flex-shrink: 0; background: var(--gold-pale); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.cred-ico svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 2; }
.cred-label { font-size: 0.8rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.cred-sub { font-size: 0.72rem; color: var(--text-light); }

/* TESTIMONIALS */
.testimonials { padding: 100px 0; background: var(--navy); position: relative; overflow: hidden; }
.testimonials::before { content: '"'; position: absolute; top: -60px; left: 3%; font-family: var(--font-display); font-size: 42rem; color: rgba(255,255,255,0.02); line-height: 1; pointer-events: none; }
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.test-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 8px; padding: 2rem; transition: var(--transition); }
.test-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.stars { display: flex; gap: 3px; margin-bottom: 1.25rem; }
.star { color: var(--gold-light); font-size: 0.85rem; }
.test-text { font-size: 0.93rem; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 0.75rem; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.25rem; }
.author-av { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.95rem; color: var(--gold-light); flex-shrink: 0; }
.author-name { font-weight: 600; font-size: 0.87rem; color: white; }
.author-title { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

/* CTA BAND */
.cta-band { padding: 80px 0; background: var(--gold); }
.cta-band-inner { text-align: center; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy); margin-bottom: 1rem; }
.cta-band p { font-size: 1rem; color: rgba(13,31,60,0.72); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-band .btn-navy { font-size: 0.92rem; padding: 1rem 2.5rem; }

/* RESOURCES */
.resources { padding: 100px 0; background: var(--off-white); }
.resources-header { text-align: center; margin-bottom: 4rem; }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.res-card { background: var(--white); border-radius: 8px; overflow: hidden; border: 1px solid rgba(13,31,60,0.07); transition: var(--transition); }
.res-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.res-img { height: 170px; background: linear-gradient(135deg, var(--navy-mid), var(--navy)); display: flex; align-items: center; justify-content: center; position: relative; }
.res-img svg { width: 46px; height: 46px; stroke: rgba(255,255,255,0.18); fill: none; stroke-width: 1; }
.res-tag { position: absolute; top: 1rem; left: 1rem; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); background: rgba(0,0,0,0.4); padding: 0.22rem 0.55rem; border-radius: 2px; }
.res-body { padding: 1.5rem; }
.res-cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.res-card h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; }
.res-card p { font-size: 0.86rem; color: var(--text-light); }
.coming-soon { display: inline-block; margin-top: 0.85rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-gray); background: var(--light-gray); padding: 0.2rem 0.55rem; border-radius: 2px; }

/* FOOTER */
.footer { background: var(--navy); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.2rem; }
.footer-logo-mark { width: 40px; height: 40px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 3px; display: flex; align-items: center; justify-content: center; }
.footer-logo-mark span { font-family: var(--font-body); font-weight: 700; font-size: 0.66rem; letter-spacing: 0.04em; color: var(--gold-light); }
.footer-logo-name { font-family: var(--font-display); font-size: 0.98rem; color: white; }
.footer-tagline { font-size: 0.87rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 1.5rem; max-width: 270px; }
.footer-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.fbadge { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); border: 1px solid rgba(184,136,42,0.35); padding: 0.28rem 0.65rem; border-radius: 2px; }
.footer-col h4 { font-weight: 700; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: white; margin-bottom: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.fcontact { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.87rem; color: rgba(255,255,255,0.45); margin-bottom: 0.75rem; }
.fcontact svg { width: 15px; height: 15px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; margin-top: 3px; }
.footer-bottom { padding: 1.5rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: rgba(255,255,255,0.28); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* PAGE HERO */
.page-hero { background: var(--navy); padding: 130px 0 80px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.page-hero-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(184,136,42,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(184,136,42,0.05) 1px, transparent 1px); background-size: 50px 50px; }
.page-hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; background: var(--white); clip-path: polygon(0 100%, 100% 100%, 100% 0); }
.page-hero-inner { position: relative; z-index: 2; }
.breadcrumb { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb a { color: var(--gold-light); transition: color var(--transition); }
.breadcrumb a:hover { color: white; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 1rem; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 540px; }

/* ABOUT PAGE */
.values-section { padding: 80px 0; background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.value-card { background: var(--white); padding: 2rem; border-radius: 8px; border-top: 4px solid var(--gold); box-shadow: var(--shadow); transition: var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.val-num { font-family: var(--font-display); font-size: 2.8rem; color: var(--light-gray); line-height: 1; margin-bottom: 0.7rem; }
.value-card h3 { font-family: var(--font-display); color: var(--navy); margin-bottom: 0.7rem; }
.value-card p { font-size: 0.9rem; color: var(--text-light); }
.mission-section { padding: 80px 0; background: var(--white); }
.mission-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.mission-quote { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-style: italic; color: var(--navy); line-height: 1.5; padding-left: 2rem; border-left: 4px solid var(--gold); margin-bottom: 1.5rem; }
.mission-attr { font-size: 0.87rem; color: var(--mid-gray); font-weight: 500; }
.mission-visual { background: var(--navy); border-radius: 10px; padding: 3rem; }
.mission-metric { padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mission-metric:last-child { border-bottom: none; }
.metric-val { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold-light); }
.metric-label { font-size: 0.87rem; color: rgba(255,255,255,0.55); }

/* SERVICES PAGE */
.services-full { padding: 80px 0; background: var(--white); }
.services-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.sf-card { background: var(--off-white); border-radius: 8px; padding: 2.5rem; border: 1px solid rgba(13,31,60,0.07); transition: var(--transition); }
.sf-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.sf-card.featured { grid-column: span 2; background: var(--navy); border-color: transparent; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.sf-card.featured h3 { color: white; }
.sf-card.featured p { color: rgba(255,255,255,0.65); }
.sf-card.featured .sf-icon { background: rgba(255,255,255,0.1); }
.sf-card.featured .sf-icon svg { stroke: var(--gold-light); }
.sf-icon { width: 52px; height: 52px; background: var(--gold-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; }
.sf-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.sf-card h3 { font-family: var(--font-display); color: var(--navy); font-size: 1.3rem; margin-bottom: 0.7rem; }
.sf-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.25rem; }
.checklist { display: flex; flex-direction: column; gap: 0.45rem; }
.check { display: flex; align-items: center; gap: 0.6rem; font-size: 0.87rem; color: var(--text-light); }
.check.light { color: rgba(255,255,255,0.7); }
.check::before { content: '✓'; display: flex; align-items: center; justify-content: center; width: 17px; height: 17px; background: var(--gold-pale); color: var(--gold); border-radius: 50%; font-size: 0.6rem; font-weight: 700; flex-shrink: 0; }
.check.light::before { background: rgba(184,136,42,0.22); color: var(--gold-light); }
.pricing-section { padding: 80px 0; background: var(--off-white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.price-card { background: var(--white); border-radius: 8px; padding: 2.5rem; border: 1px solid rgba(13,31,60,0.07); text-align: center; transition: var(--transition); }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.price-card.featured { background: var(--navy); border-color: transparent; position: relative; }
.price-card.featured::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: white; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 2px; }
.price-card.featured h3 { color: white; }
.price-card.featured .price-amount { color: var(--gold-light); }
.price-card.featured p { color: rgba(255,255,255,0.55); }
.price-card.featured .checklist .check { color: rgba(255,255,255,0.7); }
.price-card.featured .checklist .check::before { background: rgba(184,136,42,0.22); color: var(--gold-light); }
.price-tier { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.price-card h3 { font-family: var(--font-display); color: var(--navy); font-size: 1.4rem; margin-bottom: 1.25rem; }
.price-amount { font-family: var(--font-display); font-size: 2.2rem; color: var(--navy); display: block; margin-bottom: 0.25rem; }
.price-note { font-size: 0.8rem; color: var(--mid-gray); margin-bottom: 2rem; }
.price-card .checklist { text-align: left; margin-bottom: 2rem; }

/* CONTACT PAGE */
.contact-section { padding: 80px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: flex-start; }
.contact-info .section-intro { margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--light-gray); }
.contact-detail:last-of-type { border-bottom: none; }
.cd-icon { width: 42px; height: 42px; flex-shrink: 0; background: var(--gold-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.cd-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; }
.cd-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 0.2rem; }
.cd-value { font-size: 0.95rem; font-weight: 500; color: var(--navy); }
.contact-form-wrap { background: var(--off-white); border-radius: 10px; padding: 2.5rem; border: 1px solid rgba(13,31,60,0.07); }
.contact-form-wrap h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 0.5rem; }
.contact-form-wrap > p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--dark-gray); margin-bottom: 0.45rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.8rem 1rem; border: 1.5px solid rgba(13,31,60,0.12); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem; color: var(--text); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); appearance: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,136,42,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 1rem; font-size: 0.92rem; }

/* FOUNDER PAGE */
.founder-full { padding: 80px 0; background: var(--white); }
.founder-full-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: flex-start; }
.founder-sidebar { position: sticky; top: 100px; }
.founder-img-frame { background: var(--light-gray); border-radius: 8px; aspect-ratio: 3/4; overflow: hidden; margin-bottom: 1.5rem; }
.founder-img-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(145deg, var(--navy-mid), var(--navy)); gap: 0.75rem; }
.founder-img-ph svg { width: 65px; height: 65px; stroke: rgba(255,255,255,0.22); fill: none; stroke-width: 0.8; }
.founder-img-ph span { font-size: 0.72rem; color: rgba(255,255,255,0.3); letter-spacing: 0.12em; text-transform: uppercase; }
.sidebar-creds { display: flex; flex-direction: column; gap: 0.7rem; }
.sc-item { display: flex; align-items: center; gap: 0.7rem; padding: 0.8rem 1rem; background: var(--off-white); border-radius: 6px; border-left: 3px solid var(--gold); }
.sc-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }
.sc-item span { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.founder-bio h2 { font-family: var(--font-display); color: var(--navy); margin-bottom: 1rem; font-size: clamp(1.5rem, 2.5vw, 2rem); }
.founder-bio p { color: var(--text-light); line-height: 1.8; margin-bottom: 1.25rem; font-size: 0.97rem; }
.timeline { margin: 2.5rem 0; }
.tl-item { display: flex; gap: 1.5rem; padding-bottom: 2rem; position: relative; }
.tl-item::before { content: ''; position: absolute; left: 19px; top: 40px; bottom: 0; width: 1px; background: var(--light-gray); }
.tl-item:last-child::before { display: none; }
.tl-dot { width: 40px; height: 40px; flex-shrink: 0; background: var(--gold-pale); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.tl-dot svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 2; }
.tl-year { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.tl-title { font-weight: 600; color: var(--navy); font-size: 0.97rem; margin-bottom: 0.2rem; }
.tl-desc { font-size: 0.88rem; color: var(--text-light); }

/* PROCESS / HOW IT WORKS */
.process-section { padding: 100px 0; background: var(--off-white); }
.process-header { text-align: center; margin-bottom: 4rem; }
.process-header .section-intro { margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 32px; left: calc(12.5% + 20px); right: calc(12.5% + 20px); height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); z-index: 0; }
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num { width: 64px; height: 64px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; border: 3px solid var(--gold); position: relative; }
.process-num span { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold-light); line-height: 1; }
.process-step h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* SECTOR TABS */
.sector-section { padding: 100px 0; background: var(--white); }
.sector-header { text-align: center; margin-bottom: 3rem; }
.sector-tabs { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.sector-tab { padding: 0.65rem 1.5rem; border: 1.5px solid rgba(13,31,60,0.15); border-radius: 30px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; cursor: pointer; background: none; font-family: var(--font-body); color: var(--dark-gray); transition: var(--transition); }
.sector-tab:hover { border-color: var(--gold); color: var(--navy); }
.sector-tab.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.sector-panel { display: none; }
.sector-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.sector-text h3 { font-family: var(--font-display); font-size: clamp(1.6rem, 2.5vw, 2.1rem); color: var(--navy); margin-bottom: 1rem; }
.sector-text p { font-size: 0.97rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1.5rem; }
.sector-bullets { margin-bottom: 2rem; }
.sector-bullet { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.5rem 0; font-size: 0.92rem; color: var(--text); }
.sector-bullet::before { content: ''; display: block; width: 18px; height: 18px; border-radius: 50%; background: var(--gold-pale); border: 2px solid var(--gold); flex-shrink: 0; margin-top: 3px; }
.sector-visual { background: var(--light-gray); border-radius: 10px; padding: 2.5rem; border-left: 4px solid var(--gold); }
.sector-visual-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.sector-visual h4 { font-family: var(--font-display); color: var(--navy); font-size: 1.2rem; margin-bottom: 0.75rem; }
.sector-visual p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.25rem; }
.sector-stat-row { display: flex; gap: 1.5rem; margin-top: 1.5rem; }
.sector-stat { text-align: center; }
.sector-stat-num { font-family: var(--font-display); font-size: 2rem; color: var(--navy); display: block; line-height: 1; }
.sector-stat-lbl { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid-gray); }

/* URGENCY STATS BAR */
.urgency-bar { background: var(--navy); padding: 3rem 0; }
.urgency-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.urgency-item { }
.urgency-num { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold-light); display: block; line-height: 1; margin-bottom: 0.4rem; }
.urgency-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* FLOATING CTA BUTTON */
.float-cta { position: fixed; bottom: 2rem; right: 2rem; z-index: 200; opacity: 0; transform: translateY(20px); transition: opacity 0.4s ease, transform 0.4s ease; pointer-events: none; }
.float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-cta a { display: flex; align-items: center; gap: 0.6rem; background: var(--gold); color: white; padding: 0.85rem 1.5rem; border-radius: 50px; font-family: var(--font-body); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; box-shadow: 0 6px 24px rgba(184,136,42,0.45); transition: var(--transition); }
.float-cta a:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(184,136,42,0.5); }
.float-cta svg { width: 16px; height: 16px; fill: none; stroke: white; stroke-width: 2; }

/* IMPROVED TESTIMONIALS */
.test-card { background: var(--white); border-radius: 10px; padding: 2.25rem; border: 1px solid rgba(13,31,60,0.07); box-shadow: var(--shadow); position: relative; overflow: hidden; transition: var(--transition); }
.test-card::before { content: '\201C'; position: absolute; top: -0.5rem; left: 1.5rem; font-family: var(--font-display); font-size: 6rem; color: var(--gold-pale); line-height: 1; z-index: 0; pointer-events: none; }
.test-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.test-card .stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 1rem; position: relative; z-index: 1; }
.test-card .test-text { color: var(--text); font-size: 0.97rem; line-height: 1.8; margin-bottom: 1.5rem; position: relative; z-index: 1; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 0.85rem; }
.author-av { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--gold-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.author-title { font-size: 0.78rem; color: var(--mid-gray); }

/* IMPROVED NAV ACTIVE STATE */
.nav-links a.active::after { transform: scaleX(1); }

/* ENHANCED FOOTER */
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 15px; height: 15px; stroke: rgba(255,255,255,0.6); fill: none; stroke-width: 2; transition: var(--transition); }
.footer-social a:hover svg { stroke: white; }
.footer-nl-form { display: flex; gap: 0.5rem; }
.footer-nl-form input { flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 0.6rem 0.85rem; font-family: var(--font-body); font-size: 0.82rem; color: white; }
.footer-nl-form input::placeholder { color: rgba(255,255,255,0.3); }
.footer-nl-form input:focus { outline: none; border-color: var(--gold); }
.footer-nl-form button { background: var(--gold); border: none; color: white; padding: 0.6rem 1rem; border-radius: var(--radius); font-family: var(--font-body); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.08em; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.footer-nl-form button:hover { background: var(--gold-light); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-up { animation: fadeUp 0.7s ease both; }
.d1 { animation-delay: 0.1s; } .d2 { animation-delay: 0.2s; } .d3 { animation-delay: 0.3s; } .d4 { animation-delay: 0.4s; } .d5 { animation-delay: 0.5s; }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 900px) {
  .hero-inner, .what-grid, .founder-grid, .mission-inner, .contact-grid, .founder-full-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-panel { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .urgency-inner { grid-template-columns: 1fr 1fr; }
  .sector-panel.active { grid-template-columns: 1fr; }
  .sector-tabs { gap: 0.4rem; }

  .services-full-grid { grid-template-columns: 1fr; }
  .sf-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .founder-sidebar { position: static; }
  .creds-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: white; padding: 1.25rem 2rem 1.5rem; border-bottom: 1px solid var(--light-gray); gap: 1rem; box-shadow: var(--shadow); }
  .hamburger { display: flex; }
  .process-steps { grid-template-columns: 1fr; }
  .urgency-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .float-cta { bottom: 1.25rem; right: 1.25rem; }
  .services-grid, .test-grid, .resources-grid, .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 1.2rem; }
  .trust-sep { display: none; }
  .hero-actions { flex-direction: column; }
  .hero { padding: 120px 0 80px; }
  .services-full-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE OVERHAUL — v5
   Breakpoints:
     xl: 1200px+  (wide desktop)
     lg: 900–1199px (laptop / small desktop)
     md: 641–899px  (tablet portrait / large phone landscape)
     sm: 0–640px    (phone)
   ═══════════════════════════════════════════════════════════════ */

/* ── Shared fluid helpers ──────────────────────────────────── */
html { -webkit-text-size-adjust: 100%; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

img, video, iframe { max-width: 100%; height: auto; display: block; }

/* ── Typography fluid scale ─────────────────────────────────── */
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
.section-intro { font-size: clamp(0.95rem, 1.5vw, 1.05rem); }

/* ── Buttons — touch-friendly minimum tap targets ───────────── */
.btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }

/* ── NAV — tablet ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 0.82rem; }
}

/* ── NAV — mobile (≤768px) ──────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: white;
    padding: 1.5rem 1.5rem 2rem;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--light-gray);
    box-shadow: 0 8px 24px rgba(13,31,60,0.12);
    z-index: 99;
    overflow-y: auto;
    max-height: calc(100vh - 72px);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy);
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--light-gray);
    width: 100%;
  }
  .nav-links a::after { display: none; }
  .nav-links a.active { color: var(--gold); }
  .nav-cta {
    margin-top: 1rem !important;
    font-size: 0.9rem !important;
    padding: 0.85rem 1.5rem !important;
    width: 100%;
    text-align: center;
    border-radius: var(--radius);
  }
  .hamburger { display: flex; }
}

/* ── HERO ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { padding: 130px 0 90px; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-panel { display: none; }
  .hero h1 { font-size: clamp(2rem, 6vw, 3rem); }
  .hero-sub { font-size: 1rem; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; max-width: 360px; }
  .hero::after { height: 50px; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 0 70px; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .hero-eyebrow { font-size: 0.65rem; }
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .trust-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.5rem;
    justify-items: start;
  }
  .trust-sep { display: none; }
}
@media (max-width: 480px) {
  .trust-bar-inner { grid-template-columns: 1fr; gap: 0.75rem; }
  .trust-item { font-size: 0.7rem; }
}

/* ── WHAT WE DO ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .what-we-do { padding: 70px 0; }
  .what-grid { grid-template-columns: 1fr; gap: 3rem; }
  .what-visual { padding-bottom: 30px; padding-right: 20px; }
}
@media (max-width: 480px) {
  .what-we-do { padding: 55px 0; }
  .what-card-main { padding: 1.75rem; }
  .what-card-accent { display: none; }
}

/* ── SERVICES GRID ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.5rem; }
}

/* ── FOUNDER STRIP ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .founder-strip { padding: 70px 0; }
  .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-photo-wrap { 
    max-width: 400px; margin: 0 auto;
    padding-bottom: 24px; padding-right: 16px;
  }
  .creds-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .founder-photo-wrap { max-width: 300px; padding-right: 12px; }
  .creds-grid { grid-template-columns: 1fr; }
  .founder-badge { left: -10px; }
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .testimonials { padding: 70px 0; }
  .test-grid { grid-template-columns: 1fr; gap: 1rem; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .test-grid { grid-template-columns: 1fr 1fr; }
}

/* ── CTA BAND ───────────────────────────────────────────────── */
@media (max-width: 640px) {
  .cta-band { padding: 60px 0; }
  .cta-band h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .cta-band .btn { width: 100%; max-width: 360px; }
}

/* ── RESOURCES ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .resources { padding: 70px 0; }
  .resources-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 600px) {
  .resources-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer { padding: 50px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .footer-legal { flex-wrap: wrap; gap: 1rem; }
}

/* ── PAGE HERO ──────────────────────────────────────────────── */
@media (max-width: 640px) {
  .page-hero { padding: 110px 0 60px; }
  .page-hero h1 { font-size: clamp(1.7rem, 7vw, 2.5rem); }
  .page-hero::after { height: 40px; }
}

/* ── ABOUT: MISSION ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .mission-section { padding: 60px 0; }
  .mission-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .mission-visual { border-radius: 8px; }
}

/* ── ABOUT: VALUES ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .values-section { padding: 60px 0; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ── SERVICES FULL ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-full { padding: 60px 0; }
  .services-full-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .sf-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .sf-card.featured > div:last-child { margin-top: 0; }
}

/* ── PRICING ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .pricing-section { padding: 60px 0; }
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { margin-top: 1rem; }
}

/* ── CONTACT ────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-section { padding: 60px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.75rem; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem; /* prevents iOS zoom on focus */
    padding: 0.9rem 1rem;
  }
}

/* ── FOUNDER PAGE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .founder-full { padding: 60px 0; }
  .founder-full-grid { grid-template-columns: 1fr; gap: 3rem; }
  .founder-sidebar { position: static; max-width: 400px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .founder-sidebar { max-width: 100%; }
  .timeline { margin: 1.5rem 0; }
  .tl-item { gap: 1rem; padding-bottom: 1.5rem; }
}

/* ── CLEARCOMMAND PAGE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .cc-hero { padding: 130px 0 90px; }
  .cc-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cc-hero-inner .cc-info-panel { display: none; }
  .cc-hero h1 { font-size: clamp(2.2rem, 7vw, 3.5rem); }
  .cc-hero p { max-width: 100%; }
  .cc-hero-actions { flex-direction: column; align-items: flex-start; }
  .cc-hero-actions .btn { width: 100%; max-width: 360px; }
  .cc-who { padding: 60px 0; }
  .cc-who-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cc-modules { padding: 60px 0; }
  .cc-modules-grid { grid-template-columns: 1fr; }
  .cc-outcomes { padding: 60px 0; }
  .cc-outcomes-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .cc-stats { padding: 50px 0; }
  .cc-stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .cc-facilitator { padding: 60px 0; }
  .cc-fac-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .cc-fac-photo { max-width: 340px; margin: 0 auto; }
  .cc-quote-band { padding: 55px 0; }
}
@media (max-width: 600px) {
  .cc-outcomes-grid { grid-template-columns: 1fr; }
  .cc-stats-grid { grid-template-columns: 1fr; text-align: center; }
  .cc-modules-grid { gap: 1rem; }
  .cc-module-card { padding: 1.75rem; }
  .cc-who-card { font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .cc-hero { padding: 100px 0 70px; }
  .cc-hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .cc-hero-sub-title { font-size: 0.95rem; }
}

/* ── Services page ClearCommand banner responsive ─────────── */
@media (max-width: 760px) {
  div[style*="grid-template-columns:1fr auto"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: flex-start !important;
  }
}

/* ── General touch improvements ─────────────────────────────── */
@media (hover: none) {
  /* Remove hover transforms on touch devices to avoid sticky states */
  .service-card:hover,
  .sf-card:hover,
  .test-card:hover,
  .res-card:hover,
  .value-card:hover,
  .what-feature:hover,
  .cc-module-card:hover,
  .cc-who-card:hover,
  .cc-outcome-card:hover {
    transform: none;
  }
}

/* ── Prevent horizontal scroll on all screens ───────────────── */
body, html { overflow-x: hidden; max-width: 100vw; }

/* ── Safe area insets for notched phones ────────────────────── */
.nav-inner { padding-left: max(2rem, env(safe-area-inset-left)); padding-right: max(2rem, env(safe-area-inset-right)); }
.footer-bottom { padding-bottom: max(1.5rem, env(safe-area-inset-bottom)); }

