/* ---------- Root / base ---------- */

:root {
  --green-nav: #0f6248;
  --green-main: #188f5a;
  --green-light: #e6f5ee;
  --green-card-border: #34b565;
  --green-pill: #6af36f;
  --blue-heading: #0f3460;
  --blue-link: #15538f;
  --bg-body: #f7faf8;
  --bg-surface: #ffffff;
  --bg-footer: #165f53;
  --bg-footer-dark: #11463e;
  --text-main: #13232c;
  --text-muted: #46525b;
  --radius-big: 30px;
  --radius-card: 20px;
  --shadow-soft: 0 16px 35px rgba(15, 52, 96, 0.12);
  --shadow-soft-sm: 0 10px 24px rgba(15, 52, 96, 0.08);
  --shadow-strong: 0 22px 46px rgba(15, 52, 96, 0.16);
  --gradient-hero: radial-gradient(circle at 20% 20%, rgba(28, 196, 133, 0.28), transparent 35%), radial-gradient(circle at 80% 20%, rgba(15, 52, 96, 0.28), transparent 35%), linear-gradient(120deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.1));
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-body);
  color: var(--text-main);
}

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

:focus-visible {
  outline: 3px solid #1b8f63;
  outline-offset: 3px;
}

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

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

.page-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 24px 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.btn-request {
  border-radius: 999px;
  padding: 10px 26px;
  background: var(--green-pill);
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.btn-request--active {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28), 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

/* ---------- Nav ---------- */

.nav-wrapper {
  position: sticky;
  top: 16px;
  z-index: 50;
  margin-bottom: 20px;
}

.nav-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 26px;
  background: rgba(14, 105, 72, 0.9);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  color: #fff;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.nav-logo img {
  height: 64px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: #0d5e46;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 9px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 8px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-size: 18px;
  font-weight: 600;
  color: #e4f7ec;
  padding: 10px 14px;
  border-radius: 16px;
  position: relative;
}

.nav-link--active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 3px;
  background: #ffffff;
  border-radius: 99px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link--active::after {
  opacity: 1;
  transform: translateY(0);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-dropdown {
  position: relative;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 170px;
  background: #ffffff;
  border: 1px solid #d8e3e9;
  border-radius: 14px;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
  padding: 8px;
  display: none;
  z-index: 10;
}

.lang-dropdown.lang-open .lang-menu {
  display: block;
}

.lang-option {
  width: 100%;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  border-radius: 12px;
  cursor: pointer;
}

.lang-option[aria-checked="true"] {
  background: #f0f6f3;
  font-weight: 700;
}

/* ---------- Hero ---------- */

.hero-inner {
  position: relative;
  border-radius: var(--radius-big);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  height: clamp(420px, 60vw, 600px);
  background: var(--gradient-hero);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  mix-blend-mode: multiply;
}

.hero-content {
  position: absolute;
  inset: 0;
  padding: clamp(32px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-heading {
  font-size: clamp(44px, 6vw, 74px);
  line-height: 1.05;
  margin: 0 0 20px;
  color: #eafdf4;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-heading span {
  color: #63e472;
}

.hero-sub {
  font-size: clamp(18px, 3vw, 22px);
  max-width: 720px;
  color: #f4f8fb;
  margin: 0;
}

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

.hero-btn {
  display: inline-flex;
  justify-content: center;
  min-height: 52px;
  padding: 10px 28px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

/* ---------- Sections base ---------- */

.section {
  margin-top: 72px;
}

.section-header {
  margin-bottom: 36px;
}

.section-header--center {
  text-align: center;
}

.section-title {
  font-size: 60px;
  color: var(--blue-heading);
  margin: 0 0 12px;
  font-weight: 700;
}

.section-highlight {
  position: relative;
  display: inline-block;
}

.section-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 10px;
  width: 100%;
  background: rgba(52, 181, 101, 0.4);
  z-index: -1;
  border-radius: 10px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0;
  max-width: 860px;
}

/* ---------- Talents ---------- */

.section-talents {
  margin-top: 80px;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 40px;
  margin-top: 40px;
}

.talent-card {
  display: flex;
  gap: 26px;
  background: linear-gradient(135deg, #f4fbf7 0%, #eef7ff 100%);
  border-radius: var(--radius-card);
  padding: 30px 36px;
  border: 1px solid #dbe7ef;
  box-shadow: var(--shadow-soft-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: fadeUp 0.6s ease both;
}

.talent-card--full {
  grid-column: 1 / -1;
  max-width: 600px;
  margin: 0 auto;
}

.talent-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #d6efe4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.talent-icon img {
  width: 42px;
  height: 42px;
}

.talent-title {
  font-size: 28px;
  color: #1b714f;
  margin: 0 0 10px;
}

.talent-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-main);
}

.talent-text a {
  color: var(--blue-link);
  text-decoration: underline;
}

.talent-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong), 0 0 0 3px #45c67e;
}

