/* ===== BASE: Variables, Reset & Typography ===== */
:root {
  --font-sans: "Poppins", sans-serif;

  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-surface-muted: #f9fbf7;
  --color-dark: #111111;
  --color-text: #111111;
  --color-text-soft: #606060;
  --color-brand: #67a95f;
  --color-brand-light: #9ecd62;
  --color-brand-deep: #6bad56;
  --color-border: rgba(0, 0, 0, 0.1);
  --container-max: 100%;

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-soft: 0 0 60px rgba(0, 0, 0, 0.1);

  --website-theme1-color: #67a95f;
  --website-theme2-color: #ffffff;
  --font-weight-100: 100;
  --font-weight-200: 200;
  --font-weight-300: 300;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-700: 700;
  --font-weight-800: 800;
  --font-size--10: 10px;
  --font-size-12: 12px;
  --font-size-14: 14px;
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-22: 22px;
  --font-size-24: 24px;
  --font-size-28: 28px;
  --font-size-30: 30px;
  --font-size-36: 36px;
  --font-size-40: 40px;
  --font-size-35: 35px;
  --font-size-33: 33px;
  --line-height-120: 120%;
  --line-height-170: 170%;
  --body-font: #606060;
  --heading-font: #111111;
  --black-color: black;
  --white-color: white;
  --website-light-color: #e9f6db;
  --box-shadow-common: 0px 0px 20px 0px #00000012;
}

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

* {
  margin: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  overflow-x: clip;
}

body.service-modal-open {
  overflow: hidden;
}

html.nav-open,
body.nav-open {
  overflow: hidden;
}

[data-nav-section] {
  scroll-margin-top: 128px;
}

@media (max-width: 980px) {
  [data-nav-section] {
    scroll-margin-top: 96px;
  }
}

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

ul,
ol {
  list-style: none;
  padding: 0;
}

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

/* ===== UTILITY CLASSES ===== */
.website_color1 {
  color: var(--website-theme1-color);
}

.bg_Website_color1 {
  background-color: var(--website-theme1-color);
}

.bg_website_color2 {
  color: var(--website-theme2-color);
}

.bg_color {
  background-color: var(--color-bg);
}

.website_color2 {
  color: var(--website-theme2-color);
}

.gray_font {
  color: #606060;
}

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

.reveal {
  animation: fade-up 0.65s ease both;
}

.paddingTop100 {
  padding-top: 100px;
}

.paddingBottom100 {
  padding-bottom: 100px;
}

.padding100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.padding70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.paddingTop70 {
  padding-top: 70px;
}

.paddingBottom70 {
  padding-bottom: 70px;
}

@media (max-width: 768px) {
  .paddingTop100 {
    padding-top: 60px;
  }

  .paddingBottom100 {
    padding-bottom: 60px;
  }

  .padding100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .padding70 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .paddingTop70 {
    padding-top: 40px;
  }

  .paddingBottom70 {
    padding-bottom: 40px;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FONT UTILITIES ===== */
.font_16_400 {
  font-weight: var(--font-weight-400) !important;
  font-size: clamp(14px, 0.95vw + 11px, 16px) !important;
  line-height: 170% !important;
}

.font_18_600 {
  font-weight: var(--font-weight-600) !important;
  font-size: clamp(15px, 1vw + 12px, 18px) !important;
  line-height: 170% !important;
}

.font_40_600 {
  font-weight: var(--font-weight-600) !important;
  font-size: clamp(28px, 2.4vw + 12px, 40px) !important;
  line-height: 120% !important;
}

.font_20_600 {
  font-weight: var(--font-weight-600) !important;
  font-size: clamp(16px, 1.1vw + 12px, 20px) !important;
  line-height: 120% !important;
}

.font_22_500 {
  font-weight: var(--font-weight-500) !important;
  font-size: clamp(18px, 1.2vw + 12px, 22px) !important;
  line-height: 150% !important;
}

.font_24_600 {
  font-weight: var(--font-weight-600) !important;
  font-size: clamp(19px, 1.3vw + 12px, 24px) !important;
  line-height: 150% !important;
}

.font_30_600 {
  font-weight: var(--font-weight-600) !important;
  font-size: clamp(22px, 1.8vw + 12px, 30px) !important;
  line-height: 150% !important;
}

.font_36_600 {
  font-weight: var(--font-weight-600) !important;
  font-size: clamp(26px, 2.2vw + 12px, 36px) !important;
  line-height: 150% !important;
}

/* ===== CARD UTILITIES ===== */
.ui-card {
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ui-card-hover:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

/* ===== LAYOUT: Container, Buttons & Section Tags ===== */
.container {
  width: 100% !important;
  max-width: var(--container-max) !important;
  margin: 0 auto;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

@media (min-width: 768px) {
  :root {
    --container-max: 780px;
  }
}

@media (min-width: 1024px) {
  :root {
    --container-max: 900px;
  }
}

@media (min-width: 1120px) {
  :root {
    --container-max: 1020px;
  }
}

@media screen and (min-width: 1400px) {
  :root {
    --container-max: 1254px;
  }
}

@media (min-width: 1600px) {
  :root {
    --container-max: 1230px;
  }
}

@media (min-width: 1800px) {
  :root {
    --container-max: 1440px;
  }

  .container {
    margin: 0 auto !important;
  }
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: var(--font-weight-700);
  color: var(--color-brand);
  margin-bottom: 0.75rem;
}

.section-tag::before,
.section-tag::after {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--color-brand);
}

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

.section-title-center {
  text-align: center;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: var(--font-weight-700);
  padding: 0.75rem 1.35rem;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

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

.btn:focus-visible {
  outline: 2px solid rgba(103, 169, 95, 0.35);
  outline-offset: 3px;
}

.btn--primary {
  background: linear-gradient(180deg, var(--color-brand-light), var(--color-brand-deep));
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(107, 173, 86, 0.18);
}

.btn--primary:hover {
  background: linear-gradient(180deg, var(--color-brand-light), var(--color-brand-deep));
  box-shadow: 0 18px 30px rgba(107, 173, 86, 0.24);
}

.btn--ghost {
  border-color: var(--color-border);
  color: var(--color-text);
  background: #ffffff;
}

.btn--link {
  color: var(--color-brand);
  background: transparent;
  padding-inline: 0;
}

.btn--full {
  width: 100%;
}

/* ===== LANDING: Header + Hero ===== */

.site-header {
  position: relative;
  z-index: 120;
  min-height: 84px;
  padding: 0;
  margin-bottom: 34px;
}

.site-header::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 112px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: 0 16px 38px rgba(16, 33, 45, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 9999;
}

.site-header.is-sticky {
  z-index: 300;
}

.site-header.is-sticky::before {
  opacity: 1;
  transform: translateY(0);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    min-height 220ms ease,
    padding 220ms ease,
    width 220ms ease,
    border-radius 220ms ease;
}

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

.brand-logo {
  width: 65px;
  height: auto;
  display: block;
}

.nav-surface {
  min-height: 84px;
  padding: 10px 24px 10px 22px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.08);
}

.site-header.is-sticky .header-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10000;
  width: min(calc(100% - 40px), var(--container-max));
  max-width: var(--container-max);
  min-height: 112px;
  padding: 10px 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  animation: header-slide-down 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes header-slide-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header.is-sticky .nav-surface {
  background: transparent;
  box-shadow: none;
}

.site-header.is-sticky .brand-logo {
  width: 72px;
}

.site-header.is-sticky .site-nav {
  gap: 50px;
}

.site-header.is-sticky .nav-link {
  font-size: 15px;
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 38px;
  flex: 1 1 auto;
}

.site-nav {
  gap: 32px;
  display: flex;
}

.nav-link {
  font-weight: var(--font-weight-400);
  font-size: 15px;
  line-height: 1.2;
  color: #444444;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-brand);
}

.nav-link.is-active {
  font-weight: var(--font-weight-500);
}

.nav-link-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-chevron {
  width: 10px;
  height: 6px;
  display: block;
}

.nav-cta {
  min-height: 46px;
  min-width: 126px;
  padding: 10px 24px;
  font-size: 15px;
}

.btn-primary,
.btn--primary {
  min-width: 118px;
  min-height: 44px;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: var(--font-weight-600);
  font-size: 14px;
  border: 0;
  background: linear-gradient(180deg, var(--color-brand-light), var(--color-brand-deep));
  color: #fff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease,
    background-color 0.2s ease;
}

.btn-primary:hover,
.btn--primary:hover {
  transform: translateY(-1px);
  opacity: 0.95;
  box-shadow: 0 16px 28px rgba(107, 173, 86, 0.28);
}

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(158, 205, 98, 0.18), rgba(107, 173, 86, 0.2));
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mobile-menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(107, 173, 86, 0.18);
}

.mobile-menu-toggle:focus-visible,
.mobile-nav-close:focus-visible,
.mobile-nav-link:focus-visible {
  outline: 2px solid rgba(103, 169, 95, 0.45);
  outline-offset: 3px;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #2d4961;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 69;
  background: rgba(10, 22, 32, 0.38);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transform: translateZ(0);
  opacity: 0;
  transition: opacity 220ms ease;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  width: min(100%, 360px);
  min-height: 100dvh;
  padding: 24px 22px calc(28px + env(safe-area-inset-bottom));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 241, 0.96)),
    #ffffff;
  box-shadow: -18px 0 42px rgba(16, 28, 38, 0.18);
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.mobile-nav-logo {
  width: 84px;
  height: auto;
  display: block;
}

