:root {
  --ink: #17395f;
  --muted: #657389;
  --line: #dfe7ec;
  --blue: #0f66a6;
  --blue-soft: #edf4f8;
  --green: #7faa2f;
  --green-soft: #eef7df;
  --leaf: #9cc52f;
  --forest: #1c6a32;
  --aqua: #75aebe;
  --paper: #fbfcfb;
  --mist: #f2f6f7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 36, 61, 0.12);
  --soft-shadow: 0 14px 42px rgba(16, 36, 61, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(156, 197, 47, 0.16), transparent 34rem),
    radial-gradient(circle at top right, rgba(117, 174, 190, 0.16), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

.top-bar {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  padding: 9px clamp(18px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(90deg, var(--forest), var(--ink));
  font-size: 0.78rem;
  font-weight: 800;
}

.top-bar a {
  color: var(--leaf);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(16, 36, 61, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: clamp(164px, 20vw, 232px);
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #31465d;
  font-size: 0.91rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
  background: rgba(156, 197, 47, 0.18);
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--ink));
  box-shadow: 0 12px 28px rgba(15, 102, 166, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: var(--green-soft);
  border-color: rgba(28, 106, 50, 0.14);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(16, 36, 61, 0.15);
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--blue);
  border: 0;
  border-radius: 999px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.55rem, 5vw, 5rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 900;
}

h3 {
  font-size: 1.12rem;
  font-weight: 900;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--leaf);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.82fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: center;
  max-width: none;
  margin: 0;
  padding: 68px max(clamp(22px, 4vw, 40px), calc((100vw - var(--max)) / 2 + 40px)) 46px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68)),
    url("assets/images/freepik/business-meeting-documents.jpg?v=20260512b") center / cover;
  filter: grayscale(1);
  opacity: 0.72;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(16, 36, 61, 0.08);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--ink);
}

.hero-copy,
.page-hero p,
.intro p,
.image-band p,
.split-section p:not(.section-kicker),
.contact-hero p:not(.section-kicker),
.contact-panel-body p:not(.section-kicker),
.cta p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-card {
  position: relative;
  z-index: 1;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(16, 36, 61, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -14px -14px auto auto;
  width: 42%;
  height: 44%;
  border: 2px solid rgba(15, 102, 166, 0.28);
  border-radius: var(--radius);
  z-index: -1;
}

.slide-track {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.hero-card img,
.slide-track {
  width: 100%;
  aspect-ratio: 4 / 4.45;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 650ms ease, transform 900ms ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.slide-controls {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.slide-controls button {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 36, 61, 0.1);
  border-radius: 999px;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background 180ms ease;
}

.slide-controls button:hover {
  transform: translateY(-1px);
  background: var(--white);
}

.slide-dots {
  position: absolute;
  left: 28px;
  bottom: 132px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.slide-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}

.slide-dots button.is-active {
  width: 28px;
  background: var(--white);
}

.hero-note {
  position: absolute;
  left: -28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 36, 61, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.hero-note strong {
  line-height: 1.2;
}

.hero-note span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(22px, 4vw, 40px) 42px;
}

.trust-strip div {
  min-height: 132px;
  padding: 22px;
  background: linear-gradient(180deg, var(--white), #fbfaf6);
  border: 1px solid rgba(16, 36, 61, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.trust-strip div:hover,
.service-card:hover,
.feature-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.trust-strip strong {
  color: var(--ink);
  line-height: 1.25;
}

.trust-strip strong::before {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-bottom: 14px;
  background: var(--leaf);
}

.consult-strip,
.expertise-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto 72px;
  padding: 34px clamp(24px, 5vw, 48px);
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), var(--blue));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.consult-strip h2,
.expertise-band h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.65rem);
}

.consult-strip .button.primary {
  color: var(--ink);
  background: var(--leaf);
  box-shadow: none;
}

.trust-strip span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 84px clamp(22px, 4vw, 40px);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: clamp(30px, 7vw, 88px);
  align-items: start;
}

.intro p {
  margin: 0 0 18px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 760px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-weight: 900;
}

.text-link::after {
  content: "";
  width: 30px;
  height: 2px;
  margin-left: 10px;
  background: var(--leaf);
  transition: width 180ms ease;
}

.text-link:hover::after {
  width: 44px;
}

.services,
.values {
  max-width: none;
  background: linear-gradient(180deg, var(--green-soft), rgba(237, 244, 248, 0.62));
}

.services > *,
.values > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  min-height: 244px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 36, 61, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(16, 36, 61, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--forest);
  background: linear-gradient(135deg, var(--green-soft), var(--blue-soft));
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card h3 {
  margin-top: 28px;
}

.service-card p,
.timeline-item p,
.feature-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-card.large {
  min-height: 292px;
}

.image-band,
.split-section {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  align-items: center;
  max-width: var(--max);
  margin: 72px auto;
  padding: 12px;
  background: var(--white);
  border: 1px solid rgba(16, 36, 61, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.image-band img,
.split-section img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 6px;
}

.image-band div,
.split-section div {
  padding: clamp(28px, 5vw, 64px);
}

.image-band p,
.split-section p:not(.section-kicker) {
  margin: 18px 0 0;
}

.image-band .button,
.split-section .button {
  margin-top: 22px;
}

.why-matters {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: var(--max);
  margin: 78px auto;
  padding: 0 clamp(22px, 4vw, 40px);
}

.why-media,
.why-content {
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.why-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.why-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(23, 57, 95, 0.72));
}

.why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-badge {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px;
  color: var(--white);
  background: rgba(23, 57, 95, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  backdrop-filter: blur(14px);
}

.why-badge strong,
.why-badge span {
  display: block;
}

.why-badge strong {
  font-size: 1.25rem;
}

.why-badge span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
}

.why-content {
  padding: clamp(32px, 5vw, 62px);
  background:
    linear-gradient(135deg, rgba(238, 247, 223, 0.92), rgba(237, 244, 248, 0.94)),
    var(--white);
  border: 1px solid rgba(16, 36, 61, 0.08);
}

.why-content > p:not(.section-kicker) {
  color: var(--muted);
  margin: 20px 0 0;
}

.why-points {
  display: grid;
  gap: 12px;
  margin: 26px 0;
}

.why-points article {
  position: relative;
  padding: 18px 18px 18px 54px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 36, 61, 0.08);
  border-radius: 6px;
}

