:root {
  --ink: #f8fff4;
  --muted: #bdcbb8;
  --paper: #040604;
  --panel: #080b07;
  --panel-soft: #0d120c;
  --line: rgba(100, 255, 23, 0.34);
  --accent: #57e500;
  --accent-strong: #75ff17;
  --electric: #18d7ff;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.56);
  --glow: 0 0 18px rgba(87, 229, 0, 0.32), 0 0 58px rgba(87, 229, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 14% 4%, rgba(87, 229, 0, 0.2), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(24, 215, 255, 0.1), transparent 24rem),
    linear-gradient(180deg, #040604 0%, #081008 48%, #040604 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(87, 229, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 229, 0, 0.035) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 76%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 45%, rgba(87, 229, 0, 0.05) 46%, transparent 48% 100%),
    radial-gradient(circle at 8% 28%, rgba(87, 229, 0, 0.06), transparent 12rem),
    radial-gradient(circle at 92% 76%, rgba(87, 229, 0, 0.05), transparent 13rem);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(87, 229, 0, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    rgba(4, 6, 4, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.brand,
.footer-brand,
.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-logo-full {
  width: clamp(300px, 34vw, 520px);
  height: 100px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  box-shadow: none;
}

.footer-logo-full {
  width: min(260px, 72vw);
  height: 72px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  box-shadow: none;
}

.brand img,
.footer-brand img,
.hero-brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--glow);
}

.brand img.brand-logo-full,
.footer-brand img.footer-logo-full {
  width: clamp(300px, 34vw, 520px);
  height: 100px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  box-shadow: none;
}

.footer-brand img.footer-logo-full {
  width: min(260px, 72vw);
  height: 72px;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a:hover,
.site-footer a:hover,
.social-link:hover {
  color: var(--accent-strong);
}

.header-cta,
.button,
.social-link,
.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.social-link,
.language-toggle {
  min-height: 42px;
  padding: 0 14px;
  border-color: rgba(87, 229, 0, 0.42);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
    rgba(87, 229, 0, 0.07);
  box-shadow: inset 0 0 18px rgba(87, 229, 0, 0.05);
  font-size: 0.86rem;
}

.icon-link {
  width: 42px;
  padding: 0;
}

.icon-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.icon-link[aria-label^="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.language-toggle {
  gap: 6px;
  color: #061006;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 44%),
    linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.header-cta,
.button.primary,
.button.whatsapp {
  color: #061006;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 42%),
    linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: var(--glow);
}

.button.whatsapp {
  background: linear-gradient(135deg, #7dff45, var(--electric));
}

.header-cta:hover,
.button.primary:hover,
.button.whatsapp:hover {
  filter: brightness(1.08);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(87, 229, 0, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(87, 229, 0, 0.08);
  box-shadow: inset 0 0 18px rgba(87, 229, 0, 0.06);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1280px, calc(100% - 36px));
  min-height: 720px;
  margin: 0 auto;
  padding: 70px 0;
}

.hero-copy,
.hero-media {
  border: 1px solid rgba(87, 229, 0, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 36%),
    radial-gradient(circle at 0% 0%, rgba(87, 229, 0, 0.12), transparent 19rem),
    rgba(6, 8, 6, 0.84);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.hero-brand {
  margin-bottom: 26px;
  color: var(--accent-strong);
  font-size: 1.08rem;
}

.hero-logo-card {
  width: min(100%, 680px);
  margin: 0 0 28px;
  border: 1px solid rgba(87, 229, 0, 0.3);
  border-radius: 14px;
  box-shadow: var(--glow), 0 20px 52px rgba(0, 0, 0, 0.34);
}

.hero-copy {
  padding: clamp(24px, 4vw, 46px);
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.02;
  text-shadow: 0 0 24px rgba(87, 229, 0, 0.16);
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  color: #e8f4e3;
  font-size: clamp(1.06rem, 2vw, 1.24rem);
}

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

.trust-bar,
.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-bar {
  margin-top: 32px;
}

.trust-bar span,
.zone-list span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    rgba(87, 229, 0, 0.08);
  color: var(--ink);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(87, 229, 0, 0.32);
  border-radius: 12px;
  box-shadow: inset 0 0 34px rgba(87, 229, 0, 0.08);
  pointer-events: none;
  z-index: 1;
}

.hero-media img {
  position: relative;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.media-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100% - 36px);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 6, 4, 0.86);
  color: var(--ink);
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.media-badge img,
.contact-logo {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}

.services,
.why,
.gallery,
.testimonials,
.zones,
.contact {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0;
}

.services::before,
.why::before,
.gallery::before,
.testimonials::before,
.zones::before,
.contact::before {
  content: "";
  display: block;
  height: 1px;
  margin-bottom: 44px;
  background: linear-gradient(90deg, transparent, rgba(87, 229, 0, 0.88), transparent);
  box-shadow: 0 0 22px rgba(87, 229, 0, 0.42);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 32px;
}

h2 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 3.15rem);
  line-height: 1.12;
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.24rem;
}

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

.service-grid,
.why-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}

.service-card,
.why-grid article,
.testimonial-grid blockquote,
.contact-panel,
.contact-form,
.zone-panel,
.gallery figure {
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 34%),
    radial-gradient(circle at 0% 0%, rgba(87, 229, 0, 0.12), transparent 13rem),
    var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.service-card,
.why-grid article,
.testimonial-grid blockquote {
  min-height: 236px;
  padding: 26px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #061006;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 42%),
    linear-gradient(135deg, var(--accent), var(--accent-strong));
  font-weight: 900;
  box-shadow: var(--glow);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #061006;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.why {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  border-top: 0;
  border-bottom: 0;
}

.why-copy {
  position: sticky;
  top: 104px;
}

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

.why-grid strong {
  color: var(--accent);
  font-size: 0.86rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 16px;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.gallery-large {
  grid-row: span 2;
}

.gallery img {
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.gallery-large img {
  min-height: 540px;
}

.gallery figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(4, 6, 4, 0.78);
  color: var(--ink);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

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

blockquote {
  margin: 0;
}

blockquote p {
  margin-top: 0;
  color: var(--ink);
}

cite {
  color: var(--accent);
  font-style: normal;
  font-weight: 900;
}

.zones {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 24px;
  align-items: stretch;
  border-top: 0;
  border-bottom: 0;
}

.zone-panel,
.contact-panel,
.contact-form {
  padding: clamp(24px, 4vw, 40px);
}

.zone-list {
  align-content: center;
  display: grid;
}

.contact {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: stretch;
}

.contact-panel {
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 215, 255, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(87, 229, 0, 0.16), transparent 56%),
    var(--panel);
}

.contact-logo {
  margin-bottom: 18px;
  box-shadow: 0 0 28px rgba(105, 239, 37, 0.3);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a,
.contact-links span {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  background: var(--panel-soft);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(87, 229, 0, 0.38);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: rgba(255, 255, 255, 0.055);
}

select {
  color-scheme: dark;
}

input::placeholder,
textarea::placeholder {
  color: rgba(248, 255, 244, 0.48);
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1060px) {
  .hero,
  .why,
  .zones,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 54px 0;
  }

  .hero-media {
    order: -1;
  }

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

  .why-copy {
    position: static;
  }
}

@media (max-width: 780px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-top: 4px;
  }

  .header-actions {
    order: 2;
    flex-wrap: wrap;
    margin-left: auto;
  }

  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .gallery-large img {
    min-height: 320px;
  }
}

@media (max-width: 580px) {
  .header-cta {
    display: none;
  }

  .brand,
  .footer-brand {
    font-size: 0.95rem;
  }

  .brand img.brand-logo-full {
    width: min(78vw, 340px);
    height: 72px;
  }

  .hero-logo-card {
    width: 100%;
  }

  .hero h1 {
    font-size: 2.16rem;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .social-link,
  .language-toggle {
    min-height: 40px;
    padding: 0 12px;
  }

  .hero-media img {
    aspect-ratio: 1 / 1;
  }

  .media-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .services,
  .why,
  .gallery,
  .testimonials,
  .zones,
  .contact {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
