:root {
  --white: #ffffff;
  --off-white: #f5f6f2;
  --gray-50: #f5f6f2;
  --gray-100: #e7ebe5;
  --gray-500: #5f6661;
  --gray-700: #2a2a2a;
  --green-400: #6e8f84;
  --green-500: #2f5d50;
  --green-600: #2f5d50;
  --green-100: rgba(47, 93, 80, 0.08);
  --green-200: rgba(110, 143, 132, 0.18);
  --accent-500: #c2a878;
  --ink-950: #2a2a2a;
  --ink-900: #2f5d50;
  --ink-800: #6e8f84;
  --line: rgba(47, 93, 80, 0.12);
  --line-strong: rgba(47, 93, 80, 0.18);
  --shadow-xl: 0 18px 40px rgba(47, 93, 80, 0.08);
  --shadow-lg: 0 12px 28px rgba(47, 93, 80, 0.07);
  --shadow-md: 0 8px 18px rgba(47, 93, 80, 0.05);
  --radius-xl: 16px;
  --radius-lg: 12px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --container: min(1180px, calc(100vw - 40px));
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--gray-700);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

main {
  overflow-x: clip;
}

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

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Sora", "Avenir Next", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink-950);
}

p {
  margin: 0;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 70;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-600);
  transform: translateY(-150%);
  transition: transform var(--transition);
}

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

:focus-visible {
  outline: 3px solid rgba(47, 93, 80, 0.24);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(47, 93, 80, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.site-header--light {
  background: rgba(255, 255, 255, 0.94);
}

.header__inner {
  position: relative;
  min-height: 86px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 0;
}

.brand--wordmark {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.brand__name {
  font-size: clamp(1.62rem, 1.8vw, 1.86rem);
  font-weight: 700;
  color: var(--green-500);
}

.brand__line {
  width: 118px;
  height: 2px;
  border-radius: 999px;
  background: var(--green-500);
  transform-origin: left center;
  animation: brandLine 3.4s ease-in-out infinite;
}

@keyframes brandLine {
  0%,
  100% {
    transform: translateX(0) scaleX(1);
    opacity: 0.86;
  }

  50% {
    transform: translateX(8px) scaleX(1.1);
    opacity: 1;
  }
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  position: relative;
  z-index: 1;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--gray-700);
  font-size: 0.96rem;
  font-weight: 700;
  transition:
    color var(--transition),
    transform var(--transition);
}

.main-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(47, 93, 80, 0.08);
  border-radius: inherit;
  background: rgba(47, 93, 80, 0.08);
  box-shadow: none;
  opacity: 0;
  transform: scale(0.88);
  transition:
    opacity var(--transition),
    transform var(--transition),
    border-color var(--transition);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--green-600);
  transform: translateY(-1px);
}