.why-points article::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--leaf), var(--forest));
  border-radius: 999px;
}

.why-points strong,
.why-points span {
  display: block;
}

.why-points span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(22px, 4vw, 40px) 82px;
}

.feature-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(16, 36, 61, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.expertise-band {
  grid-template-columns: 0.9fr 1fr;
  align-items: start;
  margin-top: 72px;
  background: linear-gradient(135deg, var(--ink), var(--blue) 58%, var(--forest));
}

.expertise-band ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.expertise-band li {
  position: relative;
  padding: 15px 18px 15px 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
}

.expertise-band li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 18px;
  width: 9px;
  height: 9px;
  background: var(--leaf);
  border-radius: 999px;
}

.feature-grid img {
  width: 100%;
  height: 238px;
  object-fit: cover;
}

.feature-grid h3,
.feature-grid p {
  padding-left: 24px;
  padding-right: 24px;
}

.feature-grid h3 {
  padding-top: 24px;
}

.feature-grid p {
  padding-bottom: 28px;
}

.consultation-panel {
  display: grid;
  grid-template-columns: 1fr 0.56fr;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto 72px;
  padding: 0 clamp(22px, 4vw, 40px);
}

.contact-summary,
.mini-form,
.testimonial-grid article,
.insight-grid article {
  background: var(--white);
  border: 1px solid rgba(16, 36, 61, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.contact-summary {
  padding: clamp(30px, 5vw, 54px);
}

.contact-summary p:not(.section-kicker),
.insight-grid p,
.testimonial-grid p {
  color: var(--muted);
}

.summary-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.summary-list p {
  margin: 0;
  padding: 18px;
  background: #f3f8ec;
  border-radius: 6px;
}

.summary-list strong,
.summary-list span {
  display: block;
}

.summary-list strong {
  color: var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.summary-list span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.mini-form {
  align-self: start;
  display: grid;
  gap: 16px;
  padding: 30px;
  background: linear-gradient(145deg, var(--ink), var(--forest));
  color: var(--white);
}

.mini-form h3 {
  font-size: 1.55rem;
}

.mini-form label {
  display: grid;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 900;
}

.mini-form input,
.mini-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.mini-form .button.primary {
  color: var(--ink);
  background: var(--leaf);
  box-shadow: none;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto 82px;
  padding: 0 clamp(22px, 4vw, 40px);
}

.stats-band div {
  padding: 28px 24px;
  color: var(--white);
  background: linear-gradient(145deg, var(--ink), var(--blue));
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.stats-band div:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.stats-band div:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
  border-right: 0;
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  color: var(--leaf);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.stats-band span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.testimonials {
  max-width: none;
  background: linear-gradient(180deg, var(--green-soft), rgba(237, 244, 248, 0.5));
}

.testimonials > *,
.insights > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.testimonial-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-grid article {
  position: relative;
  padding: 34px 30px 30px;
}

.testimonial-grid article::before {
  content: "“";
  display: block;
  color: var(--leaf);
  font-size: 3.8rem;
  line-height: 0.7;
  font-weight: 900;
}

.testimonial-grid strong {
  display: block;
  margin-top: 22px;
  color: var(--ink);
}

.insight-grid article {
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.insight-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.insight-grid span {
  color: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.insight-grid h3 {
  margin-top: 18px;
  font-size: 1.35rem;
}

.checklist-section {
  max-width: none;
  background: #f3f8ec;
}

.checklist-section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

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

.check-grid article {
  position: relative;
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid rgba(16, 36, 61, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.check-grid article::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 18px;
  background: var(--leaf);
}

.check-grid strong,
.check-grid span {
  display: block;
}

.check-grid span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.quote-band {
  max-width: var(--max);
  margin: 78px auto;
  padding: 58px clamp(28px, 6vw, 84px);
  color: var(--white);
  background: linear-gradient(135deg, var(--forest), var(--blue));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-band p {
  max-width: 920px;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 3rem);
  line-height: 1.18;
  font-weight: 900;
}

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

.team-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(16, 36, 61, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.team-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.team-grid h3,
.team-grid p {
  padding-left: 24px;
  padding-right: 24px;
}

.team-grid h3 {
  padding-top: 24px;
}

.team-grid p {
  margin-top: 10px;
  padding-bottom: 28px;
  color: var(--muted);
}

.contact-close {
  max-width: var(--max);
  margin: 0 auto 84px;
  padding: 0 clamp(22px, 4vw, 40px);
}

.contact-close > div:first-child {
  max-width: 760px;
  margin-bottom: 30px;
}

.page-hero,
.contact-hero {
  position: relative;
  max-width: none;
  min-height: 330px;
  margin: 0;
  padding: 76px max(clamp(22px, 4vw, 40px), calc((100vw - var(--max)) / 2 + 40px)) 54px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.page-hero::before,
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  filter: grayscale(1);
  opacity: 0.72;
}

.page-hero::after,
.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(23, 57, 95, 0.78), rgba(23, 57, 95, 0.48)),
    rgba(255, 255, 255, 0.1);
}

.page-hero > div::before,
.contact-hero > div::before {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-bottom: 24px;
  background: var(--leaf);
}

.services-hero {
  --hero-image: url("assets/images/freepik/business-meeting-documents.jpg?v=20260512b");
}

.about-hero {
  --hero-image: url("assets/images/freepik/family-grandparents-legacy.jpg?v=20260512b");
}

.process-hero {
  --hero-image: url("assets/images/freepik/agreement-signing-detail.jpg?v=20260512b");
}

.contact-bg {
  --hero-image: url("assets/images/freepik/consultation-notary-couple.jpg?v=20260512b");
}

.page-hero {
  display: grid;
  align-items: end;
}

.page-hero > div,
.contact-hero > div {
  max-width: 850px;
}

.page-hero p:not(.eyebrow),
.contact-hero p:not(.section-kicker) {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--white);
}

.page-hero .eyebrow,
.contact-hero .section-kicker {
  color: var(--leaf);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.timeline.vertical {
  grid-template-columns: 1fr;
  max-width: 940px;
  gap: 14px;
}

.timeline-item {
  position: relative;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(16, 36, 61, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 24px;
  left: -1px;
  width: 4px;
  height: 42px;
  background: var(--leaf);
  border-radius: 999px;
}

.timeline-item strong {
  display: block;
  font-size: 1.08rem;
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto 82px;
  padding: 34px clamp(24px, 5vw, 50px);
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--blue) 58%, var(--forest));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta h2 {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
}

.cta p {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-hero {
  min-height: 320px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px clamp(22px, 4vw, 40px) 84px;
}

.contact-panel,
.form-panel {
  background: var(--white);
  border: 1px solid rgba(16, 36, 61, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.contact-panel {
  overflow: hidden;
}

.contact-panel img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.contact-panel-body,
.form-heading {
  padding: 30px 32px 0;
}

.contact-panel-body h2,
.form-heading h2 {
  font-size: clamp(1.5rem, 2vw, 2.05rem);
}

.contact-details {
  display: grid;
  gap: 12px;
  padding: 24px 32px 32px;
}

.contact-details p {
  margin: 0;
  padding: 16px;
  background: var(--mist);
  border-radius: 6px;
}

.contact-details strong,
.contact-details span {
  display: block;
}

.contact-details strong {
  color: var(--ink);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-details span {
  margin-top: 5px;
  color: var(--muted);
}

.form-panel {
  padding-bottom: 30px;
  overflow: hidden;
}

.map-embed {
  height: 260px;
  border-bottom: 1px solid rgba(16, 36, 61, 0.08);
  background: var(--blue-soft);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.25) saturate(0.85);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 26px 32px 0;
}

.form-status {
  display: none;
  margin: 24px 32px 0;
  padding: 14px 16px;
  border-radius: 6px;
  font-weight: 800;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  color: var(--forest);
  background: var(--green-soft);
}

.form-status.error {
  color: #7a1d1d;
  background: #f8e8e8;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
}

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

.contact-form .wide,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fbfcfd;
  transition: border 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 0;
  border-color: rgba(7, 95, 157, 0.55);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(7, 95, 157, 0.1);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  padding: 58px clamp(22px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: linear-gradient(135deg, var(--ink), #122f4e 48%, var(--forest));
}

.site-footer img {
  width: 190px;
}

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a:hover,
.site-footer .footer-call {
  color: var(--leaf);
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .top-bar {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border-bottom: 1px solid rgba(16, 36, 61, 0.1);
  }

  .site-nav.is-open a {
    padding: 14px;
    border-radius: 6px;
  }

  .hero,
  .intro-grid,
  .image-band,
  .why-matters,
  .split-section,
  .consult-strip,
  .expertise-band,
  .consultation-panel,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .service-grid,
  .timeline,
  .feature-grid,
  .summary-list,
  .testimonial-grid,
  .insight-grid,
  .check-grid,
  .team-grid,
  .stats-band {
    grid-template-columns: 1fr 1fr;
  }

  .stats-band div:first-child,
  .stats-band div:last-child {
    border-radius: 0;
  }

  .hero-card {
    max-width: 620px;
  }

  .hero-note {
    left: 24px;
  }

  .slide-dots {
    left: 36px;
  }
}

@media (max-width: 720px) {
  .top-bar {
    justify-content: center;
    padding: 8px 14px;
    gap: 6px 14px;
    font-size: 0.74rem;
    line-height: 1.35;
  }

  .top-bar span {
    display: none;
  }

  .site-header {
    gap: 14px;
    padding: 12px 16px;
  }

  .brand img {
    width: clamp(150px, 48vw, 190px);
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .hero,
  .section,
  .page-hero,
  .contact-hero {
    padding-top: 52px;
    padding-bottom: 48px;
  }

  .trust-strip,
  .service-grid,
  .timeline,
  .feature-grid,
  .summary-list,
  .testimonial-grid,
  .insight-grid,
  .check-grid,
  .team-grid,
  .stats-band,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .stats-band {
    gap: 10px;
  }

  .stats-band div {
    border-right: 0;
    border-radius: var(--radius);
  }

  .trust-strip {
    padding-bottom: 52px;
  }

  .section-heading {
    display: block;
  }

  .text-link {
    margin-top: 18px;
  }

  .image-band,
  .why-matters,
  .split-section {
    margin: 44px 22px;
  }

  .image-band img,
  .why-media,
  .split-section img,
  .contact-panel img,
  .feature-grid img,
  .team-grid img {
    height: 260px;
  }

  .why-media {
    min-height: 320px;
  }

  .slide-controls {
    top: 20px;
    right: 20px;
  }

  .slide-dots {
    bottom: 142px;
  }

  .hero-note {
    position: static;
    margin-top: 12px;
  }

  .slide-dots {
    bottom: 24px;
  }

  .why-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px;
  }

  .cta {
    grid-template-columns: 1fr;
    margin-left: 22px;
    margin-right: 22px;
  }

  .consult-strip,
  .expertise-band,
  .consultation-panel,
  .quote-band,
  .stats-band {
    margin-left: 22px;
    margin-right: 22px;
    margin-bottom: 44px;
  }

  .consult-strip,
  .expertise-band,
  .quote-band {
    padding: 28px 22px;
  }

  .consultation-panel,
  .stats-band {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-panel-body,
  .form-heading,
  .contact-details,
  .contact-form,
  .form-status {
    padding-left: 22px;
    padding-right: 22px;
  }

  .form-status {
    margin-left: 22px;
    margin-right: 22px;
  }

  .summary-list p,
  .contact-summary,
  .mini-form,
  .why-content {
    padding: 22px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}
