:root {
  --color-electric-lime: #beff50;
  --color-near-black: #14140f;
  --color-pure-white: #ffffff;
  --color-warm-cream: #f5f5eb;
  --color-parchment-card: #fafaf5;
  --color-stone: #d2d2c8;
  --color-graphite: #6e6e64;
  --color-slate-border: #919183;
  --color-whatsapp: #1dc479;
  --page-max-width: 1200px;
  --radius-card: 26px;
  --radius-badge: 8px;
  --radius-circle: 999px;
  --header-height: 92px;
  --banner-height: 48px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--color-warm-cream);
  color: var(--color-near-black);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 32px), var(--page-max-width));
  margin: 0 auto;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-whatsapp {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: block;
}

.icon-sm {
  width: 18px;
  height: 18px;
}

.icon-xs {
  width: 14px;
  height: 14px;
}

.announcement-banner {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--color-electric-lime);
  border-bottom: 1px solid var(--color-near-black);
  overflow: hidden;
  max-height: 96px;
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height 0.28s ease,
    opacity 0.24s ease,
    transform 0.28s ease,
    border-color 0.28s ease;
}

.announcement-banner.is-closing {
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  border-bottom-color: transparent;
}

.announcement-banner.is-hidden {
  display: none;
}

.banner-inner {
  min-height: var(--banner-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  transition:
    min-height 0.28s ease,
    padding 0.28s ease;
}

.announcement-banner.is-closing .banner-inner {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.banner-inner p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.banner-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-near-black);
  border-radius: 50%;
  background: transparent;
  color: var(--color-near-black);
}

.site-header {
  position: sticky;
  top: var(--banner-height);
  z-index: 30;
  background: rgba(245, 245, 235, 0.92);
  border-bottom: 1px solid rgba(20, 20, 15, 0.12);
  backdrop-filter: blur(12px);
  transition:
    top 0.28s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.site-header.is-compact {
  background: rgba(255, 255, 255, 0.95);
}

.nav-shell {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand img {
  width: 152px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.site-nav > a {
  position: relative;
  font-size: 15px;
  color: var(--color-near-black);
  transition: color 0.25s ease;
}

.site-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav > a:hover {
  color: var(--color-graphite);
}

.site-nav > a.is-current {
  color: var(--color-near-black);
  font-weight: 700;
}

.site-nav > a.is-current::after {
  background: #11F48A;
}

.site-nav > a:hover::after,
.site-nav > a.is-current::after {
  transform: scaleX(1);
}

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

.mobile-only {
  display: none;
}

.menu-toggle,
.mobile-nav-close {
  display: none;
  width: 56px;
  height: 56px;
  border: 1px solid var(--color-near-black);
  border-radius: 50%;
  background: transparent;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.menu-toggle span,
.mobile-nav-close span {
  width: 18px;
  height: 1.5px;
  background: var(--color-near-black);
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease;
}

.menu-toggle.is-open,
.mobile-nav-close {
  background: var(--color-pure-white);
  box-shadow: 0 10px 28px rgba(20, 20, 15, 0.18);
}

.menu-toggle.is-open span:first-child,
.mobile-nav-close span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.menu-toggle.is-open span:last-child,
.mobile-nav-close span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

.mobile-nav-panel {
  display: none;
}

.mobile-nav-links {
  display: grid;
  gap: 10px;
}

.mobile-nav-links a {
  position: relative;
  color: var(--color-near-black);
  transition: color 0.25s ease;
}

.mobile-nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.mobile-nav-links a:hover {
  color: var(--color-graphite);
}

.mobile-nav-links a:hover::after {
  transform: scaleX(1);
}

.mobile-nav-footer {
  display: none;
}

.mobile-nav-brand {
  display: none;
}

.mobile-nav-social {
  display: grid;
  gap: 10px;
}

.mobile-nav-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid rgba(20, 20, 15, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-near-black);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.mobile-nav-social a:hover {
  transform: translateX(2px);
  border-color: rgba(17, 244, 138, 0.28);
  background: rgba(255, 255, 255, 0.9);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 54px;
  padding: 0 18px;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-near-black);
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
  transform: translateY(0);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    filter 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.24) 48%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
  pointer-events: none;
}

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

.btn:hover::before {
  transform: translateX(120%);
}

.btn:active {
  transform: translateY(0);
}

.btn .icon,
.btn .icon-whatsapp {
  transition: transform 0.25s ease;
}

.btn-primary {
  background: var(--color-electric-lime);
  color: var(--color-near-black);
}

.btn-primary:hover {
  background: #d0ff7e;
  filter: saturate(1.02);
}

.btn-ghost,
.btn-light {
  background: transparent;
  color: var(--color-near-black);
}

.btn-ghost:hover,
.btn-light:hover {
  background: rgba(20, 20, 15, 0.05);
}

.btn:hover .icon:last-child,
.btn:hover .icon-whatsapp:last-child {
  transform: translateX(2px);
}

.btn-whatsapp {
  background: #1db954;
  color: var(--color-pure-white);
  border-color: #12713b;
}

.btn-whatsapp:hover {
  background: #25d366;
  color: var(--color-pure-white);
  border-color: #12713b;
}

.hero-section {
  position: relative;
  min-height: min(820px, calc(100vh - var(--header-height)));
  overflow: clip;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 20, 15, 0.8) 0%, rgba(20, 20, 15, 0.64) 42%, rgba(20, 20, 15, 0.52) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: min(760px, calc(100vh - var(--header-height)));
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(140px, 0.55fr);
  align-items: center;
  gap: 28px;
  padding: 44px 0 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--radius-badge);
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  gap: 8px;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 0;
  color: var(--color-pure-white);
  max-width: 860px;
}

