/* ============================================================
   ACADENTIUM RESEARCH — Site CSS
   Navy #1B2B5E  |  Green #2D6E35
   ============================================================ */

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

:root {
    --navy: #1B2B5E;
    --navy-dark: #111B3E;
    --navy-mid: #243580;
    --green: #2D6E35;
    --green-dark: #1E4D24;
    --green-light: #3A8A44;
    --navy-tint: #EEF1F8;
    --green-tint: #EBF5EC;
    --bg-light: #F5F7FC;
    --border: #D8DDE8;
    --white: #FFFFFF;
    --text-dark: #0E1528;
    --text-body: #2C3554;
    --text-muted: #5E6B8A;
    --text-light: #9BA8C4;
    --grad-hero: linear-gradient(135deg, #111B3E 0%, #1B2B5E 45%, #243580 70%, #2D6E35 100%);
    --grad-hero-2: linear-gradient(135deg, #1B2B5E 0%, #2D6E35 100%);
    --grad-cta: linear-gradient(135deg, #2D6E35 0%, #1B2B5E 100%);
    --grad-footer: linear-gradient(135deg, #0C1530 0%, #1B2B5E 60%, #1E4D24 100%);
    --grad-stat: linear-gradient(135deg, #5B8DEF, #4DC85A);
    --shadow-sm: 0 2px 8px rgba(27,43,94,.08);
    --shadow-md: 0 6px 24px rgba(27,43,94,.13);
    --shadow-lg: 0 16px 48px rgba(27,43,94,.18);
    --shadow-grn: 0 4px 16px rgba(45,110,53,.25);
    --nav-h: 72px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', sans-serif;
}

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

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--bg-light); }
.section-label { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.section-title { font-family: var(--font-display); font-size: clamp(26px, 4vw, 40px); color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--text-muted); max-width: 600px; line-height: 1.7; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; transition: all .25s ease; border: none; }
.btn-primary { background: var(--grad-cta); color: var(--white); box-shadow: var(--shadow-grn); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,110,53,.38); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.65); }
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Navigation */
.site-nav { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); height: var(--nav-h); display: flex; align-items: center; }
.nav-inner { display: flex; align-items: center; gap: 36px; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 4px; padding: 8px 14px; border-radius: 6px; font-size: 14px; font-weight: 500; color: var(--text-body); transition: all .2s; white-space: nowrap; }
.nav-link:hover, .nav-link.active { background: var(--navy-tint); color: var(--navy); }
.nav-link svg { width: 13px; height: 13px; transition: transform .2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }
.nav-cta { padding: 9px 20px !important; border-radius: 50px !important; background: var(--grad-cta) !important; color: var(--white) !important; font-weight: 600 !important; margin-left: 8px; box-shadow: var(--shadow-grn); }
.nav-cta:hover { transform: translateY(-1px) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: all .3s; }

/* Mega Menu */
.nav-item.has-mega:hover .nav-mega { display: block; }
.nav-mega { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-top: 2px solid var(--navy); border-bottom: 1px solid var(--border); box-shadow: 0 8px 32px rgba(27,43,94,.15); z-index: 999; padding: 32px 0; }
.nav-mega-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.mega-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 16px; border-radius: 10px; transition: all .2s; cursor: pointer; text-decoration: none; color: var(--text-body); }
.mega-item:hover { background: var(--navy-tint); color: var(--navy); }
.mega-item:hover .mega-icon { background: var(--navy); color: var(--white); }
.mega-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; transition: all .2s; }
.mega-text { flex: 1; }
.mega-title { font-size: 13.5px; font-weight: 600; color: var(--text-dark); margin-bottom: 2px; line-height: 1.3; }
.mega-item:hover .mega-title { color: var(--navy); }
.mega-desc { font-size: 11.5px; color: var(--text-light); line-height: 1.4; }

