:root {
  --bg: #f7f8f5;
  --white: #ffffff;
  --surface: #ffffff;
  --text: #122219;
  --muted: #5d6c63;
  --brand: #267246;
  --brand-deep: #22653f;
  --brand-dark: #1f6b42;
  --brand-panel: #2f7749;
  --gold: #d6a83f;
  --line: rgba(18, 34, 25, 0.08);
  --line-strong: rgba(18, 34, 25, 0.14);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 18px 38px rgba(26, 43, 31, 0.08);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1280px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(38, 114, 70, 0.04), transparent 28%),
    var(--bg);
}

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

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

.page-shell {
  width: var(--container);
  margin: 0 auto;
  padding-top: 12px;
  padding-bottom: 48px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 22px;
  background: rgba(247, 248, 245, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(18, 34, 25, 0.06);
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(18, 34, 25, 0.05);
}

.home-header {
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand strong,
.hero-copy h1,
.section-heading h2,
.section-copy h2,
.glass-panel h3,
.service-card h3,
.mode-card h3,
.stat-block strong,
.inner-hero-copy h1,
.contact-section h2,
.cta-strip h2 {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

.brand strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: auto;
}

.site-nav a {
  color: #24342b;
  font-size: 0.98rem;
  font-weight: 600;
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang-switch {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(38, 114, 70, 0.06);
  border: 1px solid rgba(38, 114, 70, 0.08);
}

.lang-btn {
  min-width: 42px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.lang-btn.is-active {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: var(--shadow-soft);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-dark);
  font-weight: 700;
  white-space: nowrap;
  padding: 0 4px;
}

.phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(38, 114, 70, 0.18);
  position: relative;
  background: rgba(38, 114, 70, 0.04);
}

.phone-icon::before,
.phone-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.phone-icon::before {
  width: 12px;
  height: 12px;
  border: 2px solid var(--brand-dark);
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(45deg);
}

.phone-icon::after {
  width: 4px;
  height: 4px;
  background: var(--brand-dark);
  right: 8px;
  bottom: 9px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--brand-dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

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

.pill-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #eef6ef;
  color: var(--brand-dark);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  animation: badgeFloat 4.4s ease-in-out infinite;
}

.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 138px);
  padding: 44px 0 34px;
}

.hero-copy h1 {
  margin: 28px 0 22px;
  font-size: clamp(3.5rem, 7vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  max-width: 9ch;
}

.hero-text,
.section-copy p,
.service-card p,
.stat-block p,
.inner-hero-copy p:last-child,
.mini-card p,
.info-card p,
.contact-form label,
.transport-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 30ch;
  font-size: 1rem;
  margin: 0 0 32px;
}

.hero-mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-mini-meta span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 34, 25, 0.08);
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-soft);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, #2f7c4e 0%, #21673d 100%);
  color: #fff;
  box-shadow: 0 14px 26px rgba(38, 114, 70, 0.22);
}

.btn-secondary {
  background: #fff;
  border: 1px solid rgba(18, 34, 25, 0.1);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.header-btn {
  min-height: 50px;
  padding: 0 26px;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.hero-grid-box {
  position: relative;
  width: min(100%, 640px);
  min-height: 390px;
  border-radius: 30px;
  border: 1px solid rgba(31, 107, 66, 0.12);
  background:
    linear-gradient(rgba(38, 114, 70, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 114, 70, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 246, 0.94));
  background-size: 32px 32px, 32px 32px, auto;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.hero-grid-box::before {
  content: "";
  position: absolute;
  inset: 16px 16px auto auto;
  width: 82px;
  height: 82px;
  border-radius: 22px;
  background: radial-gradient(circle at 30% 30%, rgba(38, 114, 70, 0.18), rgba(38, 114, 70, 0.04));
}

.hero-overlay-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 34, 25, 0.08);
  box-shadow: var(--shadow-soft);
  animation: floatGlass 6s ease-in-out infinite;
}

.hero-overlay-card small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-overlay-card strong {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.hero-grid-box::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(199, 221, 209, 0.45), rgba(199, 221, 209, 0.75));
}

.graph-bars {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
  height: 42%;
}

.graph-bars span {
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, rgba(156, 192, 178, 0.72), rgba(162, 190, 188, 0.88));
}

