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

:root {
  --navy: #0f1623;
  --navy2: #161f30;
  --blue: #2557d6;
  --blue-light: #4a7aff;
  --text: #0f1623;
  --secondary: #4a5568;
  --muted: #718096;
  --bg: #f8f9fc;
  --subtle: #f0f4ff;
  --border: #e2e8f0;
  --border-strong: #cbd5e0;
  --radius: 4px;
  --radius-lg: 8px;
  --heading: 'Lato', sans-serif;
  --body: 'DM Sans', system-ui, sans-serif;
  --max: 1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); font-size: 17px; line-height: 1.75; color: var(--text); background: #fff; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--heading); line-height: 1.2; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: var(--text); }
h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); }
p { margin-bottom: 1rem; color: var(--secondary); }
p:last-child { margin-bottom: 0; }

.label { font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--blue); margin-bottom: .8rem; display: block; }
.label-light { font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: .8rem; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 2rem; }

/* ── NAV ── */
nav { background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.08); position: sticky; top: 0; z-index: 100; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; max-width: var(--max); margin: 0 auto; padding: 0 2rem; }
.nav-logo img { height: 70px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: .86rem; color: rgba(255,255,255,.7); transition: color .2s; font-family: var(--body); }
.nav-links a:hover { color: #fff; text-decoration: none; }
.nav-links a.active { color: #fff; }
.nav-cta { background: var(--blue) !important; color: #fff !important; padding: .5rem 1.2rem; border-radius: var(--radius); font-weight: 500; font-size: .84rem; transition: background .2s; }
.nav-cta:hover { background: var(--blue-light) !important; text-decoration: none !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.8); transition: .3s; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--body); font-size: .88rem; font-weight: 500; padding: .75rem 1.6rem; border-radius: var(--radius); transition: all .2s; text-decoration: none; border: none; cursor: pointer; line-height: 1; }
.btn::after { content: '→'; opacity: .7; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-light); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost:hover { border-color: #fff; color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border-strong); }
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #1e2d47; color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn-no-arrow::after { content: none; }

/* ── SECTIONS ── */
section { padding: 5rem 0; }
section.tight { padding: 3.5rem 0; }
.off { background: var(--bg); }
.subtle { background: var(--subtle); }
.dark { background: var(--navy); }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-header h2 { margin-bottom: .8rem; }
.section-header p { font-size: 1rem; }

/* ── HERO ── */
.hero { background: var(--navy); padding: 6.5rem 0 5.5rem; }
.hero-inner { max-width: 820px; }
.hero h1 { color: #fff; margin-bottom: 0; }
.hero h1 .line1 { display: block; margin-bottom: 1.6rem; }
.hero h1 .line2 { display: block; color: rgba(255,255,255,.78); white-space: nowrap; }
.hero-sub { font-size: 1.05rem; max-width: 680px; margin-top: 2rem; margin-bottom: .6rem; color: rgba(255,255,255,.65); line-height: 1.8; }
.hero-punch { font-size: 1.1rem; font-weight: 700; color: rgba(255,255,255,.88); letter-spacing: .01em; margin-bottom: 2.5rem; font-family: var(--heading); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: .78rem; color: rgba(255,255,255,.38); margin-top: 1rem; }
.hero-rule { width: 48px; height: 2px; background: rgba(255,255,255,.15); margin: 3.5rem 0 3rem; }
.hero-proof { display: grid; grid-template-columns: repeat(3,1fr); max-width: 560px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); overflow: hidden; }
.hero-proof-item { padding: 1.2rem 1.5rem; border-right: 1px solid rgba(255,255,255,.1); }
.hero-proof-item:last-child { border-right: none; }
.hero-proof-item strong { display: block; font-family: var(--heading); font-size: 1.4rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: .2rem; }
.hero-proof-item span { font-size: .72rem; color: rgba(255,255,255,.4); line-height: 1.4; }

/* ── FREE CTA STRIPE ── */
.free-stripe { background: var(--blue); padding: 1.6rem 0; }
.free-stripe-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.free-stripe p { color: rgba(255,255,255,.9); font-size: 1rem; font-weight: 500; margin: 0; font-family: var(--heading); }
.free-stripe p span { color: #fff; font-weight: 700; }

/* ── STATEMENT GRID ── */
.statement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.statement-grid h2 { font-size: clamp(1.5rem,3vw,2.1rem); margin-bottom: 0; }

/* ── SITUATIONS ── */
.situations { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5px; background: var(--border); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.situation { background: #fff; padding: 2.2rem; }
.sit-dot { width: 7px; height: 7px; background: var(--blue); border-radius: 50%; margin-bottom: 1.2rem; }
.situation h3 { margin-bottom: .5rem; font-size: 1rem; }
.situation p { font-size: .88rem; margin: 0; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.scard { border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 2.2rem 2rem; background: #fff; transition: border-color .2s, transform .2s; display: flex; flex-direction: column; }
.scard:hover { border-color: var(--blue); transform: translateY(-3px); }
.scard.featured { background: var(--navy); border-color: var(--navy); }
.scard.featured h3, .scard.featured p { color: #fff; }
.scard.featured p { color: rgba(255,255,255,.65); }
.scard.featured .svc-tag { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
.svc-tag { display: inline-block; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: var(--subtle); color: var(--blue); padding: .25rem .7rem; border-radius: 2px; margin-bottom: 1.5rem; }
.scard h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.scard p { font-size: .88rem; margin-bottom: 1.5rem; flex: 1; }

/* ── TESTIMONIALS ── */
.tgrid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; }
.tcard { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; position: relative; }
.tcard::before { content: '\201C'; font-family: var(--heading); font-size: 4rem; color: var(--border); position: absolute; top: .5rem; left: 1.5rem; line-height: 1; }
.tcard blockquote { font-size: .91rem; line-height: 1.7; color: var(--text); margin-bottom: 1.2rem; position: relative; z-index: 1; }
.tauthor { font-size: .79rem; color: var(--muted); }
.tauthor strong { color: var(--text); display: block; margin-bottom: .1rem; font-family: var(--heading); }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; position: relative; }
.steps::before { content: ''; position: absolute; top: 1.2rem; left: calc(33.33% - .5rem); right: calc(33.33% - .5rem); height: 1px; background: var(--border); }
.step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; font-family: var(--heading); font-size: 1rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; position: relative; z-index: 1; }
.step h3 { margin-bottom: .4rem; font-size: 1rem; }
.step p { font-size: .88rem; margin: 0; }

/* ── CTA DARK ── */
.cta-dark { background: var(--navy); padding: 5.5rem 0; text-align: center; }
.cta-dark h2 { color: #fff; margin-bottom: .8rem; }
.cta-dark p { color: rgba(255,255,255,.55); margin-bottom: 2rem; font-size: 1rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── BRANDS STRIP ── */
.brands-strip { padding: 2rem 0; border-top: 1px solid var(--border); }
.brands-label { font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.brands-list { display: flex; flex-wrap: wrap; gap: 1.2rem 2.5rem; align-items: center; }
.brands-list span { font-family: var(--heading); font-size: 1rem; font-weight: 700; color: var(--border-strong); letter-spacing: -.01em; transition: color .2s; }
.brands-list span:hover { color: var(--navy); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--navy); padding: 4rem 0 3.5rem; }
.page-eyebrow { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.2rem; }
.page-eyebrow-line { width: 28px; height: 2px; background: var(--blue); }
.page-eyebrow span { font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem,4vw,2.8rem); margin-bottom: .8rem; }
.page-hero p { font-size: 1rem; max-width: 580px; color: rgba(255,255,255,.6); }

/* ── SERVICES PAGE ── */
.svc-full { padding: 4.5rem 0; border-bottom: 1px solid var(--border); }
.svc-full:last-of-type { border-bottom: none; }
.svc-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.svc-meta-card { padding: 1.8rem; background: var(--bg); border-radius: var(--radius-lg); border: 1.5px solid var(--border); }
.svc-meta-row { display: flex; justify-content: space-between; padding: .7rem 0; border-bottom: 1px solid var(--border); font-size: .86rem; }
.svc-meta-row:last-child { border-bottom: none; }
.svc-meta-row span:first-child { color: var(--muted); }
.svc-meta-row span:last-child { font-weight: 500; }
.inc { display: flex; gap: .7rem; margin-bottom: .7rem; font-size: .88rem; color: var(--secondary); }
.inc::before { content: '✓'; color: var(--blue); font-weight: 700; min-width: 1rem; }
.quote-block { border-left: 3px solid var(--blue); padding: 1.2rem 1.8rem; margin: 2rem 0; background: var(--subtle); border-radius: 0 var(--radius) var(--radius) 0; }
.quote-block blockquote { font-family: var(--heading); font-size: 1rem; line-height: 1.65; color: var(--text); font-style: italic; margin-bottom: .5rem; }
.quote-block cite { font-size: .76rem; color: var(--muted); font-style: normal; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.2rem 0; }
.faq-q { font-weight: 700; margin-bottom: .5rem; font-size: .92rem; color: var(--text); font-family: var(--heading); }
.faq-a { font-size: .88rem; color: var(--secondary); margin: 0; }

/* ── ABOUT PAGE ── */
.about-grid { display: grid; grid-template-columns: 1fr 300px; gap: 4.5rem; align-items: start; }
.about-photo { position: sticky; top: 90px; }
.about-photo img { width: 100%; border-radius: var(--radius-lg); height: 400px; object-fit: cover; object-position: top; }

/* ── BOOK PAGE ── */
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }
.calendly-box { background: var(--bg); border: 2px dashed var(--border-strong); border-radius: var(--radius-lg); padding: 2.5rem 2rem; text-align: center; margin-bottom: 1.5rem; }
.form-label { display: block; font-size: .8rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; font-family: var(--heading); }
.form-input { width: 100%; padding: .7rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--body); font-size: .9rem; color: var(--text); background: #fff; transition: border-color .2s; outline: none; }
.form-input:focus { border-color: var(--blue); }
.what-expect li { padding: .65rem 0; border-bottom: 1px solid var(--border); font-size: .88rem; color: var(--secondary); display: flex; gap: .7rem; list-style: none; }
.what-expect li::before { content: '→'; color: var(--blue); font-weight: 700; }
.what-expect li:last-child { border-bottom: none; }
.intake-q { display: flex; gap: .8rem; padding: .8rem 0; border-bottom: 1px solid var(--border); font-size: .86rem; color: var(--secondary); }
.intake-q:last-child { border-bottom: none; }
.intake-num { font-family: var(--heading); font-weight: 900; color: var(--navy); min-width: 1.2rem; }

/* ── INSIGHTS ── */
.art-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.art-card { border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: #fff; transition: border-color .2s, transform .2s; display: block; text-decoration: none; }
.art-card:hover { border-color: var(--blue); transform: translateY(-3px); text-decoration: none; }
.art-tag-bar { background: var(--subtle); padding: .7rem 1.2rem; font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); }
.art-body { padding: 1.5rem 1.2rem; }
.art-body h3 { font-size: .95rem; margin-bottom: .5rem; color: var(--text); }
.art-body p { font-size: .84rem; margin-bottom: .8rem; }
.art-read { font-size: .78rem; font-weight: 700; color: var(--blue); font-family: var(--heading); }

/* ── ARTICLE PAGE ── */
.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 4rem; align-items: start; }
.article-content h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.article-content h3 { font-size: 1.1rem; margin: 2rem 0 .8rem; }
.article-content p { margin-bottom: 1.2rem; font-size: 1.02rem; line-height: 1.8; }
.article-content ul, .article-content ol { margin: 0 0 1.2rem 1.5rem; }
.article-content li { margin-bottom: .5rem; color: var(--secondary); font-size: 1rem; line-height: 1.7; }
.article-pullquote { border-left: 4px solid var(--blue); padding: 1.5rem 2rem; margin: 2.5rem 0; background: var(--subtle); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.article-pullquote p { font-family: var(--heading); font-size: 1.15rem; font-weight: 700; color: var(--navy); font-style: italic; margin: 0; }
.article-faq { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.article-faq h2 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.article-sidebar { position: sticky; top: 90px; }
.sidebar-cta { background: var(--navy); border-radius: var(--radius-lg); padding: 2rem; color: #fff; margin-bottom: 1.5rem; }
.sidebar-cta h3 { color: #fff; font-size: 1rem; margin-bottom: .6rem; }
.sidebar-cta p { color: rgba(255,255,255,.6); font-size: .86rem; margin-bottom: 1.2rem; }
.article-meta { font-size: .8rem; color: var(--muted); margin-bottom: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.related-articles { background: var(--bg); border-radius: var(--radius-lg); padding: 1.5rem; }
.related-articles h4 { font-size: .85rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .08em; }
.related-link { display: block; font-size: .84rem; color: var(--blue); margin-bottom: .6rem; line-height: 1.4; }
.related-link:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer { background: #080e18; padding: 3.5rem 0 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand img { height: 40px; opacity: .6; margin-bottom: .8rem; }
.footer-brand p { font-size: .83rem; color: rgba(255,255,255,.35); max-width: 260px; }
.fcol h4 { color: rgba(255,255,255,.4); font-family: var(--body); font-size: .68rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .8rem; }
.fcol ul { list-style: none; }
.fcol ul li { margin-bottom: .5rem; }
.fcol ul a { color: rgba(255,255,255,.4); font-size: .85rem; transition: color .2s; }
.fcol ul a:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; display: flex; justify-content: space-between; font-size: .74rem; color: rgba(255,255,255,.22); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .statement-grid, .svc-inner, .about-grid, .book-grid, .article-layout { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .situations { grid-template-columns: 1fr; }
  .tgrid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-photo { position: static; }
  .art-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 .line2 { white-space: normal; }
}
@media (max-width: 640px) {
  section { padding: 3.5rem 0; }
  .hero { padding: 4rem 0 3.5rem; }
  .hero-proof { grid-template-columns: 1fr; max-width: 280px; }
  .hero-proof-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-proof-item:last-child { border-bottom: none; }
  .free-stripe-inner { flex-direction: column; text-align: center; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); border-bottom: 1px solid rgba(255,255,255,.1); padding: 1.5rem 2rem; gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .art-grid { grid-template-columns: 1fr; }
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.fade { animation: fadeUp .55s ease both; }
.fade2 { animation: fadeUp .55s .1s ease both; }
.fade3 { animation: fadeUp .55s .2s ease both; }
.fade4 { animation: fadeUp .55s .3s ease both; }