/* Hero */
.hero-full { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(160deg, #0C1530 0%, #1B2B5E 40%, #243580 65%, #1E4D24 100%); overflow: hidden; }
.hero-full::before { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(45,110,53,.22) 0%, transparent 70%); top: -100px; right: -100px; animation: floatOrb1 8s ease-in-out infinite alternate; }
.hero-full::after { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(36,53,128,.35) 0%, transparent 70%); bottom: -80px; left: -80px; animation: floatOrb2 10s ease-in-out infinite alternate; }
@keyframes floatOrb1 { from { transform: translate(0,0) scale(1); } to { transform: translate(-40px,40px) scale(1.15); } }
@keyframes floatOrb2 { from { transform: translate(0,0) scale(1); } to { transform: translate(40px,-40px) scale(1.2); } }
.hero-full-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, rgba(12,21,48,.5) 100%); z-index: 1; }
.hero-full-grid { position: absolute; inset: 0; z-index: 1; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 60px 60px; animation: gridFade 4s ease both; }
@keyframes gridFade { from { opacity: 0; } to { opacity: 1; } }
.hero-full-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.15) 40%, rgba(45,110,53,.4) 60%, transparent); animation: linePulse 4s ease-in-out infinite; z-index: 1; }
@keyframes linePulse { 0%, 100% { opacity: .3; transform: scaleY(.8); } 50% { opacity: 1; transform: scaleY(1); } }
.hero-full-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; background: rgba(255,255,255,.12); animation: particleFloat linear infinite; }
.particle:nth-child(1) { width:4px; height:4px; left:10%; animation-duration:12s; animation-delay:0s; top:80%; }
.particle:nth-child(2) { width:6px; height:6px; left:20%; animation-duration:16s; animation-delay:2s; top:90%; }
.particle:nth-child(3) { width:3px; height:3px; left:30%; animation-duration:10s; animation-delay:4s; top:85%; }
.particle:nth-child(4) { width:5px; height:5px; left:45%; animation-duration:14s; animation-delay:1s; top:95%; }
.particle:nth-child(5) { width:4px; height:4px; left:55%; animation-duration:11s; animation-delay:3s; top:88%; }
.particle:nth-child(6) { width:7px; height:7px; left:65%; animation-duration:18s; animation-delay:0s; top:92%; }
.particle:nth-child(7) { width:3px; height:3px; left:75%; animation-duration:13s; animation-delay:5s; top:80%; }
.particle:nth-child(8) { width:5px; height:5px; left:85%; animation-duration:15s; animation-delay:2s; top:87%; }
.particle:nth-child(9) { width:4px; height:4px; left:90%; animation-duration:9s; animation-delay:6s; top:93%; }
.particle:nth-child(10) { width:6px; height:6px; left:5%; animation-duration:17s; animation-delay:1s; top:75%; }
.particle:nth-child(11) { width:3px; height:3px; left:38%; animation-duration:12s; animation-delay:7s; top:70%; }
.particle:nth-child(12) { width:5px; height:5px; left:60%; animation-duration:14s; animation-delay:3s; top:78%; }
@keyframes particleFloat { 0% { transform:translateY(0) translateX(0); opacity:0; } 10% { opacity:1; } 90% { opacity:.6; } 100% { transform:translateY(-100vh) translateX(30px); opacity:0; } }
.hero-full-content { position: relative; z-index: 2; max-width: 700px; padding: 0 24px; }
.hero-full-content h1 { font-family: var(--font-display); font-size: clamp(36px,6vw,64px); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 20px; animation: fadeUp .8s ease .2s both; }
.hero-full-content p { font-size: 18px; color: rgba(255,255,255,.72); line-height: 1.8; max-width: 520px; margin: 0 auto; animation: fadeUp .8s ease .4s both; }
.hero-full-content .hero-actions { justify-content: center; margin-top: 28px; animation: fadeUp .8s ease .6s both; }
.hero-full-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; animation: fadeUp .8s ease .8s both; }
.hero-full-scroll span { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.scroll-dots { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.scroll-dots i { display: block; width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,.5); }
.scroll-dots i:nth-child(1) { animation: dotPulse 1.5s ease 0s infinite; }
.scroll-dots i:nth-child(2) { animation: dotPulse 1.5s ease .2s infinite; }
.scroll-dots i:nth-child(3) { animation: dotPulse 1.5s ease .4s infinite; }
@keyframes dotPulse { 0%,100% { opacity:.2; transform:scale(1); } 50% { opacity:1; transform:scale(1.4); } }
.hero-full-sm { height: 60vh; min-height: 400px; }

/* Stats */
.stats-strip { background: var(--navy-dark); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 36px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-value { font-family: var(--font-display); font-size: 38px; font-weight: 700; line-height: 1; margin-bottom: 6px; background: var(--grad-stat); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500; }
.stat-label-who-we-are { font-size: 13px; color: var(--text-muted); font-weight: 600; }

/* Services */
.card-grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: all .25s; display: flex; flex-direction: column; gap: 14px; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--navy); }
.service-icon { width: 48px; height: 48px; background: var(--navy-tint); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.service-card h3 { font-family: var(--font-display); font-size: 17px; color: var(--text-dark); line-height: 1.3; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; flex: 1; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--green); transition: gap .2s; }
.card-link:hover { gap: 10px; }
a.service-card { color: var(--text-body); }
a.service-card h3 { color: var(--text-dark); }

