:root {
  --green-main: #62ab26;
  --green-alt: #62ab26;
  --gray-900: #111111;
  --gray-700: #4a4a4a;
  --gray-500: #7a7a7a;
  --white: #ffffff;
  --surface: #ffffff;
  --surface-alt: #f3f7f4;
  --border: rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 24px 60px rgba(17, 17, 17, 0.12);
  --shadow-md: 0 18px 40px rgba(17, 17, 17, 0.08);
  --radius-lg: 1.5rem;
  --radius-md: 1.1rem;
  --radius-sm: 0.9rem;
  --container: 1200px;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI Variable", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--gray-700);
  line-height: 1.6;
  background:
    radial-gradient(circle at top right, rgba(98, 171, 38, 0.12), transparent 32%),
    linear-gradient(160deg, rgba(98, 171, 38, 0.08), transparent 30%),
    #f8fbf9;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  color: var(--gray-900);
  line-height: 1.08;
  font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Segoe UI", sans-serif;
  letter-spacing: 0.015em;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--gray-900);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--green-main);
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 2px;
  background: currentColor;
}

.panel-kicker {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.section,
.hero,
.page-hero {
  position: relative;
  overflow: clip;
}

.section {
  padding: 4.5rem 0;
}

.section--tight {
  padding: 3rem 0;
}

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

.section--dark {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(98, 171, 38, 0.08), transparent 28%),
    linear-gradient(150deg, #0d1410, #111111 60%, #18251b);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--dark .section-copy,
.section--dark p,
.section--dark li {
  color: rgba(255, 255, 255, 0.75);
}

.section-title,
.hero h1,
.page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 4.6rem);
}

.section-copy {
  max-width: 62ch;
  color: var(--gray-500);
}

.section-intro {
  display: grid;
  gap: 0.2rem;
}

.section-intro--center {
  text-align: center;
  justify-items: center;
  margin-bottom: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.3rem;
  padding: 0.95rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: var(--gray-900);
  color: var(--white);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--accent {
  background: linear-gradient(135deg, var(--green-alt), var(--green-main));
}

.button--small {
  min-height: 2.8rem;
  padding: 0.8rem 1.1rem;
  font-size: 0.95rem;
}

.button--ghost {
  background: transparent;
  color: var(--gray-900);
  border: 1px solid rgba(17, 17, 17, 0.14);
  box-shadow: none;
}

.hero .button--ghost,
.section--dark .button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 16px 35px rgba(17, 17, 17, 0.08);
}

.header-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.25rem;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 3.35rem;
  object-fit: contain;
}

.site-header .brand-logo {
  height: 5.25rem;
}

.brand--footer .brand-logo {
  height: 3.4rem;
  padding: 0.25rem 0.4rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  transform: none;
}

.brand-mark {
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(145deg, var(--green-alt), var(--green-main));
  box-shadow: 0 14px 28px rgba(98, 171, 38, 0.24);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 0.8rem;
  height: 160%;
  top: -25%;
  background: rgba(255, 255, 255, 0.88);
  transform: skew(-24deg);
}

.brand-mark::before {
  left: 0.9rem;
}

.brand-mark::after {
  left: 1.7rem;
  opacity: 0.65;
}

.brand-copy strong {
  display: block;
  font-size: 1.15rem;
  color: var(--gray-900);
  letter-spacing: 0.05em;
}

.brand-copy small {
  display: block;
  color: var(--gray-500);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.nav-toggle {
  display: inline-grid;
  gap: 0.3rem;
  padding: 0.65rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0.9rem;
  background: var(--white);
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 0.3rem;
  width: 8.8rem;
  padding: 0.32rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.06);
}

.language-switcher__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.35rem;
  padding: 0.45rem 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--gray-500);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.language-switcher__button:hover,
.language-switcher__button:focus-visible {
  background: rgba(98, 171, 38, 0.08);
  color: var(--gray-900);
}

.language-switcher__button.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-alt), var(--green-main));
  box-shadow: 0 12px 24px rgba(98, 171, 38, 0.24);
}

.nav-toggle span {
  width: 1.35rem;
  height: 2px;
  background: var(--gray-900);
  transition: transform var(--transition), opacity var(--transition);
}

.site-nav {
  position: absolute;
  inset: calc(100% + 0.75rem) 0 auto;
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.6rem);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

body.nav-open .site-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a {
  padding: 0.8rem 1rem;
  border-radius: 0.9rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(98, 171, 38, 0.08);
  color: var(--gray-900);
}

.site-nav a.is-current {
  background: var(--gray-900);
  color: var(--white);
}

.nav-cta {
  width: 100%;
  margin-top: 0.35rem;
}

.hero {
  padding: clamp(5rem, 10vw, 7rem) 0 4.5rem;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(98, 171, 38, 0.16), transparent 35%),
    linear-gradient(310deg, rgba(98, 171, 38, 0.08), transparent 25%),
    linear-gradient(145deg, rgba(18, 26, 21, 0.85), rgba(17, 17, 17, 0.85) 58%, rgba(24, 40, 28, 0.85)),
    url("../images/fundo1.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 68% 100%, 0 100%);
  z-index: -2;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  width: min(42rem, 72vw);
  aspect-ratio: 1;
  right: -8rem;
  top: -10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 171, 38, 0.24), transparent 65%);
  filter: blur(8px);
  z-index: -1;
}