.hero-copy > * {
  will-change: transform, opacity;
}

.hero-copy .eyebrow {
  justify-self: start;
  margin-bottom: 12px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  max-width: 17ch;
  font-size: clamp(1.8rem, 2.8vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.hero-text {
  max-width: 62ch;
  margin: 0;
  font-size: 15px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.84);
}

.hero-text + .hero-text {
  margin-top: 14px;
}

.hero-text-strong {
  color: var(--color-pure-white);
  font-weight: 600;
  max-width: 58ch;
}

.hero-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  max-width: 680px;
}

.hero-points li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

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

.hero-actions .btn-light {
  border-color: var(--color-pure-white);
  color: var(--color-pure-white);
}

.hero-actions .btn-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

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

.floating-card,
.metric-card,
.service-card,
.region-card,
.diff-card,
.contact-card,
.contact-form,
.media-card,
.insight-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(20, 20, 15, 0.12);
}

.card-light {
  background: var(--color-pure-white);
  color: var(--color-near-black);
}

.card-dark {
  background: var(--color-near-black);
  color: var(--color-pure-white);
  border-color: rgba(255, 255, 255, 0.12);
}

.card-lime {
  background: var(--color-electric-lime);
  color: var(--color-near-black);
}

.floating-card {
  position: absolute;
  padding: 24px;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(1.95rem, 3vw, 2.85rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.card-highlight h3,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  max-width: none;
}

.section-heading p,
.about-copy p,
.service-card p,
.region-card p,
.diff-card p,
.contact-copy p,
.contact-card p,
.form-note {
  margin: 0;
  color: var(--color-graphite);
}

.section-heading p,
.about-copy p,
.contact-copy p {
  max-width: 66ch;
  font-size: 17px;
  line-height: 1.72;
}

.card-dark p,
.card-dark .small-label,
.dark-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--radius-badge);
  border: 1px solid rgba(20, 20, 15, 0.14);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  gap: 8px;
}

.small-label {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(20, 20, 15, 0.06);
  border: 1px solid rgba(20, 20, 15, 0.1);
  color: var(--color-near-black);
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.card-lime .card-icon-badge {
  background: rgba(255, 255, 255, 0.34);
  border-color: rgba(20, 20, 15, 0.12);
}

.card-dark .card-icon-badge {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--color-electric-lime);
}

.metrics-section {
  margin-top: -42px;
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}

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

