:root {
  /* Dark blue theme derived from logo */
  --navy-900: #0a1a3f;   /* deepest navy — hero base */
  --navy-800: #0f2452;   /* section dark bg */
  --navy-700: #16305f;
  --navy-600: #1e3a6e;   /* royal blue */
  --navy-500: #2b4a86;
  --ink:      #0c1b38;   /* body text on light */
  --slate:    #4a5a76;   /* secondary text */
  --mist:     #eef2f8;   /* light section bg */
  --line:     #d9e1ef;   /* borders on light */
  --white:    #ffffff;

  /* Contrasting accent — cyan from logo nodes */
  --cyan:     #23c7e8;
  --cyan-600: #17a9c9;
  --cyan-300: #7fe0f2;

  --radius: 12px;
  --maxw: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.65;
  background: var(--white);
}

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

/* Buttons */
.btn {
  display: inline-block;
  background: var(--cyan);
  color: var(--navy-900);
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
}
.btn:hover { background: var(--cyan-300); box-shadow: 0 6px 18px rgba(35,199,232,0.35); }
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.9rem; }
.btn-full { width: 100%; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(127,224,242,0.7);
}
.btn-ghost:hover { background: rgba(35,199,232,0.14); box-shadow: none; }
.btn-ghost.dark { color: var(--white); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,26,63,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { font-weight: 700; font-size: 1.15rem; color: var(--white); text-decoration: none; letter-spacing: 0.3px; }
.brand span { color: var(--cyan); font-weight: 600; }
.brand.small { font-size: 1rem; }
.brand-logo { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.logo-pill {
  display: inline-flex; align-items: center;
  background: var(--white);
  padding: 7px 14px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  line-height: 0;
}
.logo-pill img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { color: #cdd8ec; text-decoration: none; font-weight: 500; }
.nav-links a:hover { color: var(--cyan); }
.nav-links a.btn { color: var(--navy-900); }

/* Hero */
.hero {
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(35,199,232,0.18), transparent 60%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-600) 100%);
  color: var(--white);
  padding: 5.5rem 0 5rem;
}
.hero-inner { max-width: 780px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan-300);
  margin-bottom: 1rem;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.15; margin-bottom: 1.25rem; }
.lede { font-size: 1.15rem; color: #dbe4f2; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }

/* Sections */
.section-title { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 0.5rem; color: var(--navy-900); }
.section-sub { color: var(--slate); margin-bottom: 2rem; }
.services, .platforms, .contact, .customers { padding: 4.5rem 0; }
.services { background: var(--mist); }
.services .section-title { margin-bottom: 2.5rem; }

/* Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--cyan);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(10,26,63,0.12); }
.card-icon { font-size: 1.6rem; color: var(--cyan-600); margin-bottom: 0.75rem; }
.card h3 { margin-bottom: 0.6rem; font-size: 1.2rem; color: var(--navy-900); }
.card p { color: var(--slate); }
.card-group-label {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  color: var(--cyan-600);
  margin: 1.25rem 0 0.5rem;
}
.card-list {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
}
.card-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.3rem;
  font-size: 0.92rem;
  color: var(--slate);
}
.card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--cyan-600);
  font-weight: 700;
}
.card-closer {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--slate);
  font-style: italic;
}

/* "What sets the practice apart" — 2:1 layout */
.apart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
  margin: 1.25rem 0 0.5rem;
}
.apart-col-main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.apart-col-main .card,
.apart-col-side .card {
  height: 100%;
}
@media (max-width: 760px) {
  .apart-grid { grid-template-columns: 1fr; }
}

/* Customers */
.customers { background: var(--mist); }
.customers .section-title { color: var(--navy-900); }
.customers .section-sub { color: var(--slate); max-width: 760px; }
.logo-wall {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.logo-wall li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  min-height: 76px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.logo-wall li:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(10,26,63,0.10); }
.logo-name { font-weight: 700; color: var(--navy-900); font-size: 1.05rem; }
.logo-story { font-size: 0.8rem; color: var(--cyan-600); font-weight: 600; text-decoration: none; }
.logo-story:hover { text-decoration: underline; }
.customers-note { margin-top: 1.5rem; font-size: 0.8rem; color: var(--slate); font-style: italic; }