.hero-grid,
.split-layout,
.proof-layout,
.contact-layout,
.network-layout {
  display: grid;
  gap: 1.5rem;
}

.hero-copy p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.78);
}

.hero-copy h1 {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.5rem;
}

.hero-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-tags li {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.hero-visual,
.visual-stack,
.metric-grid,
.grid-cards {
  display: grid;
  gap: 1rem;
}

.visual-card,
.mini-card,
.metric-card,
.card,
.detail-panel,
.hero-panel,
.proof-panel,
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.visual-card,
.detail-panel,
.hero-panel,
.proof-panel,
.form-card {
  padding: 1.6rem;
}

.visual-card--lead {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(98, 171, 38, 0.18), transparent 42%),
    linear-gradient(150deg, #101713, #1a281d);
  border-color: rgba(255, 255, 255, 0.08);
}

.visual-card--lead h2,
.visual-card--lead p {
  color: var(--white);
}

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

.mini-card {
  padding: 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.mini-card span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.55rem;
}

.metric-strip {
  margin-top: -2.2rem;
  position: relative;
  z-index: 3;
}

.metric-card {
  padding: 1.35rem;
}

.metric-card span {
  display: block;
  color: var(--green-main);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.metric-card strong {
  display: block;
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 0.2rem;
}

.card {
  padding: 1.45rem;
}

.card p {
  color: var(--gray-500);
}

.card ul {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.card li {
  position: relative;
  padding-left: 1rem;
  color: var(--gray-500);
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--green-main);
}

.card-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(98, 171, 38, 0.18), rgba(98, 171, 38, 0.06));
}

.card-icon::before,
.card-icon::after {
  content: "";
  position: absolute;
  background: var(--green-main);
  border-radius: 999px;
}

.card-icon::before {
  width: 1.2rem;
  height: 0.18rem;
  transform: rotate(-28deg);
}

.card-icon::after {
  width: 0.18rem;
  height: 1.2rem;
  transform: rotate(-28deg);
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--gray-700);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.75rem;
  height: 0.45rem;
  border-left: 2px solid var(--green-main);
  border-bottom: 2px solid var(--green-main);
  transform: rotate(-45deg);
}

.hero-panel-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.hero-panel-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.hero-panel-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-panel-list strong {
  color: var(--gray-900);
}

