@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  color-scheme: light;
  --brand: #3aa832;
  --brand-strong: #2a8525;
  --brand-deep: #032506;
  --lime: #8fc900;
  --yellow: #f7ed4a;
  --navy: #3d3a7e;
  --ink: #0a0a0a;
  --ink-soft: #1d1d1f;
  --text: #171a17;
  --muted: #5f665f;
  --faint: #8a908b;
  --canvas: #ffffff;
  --surface: #fafafa;
  --surface-alt: #f5f5f7;
  --paper: #f6f8f2;
  --line: rgba(17, 24, 18, 0.12);
  --line-strong: rgba(17, 24, 18, 0.22);
  --on-dark: #ffffff;
  --on-dark-muted: rgba(255, 255, 255, 0.72);
  --header-bg: rgba(255, 255, 255, 0.78);
  --header-border: rgba(10, 10, 10, 0.08);
  --hero-from: #8eb0cc;
  --hero-to: #f5eadc;
  --shadow: 0 26px 80px rgba(3, 37, 6, 0.12);
  --shadow-soft: 0 14px 40px rgba(18, 28, 18, 0.08);
  --logo-filter: none;
  --font-base: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --header-height: 72px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --radius-pill: 999px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f7f8f3;
  --ink-soft: #e9ebe4;
  --text: #eef2e8;
  --muted: #b8c0b7;
  --faint: #879084;
  --canvas: #0a0d0a;
  --surface: #111610;
  --surface-alt: #171d16;
  --paper: #0e130d;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --header-bg: rgba(10, 13, 10, 0.78);
  --header-border: rgba(255, 255, 255, 0.1);
  --hero-from: #102b17;
  --hero-to: #1e221a;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.28);
  --logo-filter: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--canvas);
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.011em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: no-preference) {
  html.theme-transitioning body,
  html.theme-transitioning .site-header,
  html.theme-transitioning .primary-nav,
  html.theme-transitioning .brand,
  html.theme-transitioning .primary-nav a,
  html.theme-transitioning .section,
  html.theme-transitioning .hero,
  html.theme-transitioning .page-hero,
  html.theme-transitioning .cta-band,
  html.theme-transitioning .site-footer,
  html.theme-transitioning .btn,
  html.theme-transitioning .theme-toggle,
  html.theme-transitioning .tile,
  html.theme-transitioning [class*="-card"] {
    transition: background-color 520ms ease, border-color 520ms ease, color 520ms ease, box-shadow 520ms ease, filter 520ms ease;
  }

  html.theme-transitioning::before {
    position: fixed;
    inset: 0;
    z-index: 9999;
    content: "";
    pointer-events: none;
    background:
      radial-gradient(circle at var(--theme-x, 88vw) var(--theme-y, 36px), rgba(255, 255, 255, 0.88), transparent 18vmax),
      linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(143, 201, 0, 0.22));
    animation: theme-wash 680ms cubic-bezier(0.19, 1, 0.22, 1) both;
  }

  html.theme-transitioning.theme-transition-to-dark::before {
    background:
      radial-gradient(circle at var(--theme-x, 88vw) var(--theme-y, 36px), rgba(143, 201, 0, 0.42), transparent 18vmax),
      linear-gradient(135deg, rgba(3, 37, 6, 0.9), rgba(10, 13, 10, 0.36));
  }

  @keyframes theme-wash {
    0% {
      clip-path: circle(0 at var(--theme-x, 88vw) var(--theme-y, 36px));
      opacity: 0.82;
    }

    58% {
      opacity: 0.5;
    }

    100% {
      clip-path: circle(150vmax at var(--theme-x, 88vw) var(--theme-y, 36px));
      opacity: 0;
    }
  }
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
a,
select {
  cursor: pointer;
}

ul {
  margin: 0;
}

::selection {
  color: #fff;
  background: var(--brand);
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  transform: translateY(-150%);
  padding: 0.7rem 1rem;
  color: var(--brand-deep);
  background: var(--yellow);
  border-radius: var(--radius-pill);
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: clamp(72px, 9vw, 108px) 0;
  background: var(--canvas);
}