.mobile-nav-close {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(103, 169, 95, 0.12);
  cursor: pointer;
}

.mobile-nav-close span {
  position: absolute;
  inset: 20px 11px auto;
  height: 2px;
  border-radius: 999px;
  background: #2d4961;
}

.mobile-nav-close span:first-child {
  transform: rotate(45deg);
}

.mobile-nav-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 18px;
  font-size: 17px;
  font-weight: var(--font-weight-500);
  color: #243746;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(103, 169, 95, 0.08);
}

.mobile-nav-link.is-active {
  color: #ffffff;
  background: linear-gradient(180deg, var(--color-brand-light), var(--color-brand-deep));
  box-shadow: 0 14px 28px rgba(107, 173, 86, 0.22);
}

.mobile-nav-cta {
  width: 100%;
  margin-top: 22px;
}

.hero-section {
  position: relative;
  overflow: visible;
  overflow-x: clip;
  isolation: isolate;
  padding-top: 20px;
  padding-bottom: 70px;
}

.hero-shell {
  position: relative;
  z-index: 1;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  background: url("figma-asset-files-h0cfqmHPsVBF1YQWmMLvvT-node-1-3-curl/imgImage40.png") center top / cover no-repeat;
  opacity: 0.2;
  pointer-events: none;
  z-index: -2;
}

.hero-section::after {
  display: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 544px) minmax(360px, 600px);
  justify-content: space-between;
  gap: 74px;
  align-items: start;
}

.hero-visual {
  position: relative;
  min-height: 476px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.8), transparent 44%);
}

.hero-visual::after {
  display: none;
}

.hero-map-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-visual-inner {
  position: relative;
  height: 100%;
  padding: 28px 0 0;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}

.hero-main-image {
  width: min(100%, 544px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.08));
}

.hero-form-card {
  position: relative;
  margin-top: 42px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  padding: 42px 56px;
}

.hero-form-title {
  font-weight: var(--font-weight-600);
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--heading-font);
  text-transform: capitalize;
}

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

.input {
  width: 100%;
  max-width: 100%;
  min-height: 50px;
  min-width: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 16px;
  line-height: 1.9;
  color: #606060;
  background: #fff;
  display: block;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input[type="date"] {
  line-height: 1.2;
  padding-right: 14px;
  -webkit-appearance: auto;
  appearance: auto;
}

.input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}

.input[type="date"]::-webkit-calendar-picker-indicator {
  margin-right: 2px;
  opacity: 0.75;
}

.input::placeholder {
  color: #606060;
}

.input:focus {
  border-color: rgba(103, 169, 95, 0.85);
  box-shadow: 0 0 0 4px rgba(158, 205, 98, 0.14);
}

.hero-submit {
  margin-top: 20px;
  width: 100%;
  border-radius: 999px;
  min-height: 50px;
  padding: 12px 24px;
  background: linear-gradient(180deg, var(--color-brand-light), var(--color-brand-deep));
  color: #fff;
  font-weight: var(--font-weight-600);
  font-size: 16px;
  border: 0;
  box-shadow: 0 18px 28px rgba(107, 173, 86, 0.24);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-submit:hover {
  transform: translateY(-1px);
  opacity: 0.95;
  box-shadow: 0 22px 34px rgba(107, 173, 86, 0.28);
}

.hero-form-feedback {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: var(--font-weight-500);
}

.hero-form-feedback.is-success {
  color: #2f7a30;
}

.hero-form-feedback.is-error {
  color: #b73232;
}

.hero-form-feedback.is-info {
  color: #2d4961;
}

.services-section {
  background: #ffffff;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 54px;
  text-align: center;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 115px;
  min-height: 33px;
  padding: 7px 19px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-brand-light), var(--color-brand-deep));
  color: #ffffff;
  font-size: 18px;
  font-weight: var(--font-weight-600);
  line-height: 1.2;
  text-transform: none;
  box-shadow: 0 10px 20px rgba(107, 173, 86, 0.16);
}