.page-hero {
  padding: 4.2rem 0 3rem;
  background:
    linear-gradient(135deg, rgba(98, 171, 38, 0.08), transparent 28%),
    linear-gradient(160deg, #eef7f0, #ffffff 58%, #eff4f0);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.separator {
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.proof-panel,
.contact-panel {
  position: relative;
  overflow: hidden;
}

.proof-panel::after,
.contact-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -28% 42%;
  height: 11rem;
  background: linear-gradient(135deg, rgba(98, 171, 38, 0.14), transparent);
  transform: skewY(-16deg);
}

.ops-nodes,
.contact-list,
.footer-links {
  display: grid;
  gap: 0.8rem;
}

.node-badge,
.contact-item {
  position: relative;
  z-index: 1;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(17, 17, 17, 0.05);
}

.node-badge {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.node-badge span,
.contact-item span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-panel {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(98, 171, 38, 0.16), transparent 34%),
    linear-gradient(150deg, #101713, #1a281d);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}

.contact-panel h2,
.contact-panel p,
.contact-item a,
.contact-item p {
  color: var(--white);
}

.contact-item {
  border-left: 3px solid var(--green-alt);
  background: rgba(255, 255, 255, 0.06);
}

.contact-item span {
  color: rgba(255, 255, 255, 0.68);
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

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

.field label {
  font-weight: 600;
  color: var(--gray-900);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 1rem;
  background: #f7faf8;
  color: var(--gray-900);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: rgba(98, 171, 38, 0.45);
  box-shadow: 0 0 0 4px rgba(98, 171, 38, 0.1);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #be3f3f;
  box-shadow: 0 0 0 4px rgba(190, 63, 63, 0.1);
}

.field.is-valid input,
.field.is-valid select,
.field.is-valid textarea {
  border-color: rgba(98, 171, 38, 0.42);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.checkbox-row input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  accent-color: var(--green-main);
}

.field-message {
  min-height: 1rem;
  font-size: 0.84rem;
  color: #be3f3f;
}

.form-feedback {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(98, 171, 38, 0.15);
  background: rgba(98, 171, 38, 0.08);
  color: var(--green-main);
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback[data-state="error"] {
  background: rgba(190, 63, 63, 0.08);
  border-color: rgba(190, 63, 63, 0.16);
  color: #a93535;
}

.form-feedback[data-state="pending"] {
  background: rgba(17, 17, 17, 0.06);
  border-color: rgba(17, 17, 17, 0.1);
  color: var(--gray-900);
}

.form-note {
  margin-top: 1rem;
  color: var(--gray-500);
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.map-layout {
  display: grid;
  gap: 1rem;
}

/* Contact page: force MAP -> LOCATIONS -> NETWORK vertical flow */
.map-layout--stacked {
  grid-template-columns: 1fr;
}

.map-layout--stacked>* {
  grid-column: 1 / -1;
}

.map-embed {
  min-height: 24rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-sm);
  background: #e9efe9;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 24rem;
  border: 0;
}

.location-grid {
  display: grid;
  gap: 1rem;
}

.location-card {
  display: grid;
  gap: 0.55rem;
  padding: 1.15rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.location-card small {
  color: var(--green-main);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-card strong {
  font-size: 1.1rem;
}

.location-card p {
  margin: 0;
  color: var(--gray-500);
}

.location-card a {
  font-weight: 700;
}

.network-board {
  position: relative;
  min-height: 26rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(98, 171, 38, 0.12), transparent 28%),
    linear-gradient(150deg, #101713, #18251b);
  border: 1px solid rgba(98, 171, 38, 0.12);
}

.network-board::before {
  content: "";
  position: absolute;
  inset: 1rem;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 2rem 2rem;
  mask-image: linear-gradient(180deg, #000, transparent 96%);
}

.network-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(98, 171, 38, 0.1), rgba(98, 171, 38, 0.92), rgba(98, 171, 38, 0.08));
  transform-origin: left center;
}

.line--1 {
  left: 21%;
  top: 26%;
  width: 44%;
  transform: rotate(25deg);
}

.line--2 {
  left: 39%;
  top: 63%;
  width: 28%;
  transform: rotate(-28deg);
}

.network-node {
  position: absolute;
  z-index: 1;
  width: min(12rem, 68%);
  padding: 1rem;
  border-radius: 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.network-node small {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.network-node strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
}

.network-node p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.node--bolzano {
  top: 10%;
  left: 5%;
}

.node--monza {
  top: 10%;
  right: 3%;
}

.node--bernate {
  bottom: 8%;
  left: 35%;
}

.flow-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.flow-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-shell {
  padding: 3.5rem 0 5rem;
}

.admin-grid {
  display: grid;
  gap: 1.5rem;
}

.admin-panel-grid {
  display: grid;
  gap: 1.5rem;
}

.admin-card {
  display: grid;
  gap: 1rem;
}

.admin-card--narrow {
  max-width: 34rem;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.admin-metrics {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
}

.status-list {
  display: grid;
  gap: 0.85rem;
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.03);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-badge--sent,
.status-badge--ok,
.status-badge--success {
  background: rgba(98, 171, 38, 0.12);
  color: var(--green-main);
}

.status-badge--failed,
.status-badge--error {
  background: rgba(190, 63, 63, 0.12);
  color: #a93535;
}

.status-badge--mail_unavailable {
  background: rgba(17, 17, 17, 0.08);
  color: var(--gray-700);
}

.table-wrap {
  overflow: auto;
  border-radius: 1.1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: var(--white);
}

.admin-table {
  width: 100%;
  min-width: 52rem;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  background: rgba(17, 17, 17, 0.03);
}

.admin-table tbody tr:last-child td {
  border-bottom: 0;
}

.admin-card .flow-list li {
  border-bottom-color: rgba(17, 17, 17, 0.08);
}

.flow-step {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-alt), var(--green-main));
  color: var(--white);
  font-weight: 700;
}

.cta-band {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(98, 171, 38, 0.14);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(98, 171, 38, 0.12), transparent 28%),
    linear-gradient(145deg, #111111, #1b291e);
  box-shadow: var(--shadow-lg);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.76);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.site-footer {
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(135deg, rgba(98, 171, 38, 0.08), transparent 26%),
    linear-gradient(155deg, #101713, #111111 58%, #17261b);
}

.site-footer .brand-copy strong,
.site-footer .footer-title {
  color: var(--white);
}

.footer-grid,
.footer-bottom {
  display: grid;
  gap: 1.5rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.94rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  color: var(--white);
  font-weight: 700;
  background: linear-gradient(135deg, var(--green-alt), var(--green-main));
  box-shadow: 0 18px 36px rgba(98, 171, 38, 0.32);
}

.floating-whatsapp::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--white);
}

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

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

@media (min-width: 700px) {

  .metric-grid,
  .grid-cards--2,
  .grid-cards--3,
  .grid-cards--4,
  .grid-cards--6,
  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 960px) {
  body.nav-open {
    overflow: auto;
  }

  .nav-toggle {
    display: none;
  }

  .header-tools {
    margin-left: 0;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-cta {
    width: auto;
    margin-top: 0;
    margin-left: 0.35rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
    gap: 2.5rem;
    align-items: center;
  }

  .split-layout,
  .proof-layout,
  .network-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    align-items: start;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 2rem;
    align-items: start;
  }

  .map-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
  }

  .admin-panel-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }

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

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

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

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

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
  }

  .footer-bottom,
  .cta-band {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}