.section.alt {
  background: var(--surface-alt);
}

.section.tight {
  padding: clamp(52px, 7vw, 76px) 0;
}

.section.dark,
.inverse-section {
  color: var(--on-dark);
  background:
    radial-gradient(circle at 12% 0%, rgba(143, 201, 0, 0.16), transparent 32%),
    linear-gradient(135deg, var(--brand-deep), #151515);
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.1rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 650;
}

p {
  color: var(--muted);
}

code,
.mono {
  font-family: var(--font-mono);
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  line-height: 1.65;
}

.section.dark h1,
.section.dark h2,
.section.dark h3,
.inverse-section h1,
.inverse-section h2,
.inverse-section h3,
.cta-band h2,
.cta-band h3 {
  color: var(--on-dark);
}

.section.dark p,
.section.dark .lead,
.inverse-section p,
.inverse-section .lead,
.cta-band p,
.cta-band .lead {
  color: var(--on-dark-muted);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  content: "";
  background: currentColor;
  border-radius: 50%;
}

.eyebrow.on-dark,
.section.dark .eyebrow,
.inverse-section .eyebrow,
.cta-band .eyebrow {
  color: var(--lime);
}

.muted {
  color: var(--muted);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.brand img {
  width: min(206px, 52vw);
  height: auto;
  filter: var(--logo-filter);
}

.brand-text {
  color: var(--ink);
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-text span {
  color: var(--brand);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}

.primary-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.primary-nav a {
  position: relative;
  padding: 0.65rem 0.72rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  transition: color 160ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0.72rem;
  bottom: 0.4rem;
  left: 0.72rem;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--brand);
  transition: transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--ink);
}

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

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface-alt);
}

.lang-switch button {
  min-width: 34px;
  min-height: 36px;
  padding: 0 0.55rem;
  color: var(--muted);
  border: 0;
  background: transparent;
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease;
}

.lang-switch button.active,
.lang-switch button:hover {
  color: var(--brand-deep);
  background: var(--lime);
}

.btn {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.05rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 700;
  line-height: 1;
  transition: transform 140ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

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

.btn-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 26px rgba(10, 10, 10, 0.12);
}

.btn-primary:hover {
  background: var(--brand-strong);
}

[data-theme="dark"] .btn-primary {
  color: var(--brand-deep);
  background: var(--lime);
  box-shadow: 0 12px 26px rgba(143, 201, 0, 0.16);
}

[data-theme="dark"] .btn-primary:hover {
  background: #fff;
}

.btn-accent,
.btn-light {
  color: #fff;
  background: var(--brand);
}

.btn-accent:hover,
.btn-light:hover {
  background: var(--brand-strong);
}

.btn-secondary,
.btn-outline,
.btn-ghost {
  color: var(--ink);
  border-color: var(--line-strong);
  background: transparent;
  box-shadow: none;
}

.btn-secondary:hover,
.btn-outline:hover,
.btn-ghost:hover {
  background: var(--surface-alt);
  border-color: var(--ink);
}

.section.dark .btn-outline,
.section.dark .btn-ghost,
.inverse-section .btn-outline,
.inverse-section .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-on-dark,
.btn-on-image {
  color: var(--brand-deep);
  background: #fff;
}

.btn-on-dark:hover,
.btn-on-image:hover {
  background: var(--lime);
}

.btn-link,
.card-link,
.arrow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--brand);
  font-weight: 750;
}

.btn-link::after,
.card-link::after,
.arrow-btn::after {
  content: "->";
  transition: transform 180ms ease;
}

.btn-link:hover::after,
.card-link:hover::after,
.arrow-btn:hover::after {
  transform: translateX(4px);
}

.theme-toggle,
.nav-toggle,
.icon-btn {
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}