.content-section {
  padding-top: 88px;
}

.section-heading {
  display: grid;
  justify-items: start;
  gap: 8px;
  margin-bottom: 26px;
}

.section-heading-inline h2 {
  max-width: 26ch;
}

.section-heading .eyebrow {
  margin-bottom: 0;
}

.section-heading h2,
.section-copy h2,
.cta-strip h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 2.7rem);
  line-height: 1.08;
  max-width: 24ch;
  text-wrap: balance;
}

.service-grid,
.stats-section {
  display: grid;
  gap: 24px;
}

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

.service-card,
.stat-block,
.glass-panel,
.mini-card,
.info-card,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  min-height: 250px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.stat-block:hover,
.check-list article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(26, 43, 31, 0.1);
}

.mini-card,
.info-card,
.page-hero-card,
.contact-direct-card,
.map-panel {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mini-card:hover,
.info-card:hover,
.page-hero-card:hover,
.contact-direct-card:hover,
.map-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(26, 43, 31, 0.1);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 64px;
  height: 64px;
  margin-bottom: 28px;
  padding: 0 16px;
  border-radius: 18px;
  background: #eef5ef;
  color: var(--brand-dark);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 1.15rem;
}

.sector-section {
  position: relative;
}

.sector-filter {
  display: grid;
  gap: 24px;
}

.sector-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sector-tab {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(18, 34, 25, 0.1);
  background: #fff;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.sector-tab.is-active {
  border-color: rgba(38, 114, 70, 0.18);
  background: #eef6ef;
  color: var(--brand-dark);
}

.sector-stage {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.sector-stage-copy,
.sector-visual-card,
.status-form-panel,
.tracker-panel,
.calculator-form,
.calculator-result,
.case-card,
.expert-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.sector-stage-copy {
  padding: 30px;
}

.sector-stage-copy small {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sector-stage-copy h3 {
  margin: 0 0 14px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 1.7rem;
  line-height: 1.1;
}

.sector-stage-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
}

.compact-list li {
  padding: 13px 0 13px 20px;
}

.compact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-dark);
}

.sector-stage-visual {
  display: flex;
}

.sector-visual-card {
  width: 100%;
  padding: 24px;
  display: grid;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(38, 114, 70, 0.08), transparent 24%),
    #fff;
}

.sector-chip {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef6ef;
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sector-bars {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
  min-height: 160px;
}

.sector-bars span {
  border-radius: 16px 16px 6px 6px;
  background: linear-gradient(180deg, rgba(38, 114, 70, 0.25), rgba(38, 114, 70, 0.7));
  animation: sectorBar 4.6s ease-in-out infinite;
}

.sector-bars span:nth-child(1) { height: 36%; }
.sector-bars span:nth-child(2) { height: 58%; animation-delay: .4s; }
.sector-bars span:nth-child(3) { height: 82%; animation-delay: .8s; }
.sector-bars span:nth-child(4) { height: 48%; animation-delay: 1.2s; }
.sector-bars span:nth-child(5) { height: 68%; animation-delay: 1.6s; }

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

.sector-kpis article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(38, 114, 70, 0.04);
  border: 1px solid rgba(38, 114, 70, 0.08);
}

.sector-kpis strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: var(--brand-dark);
}

.sector-kpis span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.transport-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  margin-top: 96px;
  padding: 58px 40px;
  border-radius: 36px;
  background: var(--brand-panel);
  color: #fff;
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  padding-left: calc((100vw - var(--container)) / 2 + 20px);
  padding-right: calc((100vw - var(--container)) / 2 + 20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.transport-band h2 {
  margin: 0 0 18px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.98;
  max-width: 10ch;
}

.transport-band p,
.transport-list p {
  color: rgba(255, 255, 255, 0.82);
}

.transport-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.transport-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 12px 0;
}

.transport-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.transport-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.transport-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-graphic {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 48%),
    rgba(35, 106, 63, 0.9);
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.globe-mark,
.ring,
.dot {
  position: absolute;
}

.globe-mark {
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  transform: translate(-50%, -50%);
  border: 6px solid rgba(214, 168, 63, 0.8);
  border-radius: 50%;
}

.globe-mark::before,
.globe-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid transparent;
}

