:root {
  --forest: #173d2f;
  --forest-deep: #0d271e;
  --sage: #8fae9b;
  --sage-light: #dfe8df;
  --ivory: #fbfaf4;
  --white: #ffffff;
  --gold: #c8a85a;
  --gold-soft: #eadcb1;
  --ink: #1e2925;
  --muted: #66736e;
  --line: rgba(23, 61, 47, 0.14);
  --shadow: 0 22px 60px rgba(13, 39, 30, 0.12);
  --radius: 8px;
  --header-height: 118px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.top-bar {
  background: var(--forest-deep);
  color: var(--ivory);
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
}

.top-bar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.top-bar a,
.top-bar span {
  color: rgba(251, 250, 244, 0.9);
}

.language-select select {
  width: 172px;
  border: 1px solid rgba(234, 220, 177, 0.45);
  border-radius: 999px;
  padding: 7px 28px 7px 12px;
  color: var(--ivory);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.language-select {
  margin-left: auto;
}

.language-select option {
  color: var(--ink);
  background: var(--white);
}

.navbar {
  min-height: 80px;
}

.nav-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--forest);
  background: radial-gradient(circle at 30% 25%, var(--gold-soft), var(--ivory) 56%, var(--sage-light));
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 10px 25px rgba(13, 39, 30, 0.12);
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-copy strong {
  color: var(--forest);
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.brand-copy span {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1.1;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-family: Arial, sans-serif;
  font-size: 0.94rem;
  color: var(--forest);
}

.nav-menu a {
  position: relative;
}

.nav-menu > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  transition: transform 0.25s ease;
}

.nav-menu > a:hover::after,
.nav-menu > a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--forest);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: var(--ivory);
  background: var(--forest);
  font-family: Arial, sans-serif;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(23, 61, 47, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  background: var(--forest-deep);
  box-shadow: 0 18px 34px rgba(23, 61, 47, 0.24);
}

.btn-secondary {
  color: var(--forest);
  background: transparent;
  border-color: var(--gold);
  box-shadow: none;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--forest);
  background: var(--gold-soft);
}

.btn-small {
  min-height: 40px;
  padding: 10px 17px;
  font-size: 0.88rem;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 86px;
  background:
    radial-gradient(circle at 88% 12%, rgba(200, 168, 90, 0.22), transparent 28%),
    linear-gradient(135deg, var(--ivory), #eef4ee 70%, #f7f1dc);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
}

.section-ornament::before,
.section-ornament::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(143, 174, 155, 0.5);
  border-radius: 55% 45% 60% 40%;
  transform: rotate(24deg);
  opacity: 0.55;
}

.section-ornament::before {
  left: -40px;
  top: 118px;
}

.section-ornament::after {
  right: -36px;
  bottom: 54px;
}

.global-lines {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background:
    radial-gradient(circle at 18% 35%, var(--gold) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 28%, var(--forest) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 72%, var(--gold) 0 2px, transparent 3px),
    radial-gradient(circle at 35% 74%, var(--forest) 0 2px, transparent 3px),
    repeating-radial-gradient(ellipse at 70% 45%, transparent 0 46px, rgba(23, 61, 47, 0.13) 47px 48px);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--forest-deep);
  line-height: 1.12;
}

h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  letter-spacing: 0;
}

.page-hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
}

h3 {
  font-size: 1.1rem;
}