/* Marquee */
.marquee-wrap { background: var(--white); padding: 40px 0; overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-label { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-light); margin-bottom: 28px; }
.marquee-track { display: flex; gap: 64px; animation: marquee 32s linear infinite; width: max-content; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; height: 50px; width: 70px; opacity: .45; filter: grayscale(1); transition: all .2s; white-space: nowrap; font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: .04em; }
.marquee-item:hover { opacity: 1; filter: grayscale(0); color: var(--green); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* CTA */
.cta-banner { background: var(--grad-cta); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 75% at 50% 50%, rgba(255,255,255,.07), transparent); }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(26px,4vw,40px); color: var(--white); margin-bottom: 14px; position: relative; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,.82); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; }

/* Footer */
.site-footer { background: var(--grad-footer); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-tagline { font-size: 13.5px; color: rgba(255,255,255,.55); margin: 16px 0 24px; line-height: 1.75; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; transition: all .2s; color: rgba(255,255,255,.75); }
.footer-social a:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; color: rgba(255,255,255,.35); }

/* Who We Are */
.about-body { font-size: 16px; line-height: 1.85; color: var(--text-body); }
.about-body p { margin-bottom: 20px; }
.about-body strong { color: var(--navy); }

/* Contact */
.contact-panel { display: none; }
.contact-panel.active { display: grid; gap: 40px; grid-template-columns: 1fr 1fr; }
.info-card { background: var(--navy-tint); border-radius: var(--radius-lg); padding: 32px; }
.info-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--navy); margin-bottom: 24px; }
.info-row { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.info-icon { width: 36px; height: 36px; flex-shrink: 0; background: var(--white); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.info-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-light); }
.info-value { font-size: 14px; color: var(--text-dark); margin-top: 2px; }
.info-value a { color: var(--green); }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.contact-form h3 { font-family: var(--font-display); font-size: 22px; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-body); margin-bottom: 6px; }
.form-group label span { color: var(--green); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-family: var(--font-body); font-size: 14px; color: var(--text-dark); background: var(--white); transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,43,94,.1); }
.form-group textarea { min-height: 120px; resize: vertical; }