.main-nav a:hover::before,
.main-nav a[aria-current="page"]::before {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(47, 93, 80, 0.16);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(47, 93, 80, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
  flex-direction: column;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink-950);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    transform var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

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

.button--header {
  min-height: 44px;
  padding: 0 18px;
}

.button--primary {
  color: var(--white);
  background: var(--green-500);
  border-color: var(--green-500);
  box-shadow: none;
}

.button--primary:hover {
  color: var(--white);
  background: var(--green-400);
  border-color: var(--green-400);
  box-shadow: none;
}

.button--secondary {
  color: var(--green-600);
  background: var(--white);
  border-color: rgba(47, 93, 80, 0.34);
  box-shadow: none;
}

.button--secondary:hover {
  color: var(--white);
  background: var(--green-500);
  border-color: var(--green-500);
}

.hero {
  position: relative;
  min-height: clamp(560px, 74vh, 700px);
  display: flex;
  align-items: flex-end;
  padding: clamp(92px, 9vw, 126px) 0 clamp(52px, 5vw, 72px);
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.38);
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

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

.hero__shell {
  width: var(--container);
  margin: 0 auto;
}

.hero__content {
  max-width: 760px;
  min-width: 0;
  width: 100%;
}

.hero:not(.hero--blog) .hero__shell {
  display: flex;
  justify-content: flex-start;
}

.hero:not(.hero--blog) .hero__content {
  display: grid;
  justify-items: start;
  margin: 0;
  max-width: 900px;
  padding-left: 0;
  text-align: left;
}

.hero h1 {
  font-size: clamp(3rem, 5.8vw, 5.2rem);
  color: var(--white);
}

.hero:not(.hero--blog) h1 {
  max-width: 980px;
  font-size: clamp(2.25rem, 3.7vw, 3.5rem);
  line-height: 1.06;
}

.hero-title-line {
  display: block;
  max-width: 100%;
}

.hero__lead {
  margin-top: 18px;
  max-width: 640px;
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero__copy {
  margin-top: 14px;
  max-width: 620px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero:not(.hero--blog) .button-row,
.hero:not(.hero--blog) .keyword-list {
  justify-content: flex-start;
}

.hero .button--secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.hero .button--secondary:hover {
  color: var(--green-600);
  background: var(--white);
  border-color: var(--white);
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.keyword-list li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero--blog {
  min-height: auto;
  display: block;
  padding: 76px 0 68px;
  color: inherit;
}

.hero--blog::before {
  background: var(--white);
}

.hero--blog .hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  align-items: stretch;
  gap: clamp(26px, 4vw, 46px);
}

.hero--blog h1,
.hero--blog .hero__lead {
  color: var(--ink-950);
}

.hero--blog h1 {
  max-width: 11.2ch;
  font-size: clamp(2.45rem, 4.9vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero--blog .hero__lead {
  max-width: 640px;
  color: rgba(42, 42, 42, 0.74);
}

.hero--blog .button--secondary {
  color: var(--green-600);
  background: var(--white);
  border-color: rgba(47, 93, 80, 0.3);
}

.section {
  padding: clamp(78px, 8vw, 108px) 0;
}

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

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

.section--tint {
  background: rgba(110, 143, 132, 0.12);
}

.section-heading,
.section-copy {
  max-width: 760px;
  min-width: 0;
}

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

.section-heading--badmin .section-label {
  margin-bottom: 18px;
}

.section-heading .section-label,
.section-copy .section-label,
.legal-hero .section-label {
  margin-bottom: 16px;
}

.section-label,
.hero-card__label,
.service-card__label,
.blog-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-600);
  background: rgba(47, 93, 80, 0.08);
  border: 1px solid rgba(47, 93, 80, 0.1);
}

.section-label::before,
.hero-card__label::before,
.service-card__label::before,
.blog-card__tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.section-label--light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.section-heading h2,
.section-copy h2,
.overview-panel h3,
.overview-details h3,
.editorial-card h2,
.feature-article__content h2,
.cta-panel h2,
.legal-hero h1 {
  font-size: clamp(1.72rem, 2.7vw, 2.45rem);
}

.section-heading p:not(.section-label),
.section-copy p:not(.section-label),
.overview-panel p:not(.hero-card__label),
.overview-details p,
.editorial-card p:not(.section-label),
.feature-article__content p:not(.blog-card__tag),
.cta-panel p:not(.section-label),
.legal-hero p:not(.section-label),
.legal-card p {
  margin-top: 16px;
  color: var(--gray-500);
}

.overview-grid,
.about-grid,
.problem-grid,
.faq-grid,
.contact-grid,
.hero--blog .hero__grid,
.feature-article,
.cta-panel {
  display: grid;
  gap: clamp(26px, 3.8vw, 44px);
}

.overview-grid {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  align-items: start;
}

.about-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: start;
}

.problem-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: start;
}

.faq-grid,
.contact-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
}

.feature-article {
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
  overflow: hidden;
  border: 1px solid rgba(47, 93, 80, 0.1);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: none;
}

.cta-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid rgba(47, 93, 80, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(47, 93, 80, 0.05);
  box-shadow: none;
}

.overview-panel,
.problem-panel,
.problem-note,
.service-card,
.audience-card,
.trust-card,
.process-step,
.blog-card,
.faq-panel,
.contact-card,
.form-card,
.editorial-card,
.legal-card {
  border: 1px solid rgba(47, 93, 80, 0.1);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: none;
}

.overview-panel,
.problem-panel,
.problem-note,
.service-card,
.audience-card,
.trust-card,
.process-step,
.blog-card,
.contact-card,
.form-card,
.editorial-card,
.legal-card,
.feature-article__content {
  padding: clamp(22px, 2.6vw, 30px);
}

.overview-panel {
  color: var(--white);
  border-color: rgba(47, 93, 80, 0.2);
  background: var(--green-600);
  box-shadow: none;
}

