:root {
  --primary: #f79d2d;
  --secondary: #0d9636;
  --dark: #0f0f0f;
  --white: #ffffff;
  --soft: #f8f9fa;
  --line: #e5e7eb;
  --muted: #6b7280;
  --ink: #202124;
  --shadow: 0 20px 50px rgba(15, 15, 15, 0.09);
  --radius: 15px;
  --hero-radius: 0;
  --header-height: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Readex Pro", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.8;
}

h1,
h2,
h3,
.brand {
  font-family: "Readex Pro", sans-serif;
}

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

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

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

.container {
  width: min(1300px, calc(100% - 48px)) !important;
  margin-inline: auto;
}

.section-pad {
  padding: 88px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(229, 231, 235, 0.95);
  box-shadow: 0 14px 42px rgba(15, 15, 15, 0.08);
}

.nav-shell {
  position: relative;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 36px;
  padding-block: 14px;
  transition: min-height 0.25s ease;
}

.site-header.is-scrolled .nav-shell {
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: 78px;
  height: 78px;
  font-weight: 800;
  color: var(--dark);
  font-size: 1.25rem;
}

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

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(28px, 2.5vw, 44px);
  margin: 0;
  padding: 0;
  list-style: none;
  color: #374151;
  font-weight: 700;
}

.nav-cta {
  justify-self: end;
  min-width: 170px;
}

.nav-links a {
  transition: color 0.2s ease;
}

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

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius);
  padding: 14px 26px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--dark);
  background: var(--primary);
  box-shadow: 0 16px 34px rgba(247, 157, 45, 0.28);
}

.btn-secondary,
.btn-whatsapp {
  color: var(--white);
  background: var(--secondary);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  z-index: 60;
  transition: background 0.2s ease, border-color 0.2s ease;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle:hover {
  background: var(--soft);
  border-color: rgba(13, 150, 54, 0.3);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
}

.nav-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-kicker {
  margin: 0 0 16px;
  color: var(--secondary);
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-start {
  text-align: start;
  margin-inline: 0;
}

.section-heading h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}

.section-heading p:not(.section-kicker) {
  color: var(--muted);
  margin: 16px 0 0;
}

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

.why-grid article,
.faq-item,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(15, 15, 15, 0.05);
}

.service-card {
  display: none;
}

.service-card.is-extra {
  display: none;
}

.services-grid.is-expanded .service-card.is-extra {
  display: flex;
}

.service-visual {
  width: 100%;
  background-size: cover;
  background-position: center;
}

.service-visual-1 {
  background-image: linear-gradient(135deg, rgba(13, 150, 54, 0.75), rgba(15, 15, 15, 0.4)), url("../images/facility-hero.png");
}

.service-visual-2 {
  background-image: linear-gradient(135deg, rgba(247, 157, 45, 0.72), rgba(15, 15, 15, 0.38)), url("../images/facility-hero.png");
}

.service-visual-3 {
  background-image: linear-gradient(135deg, rgba(37, 99, 235, 0.66), rgba(15, 15, 15, 0.42)), url("../images/facility-hero.png");
}

.service-visual-4 {
  background-image: linear-gradient(135deg, rgba(250, 204, 21, 0.68), rgba(15, 15, 15, 0.42)), url("../images/facility-hero.png");
}

.service-visual-5 {
  background-image: linear-gradient(135deg, rgba(20, 184, 166, 0.68), rgba(15, 15, 15, 0.42)), url("../images/facility-hero.png");
}

.service-visual-6 {
  background-image: linear-gradient(135deg, rgba(220, 38, 38, 0.66), rgba(15, 15, 15, 0.42)), url("../images/facility-hero.png");
}

.service-visual-7 {
  background-image: linear-gradient(135deg, rgba(79, 70, 229, 0.62), rgba(15, 15, 15, 0.42)), url("../images/facility-hero.png");
}