/* Service & Policy Detail */
.service-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.service-detail-breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.service-detail-breadcrumb a { color: var(--text-muted); }
.service-detail-breadcrumb a:hover { color: var(--navy); }
.service-detail-title { display: flex; align-items: center; gap: 12px; margin-bottom: 40px; }
.service-detail-title-icon { width: 36px; height: 36px; color: var(--green); font-size: 24px; }
.service-detail-title h1 { font-family: var(--font-display); font-size: clamp(22px,3vw,32px); color: var(--text-dark); font-weight: 700; }
.service-detail-section { margin-bottom: 32px; }
.service-detail-section h2 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.service-detail-section p { font-size: 15px; color: var(--text-body); line-height: 1.85; }
.service-detail-section p strong { color: var(--navy); }
.service-sidebar { position: sticky; top: 88px; }
.service-sidebar-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.service-sidebar-list { display: flex; flex-direction: column; }
.service-sidebar-item { display: flex; align-items: center; gap: 10px; padding: 11px 14px; border-radius: 8px; font-size: 13.5px; color: var(--text-body); transition: all .2s; border-left: 3px solid transparent; }
.service-sidebar-item:hover { background: var(--navy-tint); color: var(--navy); border-left-color: var(--navy); }
.service-sidebar-item.active { background: var(--navy-tint); color: var(--navy); border-left-color: var(--green); font-weight: 600; }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.animate { animation: fadeUp .5s ease both; }
.animate-d1 { animation-delay: .1s; }
.animate-d2 { animation-delay: .2s; }
.animate-d3 { animation-delay: .3s; }

/* How It Works */
.how-steps { display: flex; flex-direction: column; gap: 0; position: relative; max-width: 860px; margin: 0 auto; }
.how-steps::before { content: ''; position: absolute; left: 52px; top: 24px; bottom: 24px; width: 2px; background: linear-gradient(to bottom, var(--navy), var(--green)); opacity: .2; }
.how-step { display: flex; gap: 32px; align-items: flex-start; padding: 32px 0; border-bottom: 1px solid var(--border); position: relative; }
.how-step:last-child { border-bottom: none; }
.how-step-number { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--white); background: var(--grad-cta); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; letter-spacing: .04em; position: relative; z-index: 1; box-shadow: 0 4px 12px rgba(45,110,53,.3); margin-top: 4px; }
.how-step-content { flex: 1; }
.how-step-icon { font-size: 28px; margin-bottom: 10px; }
.how-step-content h3 { font-family: var(--font-display); font-size: 20px; color: var(--text-dark); margin-bottom: 10px; line-height: 1.3; }
.how-step-content p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 10px; }
.how-step-note { font-size: 13px; font-style: italic; font-weight: 600; color: var(--green); }

/* Promise Cards */
.promise-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; text-align: center; transition: all .25s; }
.promise-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--navy); }
.promise-icon { font-size: 36px; margin-bottom: 16px; }
.promise-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.promise-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Waiver Page */
.waiver-list { display: flex; flex-direction: column; gap: 32px; }
.waiver-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .25s; }
.waiver-card:hover { box-shadow: var(--shadow-lg); border-color: var(--navy); }
.waiver-card-header { background: var(--grad-hero); padding: 28px 36px; }
.waiver-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.7); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 50px; padding: 4px 14px; margin-bottom: 12px; }
.waiver-card-header h3 { font-family: var(--font-display); font-size: clamp(18px,2.5vw,24px); color: var(--white); line-height: 1.3; }
.waiver-card-body { padding: 32px 36px; }
.waiver-card-body p { font-size: 15px; color: var(--text-body); line-height: 1.85; margin-bottom: 16px; }
.waiver-card-body p strong { color: var(--navy); }
.waiver-card-body p em { color: var(--green); font-style: italic; }
.waiver-quote { font-family: var(--font-display); font-size: 16px; font-style: italic; color: var(--text-muted); border-left: 4px solid var(--green); padding: 12px 20px; margin: 20px 0 8px; background: var(--green-tint); border-radius: 0 8px 8px 0; }
.waiver-criteria-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.waiver-criteria-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.waiver-criteria-item p { font-size: 15px; color: var(--text-body); line-height: 1.7; margin: 0; }
.waiver-step-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.waiver-step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--grad-cta); color: var(--white); font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.waiver-step-item p { font-size: 15px; color: var(--text-body); line-height: 1.7; margin: 0; }
.waiver-header-inner { display: flex; align-items: center; gap: 28px; }
.waiver-photo-wrap { position: relative; flex-shrink: 0; }
.waiver-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 4px solid rgba(255,255,255,.3); display: block; position: relative; z-index: 1; }
.waiver-photo-ring { position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(255,255,255,.15); animation: ringPulse 3s ease-in-out infinite; }
@keyframes ringPulse { 0%,100% { transform:scale(1); opacity:.5; } 50% { transform:scale(1.06); opacity:1; } }
.waiver-header-text { flex: 1; }
.waiver-header-text h3 { font-family: var(--font-display); font-size: clamp(18px,2.5vw,26px); color: var(--white); line-height: 1.2; margin-bottom: 6px; }
.waiver-subtitle { font-size: 13px; color: rgba(255,255,255,.6); font-weight: 500; margin: 0; }