.theme-toggle {
  position: relative;
  display: inline-grid;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  place-items: center;
  overflow: hidden;
  padding: 0;
  font-size: 0;
  line-height: 0;
  transition: transform 180ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.theme-toggle::before {
  position: absolute;
  inset: 4px;
  content: "";
  background: radial-gradient(circle, rgba(143, 201, 0, 0.22), transparent 68%);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 220ms ease, transform 220ms ease;
}

.theme-toggle:hover {
  box-shadow: 0 0 0 4px rgba(143, 201, 0, 0.12);
}

.theme-toggle:hover::before {
  opacity: 1;
  transform: scale(1);
}

.theme-icon {
  position: relative;
  z-index: 1;
  display: block;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: transparent;
  border: 0;
  box-shadow: inset -5px -3px 0 0 currentColor;
  transform: rotate(-18deg);
  transform-origin: 50% 50%;
  transition: width 260ms ease, height 260ms ease, transform 360ms cubic-bezier(0.19, 1, 0.22, 1), background 260ms ease, box-shadow 260ms ease;
}

[data-theme="dark"] .theme-icon {
  width: 12px;
  height: 12px;
  background: var(--lime);
  box-shadow:
    0 -7px 0 -4px var(--lime),
    0 7px 0 -4px var(--lime),
    7px 0 0 -4px var(--lime),
    -7px 0 0 -4px var(--lime),
    5px 5px 0 -4px var(--lime),
    -5px -5px 0 -4px var(--lime),
    5px -5px 0 -4px var(--lime),
    -5px 5px 0 -4px var(--lime),
    0 0 0 4px rgba(143, 201, 0, 0.12),
    0 0 18px rgba(143, 201, 0, 0.5);
  transform: rotate(180deg);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 19px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(1px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-1px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(76px, 9vw, 116px) 0 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(58, 168, 50, 0.18), transparent 62%),
    linear-gradient(180deg, var(--hero-from) 0%, var(--hero-to) 100%);
}

.hero-clouds {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse 80% 40% at 20% 72%, rgba(255, 255, 255, 0.62), transparent 70%),
    radial-gradient(ellipse 64% 32% at 82% 58%, rgba(255, 255, 255, 0.5), transparent 70%),
    radial-gradient(ellipse 48% 25% at 50% 28%, rgba(255, 255, 255, 0.38), transparent 70%);
}

[data-theme="dark"] .hero-clouds {
  opacity: 0.32;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 24px rgba(2, 26, 4, 0.08);
  font-size: 0.84rem;
  font-weight: 650;
  backdrop-filter: blur(12px);
}

[data-theme="dark"] .hero-badge {
  background: rgba(17, 22, 16, 0.78);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-badge .pill,
.badge,
.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.62rem;
  color: #fff;
  background: var(--brand);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(3.4rem, 8.2vw, 6.7rem);
  letter-spacing: -0.055em;
}

.hero h1 .accent,
.hero h1 span,
.page-hero h1 span {
  color: var(--brand);
}

.hero-sub {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.36rem);
  line-height: 1.48;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-art {
  position: relative;
  width: min(100%, 1080px);
  margin-top: 22px;
  overflow: hidden;
  background: #111;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 -8px 60px rgba(2, 26, 4, 0.18);
  aspect-ratio: 16 / 8.5;
}

.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
}

.hero-art-chrome {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent);
}

.hero-art-chrome .dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}

.trust-band {
  padding: 56px 0;
  background: var(--canvas);
  border-bottom: 1px solid var(--line);
}

.partner-focus {
  background:
    radial-gradient(circle at 12% 0%, rgba(143, 201, 0, 0.16), transparent 34%),
    linear-gradient(180deg, var(--canvas), var(--surface-alt));
}

.trust-label {
  margin: 0 0 30px;
  color: var(--faint);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-strip,
.logo-strip,
.partner-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
  gap: 1px;
}

.trust-strip div,
.trust-strip a,
.logo-strip div,
.logo-strip a,
.partner-strip div,
.partner-strip a {
  display: grid;
  min-height: 124px;
  place-items: center;
  padding: 24px;
  background: var(--canvas);
}

.trust-strip img,
.logo-strip img,
.partner-strip img {
  width: auto;
  max-width: 150px;
  max-height: 64px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.58);
  transition: filter 180ms ease;
}

.trust-strip div:hover img,
.logo-strip div:hover img,
.partner-strip div:hover img {
  filter: grayscale(0) opacity(1);
}

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

