:root {
  --navy-950: #032747;
  --navy-900: #06345f;
  --navy-800: #0b4778;
  --teal-600: #2e9c95;
  --teal-500: #56b6a5;
  --ink: #142235;
  --muted: #5e6b7b;
  --line: #dbe3ea;
  --mist: #f3f7fa;
  --white: #ffffff;
  --silver: #ecf1f5;
  --focus: #b78a2b;
  --shadow: 0 18px 50px rgba(3, 39, 71, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 94px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: min(calc(100% - 36px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  inset: 12px auto auto 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--navy-950);
  color: var(--white);
  border-radius: 6px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 227, 234, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 34px rgba(3, 39, 71, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 210px;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  color: #25354a;
  font-size: 0.92rem;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  padding-block: 30px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: var(--teal-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.main-nav a.is-active {
  color: var(--navy-950);
}

.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 760;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.header-cta,
.button-primary {
  background: var(--navy-950);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(3, 39, 71, 0.16);
}

.header-cta:hover,
.button-primary:hover,
.button-accent:hover {
  transform: translateY(-1px);
}

.button-secondary {
  background: var(--white);
  color: var(--navy-900);
  border-color: #b8c8d6;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--navy-800);
  box-shadow: 0 10px 26px rgba(11, 71, 120, 0.1);
}

.button-accent {
  background: var(--teal-600);
  color: var(--white);
  border-color: var(--teal-600);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.reveal-ready :where([data-reveal]) {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready :where([data-reveal].is-revealed) {
  opacity: 1;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--navy-950);
  place-items: center;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 35%, rgba(255, 255, 255, 0.72) 51%, rgba(255, 255, 255, 0) 70%),
    var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  top: 106px;
  left: max(18px, calc((100vw - var(--max)) / 2));
  width: 40px;
  height: 2px;
  background: var(--teal-600);
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 41%;
  z-index: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 39, 71, 0.08), rgba(3, 39, 71, 0.22)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.4) 27%, rgba(255, 255, 255, 0) 57%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 640px;
  align-items: center;
  padding: 78px 0 66px;
}

.hero-copy {
  width: min(100%, 590px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.impact-copy h2,
.contact-copy h2,
.contact-copy h1,
.proof-grid h2 {
  margin: 0;
  color: var(--navy-950);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  font-weight: 760;
}

.hero-lede {
  max-width: 560px;
  margin: 28px 0 0;
  color: #35455a;
  font-size: clamp(1.02rem, 2vw, 1.26rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 30px 0 0;
  color: #2a3b50;
  font-size: 0.88rem;
  font-weight: 690;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof svg {
  width: 18px;
  height: 18px;
  color: var(--navy-800);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 34px 0 0;
}

.conversion-note {
  max-width: 540px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 680;
}

.quick-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin: 34px 0 0;
  width: min(760px, 100%);
}

.quick-contact a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 10px 6px;
  color: #34465b;
  border-top: 1px solid rgba(11, 71, 120, 0.12);
}

.quick-contact a:hover strong,
.quick-contact a:focus-visible strong {
  color: var(--teal-600);
}

.quick-contact svg {
  width: 31px;
  height: 31px;
  color: var(--teal-600);
}

.quick-contact strong {
  display: block;
  color: var(--navy-950);
  font-size: 0.86rem;
  transition: color 180ms ease;
}

.quick-contact span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 0.82rem;
}

.statement {
  background: var(--navy-950);
  color: var(--white);
}

.statement-inner {
  display: grid;
  place-items: center;
  min-height: 102px;
  text-align: center;
}

.statement h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.statement p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.section {
  padding: 78px 0;
}

.value-section {
  background: var(--white);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 54px;
  align-items: end;
}

.section-heading h2,
.impact-copy h2,
.proof-grid h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 740;
}

.section-heading p,
.impact-copy p,
.proof-grid > div > p,
.contact-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.value-card {
  padding: 34px 34px 28px 0;
  border-right: 1px solid var(--line);
}

.value-card + .value-card {
  padding-left: 34px;
}

.value-card:last-child {
  border-right: 0;
}

.icon-frame,
.service-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--navy-800);
  border: 1px solid #b9cedd;
  border-radius: 6px;
  background: #f9fbfd;
}

.icon-frame svg,
.service-icon svg {
  width: 31px;
  height: 31px;
}

.value-card h3,
.service-card h3,
.why-grid h3,
.process-list h3 {
  margin: 18px 0 10px;
  color: var(--navy-950);
  font-size: 1.08rem;
  line-height: 1.2;
}

.value-card p,
.service-card p,
.why-grid p,
.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.services-section,
.social-proof {
  background: var(--mist);
}

.capability-section {
  background: linear-gradient(180deg, var(--white), #f7fafc);
  border-bottom: 1px solid var(--line);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bento-card {
  min-height: 210px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.96)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(3, 39, 71, 0.05);
}

.bento-card.is-wide {
  grid-column: span 2;
}

.bento-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--teal-600);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.bento-card h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.22rem;
  line-height: 1.12;
}