.overview-panel .hero-card__label {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.overview-panel h3,
.overview-panel p:not(.hero-card__label),
.overview-panel .service-list li {
  color: rgba(255, 255, 255, 0.92);
}

.overview-panel .service-list li::before {
  background: rgba(255, 255, 255, 0.84);
}

.overview-panel h3,
.overview-details h3,
.problem-panel h3,
.problem-note h3 {
  margin-top: 14px;
  font-size: clamp(1.3rem, 1.7vw, 1.64rem);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.badge-row span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
}

.service-list,
.contact-points,
.pain-list {
  padding: 0;
  list-style: none;
}

.service-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.service-list--compact {
  margin-top: 18px;
}

.contact-points,
.pain-list {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}

.service-list li,
.contact-points li,
.pain-list li {
  position: relative;
  padding-left: 20px;
  color: var(--gray-700);
}

.service-list li::before,
.contact-points li::before,
.pain-list li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-500);
}

.overview-details {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 4px 0;
  min-width: 0;
}

.value-list {
  display: grid;
  gap: 18px;
}

.value-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.value-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: var(--green-600);
  background: rgba(47, 93, 80, 0.08);
  box-shadow: none;
}

.value-item__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-item__body {
  min-width: 0;
}

.value-item h4 {
  font-size: 1.02rem;
  color: var(--ink-950);
}

.value-item__body p {
  margin-top: 8px;
  color: var(--gray-500);
}

.about-points {
  display: grid;
  gap: 18px;
}

.about-point {
  padding: 0 0 18px 18px;
  border-bottom: 1px solid rgba(43, 43, 43, 0.08);
  position: relative;
}

.about-point:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.about-point::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green-500);
}

.about-point h3 {
  font-size: 1.12rem;
}

.about-point p {
  margin-top: 8px;
  color: var(--gray-500);
}

.problem-panel,
.problem-note {
  min-height: 100%;
}

.problem-panel--accent {
  color: var(--white);
  border-color: rgba(47, 93, 80, 0.2);
  background: var(--green-600);
  box-shadow: none;
}

.problem-panel--accent h3,
.problem-panel--accent .pain-list li {
  color: rgba(255, 255, 255, 0.92);
}

.problem-panel--accent .pain-list li::before {
  background: rgba(255, 255, 255, 0.84);
}

.problem-note {
  background: var(--white);
}

.problem-note--muted {
  border-color: rgba(47, 93, 80, 0.1);
  background: rgba(47, 93, 80, 0.035);
}

.problem-note--muted h3 {
  color: var(--ink-950);
}

.problem-note--muted .value-item__icon {
  background: rgba(255, 255, 255, 0.78);
}

.problem-note .value-list {
  margin-top: 20px;
}

.service-grid,
.audience-grid,
.trust-grid,
.blog-grid,
.blog-grid--full,
.legal-grid {
  display: grid;
  gap: 18px;
}

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

.service-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(47, 93, 80, 0.1);
  border-radius: var(--radius-xl);
  background: var(--white);
}

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

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

.service-card,
.audience-card,
.trust-card,
.blog-card {
  min-height: 100%;
}

.service-showcase .service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding: 30px;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.service-card--soft {
  background: #edf4ef;
}

.service-card--plain {
  background: var(--white);
}

.service-card--accent {
  justify-content: flex-end;
  background: var(--green-500);
  color: var(--white);
}

.service-showcase > :nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  border-right: 1px solid rgba(47, 93, 80, 0.1);
  border-bottom: 1px solid rgba(47, 93, 80, 0.1);
}

.service-showcase > :nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  border-bottom: 1px solid rgba(47, 93, 80, 0.1);
}

.service-showcase > :nth-child(3) {
  grid-column: 1;
  grid-row: 2;
  border-right: 1px solid rgba(47, 93, 80, 0.1);
}

.service-showcase > :nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.service-showcase > :nth-child(5) {
  grid-column: 3;
  grid-row: 1 / span 2;
  border-left: 1px solid rgba(47, 93, 80, 0.1);
}

