:root {
  --color-navy: #2f3841;
  --color-navy-900: #171b20;
  --color-cyan: #1e8fbd;
  --color-green: #86bfd4;
  --color-whatsapp: #25d366;
  --color-white: #ffffff;
  --color-ink: #20252b;
  --color-muted: #626b73;
  --color-line: #d8dde1;
  --color-surface: #f4f6f7;
  --color-silver: #e5e8ea;
  --shadow-soft: 0 18px 50px rgba(32, 37, 43, 0.14);
  --shadow-card: 0 14px 36px rgba(32, 37, 43, 0.12);
  --radius: 8px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
  background: var(--color-white);
}

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

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

.skip-link {
  background: var(--color-cyan);
  color: var(--color-navy-900);
  font-weight: 800;
  left: 1rem;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -6rem;
  z-index: 2000;
}

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

.section-padding {
  padding: 96px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2.5rem;
}

.section-kicker {
  color: var(--color-cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.section-title {
  color: var(--color-navy-900);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 850;
  line-height: 1.08;
  margin-bottom: 1.2rem;
}

.section-lead {
  color: var(--color-muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  margin-bottom: 1.6rem;
}

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

.btn {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  gap: 0.55rem;
  justify-content: center;
  line-height: 1.2;
  min-height: 48px;
  padding: 0.86rem 1.2rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

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

.btn-primary-action {
  background: var(--color-cyan);
  border: 1px solid var(--color-cyan);
  color: var(--color-navy-900);
  box-shadow: 0 14px 28px rgba(30, 143, 189, 0.25);
}

.btn-primary-action:hover,
.btn-primary-action:focus {
  background: #5cb9d8;
  border-color: #5cb9d8;
  color: var(--color-navy-900);
  box-shadow: 0 18px 34px rgba(30, 143, 189, 0.33);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  border: 1px solid var(--color-whatsapp);
  color: #052815;
  box-shadow: 0 14px 28px rgba(46, 204, 113, 0.25);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background: #46df86;
  border-color: #46df86;
  color: #052815;
  box-shadow: 0 18px 34px rgba(46, 204, 113, 0.32);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
}

.site-header .navbar {
  background: rgba(23, 27, 32, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header .navbar.scrolled {
  background: rgba(23, 27, 32, 0.96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
  padding: 0.62rem 0;
  backdrop-filter: blur(14px);
}

.brand-mark {
  align-items: center;
  display: inline-flex;
  gap: 0.8rem;
}

.brand-logo-frame {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: inline-flex;
  height: 54px;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  width: 54px;
}

.brand-logo-frame img {
  height: 100%;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.32));
  object-fit: contain;
  width: 100%;
}

.brand-icon {
  align-items: center;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-green));
  border-radius: 8px;
  color: var(--color-navy-900);
  display: inline-flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand-text {
  display: grid;
  line-height: 0.98;
}

.brand-text strong {
  color: var(--color-white);
  font-size: 1.18rem;
  font-weight: 900;
}

.brand-text small {
  color: var(--color-cyan);
  font-size: 0.82rem;
  font-weight: 800;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 750;
  padding-left: 0.55rem;
  padding-right: 0.55rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--color-cyan);
}

.nav-more-toggle {
  background: transparent;
  border: 0;
}

.dropdown-menu-dark {
  background: rgba(23, 27, 32, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.dropdown-menu-dark .dropdown-item {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item.active {
  background: rgba(30, 143, 189, 0.14);
  color: var(--color-cyan);
}

.btn-nav {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  min-height: 42px;
  padding: 0.68rem 0.9rem;
}

.btn-nav:hover {
  background: var(--color-white);
  color: var(--color-navy-900);
}

.hero-section {
  background:
    linear-gradient(90deg, rgba(23, 27, 32, 0.94) 0%, rgba(47, 56, 65, 0.84) 44%, rgba(47, 56, 65, 0.28) 100%),
    url("../images/site/hero-office.webp") center/cover fixed;
  color: var(--color-white);
  min-height: 88vh;
  overflow: hidden;
  position: relative;
}

.page-hero {
  background:
    linear-gradient(110deg, rgba(23, 27, 32, 0.92), rgba(47, 56, 65, 0.66)),
    url("../images/site/hero-office.webp") center/cover;
  color: var(--color-white);
  overflow: hidden;
  position: relative;
}

.page-hero-about {
  background:
    linear-gradient(110deg, rgba(23, 27, 32, 0.92), rgba(47, 56, 65, 0.62)),
    url("../images/site/about-office.webp") center/cover;
}

.page-hero-values,
.page-hero-pmoc {
  background:
    linear-gradient(110deg, rgba(23, 27, 32, 0.93), rgba(47, 56, 65, 0.64)),
    url("../images/site/gallery-maintenance.webp") center/cover;
}

.page-hero-services,
.page-hero-features {
  background:
    linear-gradient(110deg, rgba(23, 27, 32, 0.93), rgba(47, 56, 65, 0.62)),
    url("../images/site/features-technical.webp") center/cover;
}

.page-hero-brands {
  background:
    linear-gradient(110deg, rgba(23, 27, 32, 0.93), rgba(47, 56, 65, 0.62)),
    url("../images/site/brands-industrial.webp") center/cover;
}

.page-hero-gallery,
.page-hero-testimonials,
.page-hero-contact {
  background:
    linear-gradient(110deg, rgba(23, 27, 32, 0.93), rgba(47, 56, 65, 0.58)),
    url("../images/site/building-commercial.webp") center/cover;
}

.page-hero-inner {
  min-height: 480px;
  padding: 150px 0 72px;
}

.page-hero .display-title {
  color: var(--color-white);
  max-width: 940px;
}

.page-hero .hero-subtitle {
  max-width: 780px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.2)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 110px);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.min-vh-hero {
  min-height: 88vh;
  padding: 132px 0 70px;
}

.display-title {
  color: var(--color-white);
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  font-weight: 900;
  line-height: 0.98;
  margin-bottom: 1.35rem;
  max-width: 900px;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  margin-bottom: 2rem;
  max-width: 690px;
}

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

.hero-trust {
  color: rgba(255, 255, 255, 0.84);
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-trust span {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  display: inline-flex;
  gap: 0.55rem;
  padding: 0.55rem 0.72rem;
}

.hero-trust i {
  color: var(--color-green);
}

.quote-strip {
  background: var(--color-navy-900);
  color: var(--color-white);
  padding: 34px 0;
}

.quote-strip h2 {
  color: var(--color-white);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 820;
  line-height: 1.2;
  margin: 0;
}

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

.image-stack {
  margin: 0 auto;
  max-width: 560px;
  position: relative;
}

.about-main-img {
  aspect-ratio: 6 / 7;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  width: 100%;
}

.experience-badge {
  align-items: center;
  background: var(--color-white);
  border-left: 5px solid var(--color-green);
  border-radius: var(--radius);
  bottom: 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 1rem;
  left: -24px;
  max-width: min(330px, calc(100% - 24px));
  padding: 1rem;
  position: absolute;
}

.experience-badge strong {
  color: var(--color-cyan);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.experience-badge span {
  color: var(--color-navy-900);
  font-weight: 800;
  line-height: 1.25;
}

.about-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.about-grid div {
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  display: flex;
  gap: 0.8rem;
  min-height: 78px;
  padding: 0.95rem;
}

.about-grid i {
  align-items: center;
  background: var(--color-white);
  border-radius: 8px;
  color: var(--color-cyan);
  display: inline-flex;
  flex: 0 0 42px;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.about-grid span {
  color: var(--color-navy-900);
  font-weight: 790;
}

.values-section {
  background:
    linear-gradient(180deg, #f7f8f9 0%, #eceff1 100%);
  position: relative;
}

.values-section::before {
  background:
    linear-gradient(90deg, rgba(30, 143, 189, 0.12), transparent 46%),
    radial-gradient(circle at 80% 18%, rgba(134, 191, 212, 0.22), transparent 28%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.values-section .container {
  position: relative;
}

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

.value-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(47, 56, 65, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(32, 37, 43, 0.08);
  min-height: 208px;
  padding: 1.4rem;
}

.value-card-wide {
  grid-column: 1 / -1;
  min-height: 150px;
}

.value-card i {
  align-items: center;
  background: linear-gradient(135deg, rgba(30, 143, 189, 0.16), rgba(134, 191, 212, 0.24));
  border-radius: 8px;
  color: var(--color-cyan);
  display: inline-flex;
  font-size: 1.25rem;
  height: 48px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 48px;
}

.value-card h3 {
  color: var(--color-navy-900);
  font-size: 1.05rem;
  font-weight: 880;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.value-card p {
  color: var(--color-muted);
  margin: 0;
}

.services-section {
  background:
    linear-gradient(180deg, #f9fafb 0%, #eef2f4 100%);
}

.service-card {
  background: var(--color-white);
  border: 1px solid rgba(47, 56, 65, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 4px 0 rgba(30, 143, 189, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 390px;
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  border-color: rgba(30, 143, 189, 0.36);
  box-shadow: var(--shadow-card);
  transform: translateY(-7px);
}

.service-icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(30, 143, 189, 0.14), rgba(134, 191, 212, 0.18));
  border-radius: 8px;
  color: var(--color-cyan);
  display: inline-flex;
  font-size: 1.55rem;
  height: 58px;
  justify-content: center;
  margin-bottom: 1.25rem;
  width: 58px;
}

.service-card h3 {
  color: var(--color-navy-900);
  font-size: 1.25rem;
  font-weight: 850;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.service-card ul {
  color: var(--color-muted);
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
}

.service-card li {
  margin-bottom: 0.52rem;
  padding-left: 1.2rem;
  position: relative;
}

.service-card li::before {
  background: var(--color-green);
  border-radius: 99px;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 0.58rem;
  width: 7px;
}

.card-link {
  align-items: center;
  color: var(--color-navy);
  display: inline-flex;
  font-weight: 850;
  gap: 0.5rem;
  margin-top: auto;
  transition: color var(--transition), gap var(--transition);
}

.card-link:hover {
  color: var(--color-cyan);
  gap: 0.75rem;
}

.brands-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f2f5f7 100%);
  overflow: hidden;
}

.brands-showcase {
  background:
    linear-gradient(135deg, rgba(23, 27, 32, 0.98), rgba(47, 56, 65, 0.94)),
    url("../images/site/brands-industrial.webp") center/cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
  overflow: hidden;
  padding: clamp(1.2rem, 3vw, 2rem) 0;
  position: relative;
}

.brands-showcase::before,
.brands-showcase::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: min(160px, 20vw);
  z-index: 2;
}

.brands-showcase::before {
  background: linear-gradient(90deg, rgba(23, 27, 32, 0.98), transparent);
  left: 0;
}

.brands-showcase::after {
  background: linear-gradient(270deg, rgba(23, 27, 32, 0.98), transparent);
  right: 0;
}

.brand-marquee {
  overflow: hidden;
  width: 100%;
}

.brand-track {
  animation: brandSlide 30s linear infinite;
  display: flex;
  gap: 1rem;
  min-width: max-content;
  padding: 0 1rem;
}

.brand-marquee-reverse .brand-track {
  animation-direction: reverse;
  animation-duration: 34s;
}

.brand-tile {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  color: var(--color-navy-900);
  display: inline-flex;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 900;
  justify-content: center;
  min-height: 82px;
  min-width: 178px;
  padding: 1rem 1.35rem;
  text-align: center;
  text-transform: uppercase;
}

.brand-logo-tile {
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
  min-height: 92px;
  min-width: 206px;
  padding: 0.85rem 1.1rem;
}

.brand-logo-tile img {
  display: block;
  height: 62px;
  max-width: 174px;
  object-fit: contain;
  width: 100%;
}

.brand-tile-dark {
  background: rgba(30, 143, 189, 0.16);
  border-color: rgba(134, 191, 212, 0.34);
  color: var(--color-white);
}

.brands-note {
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(32, 37, 43, 0.08);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 1.25rem auto 0;
  max-width: 980px;
  padding: 1rem 1.1rem;
}

.brands-note i {
  color: var(--color-cyan);
  font-size: 1.35rem;
}

.brands-note span {
  color: var(--color-muted);
  flex: 1 1 auto;
}

.brands-note a {
  align-items: center;
  color: var(--color-navy-900);
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 880;
  gap: 0.5rem;
}

.brands-note a:hover {
  color: var(--color-cyan);
}

@keyframes brandSlide {
  from {
    transform: translateX(0);
  }

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

.features-section {
  background:
    linear-gradient(90deg, rgba(23, 27, 32, 0.94), rgba(47, 56, 65, 0.82)),
    url("../images/site/features-technical.webp") center/cover;
  color: var(--color-white);
}

.features-section .section-title,
.features-section .section-lead {
  color: var(--color-white);
}

.features-section .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

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

.feature-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  display: flex;
  gap: 0.85rem;
  min-height: 84px;
  padding: 1rem;
}

.feature-item i {
  align-items: center;
  background: var(--color-green);
  border-radius: 8px;
  color: #042814;
  display: inline-flex;
  flex: 0 0 34px;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.feature-item span {
  color: var(--color-white);
  font-weight: 820;
  line-height: 1.25;
}

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

.filter-bar {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin: 0 auto 2.2rem;
}

.filter-btn {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 6px;
  color: var(--color-navy);
  cursor: pointer;
  font-weight: 820;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-2px);
}

.gallery-item {
  transition: opacity var(--transition), transform var(--transition);
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-card {
  background: var(--color-navy);
  border: 0;
  border-radius: var(--radius);
  color: var(--color-white);
  cursor: pointer;
  display: block;
  min-height: 270px;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}

.gallery-card::after {
  background: linear-gradient(180deg, transparent 35%, rgba(23, 27, 32, 0.92) 100%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.gallery-card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 500ms ease;
  width: 100%;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card span {
  bottom: 1rem;
  font-size: 1.06rem;
  font-weight: 900;
  left: 1rem;
  position: absolute;
  z-index: 2;
}

.stats-section {
  background:
    linear-gradient(180deg, rgba(47, 56, 65, 0.95), rgba(23, 27, 32, 0.98)),
    url("../images/site/stats-meeting.webp") center/cover fixed;
  color: var(--color-white);
}

.stat-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  min-height: 168px;
  padding: 1.4rem 0.8rem;
}

.stat-card strong {
  color: var(--color-cyan);
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.84);
  display: block;
  font-weight: 800;
}

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

.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin: 0;
  min-height: 310px;
  padding: clamp(1.6rem, 4vw, 3rem);
}

.stars {
  color: #f2b705;
  font-size: 1.28rem;
  margin-bottom: 1.1rem;
}

.testimonial-card p {
  color: var(--color-navy-900);
  font-size: clamp(1.35rem, 2.7vw, 2.1rem);
  font-weight: 820;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.testimonial-card footer {
  color: var(--color-muted);
  font-weight: 750;
}

.carousel-controls {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.carousel-control-prev,
.carousel-control-next {
  align-items: center;
  background: var(--color-navy);
  border: 0;
  border-radius: 8px;
  color: var(--color-white);
  display: inline-flex;
  height: 46px;
  justify-content: center;
  opacity: 1;
  position: static;
  width: 46px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--color-cyan);
  color: var(--color-navy-900);
}

.cta-section {
  background: linear-gradient(180deg, var(--color-surface), var(--color-white));
  padding: 0 0 96px;
}

.cta-panel {
  align-items: center;
  background:
    linear-gradient(120deg, rgba(23, 27, 32, 0.98), rgba(47, 56, 65, 0.88)),
    url("../images/site/building-commercial.webp") center/cover;
  border-radius: var(--radius);
  color: var(--color-white);
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 4rem);
}

.cta-panel h2 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 0.8rem;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  margin: 0;
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 0.8rem;
}

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

.contact-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.contact-list a,
.contact-list span {
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-navy-900);
  display: flex;
  gap: 0.85rem;
  min-height: 64px;
  padding: 0.9rem 1rem;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.contact-list a:hover {
  background: var(--color-white);
  border-color: rgba(30, 143, 189, 0.5);
  transform: translateY(-2px);
}

.contact-list i {
  align-items: center;
  background: var(--color-white);
  border-radius: 8px;
  color: var(--color-cyan);
  display: inline-flex;
  flex: 0 0 40px;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.25rem, 3vw, 2.2rem);
}

.form-label {
  color: var(--color-navy-900);
  font-size: 0.9rem;
  font-weight: 820;
}

.form-control,
.form-select {
  background-color: var(--color-white);
  border: 1px solid #cbd8e4;
  border-radius: 6px;
  color: var(--color-ink);
  min-height: 50px;
  padding: 0.78rem 0.9rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-cyan);
  box-shadow: 0 0 0 0.2rem rgba(30, 143, 189, 0.16);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.site-footer {
  background: var(--color-navy-900);
  color: rgba(255, 255, 255, 0.74);
  padding: 72px 0 28px;
}

.site-footer .footer-brand {
  margin-bottom: 1.2rem;
}

.site-footer .brand-logo-frame {
  height: 58px;
  width: 58px;
}

.site-footer p {
  max-width: 380px;
}

.site-footer h3 {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.62rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.76);
  transition: color var(--transition);
}

.site-footer a:hover {
  color: var(--color-cyan);
}

.footer-contact i {
  color: var(--color-cyan);
  margin-right: 0.5rem;
  width: 18px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.social-links a {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--color-white);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.social-links a:hover {
  background: var(--color-cyan);
  color: var(--color-navy-900);
}

.footer-contact-action {
  align-items: center;
  background: rgba(37, 211, 102, 0.14);
  border: 1px solid rgba(37, 211, 102, 0.28);
  border-radius: var(--radius);
  color: var(--color-white);
  display: inline-flex;
  font-weight: 850;
  gap: 0.65rem;
  margin-top: 1.2rem;
  min-height: 46px;
  padding: 0.72rem 0.95rem;
  transition: background var(--transition), transform var(--transition), color var(--transition);
}

.footer-contact-action i {
  color: var(--color-whatsapp);
}

.footer-contact-action:hover {
  background: var(--color-whatsapp);
  color: #052815;
  transform: translateY(-2px);
}

.footer-contact-action:hover i {
  color: #052815;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 1.5rem;
}

.floating-whatsapp {
  align-items: center;
  background: var(--color-whatsapp);
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 16px 36px rgba(46, 204, 113, 0.42);
  color: #052815;
  display: inline-flex;
  font-size: 1.8rem;
  height: 62px;
  justify-content: center;
  position: fixed;
  right: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
  width: 62px;
  z-index: 1200;
}

.floating-whatsapp:hover {
  color: #052815;
  transform: translateY(-4px) scale(1.03);
}

.lightbox-content {
  background: transparent;
  border: 0;
  position: relative;
}

.lightbox-content .btn-close {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  z-index: 2;
}

.lightbox-content img {
  border-radius: var(--radius);
  max-height: 78vh;
  object-fit: contain;
  width: 100%;
}

.lightbox-content h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 850;
  margin: 0.85rem 0 0;
}

.about-proof-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.about-proof-grid article {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 1rem;
}

.about-proof-grid strong,
.about-proof-grid span {
  display: block;
}

.about-proof-grid strong {
  color: var(--color-navy-900);
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.about-proof-grid span {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.process-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card {
  background: var(--color-white);
  border: 1px solid rgba(47, 56, 65, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(32, 37, 43, 0.08);
  min-height: 218px;
  padding: 1.45rem;
}

.process-card span {
  color: var(--color-cyan);
  display: block;
  font-size: 0.82rem;
  font-weight: 950;
  margin-bottom: 1.1rem;
}

.process-card h3 {
  color: var(--color-navy-900);
  font-size: 1.05rem;
  font-weight: 880;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.process-card p {
  color: var(--color-muted);
  margin: 0;
}

.pmoc-detail-section {
  background: linear-gradient(180deg, var(--color-white), var(--color-surface));
}

.pmoc-content-panel,
.pmoc-side-card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.pmoc-content-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.pmoc-content-panel h2 {
  color: var(--color-navy-900);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.pmoc-content-panel p {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.pmoc-question-box {
  background: linear-gradient(135deg, rgba(30, 143, 189, 0.1), rgba(134, 191, 212, 0.18));
  border: 1px solid rgba(30, 143, 189, 0.24);
  border-radius: var(--radius);
  margin-top: 2rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.pmoc-question-box h3 {
  color: var(--color-navy-900);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.pmoc-question-box .btn {
  margin-top: 0.55rem;
}

.pmoc-side-card {
  position: sticky;
  top: 112px;
  padding: 1.4rem;
}

.pmoc-side-icon {
  align-items: center;
  background: var(--color-surface);
  border-radius: 8px;
  color: var(--color-cyan);
  display: inline-flex;
  font-size: 1.7rem;
  height: 76px;
  justify-content: center;
  margin-bottom: 1.2rem;
  width: 76px;
}

.pmoc-side-card h2 {
  color: var(--color-navy-900);
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.pmoc-side-card ul {
  color: var(--color-muted);
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
}

.pmoc-side-card li {
  border-bottom: 1px solid var(--color-line);
  padding: 0.72rem 0;
}

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

.testimonial-grid-card {
  min-height: 300px;
}

.testimonial-grid-card p {
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
}

.form-intro {
  align-items: flex-start;
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.form-intro span {
  align-items: center;
  background: var(--color-whatsapp);
  border-radius: 8px;
  color: #052815;
  display: inline-flex;
  flex: 0 0 48px;
  font-size: 1.35rem;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.form-intro strong {
  color: var(--color-navy-900);
  display: block;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.2;
}

.form-intro p {
  color: var(--color-muted);
  margin: 0.25rem 0 0;
}

.service-preset-grid {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.2rem;
}

.service-preset {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: 6px;
  color: var(--color-navy-900);
  font-size: 0.88rem;
  font-weight: 820;
  min-height: 42px;
  padding: 0.58rem 0.7rem;
  text-align: left;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
}

.service-preset:hover,
.service-preset:focus {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
  transform: translateY(-1px);
}

.quote-side-form {
  position: sticky;
  top: 112px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.footer-social a {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--color-white);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.footer-social a:hover {
  background: var(--color-cyan);
  color: var(--color-navy-900);
}

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

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

@media (max-width: 991.98px) {
  .section-padding {
    padding: 78px 0;
  }

  .site-header .navbar {
    background: rgba(23, 27, 32, 0.97);
    padding: 0.75rem 0;
  }

  .navbar-collapse {
    padding-top: 1rem;
  }

  .btn-nav {
    margin-top: 0.5rem;
    width: 100%;
  }

  .hero-section,
  .stats-section,
  .page-hero {
    background-attachment: scroll;
  }

  .hero-section {
    min-height: 84vh;
  }

  .min-vh-hero {
    min-height: 84vh;
    padding: 124px 0 56px;
  }

  .page-hero-inner {
    min-height: 420px;
    padding: 128px 0 56px;
  }

  .display-title {
    max-width: 680px;
  }

  .features-grid,
  .about-grid,
  .values-grid,
  .process-grid,
  .testimonial-grid,
  .about-proof-grid {
    grid-template-columns: 1fr;
  }

  .quote-side-form,
  .pmoc-side-card {
    position: static;
  }

  .value-card-wide {
    grid-column: auto;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions,
  .cta-actions .btn {
    width: 100%;
  }

  .brands-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .brands-note a {
    width: 100%;
  }

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

@media (max-width: 575.98px) {
  .section-padding {
    padding: 64px 0;
  }

  .brand-icon {
    flex-basis: 38px;
    height: 38px;
    width: 38px;
  }

  .brand-logo-frame {
    height: 48px;
    width: 48px;
  }

  .site-footer .brand-logo-frame {
    height: 54px;
    width: 54px;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-text small {
    font-size: 0.67rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .page-hero-actions,
  .page-hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    display: grid;
  }

  .experience-badge {
    bottom: 16px;
    left: 12px;
  }

  .filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.3rem;
  }

  .filter-btn {
    flex: 0 0 auto;
  }

  .brand-tile {
    min-height: 70px;
    min-width: 148px;
    padding: 0.85rem 1rem;
  }

  .brand-logo-tile {
    min-height: 76px;
    min-width: 164px;
  }

  .brand-logo-tile img {
    height: 48px;
    max-width: 136px;
  }

  .brand-track {
    gap: 0.75rem;
  }

  .service-card {
    min-height: auto;
    padding: 1.5rem;
  }

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

  .stat-card {
    min-height: 146px;
  }

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .brand-track {
    animation: none;
  }
}