.bento-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.models-section {
  background: linear-gradient(180deg, #f9fbfd, var(--white));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.models-grid article {
  min-height: 190px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(3, 39, 71, 0.04);
}

.models-grid span {
  display: block;
  min-height: 42px;
  color: var(--navy-950);
  font-size: 1.05rem;
  font-weight: 820;
  line-height: 1.15;
}

.models-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 24px;
  background: var(--white);
  border: 1px solid #e0e8ee;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(3, 39, 71, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(46, 156, 149, 0.42);
  box-shadow: var(--shadow);
}

.models-grid article,
.deliverables-grid span,
.anonymous-case-grid article,
.proof-grid article,
.proof-grid > div,
.impact-panel div,
.bento-card,
.profile-kpi-grid article,
.profile-metric-grid article,
.profile-use-grid article,
.profile-resource-grid article,
.profile-service-grid article,
.profile-testimonial-grid article,
.recommendation-grid article,
.instructor-card {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.models-grid article:hover,
.models-grid article:focus-within,
.deliverables-grid span:hover,
.anonymous-case-grid article:hover,
.anonymous-case-grid article:focus-within,
.proof-grid article:hover,
.proof-grid article:focus-within,
.impact-panel div:hover,
.bento-card:hover,
.bento-card:focus-within,
.profile-kpi-grid article:hover,
.profile-metric-grid article:hover,
.profile-use-grid article:hover,
.profile-use-grid article:focus-within,
.profile-resource-grid article:hover,
.profile-resource-grid article:focus-within,
.profile-service-grid article:hover,
.profile-service-grid article:focus-within,
.profile-testimonial-grid article:hover,
.recommendation-grid article:hover,
.instructor-card:hover,
.instructor-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(46, 156, 149, 0.38);
  box-shadow: 0 18px 42px rgba(3, 39, 71, 0.1);
}

.service-card strong {
  display: block;
  margin: 16px 0 18px;
  color: #314258;
  font-size: 0.89rem;
  font-weight: 720;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding: 0;
  color: var(--navy-800);
  background: transparent;
  border: 0;
  font-size: 0.92rem;
  font-weight: 780;
}

.service-card .service-link::after {
  content: "->";
  color: var(--teal-600);
}

.service-card .service-link:hover,
.service-card .service-link:focus-visible {
  color: var(--teal-600);
}

.why-section {
  background: var(--navy-950);
  color: var(--white);
}

.on-dark h2,
.why-grid h3 {
  color: var(--white);
}

.on-dark p,
.why-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.why-grid .inline-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  color: var(--teal-500);
  font-weight: 780;
}