.section-title {
  font-size: clamp(34px, 3vw, 50px);
  font-weight: var(--font-weight-600);
  line-height: 1.2;
  color: var(--heading-font);
}

.section-subtitle {
  margin: 0;
  max-width: 760px;
  color: #5f6673;
  font-size: 18px;
  line-height: 1.7;
}

.services-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0 auto 36px;
  background: #ffffff;
  border: 1px solid rgba(103, 169, 95, 0.25);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  /* Context for proper stacking if we add pseudo-elements later */
}

/* Ensure centering of the tabs container itself */
.section-head+.services-tabs {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.services-tab {
  min-width: 120px;
  min-height: 44px;
  border: none;
  border-radius: 999px;
  padding: 8px 24px;
  background: transparent;
  color: #606060;
  font-size: 16px;
  font-weight: var(--font-weight-500);
  line-height: 1.2;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.services-tab:hover {
  transform: none;
  color: var(--color-brand-deep);
  background: rgba(233, 246, 219, 0.5);
  /* subtle brand tint on hover */
  box-shadow: none;
}

.services-tab.is-active,
.services-tab[aria-selected="true"] {
  border-color: transparent;
  color: #ffffff;
  background: linear-gradient(180deg, var(--color-brand-light), var(--color-brand-deep));
  box-shadow: 0 4px 12px rgba(107, 173, 86, 0.25);
  font-weight: var(--font-weight-600);
}

.services-tab:focus-visible {
  outline: 2px solid rgba(107, 173, 86, 0.45);
  outline-offset: 2px;
}

.services-panel {
  display: none;
}

.services-panel[hidden] {
  display: none !important;
}

.services-panel.is-active {
  display: grid;
  animation: services-panel-fade 240ms ease both;
}

@keyframes services-panel-fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.service-card {
  position: relative;
  min-height: 395px;
  transition: transform 0.22s ease;
}

.service-card[data-service-key] {
  cursor: pointer;
}

.service-card[data-service-key]:hover {
  transform: translateY(-4px);
}

.service-card[data-service-key]:focus-visible {
  outline: 2px solid rgba(107, 173, 86, 0.42);
  outline-offset: 4px;
}

.service-card--image-only {
  min-height: 350px;
}

.service-media {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--color-brand-light), var(--color-brand-deep));
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.service-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-label {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  min-height: 90px;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  color: var(--heading-font);
  font-size: 20px;
  font-weight: var(--font-weight-600);
  line-height: 1.4;
  text-align: center;
}

.service-card[data-service-key]:hover .service-label {
  color: var(--color-brand-deep);
}

.service-card--image-only .service-media {
  height: 100%;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 28px 20px;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(13, 23, 33, 0.56);
}

.service-modal-dialog {
  position: relative;
  width: min(100%, 840px);
  max-height: calc(100dvh - 56px);
  overflow-y: auto;
  padding: 36px 36px 30px;
  border-radius: 18px;
  border: 1px solid rgba(103, 169, 95, 0.22);
  background: linear-gradient(180deg, #ffffff, #f8fcf3);
  box-shadow: 0 26px 66px rgba(8, 18, 26, 0.26);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-modal.is-open .service-modal-dialog {
  opacity: 1;
  transform: translateY(0);
}

.service-modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  color: #294259;
  background: rgba(103, 169, 95, 0.14);
  cursor: pointer;
}

.service-modal-eyebrow {
  margin: 6px 0 10px;
  color: #4f7789;
  font-size: 14px;
  font-weight: var(--font-weight-600);
  letter-spacing: 0.01em;
}

.service-modal-title {
  margin: 0;
  color: var(--heading-font);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
}

.service-modal-copy {
  margin: 14px 0 0;
  color: #4f5f72;
  font-size: 16px;
  line-height: 1.8;
}

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

.service-modal-list li {
  position: relative;
  padding-left: 24px;
  color: #1f2f43;
  font-size: 16px;
  line-height: 1.65;
}

.service-modal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--color-brand-light), var(--color-brand-deep));
}

.content-modal {
  position: fixed;
  inset: 0;
  z-index: 1450;
  display: grid;
  place-items: center;
  padding: 28px 20px;
}

.content-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 20, 30, 0.58);
}

.content-modal-dialog {
  position: relative;
  width: min(100%, 920px);
  max-height: calc(100dvh - 56px);
  overflow-y: auto;
  padding: 32px 30px 28px;
  border-radius: 18px;
  border: 1px solid rgba(103, 169, 95, 0.24);
  background: linear-gradient(180deg, #ffffff, #f8fcf3);
  box-shadow: 0 26px 66px rgba(8, 18, 26, 0.26);
}

.content-modal-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  color: #294259;
  background: rgba(103, 169, 95, 0.14);
  cursor: pointer;
}

.content-modal-title {
  margin: 6px 0 12px;
  color: var(--heading-font);
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.35;
}

.content-modal-body {
  color: #4f5f72;
  font-size: 16px;
  line-height: 1.8;
}

.content-modal-body p + p {
  margin-top: 12px;
}

.why-choose-section {
  background: #ffffff;
}

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

.why-choose-card {
  min-height: 100%;
  padding: 24px 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fcf6 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.why-choose-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(158, 205, 98, 0.28), rgba(107, 173, 86, 0.28));
  box-shadow: 0 10px 20px rgba(107, 173, 86, 0.2);
}

.why-choose-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.why-choose-title {
  margin: 14px 0 0;
  color: var(--heading-font);
  font-size: 24px;
  line-height: 1.35;
}

.why-choose-text {
  margin-top: 10px;
  color: #5f6673;
  font-size: 16px;
  line-height: 1.75;
}

.about-highlight-section {
  background: #ffffff;
}

.about-highlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.section-head-left {
  align-items: flex-start;
  margin-bottom: 30px;
  text-align: left;
}