/* Partners */.partner-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 0;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--cyan);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(10,26,63,0.12); }
.partner-logo {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.partner-logo img { max-height: 56px; max-width: 100%; width: auto; object-fit: contain; }
.partner-mark {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy-700);
  letter-spacing: 0.2px;
}
.partner-card h3 { color: var(--navy-900); font-size: 1.15rem; margin-bottom: 0.5rem; }
.partner-card p { color: var(--slate); flex: 1; margin-bottom: 1rem; }
.partner-announce {
  color: var(--cyan-600);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}
.partner-announce:hover { text-decoration: underline; }
.partner-link { color: var(--cyan-600); font-weight: 600; text-decoration: none; font-size: 1rem; }
.partner-link:hover { text-decoration: underline; }

/* Platforms chips */
.platforms .section-title, .platforms .section-sub { color: var(--navy-900); }
.platforms .section-sub { color: var(--slate); }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.chips-label { margin: 1.75rem 0 0.75rem; font-weight: 700; font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cyan-600); }
.platform-block { margin-top: 2.5rem; }
.platform-title {
  font-size: clamp(1.6rem, 2.8vw, 2.05rem);
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 1.1rem;
}
.chips li {
  background: var(--navy-900);
  color: #dbe4f2;
  border: 1px solid var(--navy-600);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-weight: 500;
}

/* Contact */
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
.contact-copy p { color: var(--slate); margin-top: 0.5rem; }
.contact-direct { font-size: 0.95rem; }
.contact-direct a { color: var(--cyan-600); font-weight: 600; text-decoration: none; }
.contact-direct a:hover { text-decoration: underline; }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field label { font-weight: 600; margin-bottom: 0.35rem; font-size: 0.9rem; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
}
textarea { resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(35,199,232,0.2);
}
.checkbox { display: flex; align-items: center; gap: 0.6rem; margin: 0.5rem 0 1.25rem; font-size: 0.9rem; color: var(--slate); }
.hidden-field { position: absolute; left: -9999px; }

/* Secondary page hero (About / Thank-you / Finance) */
.page-hero {
  background:
    radial-gradient(900px 460px at 85% -10%, rgba(35,199,232,0.16), transparent 60%),
    linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-600) 100%);
  color: var(--white);
  padding: 4.5rem 0 3.5rem;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.7rem); line-height: 1.15; margin: 0.75rem 0 1rem; max-width: 760px; }
.page-hero .lede { font-size: 1.15rem; color: #dbe4f2; max-width: 680px; }
.center-hero { text-align: center; padding: 5rem 0; }
.center-hero .lede { margin: 0 auto; }
.big-check {
  width: 72px; height: 72px; margin: 0 auto 0.5rem;
  border-radius: 50%; background: rgba(35,199,232,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--cyan);
}

/* Prose sections */
.prose-section { padding: 4rem 0; }
.narrow { max-width: 820px; }
.prose-section h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 2.5rem 0 1rem; color: var(--navy-900); }
.prose-section h2:first-child { margin-top: 0; }
.prose-section p { color: var(--slate); margin-bottom: 1rem; }
.inline-link { color: var(--cyan-600); font-weight: 600; text-decoration: none; white-space: nowrap; }
.inline-link:hover { text-decoration: underline; }
.page-hero .inline-link { color: var(--cyan-300); display: inline-block; margin-top: 0.5rem; }
.check-list a { color: var(--cyan-600); font-weight: 600; text-decoration: none; }
.check-list a:hover { text-decoration: underline; }
.prose-section .grid { margin: 1.25rem 0 0.5rem; }

/* Check list */
.check-list { list-style: none; margin: 0.5rem 0 1rem; }
.check-list li { position: relative; padding-left: 1.75rem; margin-bottom: 0.7rem; color: var(--slate); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--cyan-600); font-weight: 700; }
.check-list strong { color: var(--navy-900); }