.service-visual-8 {
  background-image: linear-gradient(135deg, rgba(14, 165, 233, 0.62), rgba(15, 15, 15, 0.42)), url("../images/facility-hero.png");
}

.service-visual-9 {
  background-image: linear-gradient(135deg, rgba(22, 163, 74, 0.66), rgba(15, 15, 15, 0.42)), url("../images/facility-hero.png");
}

.icon-box {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(247, 157, 45, 0.14);
  color: var(--secondary);
  font-size: 1.25rem;
  font-weight: 800;
}

.icon-box span {
  transform: translateY(-1px);
}

.why-grid h3,
.process-list h3 {
  margin: 14px 0 8px;
  color: var(--dark);
  font-size: 1.18rem;
  font-weight: 800;
}

.why-grid p,
.process-list p {
  margin: 0;
  color: var(--muted);
}

.section-action {
  margin-top: 32px;
  text-align: center;
}

.soft-band {
  background: var(--soft);
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

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

.why-grid article {
  padding: 24px;
}

.dark-band,
.contact-section {
  color: var(--white);
  background:
    linear-gradient(rgba(15, 15, 15, 0.85), rgba(15, 15, 15, 0.85)),
    url('../images/contact-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(13, 150, 54, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.dark-band .section-heading h2,
.contact-section h2,
.dark-band .section-kicker,
.contact-section .section-kicker {
  color: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 32px 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.process-list span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--dark);
  background: var(--primary);
  font-weight: 800;
  margin-bottom: 16px;
}

.process-list h3 {
  color: var(--white);
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.4;
}

.process-list p {
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.logo-grid span {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #9ca3af;
  filter: grayscale(1);
  font-weight: 800;
  transition: color 0.2s ease, border-color 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.logo-grid span:hover {
  color: var(--secondary);
  border-color: rgba(13, 150, 54, 0.35);
  filter: grayscale(0);
  transform: translateY(-3px);
}

.coverage-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.coverage {
  padding: 72px 0;
}

.coverage .coverage-grid {
  gap: 40px;
}

.coverage-cloud {
  position: relative;
  background: var(--white);
}

.coverage-cloud::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at center, rgba(13, 150, 54, 0.045) 0%, transparent 70%);
  pointer-events: none;
}

.coverage-stat {
  font-family: "Readex Pro", sans-serif;
  color: var(--secondary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.city-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--white);
  border: 1.5px solid var(--line);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  user-select: none;
}

.city-badge:hover {
  transform: translateY(-2px);
  border-color: var(--secondary);
  box-shadow: 0 6px 16px rgba(13, 150, 54, 0.1);
}

.city-badge--expand {
  background: rgba(13, 150, 54, 0.06);
  border-color: rgba(13, 150, 54, 0.2);
  color: var(--secondary);
}

.narrow {
  max-width: 860px;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  padding: 18px 22px;
  color: var(--dark);
  text-align: start;
  font-weight: 800;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  color: var(--secondary);
  font-size: 1.4rem;
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-panel p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.contact-copy {
  position: relative;
  z-index: 1;
}

.contact-copy p {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  line-height: 1.85;
}

.contact-copy h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 16px;
}

.contact-benefits {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(13, 150, 54, 0.3);
  transform: translateX(-4px);
}

.benefit-card svg {
  flex-shrink: 0;
  color: var(--primary);
  opacity: 0.9;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 36px 0 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  transition: all 0.3s ease;
}

.metric-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(13, 150, 54, 0.2);
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.contact-form-wrapper {
  position: relative;
  z-index: 1;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(13, 150, 54, 0.12);
  border: 1px solid rgba(13, 150, 54, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.trust-badge svg {
  color: #22c55e;
  flex-shrink: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  color: var(--dark);
  background: var(--white);
  border-radius: 20px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #374151;
  font-weight: 800;
}

.required-mark {
  color: #ff0000;
  margin-inline-start: 4px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(13, 150, 54, 0.12);
}

.contact-form .full,
.form-status {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 0;
  font-size: 0;
  line-height: 0;
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.contact-form .full.btn {
  font-size: 1rem;
  line-height: 1.5;
  min-height: 58px;
  background: linear-gradient(135deg, var(--primary) 0%, #e8891a 100%);
  box-shadow:
    0 8px 24px rgba(247, 157, 45, 0.35),
    0 0 0 1px rgba(247, 157, 45, 0.1);
  color: var(--dark);
  font-weight: 800;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form .full.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.contact-form .full.btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 32px rgba(247, 157, 45, 0.45),
    0 0 0 1px rgba(247, 157, 45, 0.2);
}

.contact-form .full.btn:hover::before {
  left: 100%;
}

.contact-form .full.btn:active {
  transform: translateY(-1px);
  box-shadow:
    0 6px 16px rgba(247, 157, 45, 0.3),
    0 0 0 1px rgba(247, 157, 45, 0.15);
}

.label-text {
  display: inline;
  white-space: nowrap;
}

.form-status-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  animation: statusFadeIn 0.35s ease;
  margin-top: 4px;
}

.form-status-card.is-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.form-status-card.is-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.form-status-card svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.form-status-card .status-content {
  flex: 1;
  min-width: 0;
}

.form-status-card .status-title {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 2px;
}

.form-status-card .status-sub {
  font-size: 13px;
  opacity: .85;
  margin: 0;
}

@keyframes statusFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  background: #090909;
  color: rgba(255, 255, 255, 0.76);
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 42px;
}

.footer-brand,
.site-footer h2 {
  color: var(--white);
}

.footer-brand {
  width: auto;
  height: auto;
}

.footer-brand img {
  width: 46px;
  height: 46px;
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-weight: 800;
}

.site-footer a:not(.brand),
.site-footer p {
  display: block;
  margin: 0 0 10px;
}

.copyright {
  margin-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 16px;
  text-align: center;
  font-size: 0.95rem;
}

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

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

@media (max-width: 1200px) {
  .site-header {
    backdrop-filter: none;
  }

  .nav-shell {
    display: flex;
    min-height: 86px;
  }

  .brand {
    width: 66px;
    height: 66px;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-start: auto;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
  }

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

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 80vw;
    height: 100vh;
    height: 100dvh;
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    background: var(--white);
    box-shadow: -8px 0 40px rgba(15, 15, 15, 0.15);
    opacity: 1;
    visibility: visible;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-brand-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 32px 24px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    flex-shrink: 0;
  }

  .nav-brand-header img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .nav-brand-header span {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.01em;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(229, 231, 235, 0.55);
    margin: 0;
  }

  .nav-links li.nav-brand-header {
    border-bottom: 1px solid var(--line);
  }

  .nav-links li.nav-mobile-cta {
    border-bottom: none;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    transition: all 0.25s ease;
    min-height: 60px;
    text-decoration: none;
  }

  .nav-links a:hover,
  .nav-links a:active {
    background: rgba(13, 150, 54, 0.06);
    color: var(--secondary);
  }

  .nav-mobile-cta {
    display: block;
    padding: 24px;
    margin-top: auto;
    background: var(--white);
    border-top: 1px solid var(--line);
    flex-shrink: 0;
  }

  .nav-mobile-cta .btn {
    width: 100%;
    justify-content: center;
    min-height: 54px;
    font-size: 1rem;
    font-weight: 800;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 980px) {

  .split-section,
  .coverage-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 640px) {
  .container {
    width: min(1400px, calc(100% - 32px)) !important;
  }

  .section-pad {
    padding: 64px 0;
  }

  .coverage {
    padding: 56px 0;
  }

  .nav-shell {
    min-height: 72px;
  }

  :root {
    --header-height: 72px;
  }

  .services-grid,
  .why-grid,
  .industry-grid,
  .process-list,
  .logo-grid,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 18px;
  }

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

  .metric-value {
    font-size: 1.25rem;
  }

  .benefit-card {
    padding: 14px 16px;
  }
}