.metric-card {
  background: var(--color-pure-white);
  padding: 24px;
  min-height: 152px;
  transform: translateY(0);
  transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.metric-card span {
  color: var(--color-graphite);
  font-size: 15px;
  line-height: 1.6;
}

.section {
  padding: 88px 0;
}

.section-white {
  background: var(--color-pure-white);
}

.section-cream {
  background: var(--color-parchment-card);
}

.section-dark {
  background: var(--color-near-black);
  color: var(--color-pure-white);
}

.section-dark .visual-placeholder {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.section-dark .placeholder-icon {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-electric-lime);
}

.section-dark .placeholder-copy strong,
.section-dark .placeholder-copy p {
  color: var(--color-pure-white);
}

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

.about-copy h2 {
  max-width: 20ch;
}

.about-copy .about-title {
  max-width: 32rem;
}

.title-emphasis {
  font-weight: 800;
  color: var(--color-near-black);
  background: linear-gradient(transparent 60%, rgba(215, 222, 128, 0.38) 60%);
  padding: 0 0.08em;
  border-radius: 0.12em;
}

.about-copy p + p {
  margin-top: 18px;
}

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

.media-card {
  margin: 0;
  display: block;
  overflow: hidden;
  background: var(--color-pure-white);
  min-height: 440px;
  transition: transform 0.32s ease, border-color 0.32s ease;
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.insight-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.insight-card {
  padding: 24px;
  transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.insight-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.news-section {
  overflow: clip;
}

.news-heading {
  display: grid;
  gap: 0;
}

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

.news-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid rgba(20, 20, 15, 0.12);
  background: var(--color-pure-white);
  transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.news-card-media {
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(20, 20, 15, 0.08);
  aspect-ratio: 16 / 10;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-card-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-items: start;
  gap: 14px;
  padding: 24px;
  min-height: 100%;
}

.news-label {
  margin: 0;
  color: var(--color-near-black);
}

.news-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: none;
}

.news-card p {
  margin: 0;
  color: var(--color-graphite);
  line-height: 1.65;
}

.news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: auto;
}

.news-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 15, 0.12);
  background: var(--color-parchment-card);
  color: var(--color-near-black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-chip-feature {
  background: rgba(215, 222, 128, 0.28);
  border-color: rgba(215, 222, 128, 0.48);
}

.news-chip-technical {
  background: rgba(190, 255, 80, 0.16);
  border-color: rgba(190, 255, 80, 0.28);
}

.news-chip-brand {
  background: rgba(20, 20, 15, 0.08);
  border-color: rgba(20, 20, 15, 0.14);
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #4f8f00 !important;
  transition: color 0.25s ease, transform 0.25s ease;
}

.news-link,
.news-link span,
.news-link .icon {
  color: #4f8f00 !important;
}

.news-link:hover {
  color: #3f7300 !important;
  transform: translateX(2px);
}

.news-link:hover span,
.news-link:hover .icon {
  color: #3f7300 !important;
}

.news-card:hover .news-card-media img {
  transform: scale(1.03);
}

.post-hero {
  padding-bottom: 48px;
}

.post-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: center;
}

.post-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(20, 20, 15, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  color: var(--color-near-black);
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.post-back-link:hover {
  transform: translateX(-2px);
  color: var(--color-graphite);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(20, 20, 15, 0.2);
}

.post-hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  max-width: 16ch;
}

.post-intro {
  margin: 0;
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.72;
  color: var(--color-graphite);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  color: var(--color-graphite);
  font-size: 14px;
  font-weight: 700;
}

.post-hero-media {
  min-height: 420px;
}

.post-content-section {
  padding-top: 0;
}

.post-content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 24px;
  align-items: start;
}

.post-sidebar-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(20, 20, 15, 0.12);
  background: var(--color-pure-white);
}

.post-article {
  padding: 0;
  background: transparent;
  border: 0;
}

.post-content-block + .post-content-block {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(20, 20, 15, 0.1);
}

.post-content-block h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.post-content-block p {
  margin: 0;
  max-width: 68ch;
  color: var(--color-graphite);
  font-size: 16px;
  line-height: 1.78;
}

.post-content-block p + p {
  margin-top: 16px;
}

.post-sidebar-card {
  padding: 24px;
  position: sticky;
  top: calc(var(--header-height) + var(--banner-height) + 20px);
}

.post-sidebar-card p {
  margin: 0;
  color: var(--color-graphite);
  line-height: 1.65;
}

.post-sidebar-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.post-sidebar-actions .btn {
  width: 100%;
}