.partner-card,
.solution-card,
.lineup-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--canvas);
  box-shadow: var(--shadow-soft);
}

.partner-card::after,
.solution-card::after,
.lineup-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  content: "";
  background: radial-gradient(circle, rgba(143, 201, 0, 0.2), transparent 68%);
  border-radius: 50%;
}

.partner-card.accent-card {
  color: var(--on-dark);
  background:
    radial-gradient(circle at 82% 14%, rgba(143, 201, 0, 0.28), transparent 34%),
    linear-gradient(135deg, var(--brand-deep), #151515);
}

.partner-card.accent-card h2,
.partner-card.accent-card p,
.partner-card.accent-card li {
  color: var(--on-dark);
}

.partner-logo {
  display: inline-grid;
  min-width: 190px;
  min-height: 64px;
  place-items: center;
  margin-bottom: 1.25rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.partner-logo img {
  width: auto;
  max-width: 210px;
  max-height: 60px;
  object-fit: contain;
}

.card-partner-logo {
  position: relative;
  z-index: 1;
  display: inline-grid;
  min-width: 116px;
  min-height: 42px;
  place-items: center;
  margin-bottom: 0.9rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.card-partner-logo img {
  width: auto;
  max-width: 112px;
  max-height: 28px;
  object-fit: contain;
}

.card-partner-logo.alcolina img {
  max-height: 24px;
}

.card-body .card-partner-logo {
  align-self: flex-start;
}

.partner-kicker {
  margin: 0 0 0.35rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.compact {
  display: grid;
  gap: 0.55rem;
  padding-left: 0;
}

.client-band {
  padding: 54px 0;
  overflow: hidden;
  background: var(--canvas);
  border-bottom: 1px solid var(--line);
}

.client-carousel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-alt);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-track {
  display: flex;
  width: max-content;
  animation: client-marquee 30s linear infinite;
}

.client-carousel:hover .client-track {
  animation-play-state: paused;
}

.client-card {
  display: grid;
  width: clamp(170px, 18vw, 230px);
  min-height: 116px;
  place-items: center;
  margin: 1px;
  padding: 22px;
  border-right: 1px solid var(--line);
  background: var(--canvas);
}

.client-card img {
  width: auto;
  max-width: 155px;
  max-height: 56px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.68);
  transition: filter 180ms ease, transform 180ms ease;
}

.client-card:hover img {
  filter: grayscale(0) opacity(1);
  transform: translateY(-2px);
}

.client-card .logo-coca-cola {
  max-width: 164px;
  max-height: 60px;
}

.client-card .logo-scania {
  max-width: 164px;
  max-height: 72px;
}

.client-card .logo-balcanes {
  max-width: 118px;
  max-height: 76px;
}

.client-card .logo-citromax {
  max-width: 88px;
  max-height: 78px;
}

.client-card .logo-arcor {
  max-width: 128px;
  max-height: 72px;
}

.client-card .logo-exar {
  max-width: 150px;
  max-height: 58px;
}

.client-card .logo-georgalos {
  max-width: 152px;
  max-height: 56px;
}

.client-card .logo-seaboard {
  max-width: 148px;
  max-height: 54px;
}

.client-card .logo-veracruz {
  max-width: 128px;
  max-height: 72px;
}

.client-wordmark {
  color: var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 850;
  line-height: 1.05;
  text-align: center;
  letter-spacing: -0.04em;
}

.client-wordmark.coca {
  color: #d71920;
  font-style: italic;
}

.client-wordmark.scania {
  color: #041e42;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.client-wordmark.citromax {
  color: #226f3a;
}

@keyframes client-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.partner-solutions {
  background: var(--canvas);
}

.solution-matrix,
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.source-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.38rem 0.68rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.source-badge.phibro {
  color: #fff;
  background: #0a4c7a;
}

.source-badge.alcolina {
  color: var(--brand-deep);
  background: rgba(143, 201, 0, 0.28);
}

.source-badge.cores {
  color: var(--on-dark);
  background: var(--brand-deep);
}

.tile-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px;
  background: var(--surface-alt);
}

.tile-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.tile {
  position: relative;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(34px, 4vw, 56px) clamp(26px, 4vw, 48px) 0;
  background: var(--canvas);
  border-radius: var(--radius-xl);
}

.tile.parchment {
  background: var(--paper);
}

.tile.dark {
  color: #fff;
  background: #1d1d1f;
}

.tile.dark h2,
.tile.dark h3,
.tile.dark p {
  color: #fff;
}

.tile.full-bleed {
  grid-column: 1 / -1;
  min-height: 620px;
}

.tile-eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 700;
}

