:root {
  --green-bg: #f6faf7;
  --green-dark: #456145;
  --green-heading: #355c9d;
  --lavender: #9c6fb0;
  --text-dark: #2a3a36;
  --surface: #ffffff;
  --border-soft: #dbe7df;
  --max-width: 1100px;
  --shadow-soft: 0 12px 30px rgba(22, 58, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Rethink Sans", Arial, sans-serif;
  color: var(--green-dark);
  line-height: 1.7;
  background: var(--green-bg);
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  background: var(--surface);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  border-bottom: 1px solid #ececec;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 75px;
  width: auto;
  object-fit: contain;
  padding: 3px 0;
}

nav a {
  margin-left: 20px;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  color: var(--green-dark);
  font-weight: 500;
  transition: color 0.22s ease, transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

nav a:hover,
nav a:focus-visible {
  color: var(--green-heading);
  transform: translateY(-1px);
}

nav a.is-active {
  color: var(--green-heading);
  border-bottom-color: var(--green-heading);
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
  z-index: -1;
}

.overlay {
  max-width: 640px;
  margin-left: 60px;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
}

@keyframes heroImageIn {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero img {
    animation: heroImageIn 1.3s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero .overlay {
    animation: heroCopyIn 0.8s ease-out 0.12s both;
  }
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  margin-top: 0;
  padding: 12px 22px;
  background: var(--lavender);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.92;
}

/* SECTIONS */
.section {
  padding: 84px 20px;
}

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

.section-contrast {
  background: linear-gradient(180deg, #f0f6f3 0%, #f8fbf9 100%);
}

.section-intro {
  max-width: var(--max-width);
  margin: 0 auto 28px;
}

.section-intro h3 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  margin: 0 0 14px;
  color: var(--green-heading);
}

.section-intro p {
  margin: 0;
}

.section-intro p + p {
  margin-top: 12px;
}

.section-intro .lead {
  font-size: 28px;
  line-height: 1.35;
  color: var(--text-dark);
}

h4 {
  font-size: 22px;
  line-height: 1.35;
  margin: 0 0 14px;
  color: var(--text-dark);
}

.will-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.58s ease, transform 0.58s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.feature-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: block;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.feature-card ul {
  margin: 0;
  padding-left: 20px;
}

.feature-card li + li {
  margin-top: 8px;
}

.timeline-wrap {
  max-width: var(--max-width);
  margin: 22px auto 0;
  padding: 28px 26px 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #eef6f2 0%, #e6f0eb 100%);
  border: 1px solid #d3e3d9;
}

.timeline-wrap h4 {
  margin-bottom: 18px;
}

.service-timeline {
  position: relative;
  --line-transform-hidden: translateX(-50%) scaleY(0);
  --line-transform-visible: translateX(-50%) scaleY(1);
}

.service-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, #6d8c7b 0%, #4f6e5e 100%);
  transform: translateX(-50%);
}

.timeline-step {
  position: relative;
  width: 50%;
  padding: 0 30px 22px;
}

.timeline-step:nth-child(odd) {
  margin-right: auto;
}

.timeline-step:nth-child(even) {
  margin-left: auto;
}

.step-dot {
  position: absolute;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--green-heading);
  box-shadow: 0 0 0 3px rgba(83, 113, 99, 0.16);
}

.timeline-step:nth-child(odd) .step-dot {
  right: -7px;
}

.timeline-step:nth-child(even) .step-dot {
  left: -7px;
}

.step-content {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 16px 16px 14px;
  box-shadow: 0 10px 18px rgba(27, 62, 47, 0.08);
}

.step-content h5 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.3;
  color: var(--text-dark);
}

.step-content p {
  margin: 0;
}

@keyframes timelineDotPulse {
  0% {
    transform: scale(0.72);
  }
  60% {
    transform: scale(1.16);
  }
  100% {
    transform: scale(1);
  }
}

.timeline-wrap.timeline-animated .service-timeline::before {
  transform: var(--line-transform-hidden);
  transform-origin: top;
  transition: transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
}

.timeline-wrap.timeline-animated.is-visible .service-timeline::before {
  transform: var(--line-transform-visible);
}