.visual-placeholder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
  border: 1px dashed rgba(20, 20, 15, 0.22);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(190, 255, 80, 0.14), rgba(255, 255, 255, 0.88)),
    var(--color-pure-white);
}

.placeholder-wide {
  margin-bottom: 24px;
}

.placeholder-map {
  margin-top: 24px;
}

.placeholder-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(20, 20, 15, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-near-black);
  flex-shrink: 0;
}

.placeholder-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.placeholder-copy p {
  margin: 0;
  color: var(--color-graphite);
  font-size: 15px;
  line-height: 1.65;
}

.section-heading {
  margin-bottom: 36px;
  max-width: 920px;
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

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

.tab-shell {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.services-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.tab-list {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: var(--radius-card);
  background: var(--color-stone);
}

.tab-button {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius-card);
  background: transparent;
  color: var(--color-near-black);
  font-size: 15px;
  font-weight: 700;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.tab-button.is-active {
  background: var(--color-near-black);
  color: var(--color-pure-white);
}

.tab-button:hover {
  transform: translateY(-1px);
}

.tab-panel {
  display: none;
  min-width: 0;
}

.tab-panel.is-active {
  display: block;
}

.slider-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-near-black);
  background: var(--color-pure-white);
  color: var(--color-near-black);
  transform: translateY(0);
  transition: background-color 0.25s ease, opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.slider-button:hover:not(:disabled) {
  background: var(--color-electric-lime);
  transform: translateY(-2px);
}

.slider-button:disabled {
  opacity: 0.35;
  cursor: default;
}

.cards-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 4px 10px 0;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.cards-scroller > * {
  scroll-snap-align: start;
}

.cards-scroller::-webkit-scrollbar {
  display: none;
}

.service-card {
  min-height: 240px;
  padding: 24px;
  transform: translateY(0);
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.service-card h3,
.region-card h3,
.diff-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.card-dark h3 {
  color: var(--color-pure-white);
}

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

.region-card {
  min-height: 240px;
  padding: 26px;
  transform: translateY(0);
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.region-card span {
  display: block;
  margin-top: 18px;
  color: var(--color-slate-border);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.card-light span,
.card-lime span {
  color: var(--color-graphite);
}

.differentials-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.differentials-aside {
  display: contents;
}

.diff-visual-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    #262620;
}

.diff-visual-card {
  grid-column: 1;
  grid-row: 1 / span 2;
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 0;
  height: 100%;
}

.diff-visual-video {
  display: block;
  height: 100%;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.diff-visual-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.diff-visual-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 24px;
}

.diff-visual-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  width: min(100%, 280px);
}

.diff-visual-points li {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 0;
  text-align: center;
}

.diff-visual-points li + li {
  position: relative;
  border-top: 0;
}

.diff-visual-points li + li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 64px;
  height: 1px;
  background: #FFFFFF;
  transform: translateX(-50%);
}

.diff-visual-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #11F48A;
}

.diff-visual-icon .icon {
  width: 30px;
  height: 30px;
  stroke-width: 1.55;
}