/* ---------- What we do ---------- */

.section-what {
  margin-top: 90px;
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.what-card {
  background: var(--bg-surface);
  border-radius: var(--radius-card);
  padding: 34px 40px 32px;
  box-shadow: var(--shadow-soft-sm);
  border: 1px solid #e1e8ed;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  animation: fadeUp 0.6s ease both;
}

.what-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #d8efe4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.what-icon img {
  width: 52px;
  height: 52px;
}

.what-title {
  font-size: 30px;
  color: #1c714f;
  margin: 0 0 10px;
}

.what-link {
  font-size: 18px;
  color: var(--blue-link);
  text-decoration: underline;
}

.what-text {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-main);
}

.what-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: #cfe4ff;
}

.what-link {
  display: inline-block;
  text-decoration: underline;
}

/* ---------- Reviews ---------- */

.section-reviews {
  margin-top: 80px;
}

.reviews-wrapper {
  margin-top: 26px;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 30px;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scroll-padding: 16px;
}

.review-card {
  min-width: 260px;
  max-width: 360px;
  background: var(--bg-surface);
  border-radius: var(--radius-card);
  padding: 24px 28px 30px;
  box-shadow: var(--shadow-soft-sm);
  scroll-snap-align: start;
  border: 1px solid #e1e8ed;
  flex: 0 0 32%;
  animation: fadeUp 0.6s ease both;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.review-avatar-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f6f3;
  border: 1px solid #e1e8ed;
}

.review-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-name {
  font-size: 24px;
  margin: 0 0 6px;
  color: #1c714f;
}

.review-meta {
  margin: 0;
  font-size: 18px;
  color: var(--blue-link);
}

.review-meta span {
  color: #1f76c1;
  font-weight: 700;
  margin-right: 2px;
}

.review-text {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

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

/* ---------- FAQ ---------- */

.section-faq {
  margin-top: 80px;
}

.faq-layout {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 40px;
}

.faq-contacts {
  display: grid;
  gap: 16px;
}

.faq-contact-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: #f1f8f4;
  border: 1px solid #d6ebdf;
}

.faq-contact-icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #e8f4ee;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid #d7e4ea;
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: none;
  background: #ffffff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
}

.faq-prefix {
  color: var(--blue-link);
  font-weight: 800;
}

.faq-arrow {
  margin-left: auto;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-item--open .faq-arrow {
  transform: rotate(-90deg);
}

.faq-answer {
  padding: 0 16px 16px 16px;
  font-size: 16px;
  color: var(--text-main);
  line-height: 1.6;
}

.btn-load-more {
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid #cbd8df;
  background: #f4faf7;
  cursor: pointer;
}

/* ---------- Contact / Quote modals ---------- */

.contact-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.contact-modal--open {
  display: flex;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
}

.contact-modal-dialog {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  padding: 26px 26px 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
  z-index: 1;
}

.contact-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #d9e4eb;
  background: #f5f9fc;
  cursor: pointer;
}

.contact-title {
  margin: 0 0 8px;
  font-size: 26px;
  color: var(--blue-heading);
}

.contact-sub {
  margin: 0 0 16px;
  color: var(--text-muted);
  line-height: 1.5;
}

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

.contact-field {
  display: grid;
  gap: 6px;
}

.contact-label {
  font-weight: 700;
  color: var(--text-main);
}

.contact-input,
.contact-textarea,
.field-input,
.field-textarea,
.field-select {
  width: 100%;
  border: 1px solid #d6e3ea;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 16px;
  background: #ffffff;
}

.contact-textarea,
.field-textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text-main);
}

.contact-status {
  margin: 6px 0 0;
  min-height: 18px;
}

.inline-status {
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-muted);
}

.inline-status--error {
  color: #c0392b;
}

.inline-status--success {
  color: #0d6b48;
}