.section-chip-small {
  min-width: 110px;
  min-height: 30px;
  padding: 7px 16px;
  font-size: 14px;
}

.about-title {
  max-width: 520px;
  font-size: 40px;
  font-weight: var(--font-weight-600);
  line-height: 1.2;
  color: var(--heading-font);
}

.about-text {
  max-width: 520px;
  margin-top: 10px;
  color: #6e7282;
  font-size: 16px;
  line-height: 1.9;
}

.about-copy-intro {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 520px;
}

.about-copy-intro:not(.is-expanded) {
  max-height: 245px;
  overflow: hidden;
}

.about-copy-intro:not(.is-expanded)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 56px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 82%);
  pointer-events: none;
}

.content-toggle-btn {
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-brand-deep);
  font-size: 15px;
  font-weight: var(--font-weight-600);
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.about-points {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-point {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.about-point-icon {
  width: 40px;
  height: 40px;
  min-height: 40px;
  min-width: 40px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(107, 173, 86, 0.18));
}

.about-point-title {
  font-size: 24px;
  font-weight: var(--font-weight-600);
  line-height: 1.3;
  color: var(--heading-font);
}

.about-point-text {
  margin-top: 6px;
  max-width: 430px;
  color: #6e7282;
  font-size: 16px;
  line-height: 1.85;
}

.about-visual {
  position: relative;
  min-height: 749.236px;
  width: 811.947px;
  justify-self: end;
  margin-right: -108px;
}

.about-dots {
  position: absolute;
  inset: 0;
  background: url("figma-asset-files-h0cfqmHPsVBF1YQWmMLvvT-node-1-3-curl/imgObjImg11.png") center / 100% 100% no-repeat;
  opacity: 0.95;
}

.about-card {
  position: absolute;
  overflow: hidden;
  border-radius: 12.777px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.about-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-card-large {
  top: 126.15px;
  right: 136.886px;
  width: 418.892px;
  height: 436.986px;
}

.about-card-small {
  left: 125.887px;
  bottom: 118.913px;
  width: 279.563px;
  height: 310.324px;
}

.stats-banner-section {
  position: relative;
  overflow: hidden;
  min-height: 612px;
  background: #173a10;
}

.stats-banner-bg,
.stats-banner-overlay {
  position: absolute;
  inset: 0;
}

.stats-banner-bg {
  background: url("figma-asset-files-h0cfqmHPsVBF1YQWmMLvvT-node-1-3-curl/imgImage35.png") center / cover no-repeat;
  filter: blur(2px);
  transform: scale(1.02);
}

.stats-banner-overlay {
  background:
    linear-gradient(90deg, rgba(10, 39, 0, 0.94) 0%, rgba(10, 39, 0, 0.34) 52%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(14, 43, 10, 0.1) 0%, rgba(14, 43, 10, 0.22) 100%);
}

.stats-banner-inner {
  position: relative;
  z-index: 1;
}

.stats-banner-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  justify-content: center;
  text-align: center;
}

.stats-banner-chip {
  min-height: 32px;
  padding: 7px 16px;
  font-size: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: none;
}

.stats-banner-title {
  max-width: 918px;
  color: #ffffff;
  font-size: 35px;
  font-weight: var(--font-weight-600);
  line-height: 1.2;
}

.stats-cards {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.stat-card {
  min-height: 248px;
  padding: 38px 30px 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-value {
  color: #111111;
  font-size: 52px;
  font-weight: var(--font-weight-600);
  line-height: 1.4;
}

.stat-rule {
  width: 100%;
  height: 1px;
  margin: 24px 0 30px;
  background:
    linear-gradient(90deg, rgba(85, 85, 85, 0.35) 0 7px, transparent 7px 12px) left center / 12px 1px repeat-x;
}

.stat-label {
  max-width: 208px;
  color: #111111;
  font-size: 16px;
  font-weight: var(--font-weight-600);
  line-height: 1.7;
}

.testimonial-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(233, 246, 219, 0.8), rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, #ffffff 0%, #fbfdf8 100%);
}

.testimonial-shell {
  position: relative;
}

.testimonial-shell::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -40px;
  width: min(100%, 860px);
  height: 860px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 17, 0.08);
  /* Adjusted to match neutral gray/black stroke in design */
  pointer-events: none;
  z-index: -1;
}

.testimonial-decor {
  position: absolute;
  pointer-events: none;
  opacity: 0.95;
}

.testimonial-decor-left {
  left: 18px;
  top: 18px;
  width: 78px;
}

.testimonial-decor-top {
  right: 22px;
  top: 18px;
  width: 128px;
}

.testimonial-decor-bottom-left {
  left: 6px;
  bottom: 26px;
  width: 124px;
}

.testimonial-decor-bottom-right {
  right: 18px;
  bottom: 28px;
  width: 120px;
}

.testimonial-head {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
}

.testimonial-title {
  line-height: 1.2;
}

.testimonial-intro {
  max-width: 640px;
  color: #6e7282;
  font-size: 16px;
  line-height: 1.85;
}

.testimonial-avatars {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 42px;
}

.testimonial-avatar-group {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 360px;
  padding: 0 18px;
}

.testimonial-avatar-button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 220ms ease, opacity 220ms ease;
}

.testimonial-avatar-button+.testimonial-avatar-button {
  margin-left: -28px;
}

.testimonial-avatar-button.is-left,
.testimonial-avatar-button.is-right {
  opacity: 0.92;
  transform: translateY(8px) scale(0.92);
  z-index: 1;
}

.testimonial-avatar-button.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 3;
}

.testimonial-avatar-button:focus-visible {
  outline: 2px solid rgba(103, 169, 95, 0.55);
  outline-offset: 6px;
  border-radius: 999px;
}

.testimonial-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  transition:
    width 220ms ease,
    height 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease,
    border-width 220ms ease;
}