.why-grid .inline-link:hover,
.why-grid .inline-link:focus-visible {
  color: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.profile-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.profile-strip div {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
}

.profile-strip strong,
.profile-strip span {
  display: block;
}

.profile-strip strong {
  color: var(--teal-500);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.profile-strip span {
  margin-top: 7px;
  color: var(--white);
  font-weight: 720;
  line-height: 1.25;
}

.why-grid article {
  min-height: 210px;
  padding: 28px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.why-grid article:first-child {
  border-left: 0;
  padding-left: 0;
}

.why-grid svg {
  width: 42px;
  height: 42px;
  color: var(--teal-500);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.mission-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.mission-grid span {
  display: block;
  color: var(--white);
  font-size: 1.04rem;
  font-weight: 800;
}

.mission-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.process-section {
  background: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  padding-top: 6px;
}

.process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 54px;
  right: -12px;
  height: 1px;
  background: repeating-linear-gradient(90deg, #97a9ba 0 6px, transparent 6px 12px);
}

.process-list span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 999px;
  font-weight: 780;
}

.impact-section {
  background: linear-gradient(180deg, var(--white), #f7fafc);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.impact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 62px;
  align-items: center;
}

.impact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.impact-panel div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.impact-panel div:last-child {
  grid-column: 1 / -1;
}

.impact-panel span {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1px solid var(--teal-600);
  border-radius: 999px;
}

.impact-panel span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 7px;
  height: 10px;
  border-right: 2px solid var(--teal-600);
  border-bottom: 2px solid var(--teal-600);
  transform: rotate(42deg);
}

.impact-panel p {
  margin: 0;
  color: #314258;
  font-weight: 640;
}

.deliverables-section {
  background: var(--white);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.deliverables-grid span {
  display: block;
  padding: 16px 18px;
  color: var(--navy-950);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 760;
}

.use-cases-section {
  background: linear-gradient(180deg, #f7fafc, var(--white));
}

.faq-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 940px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(46, 156, 149, 0.42);
  box-shadow: 0 14px 34px rgba(3, 39, 71, 0.08);
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 20px 56px 20px 22px;
  color: var(--navy-950);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--teal-600);
  font-size: 1.5rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.anonymous-case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.anonymous-case-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.anonymous-case-grid h3 {
  margin: 0 0 14px;
  color: var(--navy-950);
  line-height: 1.18;
}

.anonymous-case-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1.25fr) repeat(3, minmax(0, 0.8fr));
  gap: 14px;
}

.proof-grid article,
.proof-grid > div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-grid > div {
  padding: 30px;
}

.proof-grid > div h2 {
  font-size: clamp(1.65rem, 2.25vw, 2.2rem);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
}

.proof-grid article {
  min-height: 220px;
  padding: 28px;
}

.proof-grid span {
  display: block;
  color: var(--navy-950);
  font-size: 1.04rem;
  font-weight: 780;
}

.proof-grid article p {
  margin: 18px 0 0;
  color: var(--muted);
}

.proof-grid .button {
  margin-top: 22px;
}

.contact-section {
  padding: 74px 0;
  background:
    linear-gradient(135deg, rgba(3, 39, 71, 0.96), rgba(6, 52, 95, 0.98)),
    var(--navy-950);
}

.contact-page-section {
  min-height: calc(100vh - 82px);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.12fr);
  gap: 50px;
  align-items: start;
  color: var(--white);
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy h2,
.contact-copy h1 {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a,
.contact-methods span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-weight: 720;
  overflow-wrap: anywhere;
}

.contact-methods svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--teal-500);
}

.lead-form {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.lead-form.is-highlighted {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(86, 182, 165, 0.72);
  box-shadow:
    0 0 0 3px rgba(86, 182, 165, 0.25),
    0 24px 70px rgba(0, 0, 0, 0.2);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 720;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 45px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 11px 12px;
  outline: none;
}

.lead-form textarea {
  margin-top: 12px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.menu-toggle:focus-visible,
.button:focus-visible,
.header-cta:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(183, 138, 43, 0.55);
  outline-offset: 3px;
}

.privacy-check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px !important;
  margin-top: 14px;
}

.privacy-check input {
  width: 16px;
  min-height: 16px;
}

.privacy-check a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: #bdf1e7;
  font-weight: 720;
}

.form-trust {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.form-status.is-error {
  color: #ffd2d2;
}

.button:disabled,
button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.legal-main {
  background: var(--mist);
}

.legal-section {
  padding: 78px 0;
}

.legal-card {
  max-width: 920px;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(3, 39, 71, 0.04);
}

.legal-card h1 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.legal-card h2 {
  margin: 34px 0 10px;
  color: var(--navy-950);
  font-size: 1.22rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  padding-left: 20px;
}

.legal-card p a,
.legal-card li a {
  color: var(--navy-800);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.profile-main {
  background: var(--white);
}

.profile-hero {
  padding: 76px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(3, 39, 71, 0.98), rgba(6, 52, 95, 0.94)),
    var(--navy-950);
}

.profile-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
  gap: 44px;
  align-items: center;
}

.profile-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.6rem, 5.6vw, 5.3rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.profile-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.profile-badges span {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 720;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.profile-portrait-card {
  display: grid;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.profile-portrait-card img {
  width: 100%;
  height: clamp(320px, 34vw, 430px);
  object-fit: cover;
  object-position: center 18%;
  border-radius: 6px;
}

.profile-portrait-card h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.15rem;
}

.profile-portrait-card p {
  margin: 8px 0 16px;
  color: rgba(255, 255, 255, 0.76);
}

.profile-portrait-card .instructor-link {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
}

.profile-section {
  padding: 72px 0;
}

.profile-section-muted {
  background: var(--mist);
}

.profile-content {
  max-width: 960px;
}

.profile-content h2,
.profile-split h2,
.recommendation-panel h1,
.recommendation-panel h2,
.profile-cta h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.profile-text {
  margin-top: 24px;
}

.profile-text p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.02rem;
}

.profile-disclaimer {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.profile-card-grid,
.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.profile-card-grid article,
.recommendation-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-card-grid h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
}

.profile-card-grid p,
.recommendation-grid p,
.recommendation-panel > div > p {
  margin: 0;
  color: var(--muted);
}