.globe-mark::before {
  left: 22%;
  right: 22%;
  border-left-color: rgba(214, 168, 63, 0.8);
  border-right-color: rgba(214, 168, 63, 0.8);
}

.globe-mark::after {
  top: 46%;
  bottom: 46%;
  border-top-color: rgba(214, 168, 63, 0.8);
  border-bottom-color: rgba(214, 168, 63, 0.8);
}

.ring {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ring-one {
  inset: 18%;
}

.ring-two {
  inset: 11%;
}

.ring-three {
  inset: 6%;
  border-style: dashed;
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.7);
}

.dot-1 { top: 21%; left: 49%; }
.dot-2 { top: 31%; left: 72%; }
.dot-3 { top: 51%; left: 81%; }
.dot-4 { top: 73%; left: 61%; }
.dot-5 { top: 82%; left: 49%; }
.dot-6 { top: 73%; left: 28%; }
.dot-7 { top: 51%; left: 18%; }
.dot-8 { top: 31%; left: 28%; }

.process-showcase {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 44px;
  align-items: start;
}

.status-grid,
.calculator-grid,
.case-grid {
  display: grid;
  gap: 24px;
}

.status-grid,
.calculator-grid {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
}

.status-form-panel,
.calculator-form,
.calculator-result,
.tracker-panel,
.case-card {
  padding: 28px;
}

.status-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 700;
}

.status-form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.status-input,
.calculator-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(18, 34, 25, 0.12);
  background: #fff;
  color: var(--text);
  font: inherit;
}