.diff-visual-points strong {
  display: block;
  color: var(--color-pure-white);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.differentials-grid {
  display: contents;
}

.diff-card {
  position: relative;
  overflow: hidden;
  background: #30302a;
  padding: 30px 28px 28px;
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(0);
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.diff-card::before {
  content: none;
}

.diff-card h3 {
  color: var(--color-pure-white);
}

.diff-card p {
  color: rgba(255, 255, 255, 0.74);
}

.diff-card .card-icon-badge {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  background: rgba(190, 255, 80, 0.16);
  border-color: rgba(190, 255, 80, 0.26);
  color: var(--color-electric-lime);
}

.diff-card .card-icon-badge .icon {
  width: 22px;
  height: 22px;
}

.contact-section {
  overflow: clip;
  background: var(--color-parchment-card);
}

.contact-copy {
  display: grid;
  align-content: start;
  justify-items: start;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}

.contact-copy h2 {
  max-width: 20ch;
}

.contact-copy p {
  max-width: 62ch;
}

.contact-cards {
  display: grid;
  gap: 14px;
  width: 100%;
  margin-top: 28px;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 20px 22px;
  align-content: start;
  background: var(--color-pure-white);
  border-color: rgba(20, 20, 15, 0.14);
  transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.contact-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(190, 255, 80, 0.16);
  border: 1px solid rgba(190, 255, 80, 0.24);
  color: var(--color-electric-lime);
  flex: 0 0 auto;
}

.contact-card-badge .icon {
  width: 18px;
  height: 18px;
}

.icon-instagram {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-near-black);
  transition: color 0.25s ease;
}

.contact-card p {
  line-height: 1.6;
}

.contact-card .small-label {
  margin: 0;
}

.contact-card a:hover {
  color: var(--color-graphite);
}

.contact-form {
  background: var(--color-pure-white);
  padding: 26px;
  border-color: rgba(20, 20, 15, 0.14);
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form-intro {
  margin-bottom: 4px;
}

.contact-form-intro .small-label {
  margin-bottom: 12px;
}

.contact-form-intro p {
  margin: 0;
  max-width: 50ch;
  color: var(--color-graphite);
  line-height: 1.65;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.contact-form span {
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-card);
  border: 1px solid rgba(20, 20, 15, 0.18);
  background: #fcfcf8;
  color: var(--color-near-black);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8b8b80;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(20, 20, 15, 0.42);
  box-shadow: 0 0 0 3px rgba(190, 255, 80, 0.18);
  background: var(--color-pure-white);
}

.form-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.form-note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-graphite);
  max-width: 44ch;
  margin: 0;
}

.icon-linkedin {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  padding: 56px 0 32px;
  background: #e7e4d8;
  border-top: 1px solid rgba(20, 20, 15, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-bottom p {
  margin: 0;
  color: var(--color-graphite);
}

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

.footer-links a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-near-black);
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-social a {
  gap: 8px;
}

.footer-links a .icon {
  color: #11F48A;
  transition: transform 0.25s ease, color 0.25s ease;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--color-graphite);
  transform: translateX(2px);
}

.footer-links a:hover .icon {
  transform: translateX(2px);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(20, 20, 15, 0.1);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--color-near-black);
  background: #25d366;
  color: var(--color-pure-white);
  font-weight: 800;
  gap: 0;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(10, 60, 24, 0.26);
  transition:
    width 0.35s ease,
    transform 0.3s ease,
    background-color 0.25s ease,
    box-shadow 0.3s ease;
  animation: whatsapp-pulse 2.8s ease-in-out infinite;
}

.whatsapp-float .icon-whatsapp {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

.whatsapp-float-label {
  max-width: 0;
  margin-left: 0;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  transform: translateX(8px);
  transition:
    max-width 0.35s ease,
    margin-left 0.35s ease,
    opacity 0.22s ease,
    transform 0.3s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  width: 184px;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 48px rgba(10, 60, 24, 0.3);
}

.whatsapp-float:hover .whatsapp-float-label,
.whatsapp-float:focus-visible .whatsapp-float-label {
  max-width: 96px;
  margin-left: 12px;
  opacity: 1;
  transform: translateX(0);
}

.metric-card:hover,
.service-card:hover,
.region-card:hover,
.news-card:hover,
.diff-card:hover,
.contact-card:hover,
.contact-form:hover,
.insight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 20, 15, 0.26);
}

.metric-card:hover .card-icon-badge,
.service-card:hover .card-icon-badge,
.region-card:hover .card-icon-badge,
.diff-card:hover .card-icon-badge,
.insight-card:hover .card-icon-badge {
  transform: translateY(-2px) scale(1.04);
  background: rgba(190, 255, 80, 0.22);
  border-color: rgba(20, 20, 15, 0.18);
}

.card-dark:hover .card-icon-badge {
  background: rgba(190, 255, 80, 0.12);
  border-color: rgba(190, 255, 80, 0.2);
}

.media-card:hover {
  transform: translateY(-6px);
}

.media-card:hover img {
  transform: scale(1.03);
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
  transition-delay: calc(var(--reveal-delay, 0) * 70ms);
}

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

