*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --blue: #1a3aff; --deep-blue: #0d1f8c; --mid-blue: #1428cc; --gold: #c9a84c; --gold-dark: #a8893a; --white: #ffffff; --off-white: #f5f6ff; --light-blue: #e8ecff; --light-border: #d0d6ff; --text-gray: #4a5568; --dark: #060820; --nav-link: rgba(255,255,255,.65); }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', Arial, Helvetica, sans-serif; font-size: 17px; color: var(--deep-blue); background: var(--white); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; width: 100%; }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); line-height: 1; }
.h-section { font-family: Georgia, serif; font-size: 48px; font-weight: 400; line-height: 1.15; color: var(--deep-blue); }
.nav { position: sticky; top: 0; z-index: 100; background: var(--blue); height: 72px; display: flex; align-items: center; padding: 0 24px; border-bottom: 1px solid transparent; transition: border-color .3s; }
.nav--scrolled { border-bottom-color: rgba(255,255,255,.12); }
.nav-inner { max-width: 1120px; width: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo-pill { display: inline-flex; align-items: center; background: var(--white); border-radius: 6px; padding: 6px 12px; }
.nav-logo-pill img { height: 44px; width: auto; display: block; }
.nav-right { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 14px; color: var(--nav-link); transition: color .15s; }
.nav-link:hover { color: var(--white); }
.nav-cta { font-size: 13px; font-weight: 600; letter-spacing: .06em; padding: 10px 24px; background: var(--gold); color: var(--deep-blue); border-radius: 3px; transition: background .15s; }
.nav-cta:hover { background: var(--gold-dark); color: var(--white); }
.hero { background: linear-gradient(165deg, var(--deep-blue) 0%, var(--blue) 50%, var(--mid-blue) 100%); min-height: 92vh; padding: 80px 24px; }
.hero-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 60% 40%; gap: 48px; align-items: center; }
.hero-headline { font-family: Georgia, serif; font-size: 72px; font-weight: 400; line-height: 1.1; color: var(--white); max-width: 680px; margin-top: 24px; }
.hero-body { font-size: 17px; line-height: 1.8; color: var(--nav-link); max-width: 520px; margin-top: 28px; }
.hero-buttons { display: flex; gap: 16px; margin-top: 48px; flex-wrap: wrap; }
.btn-gold { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .06em; padding: 14px 32px; background: var(--gold); color: var(--deep-blue); border-radius: 3px; }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }
.btn-outline-white { display: inline-block; font-size: 13px; font-weight: 600; padding: 14px 32px; background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.4); border-radius: 3px; }
.btn-outline-white:hover { background: rgba(255,255,255,.08); }
.hero-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 8px; padding: 32px; }
.hero-card-row { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hero-card-row:first-child { padding-top: 0; }
.hero-card-row:last-of-type { border-bottom: none; }
.hero-card-label { font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); line-height: 1; }
.hero-card-value { font-size: 16px; color: var(--white); margin-top: 8px; line-height: 1.4; }
.hero-card-btn { display: block; width: 100%; text-align: center; margin-top: 24px; padding: 12px 0; background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.4); border-radius: 4px; color: var(--gold); font-size: 13px; font-weight: 600; }
.hero-card-btn:hover { background: rgba(201,168,76,.25); }
.hero-line { max-width: 1120px; margin: 80px auto 0; height: 1px; background: rgba(255,255,255,.12); }
.pull-quote-section { background: var(--white); padding: 80px 24px; }
.pull-quote-inner { max-width: 760px; margin: 0 auto; border-left: 4px solid var(--gold); padding-left: 40px; }
.pull-quote-text { font-family: Georgia, serif; font-size: 36px; font-weight: 400; line-height: 1.3; color: var(--deep-blue); }
.pull-quote-attr { font-size: 13px; color: var(--text-gray); margin-top: 20px; }
.section { padding: 120px 24px; }
.section--off-white { background: var(--off-white); }
.section--blue { background: var(--blue); }
.section--deep-blue { background: linear-gradient(170deg, var(--deep-blue) 0%, var(--mid-blue) 100%); }
.section--white { background: var(--white); }
.section--blue .h-section, .section--deep-blue .h-section { color: var(--white); }
.section-body { font-size: 17px; line-height: 1.8; color: var(--text-gray); max-width: 580px; margin-top: 24px; }
.section--deep-blue .section-body { color: var(--nav-link); max-width: 560px; }
.section-body + .cards-grid, .section-body + .steps-wrapper { margin-top: 72px; }
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 72px; }
.card { background: var(--white); border: 1px solid var(--light-blue); border-top: 3px solid var(--gold); border-radius: 4px; padding: 48px 40px; }
.card-num { font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
.card-title { font-family: Georgia, serif; font-size: 22px; font-weight: 500; color: var(--deep-blue); margin-top: 16px; line-height: 1.3; }
.card-body { font-size: 16px; line-height: 1.8; color: var(--text-gray); margin-top: 16px; }
.steps-wrapper { position: relative; margin-top: 72px; }
.steps-line { position: absolute; top: 16px; left: 16px; right: 16px; height: 1px; background: rgba(201,168,76,.3); z-index: 0; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; position: relative; z-index: 1; }
.step-circle { width: 32px; height: 32px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: Georgia, serif; font-size: 14px; color: var(--gold); background: var(--deep-blue); flex-shrink: 0; }
.step-title { font-family: Georgia, serif; font-size: 16px; color: var(--white); margin-top: 20px; line-height: 1.3; }
.step-body { font-size: 14px; line-height: 1.7; color: var(--nav-link); margin-top: 10px; }
.team-grid { display: grid; grid-template-columns: 60% 40%; gap: 64px; margin-top: 48px; align-items: start; }
.team-body { font-size: 17px; line-height: 1.8; color: var(--text-gray); }
.firm-badges { display: flex; gap: 12px; margin-top: 48px; flex-wrap: wrap; }
.firm-badge { border: 1px solid var(--light-border); background: var(--off-white); border-radius: 3px; padding: 12px 24px; font-size: 13px; font-weight: 600; color: var(--blue); }
.team-quote { border-left: 4px solid var(--gold); padding-left: 32px; }
.team-quote-text { font-family: Georgia, serif; font-size: 22px; font-weight: 400; line-height: 1.5; color: var(--deep-blue); }
.section--stats { padding: 100px 24px; }
.stats-title { font-family: Georgia, serif; font-size: 36px; color: var(--deep-blue); text-align: center; margin-bottom: 72px; line-height: 1.2; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.stat { border-top: 3px solid var(--gold); padding-top: 32px; text-align: center; }
.stat-number { font-family: Georgia, serif; font-size: 64px; color: var(--deep-blue); line-height: 1; }
.stat-label { font-size: 14px; line-height: 1.6; color: var(--text-gray); margin-top: 8px; }
.cta-section { background: var(--gold); padding: 100px 24px; }
.cta-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 60% 40%; gap: 48px; align-items: center; }
.cta-headline { font-family: Georgia, serif; font-size: 48px; line-height: 1.2; color: var(--deep-blue); }
.cta-btn-wrap { display: flex; justify-content: flex-end; align-items: center; }
.btn-deep-lg { display: inline-block; font-size: 14px; font-weight: 600; padding: 18px 40px; background: var(--deep-blue); color: var(--white); border-radius: 3px; white-space: nowrap; }
.btn-deep-lg:hover { background: var(--dark); }
.footer { background: var(--dark); padding: 64px 24px; }
.footer-inner { max-width: 1120px; margin: 0 auto; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-logo-pill { display: inline-flex; align-items: center; background: var(--white); border-radius: 6px; padding: 6px 12px; margin-bottom: 12px; }
.footer-logo-pill img { height: 36px; width: auto; }
.footer-copy { font-size: 13px; color: #4a5568; line-height: 1.6; }
.footer-email { color: var(--gold); transition: opacity .15s; }
.footer-email:hover { opacity: .7; }
.footer-links { display: flex; gap: 32px; align-items: flex-end; }
.footer-link { font-size: 13px; color: #4a5568; transition: color .15s; }
.footer-link:hover { color: var(--white); }
@media (max-width:768px) { .hero { min-height: auto; padding: 120px 24px 60px; } .hero-inner, .team-grid, .cta-inner { grid-template-columns: 1fr; } .hero-headline { font-size: 44px; } .hero-card { display: none; } .hero-line { margin-top: 48px; } .h-section { font-size: 36px; } .pull-quote-text { font-size: 26px; } .cards-grid, .stats-grid { grid-template-columns: 1fr; gap: 40px; } .steps-line { display: none; } .steps-grid { grid-template-columns: 1fr 1fr; gap: 40px; } .team-grid { gap: 48px; } .stats-title { font-size: 28px; } .stat-number { font-size: 48px; } .cta-section { padding: 80px 24px; } .cta-inner { text-align: center; } .cta-headline { font-size: 36px; } .cta-btn-wrap { justify-content: center; } .nav-right .nav-link { display: none; } .footer-inner { flex-direction: column; } .footer-links { flex-wrap: wrap; gap: 20px; } }