.tile.dark .tile-eyebrow {
  color: var(--lime);
}

.tile h2 {
  max-width: 16ch;
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
}

.tile h3 {
  max-width: 16ch;
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
}

.tile .tagline {
  max-width: 48ch;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.tile.dark .tagline {
  color: rgba(255, 255, 255, 0.72);
}

.tile-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.tile-image {
  position: relative;
  height: 290px;
  margin: auto -48px 0;
  overflow: hidden;
  background: var(--surface-alt);
}

.tile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.5fr);
  gap: 46px;
  align-items: end;
  margin-bottom: 52px;
}

.section-head.center {
  display: block;
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.feature-grid,
.service-grid,
.product-grid,
.value-grid,
.process-grid,
.contact-grid,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card,
.service-card,
.product-card,
.value-card,
.process-card,
.contact-card,
.pillar-card,
.private-card {
  position: relative;
  overflow: hidden;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.value-card,
.process-card,
.pillar-card,
.private-card,
.contact-card {
  padding: 28px;
}

.feature-card::before,
.service-card::before,
.product-card::before,
.value-card::before,
.process-card::before,
.pillar-card::before,
.private-card::before,
.contact-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 74px;
  height: 5px;
  content: "";
  background: var(--brand);
}

.feature-card p,
.service-card p,
.product-card p,
.value-card p,
.process-card p,
.contact-card p,
.pillar-card p,
.private-card p {
  color: var(--muted);
}

.section.dark .feature-card,
.section.dark .service-card,
.section.dark .product-card,
.section.dark .value-card,
.section.dark .process-card,
.section.dark .contact-card,
.section.dark .pillar-card,
.section.dark .private-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.section.dark .feature-card p,
.section.dark .service-card p,
.section.dark .product-card p,
.section.dark .value-card p,
.section.dark .process-card p,
.section.dark .contact-card p,
.section.dark .pillar-card p,
.section.dark .private-card p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--brand-strong);
  background: rgba(58, 168, 50, 0.13);
  border-radius: 14px;
}

.service-card,
.product-card,
.area-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.service-card img,
.product-card img,
.area-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.area-card .photo {
  position: relative;
  overflow: hidden;
}

.area-card .badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
}

.area-card .meta,
.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.area-card .meta h3,
.card-body h3 {
  margin-bottom: 10px;
}

.area-card .sub {
  color: var(--muted);
}

.area-card .row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  color: var(--ink);
  font-weight: 700;
}

.index,
.process-card .index,
.pillar-card .index {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 26px;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-weight: 800;
}

.split,
.cta-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.image-frame {
  position: relative;
}

.image-frame::before {
  position: absolute;
  inset: 22px -16px -16px 22px;
  z-index: 0;
  content: "";
  border: 1px solid rgba(58, 168, 50, 0.32);
  border-radius: var(--radius-xl);
}

.image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.image-frame.tall img {
  aspect-ratio: 3 / 4;
}

.image-note {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  max-width: 280px;
  padding: 18px;
  color: #fff;
  background: rgba(3, 37, 6, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}

.image-note strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--lime);
}

.check-list,
.plain-list,
.bullet-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li,
.plain-list li,
.bullet-list li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
}

.check-list li::before,
.plain-list li::before,
.bullet-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--lime);
  border: 2px solid var(--brand);
  border-radius: 50%;
}

.section.dark .check-list li,
.section.dark .plain-list li,
.section.dark .bullet-list li {
  color: rgba(255, 255, 255, 0.76);
}