.testimonial-avatar-button.is-active .testimonial-avatar {
  width: 140px;
  height: 140px;
  border-width: 7px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.testimonial-arrow {
  width: 40px;
  height: 40px;
  min-height: 34px;
  min-width: 34px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.testimonial-arrow:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.testimonial-arrow:focus-visible {
  outline: 2px solid rgba(103, 169, 95, 0.55);
  outline-offset: 4px;
}

.testimonial-arrow-active {
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(107, 173, 86, 0.28);
}

.testimonial-arrow-icon {
  width: 26px;
  height: 26px;
  display: block;
}

.testimonial-arrow-icon-left {
  transform: rotate(180deg);
}

.testimonial-card {
  --slide-direction: 1;
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 54px 72px 48px;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.08);
}

.testimonial-card.is-animating .testimonial-stars {
  animation: testimonial-content-in 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.testimonial-card.is-animating .testimonial-copy {
  animation: testimonial-content-in 470ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 40ms;
}

.testimonial-card.is-animating .testimonial-name {
  animation: testimonial-content-in 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 90ms;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-bottom: 20px;
}

.testimonial-stars img {
  width: 24px;
  height: 24px;
  display: block;
}

.testimonial-copy {
  color: #6e7282;
  font-size: 16px;
  line-height: 1.9;
}

.testimonial-name {
  margin-top: 18px;
  color: #67a95f;
  font-size: 20px;
  font-weight: var(--font-weight-500);
  line-height: 1.7;
}

@keyframes testimonial-content-in {
  from {
    opacity: 0;
    transform: translate3d(calc(var(--slide-direction) * 24px), 14px, 0) scale(0.985);
    filter: blur(1.5px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {

  .testimonial-avatar-button,
  .testimonial-avatar,
  .testimonial-arrow {
    transition: none;
  }

  .testimonial-card.is-animating .testimonial-stars,
  .testimonial-card.is-animating .testimonial-copy,
  .testimonial-card.is-animating .testimonial-name {
    animation: none;
  }
}

.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(rgba(233, 246, 219, 0.38) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #fcfef9 100%);
  background-size: 10px 10px, auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 58px;
  align-items: center;
}

.faq-visual {
  position: relative;
  min-height: 558px;
  display: grid;
  grid-template-columns: 273.418px 273.418px;
  gap: 19.164px;
  align-items: start;
}

.faq-dot-bg {
  display: none;
}

.faq-small-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 19.164px;
  padding-top: 63.882px;
}

.faq-image-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 12.777px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  background: #ffffff;
}

.faq-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.faq-image-small {
  width: 273.418px;
}

.faq-small-stack .faq-image-small:first-child {
  height: 154.596px;
}

.faq-small-stack .faq-image-small:last-child {
  height: 258.086px;
}

.faq-image-tall {
  width: 273.418px;
  height: 558.334px;
  justify-self: start;
}

.faq-badge {
  position: absolute;
  left: 123px;
  bottom: 42px;
  z-index: 2;
  width: 320px;
  min-height: 152px;
  padding: 28px 40px 22px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--color-brand-light), var(--color-brand-deep));
  color: #ffffff;
  box-shadow: 0 20px 42px rgba(107, 173, 86, 0.22);
}

.faq-badge strong {
  display: block;
  font-size: 50px;
  font-weight: var(--font-weight-600);
  line-height: 1.06;
}

.faq-badge span {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  font-weight: var(--font-weight-500);
  line-height: 1.35;
}

.faq-head {
  margin-bottom: 14px;
}

.faq-title {
  max-width: 540px;
  font-size: 40px;
  font-weight: var(--font-weight-600);
  line-height: 1.2;
  color: var(--heading-font);
}

.faq-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.faq-item-active {
  padding-bottom: 14px;
}

.faq-question-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.faq-question {
  font-size: 20px;
  font-weight: var(--font-weight-600);
  line-height: 1.45;
  color: var(--heading-font);
}

.faq-toggle {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.faq-toggle:focus-visible {
  outline: 2px solid rgba(103, 169, 95, 0.45);
  outline-offset: 3px;
}

.faq-toggle-active {
  background: #8fbe59;
  color: #ffffff;
  font-size: 22px;
  font-weight: var(--font-weight-500);
  line-height: 1;
}

.faq-toggle img {
  width: 30px;
  height: 30px;
  display: block;
}

.faq-answer-wrap {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 260ms ease,
    opacity 220ms ease;
}

.faq-answer-wrap.is-open {
  opacity: 1;
}

.faq-answer {
  max-width: 640px;
  margin-top: 8px;
  color: #6e7282;
  font-size: 16px;
  line-height: 1.85;
}

.news-section {
  background:
    linear-gradient(180deg, rgba(233, 246, 219, 0.74) 0%, rgba(255, 255, 255, 0.92) 34%, #ffffff 100%),
    url("figma-asset-files-h0cfqmHPsVBF1YQWmMLvvT-node-1-3-curl/imgBg1.png") center top / cover no-repeat;
}

.news-head {
  margin-bottom: 46px;
}

.news-intro {
  max-width: 720px;
  color: #6e7282;
  font-size: 16px;
  line-height: 1.85;
}

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

.news-card {
  position: relative;
}

.news-media {
  position: relative;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-date {
  position: absolute;
  top: 18px;
  left: 18px;
  min-width: 58px;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 7px;
  background: linear-gradient(180deg, var(--color-brand-light), var(--color-brand-deep));
  color: #ffffff;
  font-size: 12px;
  font-weight: var(--font-weight-700);
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.news-body {
  position: relative;
  width: calc(100% - 40px);
  margin: -58px auto 0;
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 12px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #6e7282;
  font-size: 12px;
  line-height: 1.6;
}

.news-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-meta-item img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.news-card-title {
  margin-top: 0;
  min-height: 82px;
  color: #0e192c;
  font-size: 20px;
  font-weight: var(--font-weight-600);
  line-height: 1.45;
}

.news-card-copy {
  margin: 0;
  color: #5f6673;
  font-size: 15px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-copy.is-expanded {
  display: block;
  overflow: visible;
}

.news-keywords {
  margin: 0;
  color: #1f2b3a;
  font-size: 14px;
  line-height: 1.6;
}

.news-keywords strong {
  color: #0f1c2f;
  font-weight: var(--font-weight-600);
}

.news-read-more {
  min-height: 36px;
  padding: 8px 16px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--color-brand-light), var(--color-brand-deep));
  color: #ffffff;
  font-size: 13px;
  font-weight: var(--font-weight-600);
  box-shadow: 0 10px 24px rgba(107, 173, 86, 0.18);
}

.site-footer {
  position: relative;
  overflow: visible;
  background: #ffffff;
}

.footer-shell {
  position: relative;
  z-index: 1;
}

.newsletter-banner {
  position: relative;
  z-index: 3;
  min-height: 230px;
  margin: 0 auto -90px !important;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: start;
  gap: 26px;
  border-radius: 34px;
  background: linear-gradient(180deg, var(--color-brand-light) 0%, var(--color-brand-deep) 100%);
  box-shadow: 0 24px 48px rgba(103, 169, 95, 0.22);
}

.newsletter-copy {
  max-width: none;
  min-width: 0;
}

.footer-panel {
  position: relative;
  overflow: hidden;
  min-height: 526px;
  width: 100%;
  max-width: none;
  margin: 0;
  background: #2d4961;
}

.footer-panel-bg,
.footer-panel-overlay {
  position: absolute;
  inset: 0;
}

.footer-panel-bg {
  z-index: 0;
}

.footer-panel-overlay {
  z-index: 1;

}

.footer-panel-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 44%;
  opacity: 0.2;
  transform: scale(1.02);
  filter: saturate(0.9) brightness(0.84);
}

.footer-panel-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 136px 20px 0;
}

.newsletter-copy h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: var(--font-weight-600);
  line-height: 1.25;
}

.newsletter-desc {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.75;
}

.newsletter-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 460px;
  justify-self: end;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: 58px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
}