.service-card--accent h3,
.service-card--accent .service-card__copy,
.service-card--accent .service-card__link {
  color: var(--white);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: var(--white);
  color: var(--green-500);
  border: 1px solid rgba(47, 93, 80, 0.1);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card__icon--accent {
  background: var(--white);
  color: var(--green-500);
}

.service-showcase .service-card h3 {
  margin-top: 0;
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.service-card__title-line {
  display: block;
}

.service-card__copy {
  margin-top: 18px;
  color: rgba(42, 42, 42, 0.68);
  font-size: 1rem;
  line-height: 1.62;
}

.service-card h3,
.blog-card h3,
.audience-card h3,
.trust-card h3,
.process-step h3 {
  margin-top: 14px;
  font-size: 1.28rem;
}

.service-benefit,
.audience-card p,
.trust-card p,
.blog-card p:last-child,
.process-step p {
  margin-top: 12px;
  color: var(--gray-500);
}

.service-benefit {
  font-weight: 700;
  color: var(--gray-700);
}

.service-showcase .service-benefit {
  margin-top: 18px;
  font-weight: 500;
  color: rgba(42, 42, 42, 0.78);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.service-card__link::after {
  content: "\2192";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--white);
  color: var(--green-500);
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.audience-card,
.trust-card {
  background: var(--white);
}

.collaboration-feature {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(360px, 42vw, 500px);
  margin: 0;
  border: 1px solid rgba(47, 93, 80, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
}

.collaboration-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.42);
}

.collaboration-feature__background {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.collaboration-feature__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collaboration-feature__content {
  display: grid;
  align-content: end;
  gap: 14px;
  max-width: 620px;
  min-width: 0;
  padding: clamp(28px, 3vw, 40px);
  color: var(--white);
}

.collaboration-feature__content .section-label {
  margin-bottom: 0;
}

.collaboration-feature__content h2,
.collaboration-feature__content h3 {
  font-size: clamp(1.42rem, 2vw, 2rem);
  line-height: 1.12;
  color: var(--white);
}

.collaboration-feature__content p:not(.section-label) {
  color: rgba(255, 255, 255, 0.82);
}

.collaboration-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 8px 0 0;
  list-style: none;
}

.collaboration-points li {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
  line-height: 1.4;
}

.collaboration-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: currentColor;
  flex: 0 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(47, 93, 80, 0.08);
  color: var(--green-600);
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

.blog-card__tag {
  margin-bottom: 6px;
}

.blog-card:hover,
.service-card:hover,
.audience-card:hover,
.trust-card:hover {
  transform: translateY(-2px);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: none;
}

.section-action {
  margin-top: 28px;
  display: flex;
}

.faq-panel {
  padding: 16px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(47, 93, 80, 0.1);
  background: rgba(47, 93, 80, 0.03);
}

.faq-item {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(47, 93, 80, 0.08);
}

.faq-item + .faq-item {
  margin-top: 12px;
}

.faq-question {
  position: relative;
  width: 100%;
  padding: 22px 58px 22px 22px;
  border: 0;
  border-radius: var(--radius-lg);
  background: transparent;
  color: var(--ink-950);
  text-align: left;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  border-radius: var(--radius-sm);
  background: rgba(47, 93, 80, 0.08);
  color: var(--green-600);
  font-family: "Sora", "Avenir Next", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  transition: transform var(--transition), background-color var(--transition);
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
  background: rgba(110, 143, 132, 0.22);
}

.faq-answer {
  padding: 0 22px 22px;
}

.faq-answer p {
  color: var(--gray-500);
}

.contact-card {
  margin-top: 24px;
  background: rgba(47, 93, 80, 0.04);
}

.contact-card h3 {
  font-size: 1.24rem;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

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

.field label {
  font-weight: 700;
  color: var(--ink-950);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(47, 93, 80, 0.16);
  border-radius: var(--radius-md);
  background: var(--off-white);
  color: var(--ink-950);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background-color var(--transition);
}

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

.field input::placeholder,
.field textarea::placeholder {
  color: var(--gray-500);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(47, 93, 80, 0.32);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(47, 93, 80, 0.08);
  outline: 0;
}

.field--checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}

.field--checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  padding: 0;
}

.field--checkbox label {
  font-weight: 500;
  color: var(--gray-500);
}

.field--checkbox a {
  color: var(--green-600);
  font-weight: 700;
}

.form-helper,
.form-status {
  font-size: 0.92rem;
}

.form-helper {
  color: var(--gray-500);
}

.form-status {
  min-height: 1.5em;
  color: var(--green-600);
  font-weight: 700;
}

.editorial-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  background: var(--green-600);
  border-color: rgba(47, 93, 80, 0.18);
}

.editorial-card h2,
.editorial-card p:not(.section-label) {
  color: var(--white);
}

.feature-article__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.site-footer {
  padding: 68px 0 28px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--green-600);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.72fr));
  gap: 24px;
}

.footer-brand {
  max-width: 360px;
}

.brand--footer .brand__name {
  color: var(--white);
}

.brand--footer .brand__line {
  background: rgba(255, 255, 255, 0.96);
}