@keyframes whatsapp-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn,
  .slider-button,
  .metric-card,
  .service-card,
  .region-card,
  .diff-card,
  .contact-card,
  .contact-form,
  .insight-card,
  .media-card,
  .whatsapp-float,
  .reveal-up,
  .site-nav > a,
  .footer-links a,
  .footer-social a {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  .btn::before,
  .site-nav > a::after,
  .whatsapp-float-label {
    transition: none !important;
  }

  .reveal-up {
    opacity: 1 !important;
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 40px;
  }

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

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

  .cards-scroller {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .differentials-layout {
    grid-template-columns: 1fr;
  }

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

  .post-hero-grid,
  .post-content-shell {
    grid-template-columns: 1fr;
  }

  .post-sidebar-card {
    position: static;
  }


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

@media (max-width: 860px) {
  :root {
    --header-height: 80px;
    --banner-height: 56px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: flex;
  }

  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 1;
    justify-self: end;
  }

  body.nav-open .site-header .menu-toggle {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-nav-panel {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    min-height: 100dvh;
    width: min(360px, calc(100vw - 72px));
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: max(env(safe-area-inset-top), 14px) 20px 24px;
    background-color: #fafaf5;
    background-image: none;
    border-left: 1px solid rgba(20, 20, 15, 0.1);
    box-shadow: -24px 0 60px rgba(20, 20, 15, 0.12);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.32s ease,
      visibility 0.24s ease;
    z-index: 44;
    touch-action: pan-y;
  }

  .mobile-nav-panel.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 1rem;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.76);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.24s ease, visibility 0.24s ease;
    z-index: 43;
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: calc(max(env(safe-area-inset-top), 14px) * -1);
    margin: calc(max(env(safe-area-inset-top), 14px) * -1) -20px 10px;
    padding: max(env(safe-area-inset-top), 14px) 20px 16px;
    border-bottom: 1px solid rgba(20, 20, 15, 0.1);
    background: #fafaf5;
    z-index: 2;
  }

  .mobile-nav-brand a {
    display: inline-flex;
    align-items: center;
  }

  .mobile-nav-brand img {
    width: 132px;
    height: auto;
  }

  .mobile-nav-close {
    display: inline-flex;
    flex: 0 0 auto;
    box-shadow: none;
  }

  .mobile-nav-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 8px;
  }

  .mobile-nav-actions .btn {
    width: 100%;
  }

  .mobile-nav-footer {
    display: grid;
    gap: 14px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(20, 20, 15, 0.1);
  }

  .mobile-nav-footer .small-label {
    justify-self: start;
  }

  body.nav-open {
    overflow: hidden;
  }

  .hero-copy h1,
  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    max-width: none;
  }

  .hero-video {
    object-position: right center;
  }

  .hero-copy h1 {
    font-size: clamp(1.85rem, 7vw, 2.45rem);
  }

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

  .region-grid,
  .insight-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: start;
  }

  .differentials-layout {
    grid-template-columns: 1fr;
  }

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

  .news-card-media {
    max-height: 220px;
  }

  .news-card h3 {
    max-width: none;
  }

  .post-article,
  .post-sidebar-card {
    padding: 24px;
  }

  .differentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .diff-visual-card {
    grid-column: auto;
    grid-row: auto;
  }

  .diff-visual-card,
  .diff-visual-video {
    min-height: 260px;
  }

  .diff-visual-content {
    padding: 18px;
  }




  .visual-placeholder {
    grid-template-columns: 1fr;
  }

  .slider-controls {
    display: none;
  }

  .cards-scroller {
    grid-auto-columns: minmax(280px, 84vw);
    overflow-x: auto;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 20px), var(--page-max-width));
  }

  .banner-inner {
    align-items: flex-start;
  }

  .hero-grid {
    padding: 32px 0 56px;
    gap: 24px;
  }

  .post-hero-copy h1 {
    max-width: none;
  }

  .hero-copy h1 {
    font-size: clamp(1.65rem, 8vw, 2.05rem);
    line-height: 1;
  }

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

  .hero-visual {
    min-height: auto;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .metric-card,
  .service-card,
  .region-card,
  .diff-card,
  .contact-card,
  .contact-form,
  .insight-card,
  .visual-placeholder {
    padding: 22px;
  }

  .section {
    padding: 72px 0;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 64px;
    height: 64px;
    padding: 0 18px;
  }

  .whatsapp-float .icon-whatsapp {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .whatsapp-float:hover,
  .whatsapp-float:focus-visible {
    width: 164px;
  }
}