.btn-contact-submit {
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  background: var(--green-main);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

/* ---------- Request Talent form ---------- */

.request-main {
  background: #ffffff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  margin-top: 30px;
}

.request-form {
  display: grid;
  gap: 28px;
}

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

.form-section-title {
  margin: 0;
  font-size: 26px;
  color: var(--blue-heading);
}

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

.form-row {
  align-items: flex-start;
}

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

.field--left-help {
  align-self: start;
}

.field-label {
  font-weight: 700;
  color: var(--text-main);
}

.field-hint {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.field-inline {
  display: flex;
  gap: 8px;
}

.field-select {
  appearance: none;
  background-image: url('assets/icons/weui_arrow-filled.svg');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

.field-input--grow {
  flex: 1 1 auto;
}

.field-textarea {
  min-height: 140px;
}

.form-divider {
  border: none;
  border-top: 1px solid #e2e9ee;
}

.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 8px 12px;
  background: #eef6ff;
  color: #0f3868;
  border: 1px solid #cfe2f8;
  cursor: pointer;
}

.tag-chip--active {
  background: #d9f3e6;
  border-color: #45c67e;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #d6e3ea;
  border-radius: 12px;
  padding: 6px;
}

.qty-control button {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #cbd9e2;
  background: #f6fafc;
  cursor: pointer;
}

.qty-control .js-qty-value {
  width: 70px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 18px;
}

.experience-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid #d6e3ea;
  background: #ffffff;
  cursor: pointer;
  margin-right: 8px;
  margin-bottom: 8px;
}

.experience-pill--active {
  border-color: #45c67e;
  background: #e8f8f0;
}

.request-success {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: #e8f8f0;
  color: #0d6b48;
  font-weight: 700;
  display: none;
}

.request-success--visible {
  display: block;
}

.request-success--error {
  background: #fde8e8;
  color: #8a1c1c;
}

.request-success--success {
  background: #e8f8f0;
  color: #0d6b48;
}

/* ---------- Under construction modal ---------- */

.under-modal-dialog {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-soft);
}

.under-modal-title {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--blue-heading);
}

.under-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.under-modal-btn {
  flex: 1 1 auto;
}

.under-modal-close-btn {
  border: 1px solid #d8e4eb;
  background: #f8fbfd;
  border-radius: 12px;
  padding: 10px 16px;
  cursor: pointer;
}

/* ---------- Footer ---------- */

.footer {
  margin-top: 90px;
  background: linear-gradient(135deg, var(--bg-footer), var(--bg-footer-dark));
  color: #ffffff;
  border-radius: 30px;
  overflow: hidden;
}

.footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 28px 0 28px;
}

.footer-cta-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin: 0 0 6px;
  color: #9cf3ba;
  font-size: 12px;
}

.footer-cta-title {
  margin: 0;
  font-size: 26px;
  color: #ffffff;
}

.footer-cta-meta {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-cta-actions {
  display: flex;
  gap: 10px;
}

.footer-top {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-top-title {
  margin: 0;
  font-size: 22px;
}

.footer-subscribe {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-input {
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  min-width: 280px;
}

.btn-subscribe {
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  background: #78f475;
  color: #0e5f44;
  font-weight: 800;
  cursor: pointer;
}

.footer-main {
  padding: 36px 32px 28px;
}

.footer-main-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 30px;
}

.footer-logo {
  width: 140px;
}

.footer-brand p {
  max-width: 420px;
  line-height: 1.6;
}

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

.footer-column h3 {
  margin: 0 0 10px;
}

.footer-column a {
  display: block;
  margin-bottom: 8px;
  color: #d6f7e5;
}

.footer-column a:hover {
  color: #ffffff;
}

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

.footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  color: #d6f7e5;
}

/* ---------- About page ---------- */

.about-hero {
  margin-top: 20px;
}

.about-hero .hero-inner {
  height: clamp(340px, 55vw, 520px);
}

.about-hero-content {
  max-width: 720px;
}

.about-main {
  background: #ffffff;
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow-soft);
  margin-top: 30px;
}

.about-content {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 26px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-main);
}

.about-subtitle {
  margin-top: 24px;
  font-size: 22px;
  color: var(--blue-heading);
}

.about-expertise {
  display: grid;
  gap: 16px;
}

.about-block {
  background: #f5fbf7;
  border: 1px solid #e0ede6;
  border-radius: 16px;
  padding: 14px 16px;
}

.about-block h4 {
  margin: 0 0 8px;
}

.about-list {
  margin: 0;
  padding-left: 18px;
  color: var(--text-main);
}

.about-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo {
  max-width: 320px;
  margin-top: 18px;
}