.footer-brand,
.footer-links,
.footer-contact {
  min-width: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.newsletter-form input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
  padding-left: 12px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form button {
  min-height: 44px;
  padding: 10px 16px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 10px;
  background: #ffffff;
  color: #2f4f40;
  font-size: 13px;
  font-weight: var(--font-weight-600);
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(18, 39, 24, 0.2);
}

.newsletter-confirmation {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.55;
}

.footer-main {
  width: 100%;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) minmax(260px, 0.95fr) minmax(260px, 0.95fr);
  align-items: start;
  gap: 24px;
}

.footer-brand,
.footer-links,
.footer-contact {
  min-width: 0;
  min-height: 100%;
  padding: 26px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.footer-brand {
  max-width: none;
}

.footer-logo {
  width: 210px;
  height: auto;
  border-radius: 10px;
  display: block;
  background: rgba(255, 255, 255, 0.95);
}

.footer-brand-label {
  margin-top: 10px;
  color: #ffffff;
  font-size: 20px;
  font-weight: var(--font-weight-600);
  line-height: 1.4;
}

.footer-platform-title {
  margin-top: 20px;
  color: #ffffff;
  font-size: 24px;
  font-weight: var(--font-weight-600);
  line-height: 1.25;
}

.footer-about-text {
  margin-top: 14px;
  color: #ffffff;
  font-size: 15px;
  font-weight: var(--font-weight-400);
  line-height: 1.75;
}

.footer-heading {
  color: #ffffff;
  font-size: 20px;
  font-weight: var(--font-weight-700);
  line-height: 1.3;
}

.footer-link-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-link-list a {
  color: #ffffff;
  font-size: 17px;
  font-weight: var(--font-weight-500);
  line-height: 1.45;
  transition: opacity 0.2s ease;
}

.footer-link-list a:hover {
  opacity: 0.82;
}

.footer-contact-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.footer-contact-item--stack {
  display: grid;
}

.footer-contact-item img {
  width: 50px;
  height: 50px;
  display: block;
}

.footer-contact-label {
  color: #ffffff;
  font-size: 16px;
  font-weight: var(--font-weight-500);
  line-height: 1.35;
}

.footer-contact-value {
  margin-top: 6px;
  color: #ffffff;
  font-size: 18px;
  font-weight: var(--font-weight-600);
  line-height: 1.5;
  max-width: 340px;
  overflow-wrap: anywhere;
}

.footer-contact-link {
  text-decoration: none;
}

.footer-bottom {
  margin-top: 30px;
  padding: 24px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.footer-bottom p {
  color: #ffffff;
  font-size: 16px;
  font-weight: var(--font-weight-500);
  line-height: 1.4;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.footer-socials img {
  width: 32px;
  height: 32px;
  display: block;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .news-media {
    height: 280px;
  }

  .news-card-title {
    font-size: 18px;
    min-height: auto;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-head {
    margin-bottom: 30px;
    text-align: center;
  }

  .news-intro {
    font-size: 14px;
  }

  .news-media {
    height: 220px;
  }

  .news-body {
    width: calc(100% - 20px);
    margin-top: -40px;
    padding: 14px;
  }

  .news-card-title {
    font-size: 16px;
  }

  .news-card-copy {
    font-size: 14px;
    line-height: 1.65;
    -webkit-line-clamp: 7;
  }

  .news-keywords {
    font-size: 13px;
    line-height: 1.55;
  }

  .news-read-more {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 1400px) {

  /* FAQ: Hide visual on Large screens and below */
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .faq-visual {
    display: none;
    /* Hidden from LG breakpoint down */
  }

  .faq-content {
    width: 100%;
  }

  /* Center the section head specifically within FAQ content */
  .faq-content .section-head-left {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }

  .faq-title {
    margin: 0 auto;
    text-align: center;
  }

  .faq-question-row {
    text-align: left;
  }
}

@media (max-width: 1140px) {
  .nav-surface {
    min-height: 76px;
    padding: 8px 16px 8px 18px;
  }

  .brand-logo {
    width: 72px;
  }

  .nav-pill {
    gap: 24px;
  }

  .site-nav {
    gap: 22px;
  }

  .nav-link {
    font-size: 14px;
  }

  .nav-cta {
    min-height: 42px;
    min-width: 114px;
    padding: 8px 20px;
    font-size: 14px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .hero-form-card {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-visual-inner {
    padding-top: 28px;
  }

  .hero-art {
    justify-content: center;
  }

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

  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .about-highlight-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Tablet Alignment: Center content for better readability when stacked */
  .about-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    max-width: 680px;
  }

  .about-copy .section-head-left {
    align-items: center;
    width: 100%;
    margin-bottom: 24px;
  }

  .about-title,
  .about-text {
    margin-left: auto;
    margin-right: auto;
  }

  .about-copy-intro {
    max-width: none;
  }

  .content-toggle-btn {
    align-self: center;
  }

  .about-points {
    width: 100%;
    align-items: center;
  }

  .about-point {
    width: 100%;
    max-width: 480px;
    text-align: left;
    /* Keep point content aligned naturally */
  }

  .about-visual {
    width: min(100%, 566px);
    min-height: 522px;
    margin-right: 0;
    margin: 0 auto;
  }

  .about-dots {
    inset: 0;
  }

  .about-card-large {
    top: 84px;
    right: 44px;
    width: 292px;
    height: 304px;
  }

  .about-card-small {
    left: 62px;
    bottom: 80px;
    width: 195px;
    height: 216px;
  }

  .stats-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 72px;
  }

  .testimonial-card {
    max-width: 720px;
    border-radius: 44px;
  }

  /* FAQ: Hide visual on Large screens and below */
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .faq-visual {
    display: none;
    /* Hidden from LG breakpoint down */
  }

  .faq-content {
    width: 100%;
  }

  /* Center the section head specifically within FAQ content */
  .faq-content .section-head-left {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }

  .faq-title {
    margin: 0 auto;
    text-align: center;
  }

  .faq-question-row {
    text-align: left;
  }

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

  .newsletter-banner {
    min-height: 214px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    gap: 24px;
    padding: 26px 30px;
    border-radius: 30px;
    margin-bottom: -74px !important;
  }

  .newsletter-copy h2 {
    font-size: 28px;
  }

  .newsletter-form-wrap {
    max-width: 390px;
  }

  .footer-panel-inner {
    padding: 122px 20px 0;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
  }

  .footer-bottom {
    padding-bottom: 18px;
  }
}

@media (max-width: 980px) {
  .site-header::before {
    height: 105px;
  }

  .site-header {
    min-height: 74px;
  }

  .header-shell {
    gap: 16px;
  }

  .nav-surface {
    min-height: 74px;
    padding: 8px 14px 8px 16px;
  }

  .brand-logo {
    width: 68px;
  }

  .brand {
    width: auto;
  }

  .nav-pill {
    flex: 0 0 auto;
    width: auto;
    gap: 0;
  }

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

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .site-header.is-sticky .header-shell {
    min-height: 84px;
    padding: 8px 0;
    width: min(calc(100% - 40px), var(--container-max));
  }

  .site-header.is-sticky .brand-logo {
    width: 64px;
  }

  .hero-section {
    padding-top: 18px;
    padding-bottom: 56px;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-form-card {
    order: -1;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
  }

  .hero-visual {
    order: 2;
    min-height: 300px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
    line-height: 1.65;
  }

  .services-tabs {
    margin-bottom: 30px;
  }

  .services-tab {
    min-width: 108px;
    min-height: 38px;
    padding: 8px 18px;
    font-size: 15px;
  }

  .about-title {
    font-size: 32px;
  }

  .about-visual {
    min-height: 462px;
    width: min(100%, 520px);
  }

  .about-card-large {
    top: 74px;
    right: 30px;
    width: 270px;
    height: 282px;
  }

  .about-card-small {
    left: 52px;
    bottom: 74px;
    width: 184px;
    height: 202px;
  }

  .stats-banner-section {
    min-height: auto;
  }

  .stats-banner-title {
    font-size: 32px;
  }

  .stats-banner-chip {
    min-height: 30px;
    padding: 6px 14px;
    font-size: 13px;
  }

  .testimonial-card {
    padding: 42px 36px;
    border-radius: 36px;
  }

  .faq-title {
    font-size: 32px;
  }

  .newsletter-banner {
    min-height: 176px;
    margin-bottom: -62px;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 40%);
    gap: 14px;
    padding: 22px 24px;
    border-radius: 24px;
  }

  .newsletter-form-wrap {
    width: 100%;
    max-width: none;
  }

  .newsletter-copy h2 {
    font-size: 22px;
    line-height: 1.28;
  }

  .footer-panel-inner {
    padding: 108px 20px 0;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 36px;
  }

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

  .footer-contact {
    max-width: none;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .footer-socials {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .site-header::before {
    height: 91px;
  }

  .site-header {
    min-height: 64px;
    margin-bottom: 18px;
  }

  .nav-surface {
    min-height: 64px;
    border-radius: 20px;
    padding: 8px 12px 8px 14px;
  }

  .brand {
    width: auto;
  }

  .brand-logo {
    width: 56px;
  }

  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .mobile-nav-drawer {
    width: min(100%, 320px);
    padding: 20px 18px 24px;
  }

  .mobile-nav-link {
    min-height: 50px;
    font-size: 16px;
  }

  .site-header.is-sticky .header-shell {
    top: 0;
    min-height: 64px;
    padding: 8px 0;
    width: min(calc(100% - 40px), var(--container-max));
  }

  .site-header.is-sticky .brand-logo {
    width: 56px;
  }

  .hero-section {
    padding-top: 22px;
    padding-bottom: 42px;
  }

  .hero-visual {
    min-height: 220px;
  }

  .hero-visual-inner {
    padding-top: 10px;
  }

  .hero-form-card {
    margin: 0 auto 2px;
    padding: 22px 18px 20px;
    border-radius: 10px;
  }

  .hero-form-title {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-head {
    gap: 14px;
    margin-bottom: 32px;
  }

  .section-chip {
    min-width: 104px;
    min-height: 40px;
    padding: 9px 18px;
    font-size: 16px;
  }

  .section-title {
    font-size: 26px;
    line-height: 1.3;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-choose-card {
    padding: 18px 16px;
    border-radius: 12px;
  }

  .why-choose-icon {
    width: 44px;
    height: 44px;
  }

  .why-choose-icon img {
    width: 22px;
    height: 22px;
  }

  .why-choose-title {
    font-size: 20px;
    line-height: 1.35;
  }

  .why-choose-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-copy-intro:not(.is-expanded) {
    max-height: 230px;
  }

  .about-copy-intro:not(.is-expanded)::after {
    height: 52px;
  }

  .services-tabs {
    gap: 0;
    margin-bottom: 24px;
    justify-content: center;
  }

  .services-tab {
    min-width: 96px;
    min-height: 36px;
    padding: 6px 16px;
    font-size: 14px;
  }

  .service-modal {
    padding: 18px 12px;
  }

  .service-modal-dialog {
    max-height: calc(100dvh - 36px);
    padding: 22px 18px 20px;
    border-radius: 14px;
  }

  .service-modal-copy {
    font-size: 15px;
    line-height: 1.7;
  }

  .service-modal-list {
    gap: 10px;
  }

  .service-modal-list li {
    font-size: 15px;
    line-height: 1.6;
  }

  .content-modal {
    padding: 18px 12px;
  }

  .content-modal-dialog {
    max-height: calc(100dvh - 36px);
    padding: 22px 18px 20px;
    border-radius: 14px;
  }

  .content-modal-title {
    margin-top: 2px;
    font-size: 22px;
    line-height: 1.32;
  }

  .content-modal-body {
    font-size: 15px;
    line-height: 1.7;
  }

  .services-grid.services-panel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 24px;
    /* Space for scrollbar or visual clearance */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    margin-right: -20px;
    /* Counteract container padding */
    padding-right: 20px;
    /* Ensure last item is reachable */
  }

  .services-grid::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  /* Make sure service cards have a fixed width in the slider */
  .service-card {
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: center;
    min-height: 340px;
  }

  .service-card--image-only {
    min-height: 300px;
  }

  .service-media {
    height: 300px;
  }

  .service-label {
    width: calc(100% - 28px);
    min-height: 78px;
    padding: 18px 16px;
    font-size: 18px;
  }

  .section-head-left {
    margin-bottom: 12px;
  }

  .section-chip-small {
    min-width: 110px;
    min-height: 28px;
    padding: 6px 14px;
    font-size: 13px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-text,
  .about-point-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .about-point {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
  }

  .about-point-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
    min-height: 30px;
    min-width: 30px;
  }

  .about-point-title {
    font-size: 20px;
  }

  .about-visual {
    min-height: 376px;
    width: min(100%, 344px);
  }

  .about-dots {
    inset: 0;
  }

  .about-card-large {
    top: 58px;
    right: 14px;
    width: 194px;
    height: 212px;
    border-radius: 12px;
  }

  .about-card-small {
    width: 138px;
    height: 152px;
    left: 20px;
    bottom: 58px;
    border-radius: 12px;
  }

  .stats-banner-title {
    font-size: 26px;
    line-height: 1.35;
  }

  .stats-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
  }

  .stat-card {
    min-height: 152px;
    padding: 24px 18px 20px;
    border-radius: 14px;
  }

  .stat-value {
    font-size: 40px;
  }

  .stat-rule {
    margin: 18px 0 14px;
  }

  .stat-label {
    max-width: none;
    font-size: 15px;
  }

  .testimonial-shell::before {
    top: 92px;
    height: 420px;
  }

  .testimonial-decor-top,
  .testimonial-decor-bottom-left,
  .testimonial-decor-bottom-right {
    display: none;
  }

  .testimonial-decor-left {
    width: 46px;
    left: 4px;
    top: 18px;
  }

  .testimonial-intro {
    font-size: 15px;
    line-height: 1.75;
  }

  .testimonial-avatars {
    gap: 0px;
    margin-bottom: 24px;
  }

  .testimonial-avatar-group {
    min-width: 260px;
    padding: 0 10px;
  }

  .testimonial-avatar {
    width: 68px;
    height: 68px;
    border-width: 5px;
  }

  .testimonial-avatar-button+.testimonial-avatar-button {
    margin-left: -20px;
  }

  .testimonial-avatar-button.is-active .testimonial-avatar {
    width: 104px;
    height: 104px;
    border-width: 6px;
  }

  .testimonial-arrow {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .testimonial-card {
    padding: 34px 22px;
    border-radius: 28px;
  }

  .testimonial-stars {
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .testimonial-copy {
    font-size: 15px;
    line-height: 1.8;
  }

  .testimonial-name {
    font-size: 18px;
  }

  /* .faq-visual is already hidden from larger breakpoint */

  .faq-title {
    font-size: 28px;
  }

  .faq-list {
    margin-top: 20px;
  }

  .faq-item {
    padding: 16px 16px;
    border-radius: 10px;
  }

  .faq-question {
    font-size: 18px;
    line-height: 1.35;
  }

  .faq-answer {
    font-size: 15px;
    line-height: 1.75;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-media {
    height: 280px;
  }

  .news-body {
    width: calc(100% - 24px);
    margin-top: -42px;
    padding: 16px 14px 14px;
  }

  .news-card-title {
    min-height: auto;
    font-size: 18px;
  }

  /* Newsletter: Stack layout on mobile/tablet portrait for better spacing */
  .newsletter-banner {
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    margin: 0 24px -84px !important;
    /* Added side margins and kept overlap */
    width: auto !important;
    /* Override container width */
    padding: 24px 20px;
    gap: 16px;
    border-radius: 24px;
  }

  /* Ensure copy container takes full width when stacked */
  .newsletter-copy {
    width: 100%;
    max-width: 450px;
  }

  .newsletter-copy h2 {
    font-size: 20px;
    line-height: 1.35;
  }

  .newsletter-desc {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
  }

  .newsletter-form {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-self: center;
  }

  .newsletter-form input {
    width: 100%;
    min-height: 42px;
    font-size: 14px;
    line-height: 1.45;
    padding: 0 12px;
  }

  .newsletter-form button {
    width: 100%;
    min-height: 42px;
    padding: 9px 12px;
    font-size: 12px;
    line-height: 1.35;
    white-space: normal;
  }

  .newsletter-confirmation {
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
  }

  .footer-panel-inner {
    padding: 124px 20px 0;
    /* Adjusted for stacked banner overlap */
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    text-align: left;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .footer-brand-label {
    margin-top: 14px;
    font-size: 17px;
  }

  .footer-platform-title {
    margin-top: 14px;
    font-size: 21px;
    line-height: 1.35;
  }

  .footer-about-text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.65;
  }

  .footer-heading {
    font-size: 20px;
  }

  .footer-link-list {
    gap: 10px;
    margin-top: 14px;
  }

  .footer-link-list a {
    font-size: 16px;
    line-height: 1.4;
  }

  .footer-contact-list {
    margin-top: 14px;
    gap: 14px;
  }

  .footer-contact-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .footer-contact-item img {
    width: 40px;
    height: 40px;
  }

  .footer-contact-value {
    font-size: 15px;
    line-height: 1.55;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-socials {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .newsletter-banner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 14px;
    margin: 0 16px -76px !important;
    width: auto !important;
    border-radius: 24px;
  }

  .newsletter-copy {
    max-width: none;
  }

  .newsletter-copy h2 {
    font-size: 18px;
    line-height: 1.3;
  }

  .newsletter-desc {
    font-size: 13px;
    line-height: 1.55;
  }

  .newsletter-form-wrap {
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .newsletter-form {
    min-height: auto;
    padding: 8px;
    gap: 8px;
  }

  .newsletter-form input {
    min-height: 40px;
    font-size: 13px;
    padding: 0 10px;
  }

  .newsletter-form button {
    min-height: 40px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .footer-panel-inner {
    padding-top: 116px;
  }
  
  .stats-banner-title {
    font-size: 22px;
    line-height: 1.35;
  }

  .stats-banner-chip {
    min-height: 28px;
    padding: 5px 12px;
    font-size: 12px;
  }
}
