@import url("https://fonts.googleapis.com/css2?family=Funnel+Sans:wght@400;500;600;700;800&family=Poppins:wght@400;500;600&display=swap");

:root {
  --navy: #07173f;
  --navy-deep: #04102e;
  --navy-soft: #132957;
  --green: #1be088;
  --green-dark: #0db86b;
  --white: #ffffff;
  --paper: #f7f8f4;
  --mist: #edf3f0;
  --ink: #0b1735;
  --muted: #617082;
  --line: rgba(7, 23, 63, 0.14);
  --max: 1240px;
  --radius: 22px;
  --shadow: 0 30px 90px rgba(7, 23, 63, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Poppins", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(27, 224, 136, 0.7);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--green);
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(247, 248, 244, 0.93);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.header-light {
  background: rgba(247, 248, 244, 0.93);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 154px;
  flex: 0 0 auto;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: "Funnel Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:not(.button) {
  position: relative;
}

.nav-links a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Funnel Sans", sans-serif;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--navy);
  background: var(--green);
  box-shadow: 0 15px 38px rgba(27, 224, 136, 0.22);
}

.button-primary:hover {
  background: #35e79a;
  box-shadow: 0 18px 44px rgba(27, 224, 136, 0.3);
}

.button-dark {
  color: var(--white);
  background: var(--navy);
}

.button-ghost {
  color: var(--navy);
  border-color: rgba(7, 23, 63, 0.28);
  background: transparent;
}

.button-ghost:hover {
  border-color: var(--navy);
  background: rgba(255, 255, 255, 0.52);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--green-dark);
  font-family: "Funnel Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: "Funnel Sans", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 7vw, 7.3rem);
  font-weight: 600;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  font-weight: 650;
}

.text-green {
  color: var(--green-dark);
}

.hero {
  min-height: min(100svh, 760px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 112px 0 28px;
  background:
    linear-gradient(105deg, var(--paper) 0 59%, transparent 59%),
    var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 59%;
  width: 2px;
  height: 100%;
  background: rgba(27, 224, 136, 0.5);
  transform: rotate(8deg);
  transform-origin: top;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy .eyebrow {
  margin-bottom: 14px;
}

.hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(3.3rem, 6vw, 5.75rem);
}

.hero-copy .lead {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  min-height: clamp(360px, 63svh, 470px);
}

.hero-photo {
  position: absolute;
  inset: 10px -70px 0 0;
  min-height: clamp(350px, 61svh, 455px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 180px 0 0 24px;
  box-shadow: var(--shadow);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 16, 46, 0.72));
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: clamp(350px, 61svh, 455px);
  object-fit: cover;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: -10px;
  bottom: 18px;
  width: min(280px, 82%);
  padding: 22px;
  color: var(--white);
  border-top: 2px solid var(--green);
  background: rgba(7, 23, 63, 0.9);
  backdrop-filter: blur(14px);
}

.hero-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-family: "Funnel Sans", sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-note strong {
  font-family: "Funnel Sans", sans-serif;
  font-size: 1.12rem;
  line-height: 1.15;
}

.progress-mark {
  position: absolute;
  z-index: 3;
  top: 0;
  left: -26px;
  width: 64px;
  height: 64px;
  border: 13px solid var(--green);
  border-right: 0;
  border-bottom: 0;
}

.trust-strip {
  color: var(--white);
  background: var(--navy-deep);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  min-height: 136px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-item strong {
  margin-top: 5px;
  color: var(--white);
  font-family: "Funnel Sans", sans-serif;
  font-size: 1.05rem;
}

.section {
  padding: 130px 0;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 64px;
}

.section-intro p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.audience-card {
  min-height: 460px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.audience-card.dark {
  color: var(--white);
  border-color: transparent;
  background: var(--navy);
}

.audience-card::before {
  content: attr(data-index);
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(7, 23, 63, 0.08);
  font-family: "Funnel Sans", sans-serif;
  font-size: 8rem;
  font-weight: 800;
  line-height: 1;
}

.audience-card.dark::before {
  color: rgba(255, 255, 255, 0.08);
}

.audience-card h3 {
  max-width: 420px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.audience-card.dark h3 {
  color: var(--white);
}

.audience-card p {
  max-width: 470px;
  color: var(--muted);
}

.audience-card.dark p {
  color: rgba(255, 255, 255, 0.68);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Funnel Sans", sans-serif;
  font-weight: 750;
}

.text-link::after {
  content: "→";
  color: var(--green-dark);
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(6px);
}

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

.services-head {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 68px;
}

.services-head p {
  color: var(--muted);
}

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

.service-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 38px 28px;
  border-right: 1px solid var(--line);
}

.service-card:first-child {
  border-left: 1px solid var(--line);
}

.service-number {
  margin-bottom: auto;
  color: var(--green-dark);
  font-family: "Funnel Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.service-card h3 {
  margin: 36px 0 16px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.process-section h2,
.process-section h3 {
  color: var(--white);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 110px;
}

.process-intro {
  position: sticky;
  top: 140px;
  align-self: start;
}

.process-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.67);
}

.process-list {
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 18px 0 48px 92px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-step::before {
  counter-increment: process;
  content: "0" counter(process);
  position: absolute;
  top: 20px;
  left: 0;
  color: var(--green);
  font-family: "Funnel Sans", sans-serif;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 14px;
}

.process-step p {
  color: rgba(255, 255, 255, 0.66);
}

.founder-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(56px, 9vw, 120px);
  align-items: center;
}

.founder-photo {
  position: relative;
}

.founder-photo::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -26px;
  right: -26px;
  width: 42%;
  height: 42%;
  border-top: 18px solid var(--green);
  border-right: 18px solid var(--green);
}