.profile-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

.recommendation-panel {
  display: grid;
  gap: 16px;
}

.recommendation-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.recommendation-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-950);
  font-weight: 780;
}

.profile-cta {
  padding: 52px 0;
  background: var(--navy-950);
}

.profile-cta-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.profile-cta h2 {
  color: var(--white);
}

.profile-hero-expanded .profile-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
}

.profile-lede {
  margin: 0 0 20px;
  color: var(--muted);
}

.profile-kpi-grid,
.profile-service-grid,
.profile-metric-grid,
.profile-use-grid,
.profile-testimonial-grid,
.profile-resource-grid {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.profile-kpi-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-kpi-grid article,
.profile-metric-grid article,
.profile-use-grid article,
.profile-resource-grid article,
.profile-service-grid article,
.profile-testimonial-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-kpi-grid article,
.profile-metric-grid article {
  padding: 24px;
}

.profile-kpi-grid strong,
.profile-metric-grid strong {
  display: block;
  color: var(--navy-950);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.profile-kpi-grid span,
.profile-metric-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 680;
}

.profile-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profile-service-grid article,
.profile-use-grid article,
.profile-resource-grid article {
  padding: 22px;
}

.profile-service-grid h3,
.profile-use-grid h3,
.profile-resource-grid h3,
.profile-testimonial-grid h3,
.profile-timeline h3 {
  margin: 0 0 10px;
  color: var(--navy-950);
  line-height: 1.18;
}

.profile-service-grid p,
.profile-resource-grid p,
.profile-testimonial-grid p,
.profile-testimonial-grid blockquote,
.profile-timeline p {
  margin: 0;
  color: var(--muted);
}

.profile-badge-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.profile-badge-cloud span {
  padding: 9px 12px;
  color: var(--navy-900);
  font-weight: 760;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.profile-metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.profile-timeline article {
  position: relative;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.profile-timeline article::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 4px;
  height: 42px;
  background: var(--teal-600);
}

.profile-timeline span,
.profile-testimonial-grid p,
.profile-resource-grid p {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.profile-use-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profile-use-grid a,
.profile-resource-grid a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--navy-900);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.profile-testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profile-testimonial-grid article {
  padding: 24px;
}

.profile-testimonial-grid blockquote {
  font-size: 0.98rem;
}

.profile-testimonial-grid span {
  display: block;
  margin-top: 18px;
  color: var(--navy-950);
  font-weight: 800;
}

.profile-resource-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.instructor-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.instructor-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  align-items: start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.instructor-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.instructor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.instructor-photo-placeholder {
  display: grid;
  place-items: center;
  color: var(--navy-800);
  font-size: 1.45rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f7fafc, #e9f1f6);
}

.instructor-card h2 {
  margin: 0 0 10px;
}

.instructor-card p {
  margin: 0 0 16px;
}

.instructor-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--navy-900);
  font-weight: 760;
  border: 1px solid #b8c8d6;
  border-radius: 6px;
}