.hero__text,
.page-hero p,
.split-layout p {
  max-width: 730px;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__panel {
  position: relative;
  min-height: 460px;
  padding: 28px;
  border: 1px solid rgba(200, 168, 90, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel-logo {
  display: inline-grid;
  gap: 4px;
  width: 98px;
  height: 98px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--forest);
  background: var(--ivory);
  font-weight: 700;
}

.panel-logo span {
  font-size: 2rem;
  line-height: 1;
}

.panel-logo small {
  color: var(--gold);
  font-size: 1rem;
}

.network-card {
  position: absolute;
  inset: 78px 22px 82px;
  border-radius: 50%;
}

.orbit {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(23, 61, 47, 0.22);
  border-radius: 50%;
}

.orbit-one {
  transform: rotate(-18deg) scaleX(1.3);
}

.orbit-two {
  transform: rotate(26deg) scaleX(1.1);
  border-color: rgba(200, 168, 90, 0.35);
}

.dot {
  position: absolute;
  z-index: 2;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(200, 168, 90, 0.16);
}

.dot-a { top: 28%; left: 18%; }
.dot-b { top: 18%; right: 25%; background: var(--forest); }
.dot-c { right: 18%; bottom: 22%; }
.dot-d { left: 34%; bottom: 16%; background: var(--forest); }

.hero__panel p {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  margin: 0;
  color: var(--forest);
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.section {
  padding: 84px 0;
}

.muted-section {
  background: #eef4ee;
}

.trust-strip {
  padding: 28px 0;
  background: var(--forest);
  color: var(--ivory);
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid rgba(234, 220, 177, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  font-family: Arial, sans-serif;
}

.trust-item span,
.leaf-icon {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.trust-item span::before,
.trust-item span::after,
.leaf-icon::before,
.leaf-icon::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 18px;
  border-radius: 13px 13px 2px 13px;
  background: var(--gold);
  transform: rotate(-38deg);
}

.trust-item span::after,
.leaf-icon::after {
  left: 9px;
  transform: rotate(38deg);
  background: var(--sage);
}

.relation-box {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.relation-box h2 {
  margin-bottom: 4px;
}

.relation-box p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
}

.flag-group {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 0 0 auto;
}

.flag {
  display: inline-flex;
  width: 58px;
  height: 38px;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(13, 39, 30, 0.12);
}

.flag-ci i {
  flex: 1;
}

.flag-ci i:nth-child(1) { background: #f77f00; }
.flag-ci i:nth-child(2) { background: #ffffff; }
.flag-ci i:nth-child(3) { background: #009e60; }

.flag-eu {
  position: relative;
  align-items: center;
  justify-content: center;
  background: #244aa5;
}

.flag-eu i {
  width: 16px;
  height: 16px;
  border: 2px dotted #ffd84d;
  border-radius: 50%;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.activity-grid,
.service-grid,
.content-grid,
.values-grid {
  display: grid;
  gap: 18px;
}

.activity-grid {
  grid-template-columns: repeat(4, 1fr);
}

.activity-card,
.service-card,
.text-panel,
.value-block,
.contact-info,
.contact-form,
.legal-content {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(13, 39, 30, 0.08);
}

.activity-card {
  min-height: 148px;
  padding: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.activity-card:hover,
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 168, 90, 0.55);
  box-shadow: var(--shadow);
}

.activity-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.activity-card h3,
.service-card h2,
.value-block h2,
.text-panel h2 {
  margin-bottom: 10px;
}

.values-grid {
  grid-template-columns: repeat(4, 1fr);
}

.value-block {
  padding: 24px;
}

.value-block h2 {
  font-size: 1.28rem;
}

.value-block p,
.service-card p,
.text-panel p,
.legal-content p,
.contact-info p {
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 50px;
  align-items: center;
}

.network-section {
  background:
    linear-gradient(rgba(13, 39, 30, 0.88), rgba(13, 39, 30, 0.88)),
    repeating-radial-gradient(ellipse at center, transparent 0 52px, rgba(234, 220, 177, 0.18) 53px 54px);
}

.network-section h2,
.network-section p {
  color: var(--ivory);
}

.network-section .eyebrow {
  color: var(--gold-soft);
}

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

.text-panel {
  padding: 30px;
}

.accent-panel {
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
}

.accent-panel h2,
.accent-panel p {
  color: var(--ivory);
}

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

.service-card {
  min-height: 235px;
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card h2 {
  font-size: 1.35rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: start;
}

.contact-info,
.contact-form {
  padding: 30px;
}

.contact-info a {
  color: var(--forest);
  font-weight: 700;
}

.mini-network {
  position: relative;
  height: 150px;
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 25% 38%, var(--gold) 0 4px, transparent 5px),
    radial-gradient(circle at 70% 28%, var(--forest) 0 4px, transparent 5px),
    radial-gradient(circle at 58% 74%, var(--gold) 0 4px, transparent 5px),
    repeating-radial-gradient(ellipse at center, transparent 0 30px, rgba(143, 174, 155, 0.28) 31px 32px);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-family: Arial, sans-serif;
}

.form-row label {
  color: var(--forest);
  font-weight: 700;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--ivory);
  font: inherit;
}

.form-row input:focus,
.form-row textarea:focus,
.language-select select:focus,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(200, 168, 90, 0.32);
  border-color: var(--gold);
}

.form-message {
  min-height: 26px;
  margin: 16px 0 0;
  color: var(--forest);
  font-family: Arial, sans-serif;
  font-weight: 700;
}

.form-message.error {
  color: #9a3412;
}

.legal-content {
  max-width: 880px;
  padding: 34px;
}

.site-footer {
  color: rgba(251, 250, 244, 0.82);
  background: var(--forest-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.5fr 0.5fr;
  gap: 48px;
  padding: 54px 0;
}

.footer-brand .brand-copy strong,
.footer-brand .brand-copy span {
  color: var(--ivory);
}

.site-footer h2 {
  color: var(--gold-soft);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
}

.footer-bottom {
  padding: 18px 20px;
  border-top: 1px solid rgba(251, 250, 244, 0.12);
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
}

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

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

/* Homepage refinement inspired by the approved AR RAGHIDA mockup. */
body {
  background:
    radial-gradient(circle at 3% 45%, rgba(143, 174, 155, 0.2), transparent 18rem),
    var(--ivory);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.top-bar {
  background: linear-gradient(90deg, #617b53, #456343);
}

.top-bar__inner {
  justify-content: flex-start;
  gap: 24px;
}

.top-icon {
  display: inline-block;
  margin-right: 7px;
  color: var(--ivory);
}

.language-select {
  margin-left: auto;
}

.language-select select {
  width: auto;
  min-width: 82px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 0;
  padding: 3px 20px 4px 5px;
  background: transparent;
  color: var(--ivory);
  text-transform: uppercase;
}

.navbar {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(23, 61, 47, 0.12);
}

.nav-inner {
  min-height: 112px;
}

.brand {
  gap: 20px;
}

.brand-mark {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border-color: var(--gold);
  background: transparent;
  box-shadow: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.9rem;
  line-height: 1;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.brand-mark i {
  position: absolute;
  top: 2px;
  right: 4px;
  width: 32px;
  height: 32px;
}

.brand-mark i::before,
.brand-mark i::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 22px;
  border-radius: 50% 50% 8% 50%;
  background: #78986a;
  transform: rotate(-38deg);
}

.brand-mark i::after {
  left: 12px;
  transform: rotate(38deg);
  background: #557d4d;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2vw, 2.15rem);
  font-weight: 500;
  letter-spacing: 0;
}

.brand-copy span {
  color: #39423d;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.94rem;
  letter-spacing: 0.12em;
}

.nav-menu {
  gap: clamp(18px, 3vw, 42px);
  margin-left: auto;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-flags {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 28px;
}

.flag-separator,
.relation-divider {
  width: 1px;
  height: 28px;
  background: rgba(23, 61, 47, 0.22);
}

.hero {
  min-height: 580px;
  padding: 58px 0 26px;
  background:
    linear-gradient(90deg, rgba(251, 250, 244, 0.98), rgba(251, 250, 244, 0.72) 48%, rgba(251, 250, 244, 0.94)),
    radial-gradient(circle at 86% 23%, rgba(143, 174, 155, 0.25), transparent 26rem);
}

.hero__grid {
  grid-template-columns: minmax(420px, 0.92fr) minmax(480px, 1.08fr);
  gap: 46px;
}

.hero__content {
  padding-left: 58px;
}

.leaf-wash {
  position: absolute;
  left: -44px;
  bottom: -20px;
  width: 190px;
  height: 390px;
  opacity: 0.5;
  background:
    radial-gradient(ellipse at 66% 12%, rgba(84, 124, 79, 0.5) 0 18px, transparent 19px),
    radial-gradient(ellipse at 53% 28%, rgba(84, 124, 79, 0.45) 0 22px, transparent 23px),
    radial-gradient(ellipse at 70% 45%, rgba(84, 124, 79, 0.42) 0 24px, transparent 25px),
    radial-gradient(ellipse at 52% 63%, rgba(84, 124, 79, 0.4) 0 26px, transparent 27px),
    linear-gradient(100deg, transparent 46%, rgba(84, 124, 79, 0.42) 47% 49%, transparent 50%);
  filter: blur(0.4px);
  transform: rotate(-18deg);
}

.global-lines {
  inset: 120px 0 auto 52%;
  height: 370px;
  opacity: 0.9;
  background:
    radial-gradient(circle at 48% 62%, var(--gold) 0 6px, transparent 7px),
    radial-gradient(circle at 12% 40%, var(--gold) 0 3px, transparent 4px),
    radial-gradient(circle at 88% 32%, var(--gold) 0 3px, transparent 4px),
    radial-gradient(circle at 84% 58%, var(--gold) 0 3px, transparent 4px),
    linear-gradient(14deg, transparent 31%, rgba(200, 168, 90, 0.5) 31.2%, transparent 31.7%),
    linear-gradient(-20deg, transparent 38%, rgba(200, 168, 90, 0.45) 38.2%, transparent 38.7%),
    repeating-radial-gradient(ellipse at 52% 62%, transparent 0 52px, rgba(200, 168, 90, 0.28) 53px 54px),
    repeating-linear-gradient(0deg, rgba(143, 174, 155, 0.12) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(90deg, rgba(143, 174, 155, 0.12) 0 1px, transparent 1px 18px);
  mask-image: radial-gradient(ellipse at center, black 0 55%, transparent 76%);
}

.section-ornament::before,
.section-ornament::after {
  display: none;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 14px;
  color: #0a331e;
  font-size: clamp(2.7rem, 4.3vw, 4.4rem);
}

.gold-rule {
  display: flex;
  align-items: center;
  width: 220px;
  margin: 20px 0 24px;
}

.gold-rule::before,
.gold-rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.gold-rule::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.gold-rule span {
  width: 10px;
  height: 10px;
  margin: 0 16px;
  background: var(--gold);
  transform: rotate(45deg);
}

.hero__text {
  max-width: 570px;
  color: #2e3733;
  font-size: 1rem;
}

.hero__actions {
  margin-top: 24px;
}

.btn {
  min-height: 48px;
  border-radius: 7px;
  padding: 13px 24px;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn span {
  margin-left: 14px;
  font-size: 1.25rem;
}

.btn-secondary {
  min-width: 178px;
  background: rgba(255, 255, 255, 0.58);
}

.hero-map {
  position: relative;
  min-height: 390px;
}

.map-fade {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 28% 36%, rgba(143, 174, 155, 0.3) 0 6%, transparent 6.5%),
    radial-gradient(ellipse at 49% 24%, rgba(143, 174, 155, 0.28) 0 11%, transparent 11.5%),
    radial-gradient(ellipse at 67% 36%, rgba(143, 174, 155, 0.3) 0 14%, transparent 14.5%),
    radial-gradient(ellipse at 78% 70%, rgba(143, 174, 155, 0.24) 0 9%, transparent 9.5%),
    radial-gradient(ellipse at 38% 66%, rgba(143, 174, 155, 0.26) 0 10%, transparent 10.5%);
  filter: blur(0.3px);
  opacity: 0.58;
}

.network-card {
  inset: 12px 0 38px;
}

.orbit {
  inset: auto;
  top: 42%;
  left: 47%;
  width: 460px;
  height: 125px;
  border: 1px solid rgba(200, 168, 90, 0.55);
  border-bottom-color: transparent;
  border-left-color: transparent;
}

.orbit-one {
  transform: translate(-50%, -50%) rotate(-22deg);
}

.orbit-two {
  transform: translate(-50%, -50%) rotate(15deg) scale(0.86);
}

.orbit-three {
  transform: translate(-50%, -50%) rotate(34deg) scale(0.72);
}

.dot-a { top: 33%; left: 11%; }
.dot-b { top: 57%; left: 23%; background: var(--gold); }
.dot-c { right: 15%; bottom: 48%; }
.dot-d { left: 46%; bottom: 28%; background: var(--gold); }
.dot-e { top: 25%; right: 10%; }

.dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  box-shadow: none;
}

.hero-trust {
  grid-template-columns: repeat(4, max-content);
  gap: 18px;
  margin-top: 40px;
}

.trust-item {
  min-height: auto;
  padding: 0 18px 0 0;
  border: 0;
  border-right: 1px solid rgba(23, 61, 47, 0.18);
  background: transparent;
  color: var(--forest);
  font-size: 0.75rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 34px;
  height: 34px;
  border: 2px solid #5f814e;
  border-radius: 50%;
}

.trust-icon::before,
.trust-icon::after {
  display: none;
}

.trust-icon.globe::before,
.trust-icon.scale::before,
.trust-icon.shield::before,
.trust-icon.badge::before {
  display: grid;
  position: static;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #5f814e;
  background: transparent;
  font-size: 1.05rem;
}

.trust-icon.shield::before { content: "◇"; }
.trust-icon.badge::before { content: "✦"; }
.trust-icon.globe::before { content: "◎"; }
.trust-icon.scale::before { content: "⚖"; }

.relation-box.hero-relation {
  position: absolute;
  right: 4%;
  bottom: 14px;
  width: min(620px, 90%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  padding: 18px 26px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 42px rgba(13, 39, 30, 0.13);
  backdrop-filter: blur(10px);
}

.relation-side {
  display: flex;
  align-items: center;
  gap: 18px;
}

.relation-side p {
  margin: 0;
  color: #2f3734;
  font-size: 0.82rem;
  line-height: 1.45;
  text-transform: none;
}

.relation-side strong {
  color: var(--forest);
  text-transform: uppercase;
}

.muted-section {
  position: relative;
  overflow: hidden;
  padding-top: 24px;
  background:
    radial-gradient(circle at 100% 100%, rgba(200, 168, 90, 0.18), transparent 15rem),
    linear-gradient(180deg, #f3f6ef, #eef3ea);
}

.section-heading {
  max-width: none;
  margin: 0 auto 20px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 4px;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.activity-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.activity-card {
  min-height: 176px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 24px 16px 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
}

.activity-card h3 {
  min-height: 38px;
  margin: 10px 0 8px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.activity-card p {
  margin: 0;
  color: #3d4844;
  font-size: 0.84rem;
  line-height: 1.35;
}

.activity-card i {
  width: 30px;
  height: 1px;
  margin-top: 16px;
  background: var(--gold);
}

.activity-icon {
  width: 48px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 0;
  color: #5f814e;
  font-size: 2rem;
  font-weight: 400;
}

.activity-icon.ship::before { content: "▱"; font-size: 2.4rem; }
.activity-icon.sprout::before { content: "♧"; }
.activity-icon.car::before { content: "▭"; }
.activity-icon.cart::before { content: "▰"; }
.activity-icon.truck::before { content: "▣"; }
.activity-icon.helmet::before { content: "⌂"; }

.center-action {
  display: flex;
  justify-content: center;
  margin-top: -4px;
}

.btn-wide {
  min-width: 280px;
  min-height: 38px;
  padding: 8px 20px;
  border-radius: 8px;
}

.values-section {
  padding: 0;
  background: linear-gradient(90deg, #5f7b54, #456343);
}

.values-grid {
  grid-template-columns: repeat(4, 1fr);
}

.value-block {
  min-height: 116px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 24px 30px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0;
  color: var(--ivory);
  background: transparent;
  box-shadow: none;
}

.value-block:last-child {
  border-right: 0;
}

.value-block h2 {
  margin: 0 0 4px;
  color: var(--ivory);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.value-block p {
  margin: 0;
  color: rgba(251, 250, 244, 0.9);
  font-size: 0.86rem;
  line-height: 1.45;
}

.leaf-icon {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(251, 250, 244, 0.86);
  border-radius: 50%;
}

.leaf-icon::before,
.leaf-icon::after {
  background: transparent;
}