.founder-photo img {
  width: 100%;
  border-radius: 240px 240px 24px 24px;
  box-shadow: var(--shadow);
}

.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.credential-list li {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "Funnel Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.cta-section {
  padding: 38px 0 110px;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  overflow: hidden;
  padding: clamp(46px, 7vw, 92px);
  color: var(--white);
  border-radius: var(--radius);
  background: var(--navy);
}

.cta-panel::after {
  content: "";
  position: absolute;
  top: -70px;
  right: 18%;
  width: 240px;
  height: 240px;
  border: 42px solid rgba(27, 224, 136, 0.15);
  transform: rotate(45deg);
}

.cta-panel h2 {
  max-width: 840px;
  margin-bottom: 0;
  color: var(--white);
}

.cta-panel .button {
  position: relative;
  z-index: 1;
}

.site-footer {
  padding: 74px 0 28px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 72px;
  padding-bottom: 56px;
}

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

.footer-brand p {
  max-width: 420px;
  margin-top: 28px;
}

.footer-col h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 190px 0 100px;
  color: var(--white);
  background: var(--navy);
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(27, 224, 136, 0.42);
}

.page-hero::before {
  top: -180px;
  right: -100px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
}

.page-hero::after {
  right: 18%;
  bottom: -160px;
  width: 320px;
  height: 320px;
  transform: rotate(34deg);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  gap: 80px;
  align-items: end;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero-copy {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.page-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.page-hero-meta div {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: var(--navy);
}

.page-hero-meta strong {
  color: var(--green);
  font-family: "Funnel Sans", sans-serif;
  font-size: 1.9rem;
}

.page-hero-meta span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.thank-you-section {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 104px 0 32px;
  background:
    radial-gradient(circle at 80% 18%, rgba(27, 224, 136, 0.18), transparent 25rem),
    var(--paper);
}

.thank-you-card {
  position: relative;
  max-width: 820px;
  overflow: hidden;
  padding: 46px 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.thank-you-card::after {
  content: "";
  position: absolute;
  right: -108px;
  bottom: -108px;
  width: 270px;
  height: 270px;
  border: 34px solid var(--green);
  transform: rotate(45deg);
}

.thank-you-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--navy);
  border-radius: 50%;
  background: var(--green);
  font-family: "Funnel Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
}

.thank-you-card h1 {
  max-width: 610px;
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 5vw, 4.75rem);
  line-height: 0.98;
}

.thank-you-card > p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.12rem;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

body.thank-you-page {
  min-height: 100svh;
}

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

.detail-card {
  min-height: 450px;
  position: relative;
  overflow: hidden;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.detail-card:nth-child(2),
.detail-card:nth-child(3) {
  background: var(--mist);
}

.detail-card .service-number {
  display: block;
  margin-bottom: 78px;
}

.detail-card h2 {
  max-width: 480px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
}

.detail-card p {
  max-width: 540px;
  color: var(--muted);
}

.detail-card ul {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-card li {
  position: relative;
  padding-left: 24px;
}

.detail-card li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--green-dark);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.principle-card {
  min-height: 330px;
  padding: 36px;
  border-top: 4px solid var(--green);
  background: var(--white);
}

.principle-card span {
  display: block;
  margin-bottom: 72px;
  color: var(--green-dark);
  font-family: "Funnel Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
}

.quote-band {
  padding: 110px 0;
  text-align: center;
  background: var(--white);
}

.quote-band blockquote {
  max-width: 1050px;
  margin: 0 auto;
  color: var(--navy);
  font-family: "Funnel Sans", sans-serif;
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 84px;
  align-items: start;
}

.contact-details {
  position: sticky;
  top: 130px;
}

.contact-details h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.8rem);
}