.status-message {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.tracker-panel {
  display: grid;
  gap: 18px;
  background:
    linear-gradient(180deg, rgba(38, 114, 70, 0.03), rgba(255, 255, 255, 0.95)),
    #fff;
}

.tracker-progress {
  height: 10px;
  border-radius: 999px;
  background: rgba(38, 114, 70, 0.1);
  overflow: hidden;
}

.tracker-progress span {
  display: block;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, #2f7c4e, #6ea884);
  transition: width 320ms ease;
}

.tracker-steps {
  display: grid;
  gap: 12px;
}

.tracker-step {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(18, 34, 25, 0.08);
  background: rgba(255, 255, 255, 0.72);
  opacity: 0.55;
  transition: opacity 220ms ease, border-color 220ms ease, background 220ms ease;
}

.tracker-step.is-active,
.tracker-step.is-complete {
  opacity: 1;
  border-color: rgba(38, 114, 70, 0.18);
  background: rgba(238, 246, 239, 0.9);
}

.tracker-step strong {
  display: block;
  margin-bottom: 6px;
}

.tracker-step span {
  color: var(--muted);
  line-height: 1.55;
}

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

.calculator-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.calculator-result {
  display: grid;
  align-content: start;
  gap: 16px;
  background:
    radial-gradient(circle at top right, rgba(38, 114, 70, 0.08), transparent 24%),
    #fff;
}

.calculator-result small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.calculator-result > strong {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

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

.calc-meta article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(38, 114, 70, 0.04);
  border: 1px solid rgba(38, 114, 70, 0.08);
}

.calc-meta span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.calc-meta strong {
  display: block;
  color: var(--brand-dark);
}

.calculator-result p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.case-card {
  display: grid;
  gap: 12px;
}

.case-card small {
  color: var(--brand-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-card h3 {
  margin: 0;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
}

.case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.check-list article {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 0 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.check-list span {
  color: var(--brand-dark);
  font-size: 1.15rem;
}

.check-list strong {
  font-size: 1rem;
  font-weight: 600;
}

.process-visual {
  border-radius: 30px;
  overflow: hidden;
}

.route-map {
  position: relative;
  min-height: 430px;
  border-radius: 30px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #1f6b42, #1d5f3d);
  background-size: 56px 56px, 56px 56px, auto;
}

.route-line {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 72%;
  height: 34%;
  border-top: 4px dashed rgba(255, 255, 255, 0.22);
  border-right: 4px dashed rgba(255, 255, 255, 0.22);
  border-radius: 140px;
  transform: rotate(-7deg);
}

.route-dot {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f3b221;
  box-shadow: 0 0 16px rgba(243, 178, 33, 0.35);
}

.route-dot-a { top: 58%; left: 10%; }
.route-dot-b { top: 42%; left: 34%; }
.route-dot-c { top: 38%; left: 58%; }
.route-dot-d { top: 16%; left: 80%; }

.step-card {
  position: absolute;
  min-width: 180px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(10px);
}

.step-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.step-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.step-a { left: 0; top: 54%; }
.step-b { left: 26%; top: 18%; }
.step-c { left: 53%; top: 35%; }
.step-d { right: 2%; top: 10%; }

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

.stat-block {
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.stat-block strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: var(--text);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 88px;
  padding: 32px;
  border: 1px solid rgba(18, 34, 25, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 246, 0.96));
  box-shadow: var(--shadow-soft);
}

.btn-whatsapp {
  background: linear-gradient(180deg, #2ab96f 0%, #169a55 100%);
  color: #fff;
  box-shadow: 0 14px 26px rgba(22, 154, 85, 0.2);
}

.btn-whatsapp:hover {
  box-shadow: 0 18px 32px rgba(22, 154, 85, 0.28);
}

.expert-list {
  display: grid;
  gap: 14px;
}

.expert-item {
  padding: 0;
  overflow: hidden;
}

.expert-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  position: relative;
}

.expert-item summary::-webkit-details-marker {
  display: none;
}

.expert-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-dark);
  font-size: 1.4rem;
}

.expert-item[open] summary::after {
  content: "-";
}

.expert-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.75;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2ab96f 0%, #169a55 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(22, 154, 85, 0.28);
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

.whatsapp-float-icon {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.whatsapp-float-icon::before,
.whatsapp-float-icon::after {
  content: "";
  position: absolute;
}

.whatsapp-float-icon::before {
  inset: 9px 10px 10px 9px;
  border: 2px solid #fff;
  border-radius: 10px;
}

.whatsapp-float-icon::after {
  left: 12px;
  bottom: 7px;
  width: 8px;
  height: 8px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.whatsapp-panel {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(42, 185, 111, 0.16), transparent 24%),
    linear-gradient(180deg, #ffffff, #f5fbf7);
  border: 1px solid rgba(22, 154, 85, 0.16);
  box-shadow: var(--shadow-card);
  color: var(--text);
}

.whatsapp-panel-badge {
  width: fit-content;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(22, 154, 85, 0.1);
  color: #169a55;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.whatsapp-panel strong {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
}

.whatsapp-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.inner-hero,
.two-column,
.contact-layout,
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.inner-hero {
  padding-top: 34px;
}

.subpage-hero {
  align-items: stretch;
}

.inner-hero-copy,
.mini-card,
.info-card {
  padding: 30px;
}

.inner-hero-copy,
.mini-card,
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.inner-hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 1.02;
  max-width: 11ch;
}

.page-hero-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(38, 114, 70, 0.08), transparent 28%),
    #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.page-hero-card-header span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-hero-card-header strong {
  display: block;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 1.45rem;
}

.metric-pills {
  display: grid;
  gap: 14px;
}

.metric-pills article {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(18, 34, 25, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.metric-pills strong {
  color: var(--brand-dark);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.metric-pills span {
  color: var(--muted);
  line-height: 1.6;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 34px;
  align-items: start;
}

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

.compact-process .route-map-small {
  min-height: 410px;
}

.contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.contact-direct-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}

.contact-direct-card small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-direct-card strong {
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  font-size: 1.05rem;
}

.contact-direct-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.refined-contact-layout {
  align-items: stretch;
}

.map-panel {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background:
    linear-gradient(rgba(38, 114, 70, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 114, 70, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 246, 0.94));
  background-size: 30px 30px, 30px 30px, auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.map-grid {
  position: absolute;
  inset: 0;
}

.map-pin {
  position: absolute;
  top: 42%;
  left: 52%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-dark);
  box-shadow: 0 0 0 10px rgba(38, 114, 70, 0.1);
  animation: pulsePin 2.4s ease-in-out infinite;
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 10px;
  height: 16px;
  background: var(--brand-dark);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
}

.map-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 34, 25, 0.08);
  box-shadow: var(--shadow-soft);
}

.map-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.map-card span {
  color: var(--muted);
  line-height: 1.6;
}