.instructor-link:hover,
.instructor-link:focus-visible {
  border-color: var(--navy-800);
  box-shadow: 0 10px 24px rgba(11, 71, 120, 0.08);
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.site-footer {
  padding: 42px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background: #021d35;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.8fr 1.05fr;
  gap: 42px;
}

.footer-brand img {
  width: 170px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.site-footer p {
  margin: 16px 0 0;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-top: 7px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--teal-500);
}

.linkedin-link {
  width: fit-content;
  margin-top: 18px !important;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
}

.legal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding-top: 30px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.legal-row a {
  display: inline;
  margin-top: 0;
}

.sticky-conversion {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  display: none;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 16px;
  color: var(--white);
  background: rgba(3, 39, 71, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(3, 39, 71, 0.25);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
  transition:
    opacity 180ms ease,
    visibility 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.sticky-conversion:hover,
.sticky-conversion:focus-within {
  box-shadow: 0 22px 58px rgba(3, 39, 71, 0.32);
  transform: translateX(-50%) translateY(-2px);
}

.sticky-conversion.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.sticky-conversion span {
  font-size: 0.9rem;
  font-weight: 760;
}

.sticky-conversion a {
  padding: 9px 13px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 5px;
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: #20b15a;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(12, 88, 47, 0.28);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(12, 88, 47, 0.34);
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
}

@media (min-width: 940px) {
  .sticky-conversion {
    display: grid;
  }
}

@media (max-width: 1320px) {
  .header-inner {
    gap: 16px;
  }

  .brand {
    width: 188px;
  }

  .main-nav {
    gap: 16px;
    font-size: 0.86rem;
  }

  .header-cta {
    padding: 0 18px;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 74px;
  }

  .brand {
    width: 178px;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .main-nav a::after {
    display: none;
  }
}

@media (max-width: 1120px) {
  .services-grid,
  .value-grid,
  .deliverables-grid,
  .anonymous-case-grid,
  .models-grid,
  .bento-grid,
  .profile-card-grid,
  .profile-service-grid,
  .profile-use-grid,
  .profile-resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-card.is-wide {
    grid-column: span 2;
  }

  .value-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .value-card:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .value-card + .value-card {
    padding-left: 28px;
  }

  .why-grid,
  .profile-strip,
  .mission-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-grid article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .why-grid article:first-child,
  .why-grid article:nth-child(2) {
    border-top: 0;
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-list li::after {
    display: none;
  }

  .proof-grid,
  .footer-grid,
  .profile-metric-grid,
  .profile-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  section[id] {
    scroll-margin-top: 82px;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 74px;
  }

  .brand {
    width: 178px;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    background: var(--white);
  }

  .hero::before {
    top: 92px;
  }

  .hero-media {
    position: relative;
    inset: auto;
    order: 2;
    height: clamp(260px, 55vw, 430px);
    margin-top: 0;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(3, 39, 71, 0.04), rgba(3, 39, 71, 0.2));
  }

  .hero-grid {
    order: 1;
    min-height: 0;
    padding: 54px 0 38px;
  }

  .hero-copy {
    width: 100%;
  }

  .quick-contact {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading.split,
  .impact-grid,
  .contact-card,
  .profile-hero-grid,
  .profile-split,
  .recommendation-grid,
  .profile-kpi-grid,
  .profile-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contact-copy {
    position: static;
  }

  .profile-hero {
    padding: 54px 0;
  }

  .profile-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .hero-actions,
  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .form-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 10px;
  }

  .statement-inner {
    min-height: 132px;
  }

  .value-grid,
  .services-grid,
  .deliverables-grid,
  .anonymous-case-grid,
  .models-grid,
  .bento-grid,
  .why-grid,
  .profile-strip,
  .mission-grid,
  .process-list,
  .impact-panel,
  .proof-grid,
  .form-grid,
  .footer-grid,
  .profile-card-grid,
  .profile-service-grid,
  .profile-metric-grid,
  .profile-timeline,
  .profile-use-grid,
  .profile-resource-grid {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .bento-card.is-wide {
    grid-column: auto;
  }

  .value-card,
  .value-card + .value-card {
    padding: 26px 0;
    border-right: 0 !important;
  }

  .value-card:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: 0;
  }

  .why-grid article,
  .why-grid article:first-child {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .why-grid article:first-child {
    border-top: 0;
  }

  .impact-panel div:last-child {
    grid-column: auto;
  }

  .lead-form {
    padding: 20px;
  }

  .legal-card {
    padding: 28px;
  }

  .instructor-card {
    grid-template-columns: 1fr;
  }

  .instructor-photo {
    max-width: 220px;
  }

  .sticky-conversion {
    display: grid;
    left: 14px;
    right: 84px;
    bottom: 18px;
    grid-template-columns: 1fr auto;
    transform: none;
  }

  .sticky-conversion:hover,
  .sticky-conversion:focus-within {
    transform: translateY(-2px);
  }

  .sticky-conversion span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 920px) {
  .profile-hero-expanded .profile-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .profile-hero-copy {
    max-width: 680px;
  }

  .profile-portrait-card {
    width: min(100%, 520px);
  }

  .profile-hero .profile-actions .button:nth-child(3) {
    display: none;
  }
}

@media (max-width: 700px) {
  .profile-hero {
    padding: 34px 0 42px;
  }

  .profile-hero-expanded .profile-hero-grid,
  .profile-hero-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .profile-hero-copy {
    width: 100%;
    min-width: 0;
  }

  .profile-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 9.2vw, 2.8rem);
    line-height: 1.04;
  }

  .profile-hero p {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .profile-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .profile-actions .button {
    width: 100%;
    min-height: 44px;
  }

  .profile-hero .profile-actions .button:nth-child(3) {
    display: none;
  }

  .profile-badges {
    gap: 8px;
    margin-top: 20px;
  }

  .profile-badges span {
    padding: 7px 9px;
    font-size: 0.76rem;
  }

  .profile-badges span:nth-child(n + 4) {
    display: none;
  }

  .profile-portrait-card {
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 14px;
  }

  .profile-portrait-card img {
    width: 76px;
    height: 76px;
    object-position: center 18%;
  }

  .profile-portrait-card h2 {
    font-size: 1.02rem;
  }

  .profile-portrait-card p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