.contact-list {
  display: grid;
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.contact-list li {
  display: grid;
  gap: 4px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list strong {
  font-family: "Funnel Sans", sans-serif;
  font-size: 1.08rem;
}

.contact-form-wrap {
  padding: clamp(34px, 5vw, 64px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-intro {
  max-width: 600px;
  margin-bottom: 40px;
  color: var(--muted);
}

.review-notice {
  margin: -12px 0 32px;
  padding: 12px 15px;
  color: #594814;
  border-left: 3px solid #e9bd3b;
  background: #fff9e9;
  font-size: 0.8rem;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-family: "Funnel Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(7, 23, 63, 0.28);
  border-radius: 0;
  padding: 13px 2px;
  color: var(--ink);
  background: transparent;
  transition: border-color 0.2s ease;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--green-dark);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.mobile-call {
  display: none;
}

@media (max-width: 1080px) {
  .hero {
    background: var(--paper);
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.78fr;
    gap: 50px;
  }

  .hero-photo {
    right: -120px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .process-layout {
    gap: 60px;
  }
}

@media (max-width: 840px) {
  .shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .nav-wrap {
    min-height: 76px;
  }

  .brand {
    width: 148px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    width: 100%;
    height: calc(100dvh - 76px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 34px 24px;
    background: var(--paper);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .menu-open .nav-links {
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    padding: 19px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.35rem;
  }

  .nav-links .button {
    width: auto;
    margin-top: 24px;
    padding-inline: 24px;
    font-size: 1rem;
  }

  .hero {
    min-height: min(100svh, 760px);
    padding: 108px 0 48px;
  }

  .hero-grid,
  .services-head,
  .process-layout,
  .founder-layout,
  .page-hero-inner,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .trust-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section {
    padding: 92px 0;
  }

  .audience-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .services-head {
    gap: 10px;
  }

  .process-intro,
  .contact-details {
    position: static;
  }

  .founder-photo {
    max-width: 560px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cta-panel .button {
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .page-hero {
    padding: 150px 0 80px;
  }

  .thank-you-section {
    min-height: 100svh;
    padding: 102px 0 28px;
  }

  .thank-you-card {
    padding: 36px 32px;
  }

  .page-hero-inner {
    gap: 48px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 70px;
  }

  body.thank-you-page {
    padding-bottom: 0;
  }

  h1,
  .hero-copy h1 {
    font-size: clamp(2.75rem, 12.5vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .thank-you-card {
    padding: 30px 25px 42px;
  }

  .thank-you-card::after {
    right: -134px;
    bottom: -134px;
    width: 230px;
    height: 230px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero {
    padding: 96px 0 88px;
  }

  .hero-copy .eyebrow {
    max-width: 310px;
    margin-bottom: 16px;
    font-size: 0.7rem;
    line-height: 1.45;
  }

  .hero-copy .lead {
    margin-bottom: 20px;
    font-size: 0.94rem;
  }

  .trust-item {
    min-height: 118px;
    padding: 20px 16px;
  }

  .trust-item strong {
    font-size: 0.91rem;
  }

  .audience-card,
  .detail-card {
    min-height: auto;
    padding: 34px 26px;
  }

  .audience-card {
    gap: 70px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:first-child,
  .service-card:nth-child(3) {
    min-height: 280px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .process-step {
    padding-left: 58px;
  }

  .founder-photo img {
    border-radius: 150px 150px 20px 20px;
  }

  .cta-panel {
    gap: 34px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    display: grid;
    gap: 38px;
  }

  .footer-bottom {
    display: grid;
  }

  .page-hero-meta,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .mobile-call {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 10px;
    left: 12px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--navy);
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 12px 35px rgba(4, 16, 46, 0.28);
    font-family: "Funnel Sans", sans-serif;
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transform: translateY(130%);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .mobile-call.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 840px) and (max-height: 720px) {
  .hero {
    padding-top: 88px;
    padding-bottom: 28px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 10px;
  }

  .hero-copy h1 {
    margin-bottom: 14px;
    font-size: clamp(2.55rem, 11vw, 3.2rem);
  }

  .hero-copy .lead {
    margin-bottom: 16px;
    line-height: 1.45;
  }

  .button {
    min-height: 48px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