.footer-brand p,
.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-brand p {
  margin-top: 16px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  font-size: 0.98rem;
  color: var(--white);
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom a {
  color: var(--white);
  font-weight: 700;
}

.footer-bottom--single {
  margin-top: 0;
}

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

.legal-hero {
  padding: 62px 0 22px;
}

.legal-hero .container {
  max-width: 880px;
}

.legal-card--full {
  grid-column: 1 / -1;
}

.blog-main,
.article-main {
  background: var(--white);
}

.page-intro {
  padding: 86px 0 82px;
  background: var(--green-600);
}

.page-intro__content,
.article-hero {
  color: var(--white);
}

.page-intro__content {
  max-width: 860px;
  width: 100%;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.page-intro h1 {
  max-width: 8.6ch;
  margin-top: 18px;
  font-size: clamp(3rem, 5.4vw, 4.9rem);
  line-height: 0.98;
  color: var(--white);
  overflow-wrap: anywhere;
}

.page-intro__line {
  display: block;
}

.page-intro .section-intro {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.02rem, 1.4vw, 1.14rem);
  overflow-wrap: anywhere;
}

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

.page-intro .button--primary {
  color: var(--green-600);
  background: var(--white);
  border-color: var(--white);
}

.page-intro .button--primary:hover {
  color: var(--green-600);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.94);
}

.page-intro .button--secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

.page-intro .button--secondary:hover {
  color: var(--green-600);
  background: var(--white);
  border-color: var(--white);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.hero-meta li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 700;
}

.section-header {
  max-width: 820px;
  margin-bottom: 30px;
  min-width: 0;
}

.section-header h2 {
  font-size: clamp(1.82rem, 3vw, 2.6rem);
}

.section-header .section-intro {
  margin-top: 16px;
  color: var(--gray-500);
}

.section-header .eyebrow {
  background: rgba(47, 93, 80, 0.08);
  color: var(--green-600);
}

.post-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 15px;
  border: 1px solid rgba(47, 93, 80, 0.16);
  border-radius: 999px;
  background: var(--white);
  color: var(--gray-700);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.filter-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 93, 80, 0.26);
  color: var(--green-600);
}

.filter-chip[aria-pressed="true"] {
  color: var(--white);
  background: var(--green-600);
  border-color: var(--green-600);
}

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

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

.post-card {
  min-height: 100%;
  border: 1px solid rgba(47, 93, 80, 0.1);
  border-radius: var(--radius-xl);
  background: var(--white);
  overflow: hidden;
}

.post-card__link {
  display: grid;
  min-height: 100%;
}

.post-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-100);
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card__body {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
}

.post-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.post-card-date {
  color: var(--gray-500);
  font-size: 0.9rem;
  font-weight: 700;
}