/* CTA band */
.cta-band {
  margin-top: 3rem;
  background: var(--navy-900);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  color: var(--white);
}
.cta-band h3 { margin-bottom: 0.25rem; color: var(--white); }
.cta-band p { color: #cdd8ec; margin: 0; }

/* Footer */
.site-footer { background: var(--navy-900); color: #aebbd4; padding: 2rem 0; border-top: 3px solid var(--cyan); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.site-footer .brand { color: var(--white); }
.site-footer .brand span { color: var(--cyan); }
.site-footer p { font-size: 0.9rem; }
.footer-meta a { color: var(--cyan); text-decoration: none; }
.footer-meta a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 760px) {
  .contact-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .nav-links { gap: 0.75rem; font-size: 0.9rem; }
  .nav-links a:not(.btn) { display: none; }
  .logo-pill { padding: 5px 10px; }
  .logo-pill img { height: 34px; }
}

/* Bio block — photo + text */
.bio-block {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2rem;
  align-items: start;
  margin: 1.25rem 0 0.5rem;
}
.bio-photo {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(10,26,63,0.12);
  display: block;
}
.bio-text p:last-child { margin-bottom: 0; }

/* Speaking gallery */
.speaking-gallery {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 1.75rem 0 2rem;
  padding: 0;
}
.speaking-gallery li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.speaking-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--mist);
}
.speaking-caption {
  padding: 0.9rem 1rem 1.1rem;
  font-size: 0.85rem;
  color: var(--slate);
  line-height: 1.45;
}
.speaking-caption strong { color: var(--navy-900); }

@media (max-width: 760px) {
  .bio-block { grid-template-columns: 1fr; gap: 1.25rem; }
  .bio-photo { max-width: 220px; }
}

/* Contact person block */
.contact-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 1.25rem;
}
.contact-person img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cyan);
  flex-shrink: 0;
}
.contact-person div { display: flex; flex-direction: column; }
.contact-name { font-weight: 700; color: var(--navy-900); font-size: 1.05rem; }
.contact-role { font-size: 0.88rem; color: var(--slate); }

/* Differentiator band */
.differentiator {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--navy-600) 100%);
  color: var(--white);
  padding: 4.5rem 0;
}
.diff-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}
.diff-copy .eyebrow { color: var(--cyan-300); }
.diff-copy h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.diff-copy p { color: #dbe4f2; margin-bottom: 1rem; }
.diff-copy p:last-child { margin-bottom: 0; }
.diff-points { list-style: none; padding: 0; margin: 0; }
.diff-points li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.diff-points li:last-child { border-bottom: none; }
.diff-num {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--cyan);
  min-width: 84px;
  line-height: 1;
}
.diff-label { font-size: 0.95rem; color: #cdd8ec; line-height: 1.4; }

/* Insights */
.insights { padding: 4.5rem 0; background: var(--mist); }
.insights .card { display: flex; flex-direction: column; }
.insights .card p { flex: 1; margin-bottom: 1rem; }

@media (max-width: 760px) {
  .diff-inner { grid-template-columns: 1fr; gap: 2rem; }
  .diff-num { font-size: 1.8rem; min-width: 70px; }
}

/* Workshop page — visual + modules */
.workshop-promise {
  font-size: 1.15rem;
  color: var(--navy-900);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.workshop-visual {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(10,26,63,0.12);
  display: block;
  margin: 0 0 1rem;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.25rem 0 0.5rem;
}
.module {
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid;
}
.module-num {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.4rem;
  opacity: 0.75;
}
.module h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.module p { font-size: 0.95rem; line-height: 1.5; margin: 0; }

.module-1 { background: #f4f2ec; border-color: #d9d3c4; }
.module-1 .module-num, .module-1 h3 { color: #4a4436; }
.module-1 p { color: #6b6355; }

.module-2 { background: #eeeefc; border-color: #c9c9f2; }
.module-2 .module-num, .module-2 h3 { color: #3b3bb0; }
.module-2 p { color: #5555c4; }

.module-3 { background: #fbeeea; border-color: #f0c8bc; }
.module-3 .module-num, .module-3 h3 { color: #a03a20; }
.module-3 p { color: #b9503a; }

.module-4 { background: #e7f5ee; border-color: #b9dfcb; }
.module-4 .module-num, .module-4 h3 { color: #1c6b47; }
.module-4 p { color: #2c8159; }

/* Workshop split — walk-away + visual beside the four modules */
.workshop-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.workshop-split h2 { margin-top: 0; }
.workshop-split .module-grid {
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0;
}
.workshop-split .workshop-visual { margin-top: 1.25rem; }

@media (max-width: 860px) {
  .workshop-split { grid-template-columns: 1fr; gap: 2rem; }
}