.timeline-wrap.timeline-animated .timeline-step {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-wrap.timeline-animated.is-visible .timeline-step {
  opacity: 1;
  transform: translateY(0);
}

.timeline-wrap.timeline-animated.is-visible .timeline-step:nth-child(1) {
  transition-delay: 0.12s;
}

.timeline-wrap.timeline-animated.is-visible .timeline-step:nth-child(2) {
  transition-delay: 0.3s;
}

.timeline-wrap.timeline-animated.is-visible .timeline-step:nth-child(3) {
  transition-delay: 0.48s;
}

.timeline-wrap.timeline-animated.is-visible .timeline-step:nth-child(4) {
  transition-delay: 0.66s;
}

.timeline-wrap.timeline-animated.is-visible .timeline-step:nth-child(1) .step-dot {
  animation: timelineDotPulse 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.timeline-wrap.timeline-animated.is-visible .timeline-step:nth-child(2) .step-dot {
  animation: timelineDotPulse 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.timeline-wrap.timeline-animated.is-visible .timeline-step:nth-child(3) .step-dot {
  animation: timelineDotPulse 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.48s both;
}

.timeline-wrap.timeline-animated.is-visible .timeline-step:nth-child(4) .step-dot {
  animation: timelineDotPulse 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.66s both;
}

.service-note {
  max-width: var(--max-width);
  margin: 24px auto 0;
  padding: 0;
  border-radius: 0;
  background: none;
  border: 0;
}

.value-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-left: 5px solid var(--green-heading);
  border-radius: 12px;
  padding: 20px 22px;
}

.value-card h4 {
  margin-bottom: 8px;
}

.value-card p {
  margin: 0;
}

.value-grid .value-card:last-child {
  grid-column: 1 / -1;
}

.partner-card {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.partner-logo-link {
  min-height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e2ebe4;
  border-radius: 12px;
  background: #f8fbf9;
  padding: 24px;
}

.partner-logo {
  max-width: 100%;
  max-height: 78px;
  width: auto;
  height: auto;
}

.partner-content p {
  margin: 0;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--green-heading);
  text-decoration: none;
  font-weight: 600;
}

.text-link:hover {
  text-decoration: underline;
}

/* HIGHLIGHT CTA */
.highlight {
  background: linear-gradient(180deg, #e9f3ee 0%, #f4faf7 100%);
  text-align: center;
  padding: 96px 20px;
  border-top: 1px solid #d7e6dd;
}

.highlight h3 {
  font-family: "Playfair Display", serif;
  color: var(--green-heading);
  font-size: 44px;
  line-height: 1.2;
  margin: 0;
}

.highlight p {
  font-size: 19px;
  margin: 12px 0 0;
}

.cta-group {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-group .btn {
  min-width: 160px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 30px;
  background: var(--surface);
  font-size: 14px;
}

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

  nav a,
  .hero img,
  .hero .overlay,
  .will-reveal,
  .timeline-wrap.timeline-animated .timeline-step,
  .timeline-wrap.timeline-animated .service-timeline::before,
  .timeline-wrap.timeline-animated .timeline-step .step-dot {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px 14px 12px;
  }

  .logo {
    width: 100%;
    justify-content: center;
  }

  nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  nav a {
    margin-left: 0;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    opacity: 1;
    padding: 8px 10px;
    border-radius: 999px;
    background: #f6faf7;
    border: 1px solid #d6e4da;
  }

  nav a.is-active {
    color: #2d4c3f;
    background: #e6f0eb;
    border-color: #bfd4c6;
  }

  .logo img {
    height: 66px;
  }

  .hero {
    min-height: auto;
    margin: 10px 10px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    color: var(--green-dark);
  }

  .hero img {
    position: relative;
    width: 100%;
    height: 430px;
    filter: none;
    z-index: 0;
    object-fit: cover;
    object-position: center 74%;
    border-radius: 18px;
  }

  .overlay {
    max-width: 100%;
    margin-left: 0;
    padding: 0 8px;
    border-radius: 0;
    background: none;
  }

  .hero h2 {
    font-size: 39px;
    line-height: 1.15;
    margin-bottom: 12px;
    color: var(--text-dark);
  }

  .hero p {
    font-size: 15px;
    line-height: 1.45;
    margin: 0;
    max-width: 34ch;
    color: var(--green-dark);
  }

  .hero-actions {
    width: 100%;
    margin-top: 16px;
    gap: 10px;
  }

  .btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 18px;
    font-size: 15px;
    border-radius: 12px;
  }

  .section {
    padding: 46px 14px;
  }

  .section-intro {
    margin-bottom: 20px;
  }

  .section-intro h3 {
    font-size: 28px;
  }

  .section-intro .lead {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  .feature-grid,
  .value-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .timeline-wrap {
    margin-top: 18px;
    padding: 20px 16px 16px;
  }

  .will-reveal {
    transform: translateY(12px);
  }

  .timeline-wrap.timeline-animated .timeline-step {
    transform: translateY(12px);
  }

  .timeline-wrap h4 {
    margin-bottom: 14px;
  }

  .service-timeline::before {
    left: 7px;
    top: 8px;
    bottom: 12px;
    transform: translateX(0);
  }

  .service-timeline {
    --line-transform-hidden: translateX(0) scaleY(0);
    --line-transform-visible: translateX(0) scaleY(1);
  }

  .timeline-step {
    width: 100%;
    padding: 0 0 14px 28px;
    margin: 0;
  }

  .timeline-step:nth-child(odd),
  .timeline-step:nth-child(even) {
    margin: 0;
  }

  .timeline-step:nth-child(odd) .step-dot,
  .timeline-step:nth-child(even) .step-dot {
    left: 0;
    right: auto;
  }

  .step-content h5 {
    font-size: 18px;
  }

  .feature-card,
  .value-card {
    padding: 18px;
  }

  .value-grid .value-card:last-child {
    grid-column: auto;
  }

  .service-note {
    margin-top: 20px;
    padding: 0;
  }

  .partner-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .partner-logo-link {
    min-height: 106px;
    padding: 20px;
  }

  .partner-logo {
    max-height: 62px;
  }

  .highlight {
    padding: 68px 14px;
  }

  .highlight h3 {
    font-size: 34px;
  }

  .highlight p {
    font-size: 16px;
  }

  .cta-group {
    margin-top: 26px;
    gap: 16px;
  }

  .cta-group .btn {
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .hero {
    margin: 8px 8px 0;
    gap: 12px;
  }

  .hero img {
    height: 370px;
    border-radius: 16px;
    object-position: center 76%;
  }

  .overlay {
    padding: 0 6px;
  }

  .logo img {
    height: 60px;
  }

  h2 {
    font-size: 34px;
  }

  .hero p {
    font-size: 14px;
  }

  .section-intro h3 {
    font-size: 30px;
  }

  .section-intro .lead {
    font-size: 20px;
  }

  .highlight h3 {
    font-size: 32px;
  }

  .cta-group {
    gap: 12px;
  }
}