/* Founder Cards */
.founder-card { display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); text-decoration: none; color: var(--text-body); transition: all .3s ease; background: var(--white); }
.founder-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--navy); }
.founder-photo-wrap { position: relative; overflow: hidden; height: 280px; background: var(--bg-light); }
.founder-photo { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform .4s ease; }
.founder-card:hover .founder-photo { transform: scale(1.04); }
.founder-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,43,94,.85) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: opacity .3s; }
.founder-card:hover .founder-photo-overlay { opacity: 1; }
.founder-photo-overlay span { font-size: 14px; font-weight: 700; color: var(--white); letter-spacing: .04em; }
.founder-info { padding: 24px; }
.founder-info h3 { font-family: var(--font-display); font-size: 20px; color: var(--text-dark); margin-bottom: 4px; }
.founder-role { font-size: 12px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.founder-info p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Founder Profile */
.founder-profile-layout { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: start; }
.founder-profile-photo-col { position: sticky; top: 88px; }
.founder-profile-photo-wrap { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 24px; box-shadow: var(--shadow-md); }
.founder-profile-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; display: block; }
.founder-profile-meta { background: var(--bg-light); border-radius: var(--radius-md); padding: 20px; margin-bottom: 16px; }
.founder-meta-item { padding: 10px 0; border-bottom: 1px solid var(--border); }
.founder-meta-item:last-child { border-bottom: none; }
.founder-meta-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; }
.founder-meta-value { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.founder-profile-section p { font-size: 16px; color: var(--text-body); line-height: 1.85; margin-bottom: 18px; }
.founder-profile-section p strong { color: var(--navy); }
.founder-promise-box { background: var(--navy-tint); border-radius: var(--radius-lg); padding: 28px; margin-top: 32px; border-left: 4px solid var(--navy); }

/* Service included list */
.service-included-list ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.service-included-list li { font-size: 15px; color: var(--text-body); line-height: 1.75; padding: 12px 16px 12px 44px; background: var(--bg-light); border-radius: 8px; border-left: 3px solid var(--green); position: relative; }
.service-included-list li::before { content: '✓'; position: absolute; left: 14px; top: 12px; color: var(--green); font-weight: 700; font-size: 14px; }

/* Font Awesome icon sizing */
.service-icon i, .service-detail-title-icon i { font-size: 20px; color: var(--navy); }
.info-icon i { font-size: 16px; color: var(--navy); }
.how-step-icon i { color: var(--navy); }
.promise-icon i { color: var(--green); }
.mega-icon i { font-size: 15px; color: var(--navy); }

/* Responsive */
@media (max-width: 1024px) {
    .service-detail-layout { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
}
@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-panel.active { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .founder-profile-layout { grid-template-columns: 1fr; }
    .founder-profile-photo-col { position: static; }
    .founder-profile-photo { aspect-ratio: 1/1; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open { display: flex; flex-direction: column; align-items: flex-start; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 24px 24px; gap: 4px; box-shadow: var(--shadow-md); z-index: 999; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 56px 0; }
    .hero-full-sm { height: 50vh; }
    .how-steps::before { display: none; }
    .how-step { gap: 20px; }
    .waiver-card-header, .waiver-card-body { padding: 24px 20px; }
    .waiver-header-inner { flex-direction: column; text-align: center; }
    .waiver-photo { width: 80px; height: 80px; }
    .founder-photo-wrap { height: 220px; }
}