.about-highlights {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-highlight-card {
  padding: 16px;
  border-radius: 14px;
  background: #f5fbf7;
  border: 1px solid #dfece4;
  box-shadow: var(--shadow-soft-sm);
}

.about-highlight-card h5 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--blue-heading);
}

.about-highlight-card p {
  margin: 0;
  color: var(--text-main);
  line-height: 1.5;
}

/* ---------- Legal page ---------- */

.legal-hero {
  margin-top: 20px;
}

.legal-hero-inner {
  border-radius: 24px;
  background: linear-gradient(110deg, #165f53, #0e6948);
  color: #f1fff8;
  padding: 50px 60px;
  box-shadow: var(--shadow-soft);
}

.legal-hero-heading {
  margin: 0 0 12px;
  font-size: 42px;
}

.legal-hero-sub {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

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

.legal-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #dce6ec;
  padding: 18px;
  box-shadow: var(--shadow-soft-sm);
}

.legal-card-title {
  margin: 0 0 8px;
  color: var(--blue-heading);
}

.legal-card-body {
  color: var(--text-main);
  line-height: 1.6;
  max-height: 280px;
  overflow: auto;
}

.legal-list {
  margin: 0;
  padding-left: 18px;
}

.legal-list li {
  margin-bottom: 6px;
}

.legal-help {
  margin-top: 60px;
}

.legal-help-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: var(--radius-big);
  padding: 40px;
  background: linear-gradient(110deg, #165f53, #0e6948);
  color: #f1fff8;
}

/* ---------- Responsive tweaks ---------- */

@media (max-width: 1100px) {
  .hero-content {
    padding: 48px 40px;
  }
  .hero-heading {
    font-size: 52px;
  }
  .hero-sub {
    font-size: 20px;
  }
  .talent-grid {
    grid-template-columns: 1fr;
  }
  .what-grid {
    grid-template-columns: 1fr;
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .reviews-track {
    overflow-x: auto;
    padding: 4px 4px 10px;
    gap: 18px;
  }
  .review-card {
    min-width: 240px;
    flex: 0 0 auto;
  }
}

@media (max-width: 840px) {
  .nav-wrapper {
    position: static;
    top: auto;
    margin-bottom: 10px;
  }
  .nav-pill {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 14px;
    align-items: center;
    background: var(--green-nav);
    color: #ffffff;
    border: none;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
    border-radius: 18px;
  }
  .nav-logo img {
    height: 54px;
  }
  .nav-toggle {
    display: inline-flex;
    order: 2;
    background: #0e6948;
    border-color: #0e6948;
  }
  .nav-menu {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    order: 4;
    background: #ffffff;
    border: 1px solid #dbe9df;
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
    margin-top: 6px;
    position: relative;
    z-index: 5;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }
  .nav-link {
    color: var(--text-main);
    width: 100%;
    padding: 12px 2px;
    border-bottom: 1px solid #e8eef2;
  }
  .nav-link::after {
    display: none;
  }
  .nav-right {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .lang-switcher {
    border-color: #dbe9df;
    background: #f7faf8;
    color: var(--text-main);
  }
  .hero-heading {
    font-size: 48px;
  }
  .hero-sub {
    font-size: 20px;
  }
  .about-content {
    grid-template-columns: 1fr;
  }
  .footer-main-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .reviews-track {
    gap: 14px;
  }
  .review-card {
    min-width: 300px;
    flex: 0 0 calc(50% - 12px);
  }
  .reviews-arrows {
    display: none;
  }
  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-cta-actions {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 14px 16px 30px;
  }
  .hero-content {
    padding: 32px 24px;
  }
  .section {
    margin-top: 54px;
  }
  .section-title {
    font-size: 46px;
  }
  .section-subtitle {
    font-size: 16px;
  }
  .talent-card {
    flex-direction: column;
    padding: 24px;
  }
  .what-card {
    padding: 24px;
  }
  .review-card {
    min-width: 260px;
    flex: 0 0 80%;
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .form-grid-two {
    grid-template-columns: 1fr;
  }
  .request-main {
    padding: 22px;
  }
  .footer-top-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-subscribe {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .hero-heading {
    font-size: 38px;
  }
  .hero-sub {
    font-size: 18px;
  }
  .section-title {
    font-size: 38px;
  }
  .review-card {
    min-width: 230px;
    flex: 0 0 90%;
  }
  .nav-pill {
    padding: 10px 14px;
  }
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .hero-content {
    padding: 26px 20px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .section-title {
    font-size: 32px;
  }
}