.stats-band {
  padding: clamp(72px, 9vw, 100px) 0;
  color: #fff;
  background: var(--brand-deep);
}

.stats-head {
  margin-bottom: 50px;
}

.stats-head h2,
.stats-band h2 {
  color: #fff;
}

.stats-grid,
.metrics-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.16);
}

.stat,
.metric {
  padding: 30px 26px;
  background: rgba(255, 255, 255, 0.06);
}

.metric {
  background: var(--canvas);
}

.stat .num,
.metric strong {
  display: block;
  color: var(--lime);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.metric strong {
  color: var(--brand);
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.stat .lbl,
.metric span {
  display: block;
  max-width: 24ch;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.metric span {
  color: var(--muted);
}

.ticker {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink-soft);
}

.ticker::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.08));
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 52px;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.88);
  animation: ticker 36s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 52px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span::after {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--lime);
  border-radius: 999px;
}

[data-theme="dark"] .ticker {
  background:
    linear-gradient(180deg, rgba(21, 28, 20, 0.96), rgba(8, 12, 8, 0.96));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(143, 201, 0, 0.08), inset 0 -1px 0 rgba(143, 201, 0, 0.06);
}

[data-theme="dark"] .ticker::before {
  background:
    linear-gradient(90deg, rgba(10, 13, 10, 0.92), transparent 10%, transparent 90%, rgba(10, 13, 10, 0.92)),
    linear-gradient(180deg, rgba(143, 201, 0, 0.04), transparent 42%, transparent 58%, rgba(143, 201, 0, 0.04));
}

[data-theme="dark"] .ticker-track {
  color: rgba(238, 242, 232, 0.82);
}

[data-theme="dark"] .ticker span::after {
  background: #9ed61a;
  box-shadow: 0 0 0 4px rgba(158, 214, 26, 0.12);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 104px) 0;
  background:
    radial-gradient(circle at 84% 16%, rgba(58, 168, 50, 0.14), transparent 32%),
    linear-gradient(180deg, var(--surface-alt), var(--canvas));
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 76%);
  opacity: 0.5;
}

.page-hero .container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  gap: 46px;
  align-items: end;
}

.breadcrumb {
  margin-bottom: 24px;
  color: var(--faint);
  font-size: 0.88rem;
  font-weight: 700;
}

.breadcrumb a:hover {
  color: var(--brand);
}

.hero-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

[data-theme="dark"] .hero-card {
  background: rgba(17, 22, 16, 0.72);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 104px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 18% 0%, rgba(143, 201, 0, 0.26), transparent 34%),
    linear-gradient(135deg, var(--brand-deep), #111);
}

.cta-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
}

.section:not(.dark) .cta-card {
  background: var(--canvas);
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.section:not(.dark) .cta-card p,
.section:not(.dark) .cta-card a:not(.btn) {
  color: var(--muted);
}

.cta-card .tag,
.cta-card .label {
  color: var(--lime);
  background: rgba(143, 201, 0, 0.1);
}

.cta-card p,
.cta-card a:not(.btn) {
  color: rgba(255, 255, 255, 0.82);
}

.form-panel {
  padding: clamp(28px, 4vw, 42px);
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.response-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.response-screen .container {
  width: min(100% - 40px, 1180px);
}

.response-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.response-panel,
.response-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 4vw, 46px);
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.response-panel::after,
.response-card::after {
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 156px;
  height: 156px;
  content: "";
  background: radial-gradient(circle, rgba(143, 201, 0, 0.18), transparent 70%);
  border-radius: 50%;
}

.response-panel > *,
.response-card > * {
  position: relative;
  z-index: 1;
}

.response-panel h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
}

.response-panel .lead {
  max-width: 22ch;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
}

.response-mark {
  display: inline-grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 1.4rem;
  border-radius: 22px;
}