.post-card-topic {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(47, 93, 80, 0.08);
  color: var(--green-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.post-card-meta--light .post-card-date {
  color: rgba(255, 255, 255, 0.76);
}

.post-card-meta--light .post-card-topic {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.post-card h2,
.post-card h3 {
  font-size: clamp(1.4rem, 2vw, 1.84rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.post-card p {
  color: var(--gray-500);
}

.post-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--green-600);
  font-weight: 700;
}

.post-card-cta::after {
  content: "\2192";
  font-size: 1rem;
}

.post-card__link:hover .post-card-cta {
  color: var(--ink-950);
}

.post-empty {
  margin-top: 26px;
  color: var(--gray-500);
  font-weight: 600;
}

.article-hero {
  padding-top: 6px;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.article-back::before {
  content: "\2190";
  font-size: 1rem;
}

.article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 0.88fr);
  gap: clamp(28px, 4vw, 46px);
  align-items: center;
}

.article-hero__content h1 {
  max-width: 12ch;
}

.article-hero__media {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.article-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.article-body {
  padding-top: 70px;
}

.article-shell {
  max-width: 860px;
}

.article-content {
  max-width: 760px;
}

.article-content p,
.article-content li {
  color: var(--gray-700);
  font-size: 1.02rem;
  line-height: 1.82;
}

.article-content p + p {
  margin-top: 16px;
}

.article-content h2 {
  margin-top: 40px;
  font-size: clamp(1.46rem, 2.4vw, 2rem);
  line-height: 1.12;
}

.article-content ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.article-content li + li {
  margin-top: 10px;
}

.article-summary {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(47, 93, 80, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(47, 93, 80, 0.04);
}

.article-summary h2 {
  margin-top: 0;
}

.js .reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1140px) {
  .overview-grid,
  .about-grid,
  .problem-grid,
  .faq-grid,
  .contact-grid,
  .hero--blog .hero__grid,
  .feature-article,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .audience-grid,
  .trust-grid,
  .blog-grid,
  .blog-grid--full,
  .post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collaboration-feature {
    grid-template-columns: 1fr;
  }

  .article-hero__grid {
    grid-template-columns: 1fr;
  }

  .service-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 12px;
  }

  .service-showcase > :nth-child(1),
  .service-showcase > :nth-child(2),
  .service-showcase > :nth-child(3),
  .service-showcase > :nth-child(4),
  .service-showcase > :nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(47, 93, 80, 0.1);
  }

  .service-showcase > :nth-child(odd):not(:nth-child(5)) {
    border-right: 1px solid rgba(47, 93, 80, 0.1);
  }

  .service-showcase > :nth-child(5) {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

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

@media (max-width: 920px) {
  .header__inner {
    min-height: 82px;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: space-between;
    gap: 16px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .button--header {
    display: none;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    padding: 18px;
    border: 1px solid rgba(217, 217, 217, 0.9);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-xl);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

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

  .main-nav a {
    text-align: center;
  }

  .process-grid,
  .legal-grid,
  .form-row,
  .post-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100vw - 28px, 100%);
  }

  .site-header {
    backdrop-filter: blur(14px);
  }

  .brand__name {
    font-size: 1.56rem;
  }

  .brand__line {
    width: 108px;
  }

  .hero {
    min-height: 540px;
    padding-top: 102px;
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: clamp(2rem, 8.4vw, 2.7rem);
  }

  .hero:not(.hero--blog) h1,
  .hero--blog h1 {
    max-width: 100%;
    font-size: clamp(1.86rem, 7.8vw, 2.52rem);
    line-height: 1.05;
  }

  .hero__lead {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .hero__copy {
    max-width: 100%;
    font-size: 0.92rem;
  }

  .hero .button-row {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .section,
  .hero--blog,
  .legal-hero,
  .page-intro {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .page-intro h1,
  .article-hero__content h1 {
    max-width: 100%;
    font-size: clamp(2.18rem, 9vw, 3rem);
  }

  .page-intro .section-intro {
    max-width: 100%;
    font-size: 0.98rem;
  }

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

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

  .hero-meta {
    gap: 10px;
  }

  .hero-meta li {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .section-heading h2,
  .section-copy h2,
  .overview-panel h3,
  .overview-details h3,
  .editorial-card h2,
  .feature-article__content h2,
  .section-header h2,
  .cta-panel h2,
  .legal-hero h1 {
    font-size: clamp(1.52rem, 7.1vw, 2rem);
  }

  .service-grid,
  .service-showcase,
  .audience-grid,
  .trust-grid,
  .blog-grid,
  .blog-grid--full,
  .post-grid,
  .footer-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .overview-panel,
  .problem-panel,
  .problem-note,
  .service-card,
  .audience-card,
  .trust-card,
  .process-step,
  .blog-card,
  .faq-panel,
  .contact-card,
  .form-card,
  .editorial-card,
  .legal-card,
  .feature-article__content,
  .cta-panel {
    padding: 22px;
  }

  .collaboration-feature__content {
    padding: 22px;
  }

  .collaboration-points li {
    width: 100%;
  }

  .keyword-list {
    gap: 10px;
  }

  .keyword-list li {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .feature-article {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .feature-article__media {
    overflow: hidden;
    border: 1px solid rgba(47, 93, 80, 0.1);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
  }

  .feature-article__content {
    margin-top: 16px;
    border: 1px solid rgba(47, 93, 80, 0.1);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
  }

  .service-showcase .service-card {
    padding: 22px;
  }

  .service-showcase .service-card h3 {
    font-size: 1.4rem;
  }

  .service-showcase > :nth-child(1),
  .service-showcase > :nth-child(2),
  .service-showcase > :nth-child(3),
  .service-showcase > :nth-child(4) {
    border-right: 0;
  }

  .service-showcase > :not(:last-child) {
    border-bottom: 1px solid rgba(47, 93, 80, 0.1);
  }

  .service-showcase > :last-child {
    border-bottom: 0;
  }

  .post-card__body,
  .article-summary {
    padding: 20px;
  }

  .article-hero__media img {
    min-height: 260px;
  }

  .article-content p,
  .article-content li {
    font-size: 0.98rem;
  }

  .article-content h2 {
    margin-top: 32px;
    font-size: 1.5rem;
  }

  .footer-bottom,
  .footer-bottom--single {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