.inner-hero-aside,
.contact-info-grid {
  display: grid;
  gap: 18px;
}

.section-copy h2,
.contact-section h2 {
  margin: 0 0 16px;
}

.glass-panel {
  padding: 30px;
}

.glass-panel h3 {
  margin-top: 0;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.feature-list li:last-child {
  border-bottom: 0;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.94rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(18, 34, 25, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(38, 114, 70, 0.12);
  border-color: var(--brand-dark);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 74px;
  padding: 34px 0 0;
  border-top: 1px solid rgba(18, 34, 25, 0.08);
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--brand-dark);
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
  will-change: transform, opacity;
}

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

.graph-bars span {
  animation: barPulse 4.8s ease-in-out infinite;
}

.graph-bars span:nth-child(2n) {
  animation-delay: 0.4s;
}

.graph-bars span:nth-child(3n) {
  animation-delay: 0.9s;
}

.dot,
.route-dot {
  animation: softPulse 3s ease-in-out infinite;
}

.dot:nth-child(odd),
.route-dot:nth-child(odd) {
  animation-delay: 0.6s;
}

.ring-one {
  animation: orbitBreath 8s ease-in-out infinite;
}

.ring-two {
  animation: orbitBreath 9.5s ease-in-out infinite reverse;
}

.ring-three {
  animation: orbitBreath 11s ease-in-out infinite;
}

.step-card {
  animation: floatCard 6s ease-in-out infinite;
}

.step-b {
  animation-delay: 0.8s;
}

.step-c {
  animation-delay: 1.4s;
}

.step-d {
  animation-delay: 2s;
}

@keyframes barPulse {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.08); }
}

@keyframes softPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.14); opacity: 0.86; }
}

@keyframes orbitBreath {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.72; }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pulsePin {
  0%, 100% { box-shadow: 0 0 0 10px rgba(38, 114, 70, 0.1); }
  50% { box-shadow: 0 0 0 16px rgba(38, 114, 70, 0.05); }
}

@keyframes sectorBar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.08); }
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes floatGlass {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes whatsappPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 18px 38px rgba(22, 154, 85, 0.28); }
  50% { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(22, 154, 85, 0.34); }
}

@media (max-width: 1180px) {
  .home-hero,
  .transport-band,
  .process-showcase,
  .inner-hero,
  .status-grid,
  .calculator-grid,
  .sector-stage,
  .split-feature,
  .two-column,
  .contact-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-showcase-grid,
  .contact-quick-grid,
  .service-grid-wide,
  .case-grid,
  .stats-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-map {
    min-height: 480px;
  }
}

@media (max-width: 860px) {
  .page-shell {
    width: min(100vw - 24px, 100%);
  }

  .site-header {
    gap: 14px;
    padding: 14px 16px;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    order: 4;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

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

  .header-cta {
    margin-left: auto;
    width: 100%;
    justify-content: space-between;
  }

  .phone-link strong {
    display: none;
  }

  .hero-mini-meta {
    gap: 8px;
  }

  .home-hero {
    min-height: auto;
    padding-top: 26px;
  }

  .hero-copy h1,
  .transport-band h2,
  .section-heading h2,
  .section-copy h2,
  .cta-strip h2,
  .inner-hero-copy h1 {
    max-width: none;
  }

  .service-grid-wide,
  .service-showcase-grid,
  .contact-quick-grid,
  .case-grid,
  .stats-section {
    grid-template-columns: 1fr;
  }

  .sector-kpis,
  .calc-meta {
    grid-template-columns: 1fr;
  }

  .transport-band {
    margin-top: 70px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 26px;
  }

  .route-map {
    min-height: 540px;
  }

  .step-card {
    min-width: 150px;
  }

  .step-a { left: 4%; top: 64%; }
  .step-b { left: 24%; top: 20%; }
  .step-c { left: 48%; top: 42%; }
  .step-d { right: 4%; top: 10%; }

  .cta-strip,
  .site-footer,
  .section-heading {
    display: grid;
  }

  .status-form-row {
    grid-template-columns: 1fr;
  }

  .lang-switch {
    order: -1;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    padding-right: 14px;
  }

  .whatsapp-float span:last-child {
    display: none;
  }
}