.response-mark span {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.response-mark-success {
  color: #15551b;
  background: rgba(58, 168, 50, 0.12);
  border: 1px solid rgba(58, 168, 50, 0.24);
}

.response-mark-error {
  color: #7d2020;
  background: rgba(204, 51, 51, 0.12);
  border: 1px solid rgba(204, 51, 51, 0.24);
}

.response-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

.response-side {
  display: grid;
}

.response-kicker {
  margin: 0 0 0.85rem;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.response-card h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.response-card p:last-of-type {
  margin-bottom: 0;
}

.response-list {
  margin-top: 1.4rem;
}

.response-card .form-note {
  margin-top: 1.5rem;
}

.response-card .form-note a {
  color: inherit;
  font-weight: 800;
}

@media (max-width: 900px) {
  .response-screen {
    min-height: auto;
  }

  .response-shell {
    grid-template-columns: 1fr;
  }

  .response-panel .lead {
    max-width: none;
  }
}

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

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

.field.full,
.hp-field {
  grid-column: 1 / -1;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 0.82rem 0.95rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.status-success,
.status-warning,
.status-error,
.alert-box {
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 650;
}

.status-success,
.alert-success {
  color: #15551b;
  background: rgba(58, 168, 50, 0.12);
}

.status-warning,
.alert-warning {
  color: #6a5500;
  background: rgba(247, 237, 74, 0.28);
}

.status-error,
.alert-error {
  color: #7d2020;
  background: rgba(204, 51, 51, 0.12);
}

.contact-stack {
  display: grid;
  gap: 18px;
}

.quote-panel {
  padding: clamp(28px, 5vw, 48px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
}

.quote-panel blockquote {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.quote-panel cite {
  color: var(--lime);
  font-style: normal;
  font-weight: 800;
}

.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.private-shell {
  display: grid;
  gap: 24px;
}

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

.user-chip {
  display: grid;
  min-width: 150px;
  padding: 0.46rem 0.75rem;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 14px;
  line-height: 1.2;
}

.user-chip strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.user-chip span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-logout {
  display: none;
}

.document-viewer-card {
  padding: 0;
}

.document-viewer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px;
}

.document-viewer-note {
  margin: 0;
  padding: 0 24px 20px;
}

.document-viewer-frame {
  width: 100%;
  min-height: 76vh;
  border: 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer {
  padding: 72px 0 0;
  color: var(--text);
  background: var(--canvas);
  border-top: 1px solid var(--line);
}

.footer-display {
  margin-bottom: 42px;
  color: var(--ink);
  font-size: clamp(4.2rem, 14vw, 13rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.footer-logo {
  max-width: 210px;
  margin-bottom: 18px;
  filter: var(--logo-filter);
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.footer-links a,
.social-link {
  color: var(--muted);
  font-weight: 650;
}

.footer-links a:hover,
.social-link:hover {
  color: var(--brand);
}

.social-links,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-link {
  padding: 0.5rem 0.75rem;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  padding: 0;
  color: #fff;
  background: #128c3f;
  border-radius: var(--radius-pill);
  box-shadow: 0 18px 42px rgba(18, 140, 63, 0.34);
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(18, 140, 63, 0.42);
}

.wa-mark {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: #fff;
  border-radius: 50%;
}

.wa-mark::before {
  width: 20px;
  height: 20px;
  content: "";
  background: #128c3f;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.04 3.2A12.75 12.75 0 0 0 5.1 22.5L3.6 28.8l6.46-1.7a12.72 12.72 0 0 0 5.98 1.52h.01A12.72 12.72 0 1 0 16.04 3.2Zm0 22.98h-.01a10.3 10.3 0 0 1-5.24-1.44l-.38-.23-3.83 1.01 1.02-3.73-.25-.39a10.3 10.3 0 1 1 8.69 4.78Zm5.65-7.71c-.31-.16-1.84-.91-2.12-1.01-.29-.11-.5-.16-.71.16-.21.31-.81 1-.99 1.2-.18.21-.36.23-.67.08-.31-.16-1.31-.48-2.49-1.54a9.35 9.35 0 0 1-1.72-2.14c-.18-.31-.02-.48.14-.64.14-.14.31-.36.47-.54.16-.18.21-.31.31-.52.1-.21.05-.39-.03-.54-.08-.16-.71-1.71-.97-2.34-.26-.62-.52-.53-.71-.54h-.6c-.21 0-.54.08-.83.39-.29.31-1.09 1.07-1.09 2.6s1.12 3.01 1.28 3.22c.16.21 2.2 3.36 5.33 4.72.75.32 1.33.51 1.78.66.75.24 1.43.2 1.97.12.6-.09 1.84-.75 2.1-1.48.26-.73.26-1.35.18-1.48-.08-.13-.29-.21-.6-.36Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.04 3.2A12.75 12.75 0 0 0 5.1 22.5L3.6 28.8l6.46-1.7a12.72 12.72 0 0 0 5.98 1.52h.01A12.72 12.72 0 1 0 16.04 3.2Zm0 22.98h-.01a10.3 10.3 0 0 1-5.24-1.44l-.38-.23-3.83 1.01 1.02-3.73-.25-.39a10.3 10.3 0 1 1 8.69 4.78Zm5.65-7.71c-.31-.16-1.84-.91-2.12-1.01-.29-.11-.5-.16-.71.16-.21.31-.81 1-.99 1.2-.18.21-.36.23-.67.08-.31-.16-1.31-.48-2.49-1.54a9.35 9.35 0 0 1-1.72-2.14c-.18-.31-.02-.48.14-.64.14-.14.31-.36.47-.54.16-.18.21-.31.31-.52.1-.21.05-.39-.03-.54-.08-.16-.71-1.71-.97-2.34-.26-.62-.52-.53-.71-.54h-.6c-.21 0-.54.08-.83.39-.29.31-1.09 1.07-1.09 2.6s1.12 3.01 1.28 3.22c.16.21 2.2 3.36 5.33 4.72.75.32 1.33.51 1.78.66.75.24 1.43.2 1.97.12.6-.09 1.84-.75 2.1-1.48.26-.73.26-1.35.18-1.48-.08-.13-.29-.21-.6-.36Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.floating-whatsapp .wa-text {
  display: none;
}

.reveal {
  transform: translateY(18px);
  opacity: 0;
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1080px) {
  .lang-switch {
    order: -1;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - var(--header-height));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 18px 20px 26px;
    overflow-y: auto;
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
    backdrop-filter: blur(22px);
  }

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

  .primary-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .primary-nav a::after {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .header-actions .btn {
    display: none;
  }

  .nav-logout {
    display: block;
  }

  .section-head,
  .split,
  .split.reverse,
  .cta-grid,
  .contact-layout,
  .page-hero .container {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .service-grid,
  .product-grid,
  .value-grid,
  .process-grid,
  .contact-grid,
  .cards-grid,
  .private-grid,
  .partner-focus-grid,
  .solution-matrix,
  .lineup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .stats-grid,
  .metrics-band,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand img {
    width: min(172px, 52vw);
  }

  .theme-toggle .theme-label {
    display: none;
  }

  .lang-switch button {
    min-width: 30px;
    min-height: 34px;
    padding: 0 0.45rem;
  }

  .user-chip {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-badge {
    align-items: flex-start;
    border-radius: 18px;
  }

  .hero-art {
    aspect-ratio: 4 / 3;
  }

  .tile {
    min-height: auto;
  }

  .tile-image {
    height: 230px;
    margin-right: -26px;
    margin-left: -26px;
  }

  .feature-grid,
  .service-grid,
  .product-grid,
  .value-grid,
  .process-grid,
  .contact-grid,
  .cards-grid,
  .private-grid,
  .partner-focus-grid,
  .solution-matrix,
  .lineup-grid,
  .stats-grid,
  .metrics-band,
  .trust-strip,
  .logo-strip,
  .partner-strip,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .image-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -44px 18px 0;
  }

  .download-card,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 480px) {
  .nav-shell {
    gap: 6px;
  }

  .brand img {
    width: min(116px, 31vw);
  }

  .header-actions {
    gap: 6px;
  }

  .theme-toggle {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
  }

  .lang-switch button {
    min-width: 24px;
    min-height: 32px;
    padding: 0 0.2rem;
    font-size: 0.6rem;
  }

  .lang-switch button[data-lang="pt"] {
    min-width: 39px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
