*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --teal-dark: #012a2f;
  --teal-mid: #016e78;
  --teal: #01a1af;
  --teal-light: #04d0e0;
  --teal-pale: #cdf4f7;
  --red: #ff3936;
  --red-light: #ff6b69;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-200: #e2e8f0;
  --gray-500: #64748b;
  --gray-700: #334155;
  --font: "Montserrat", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  color: var(--teal-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(1, 42, 47, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--red);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 75px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}
.nav-links a {
  color: var(--teal-pale);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--red-light);
}
.nav-cta {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.3rem;
  border-radius: 4px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--red-light);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--teal-dark);
  padding: 1.5rem 2rem;
  gap: 1.2rem;
  z-index: 99;
  border-bottom: 2px solid var(--red);
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: var(--teal-pale);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mobile-menu .nav-cta {
  text-align: center;
}

/* ── HERO ── */
#inicio {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--teal-dark) 0%,
    var(--teal-mid) 60%,
    #018a96 100%
  );
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 2rem 4rem;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(
      circle at 75% 30%,
      rgba(255, 57, 54, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(1, 161, 175, 0.3) 0%,
      transparent 40%
    );
}
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 57, 54, 0.15);
  border: 1px solid rgba(255, 57, 54, 0.4);
  color: var(--red-light);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: "●";
  font-size: 0.5rem;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero-title {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}
.hero-title span {
  color: var(--red-light);
}
.hero-sub {
  color: var(--teal-pale);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255, 57, 54, 0.35);
  display: inline-block;
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition:
    border-color 0.2s,
    background 0.2s;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}
.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-num span {
  color: var(--red-light);
}
.stat-label {
  font-size: 0.65rem;
  color: var(--teal-pale);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.3rem;
  opacity: 0.8;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-card-big {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.hero-card-big::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--teal-light));
}
.hero-card-big .main-icon {
  color: var(--white);
  font-size: 3.2rem;
  display: block;
  margin-bottom: 1rem;
}
.hero-card-big h3 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.hero-card-big p {
  color: var(--teal-pale);
  font-size: 0.82rem;
  line-height: 1.65;
  opacity: 0.85;
}
.norm-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--red);
  color: var(--white);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1rem;
}
.hero-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-mini-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.2rem;
  text-align: center;
}
.hero-mini-card .mini-icon {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
  display: block;
}
.hero-mini-card span:last-child {
  color: var(--teal-pale);
  font-size: 0.76rem;
  font-weight: 600;
  display: block;
}

/* ── SHARED ── */
section {
  padding: 5rem 2rem;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--teal-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.section-title span {
  color: var(--teal);
}
.section-sub {
  color: var(--gray-500);
  font-size: 0.97rem;
  line-height: 1.7;
  max-width: 600px;
  margin-top: 0.75rem;
}
.divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--red));
  border-radius: 2px;
  margin: 1rem 0;
}

/* ── VALORES ── */
#valores {
  background: var(--gray-50);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.benefit-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--gray-200);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.benefit-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(1, 161, 175, 0.12);
}
.benefit-card:hover::after {
  transform: scaleX(1);
}
.benefit-icon {
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 16px rgba(1, 161, 175, 0.25);
}
.benefit-card h3 {
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}
.benefit-card p {
  font-size: 0.83rem;
  color: var(--gray-500);
  line-height: 1.65;
}
.contact-bar {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--teal-dark);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
}
.contact-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s;
}
.contact-pill:hover {
  background: rgba(255, 255, 255, 0.15);
}
.contact-pill.highlight {
  background: rgba(255, 57, 54, 0.25);
  border-color: var(--red-light);
}
.contact-bar > p {
  color: var(--teal-pale);
  font-size: 0.85rem;
}

/* ── SERVICIOS ── */
#servicios {
  background: var(--white);
}
.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3.5rem;
}
.service-pills {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-pill-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.service-pill-item:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(1, 161, 175, 0.1);
}
.svc-icon {
  color: var(--white);
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), #cc2e2b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.service-pill-item h4 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: 0.3rem;
}
.service-pill-item p {
  font-size: 0.81rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.service-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  background: var(--white);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(1, 42, 47, 0.12);
}
.service-card-img {
  color: var(--white);
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  position: relative;
  overflow: hidden;
}
.service-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(1, 42, 47, 0.5));
}
.img-1 {
  background: linear-gradient(135deg, #016e78, #013a40);
}
.img-2 {
  background: linear-gradient(135deg, #018a96, #015a63);
}
.img-3 {
  background: linear-gradient(135deg, #013a45, #016e78);
}
.img-4 {
  background: linear-gradient(135deg, #012530, #016e78);
}
.img-5 {
  background: linear-gradient(135deg, #012a2f, #01a1af);
}
.img-6 {
  background: linear-gradient(135deg, #013a40, #01a1af);
}
.img-7 {
  background: linear-gradient(135deg, #016e78, #02b8c8);
}
.img-8 {
  background: linear-gradient(135deg, #012a2f, #016e78);
}
.service-card-body {
  padding: 1.3rem;
}
.service-card-body h3 {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: 0.4rem;
}
.service-card-body p {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}
.service-card-body a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.service-card-body a:hover {
  color: var(--red);
}
.service-card-body a::after {
  content: "→";
  transition: transform 0.2s;
}
.service-card-body a:hover::after {
  transform: translateX(3px);
}

/* ── NOSOTROS ── */
#nosotros {
  background: var(--teal-dark);
}
#nosotros .section-title {
  color: var(--white);
}
#nosotros .section-sub {
  color: var(--teal-pale);
  opacity: 0.85;
}
#nosotros .section-label {
  color: var(--red-light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-block {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
}
.about-block:first-child {
  grid-column: span 2;
  background: rgba(1, 161, 175, 0.15);
}
.about-block .big-icon {
  color: var(--white);
  font-size: 2.6rem;
}
.about-block .block-label {
  color: var(--teal-pale);
  font-size: 0.76rem;
  font-weight: 600;
  opacity: 0.8;
}
.about-block .block-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.about-block .block-num span {
  color: var(--red-light);
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--teal-pale);
  font-size: 0.86rem;
  line-height: 1.6;
}
.check-list li::before {
  content: "✓";
  min-width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  margin-top: 1px;
}
.director-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.director-av {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: white;
}
.director-card h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 0.1rem;
}
.director-card p {
  color: var(--teal-pale);
  font-size: 0.76rem;
  opacity: 0.8;
}
.norm-badge {
  background: rgba(1, 161, 175, 0.15);
  border: 1px solid rgba(1, 161, 175, 0.35);
  border-radius: 8px;
  padding: 1rem 1.4rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.norm-badge .shield {
  font-size: 1.8rem;
}
.norm-badge p {
  color: var(--teal-pale);
  font-size: 0.81rem;
  line-height: 1.5;
}
.norm-badge strong {
  color: var(--white);
  display: block;
  font-size: 0.83rem;
  margin-bottom: 0.2rem;
}

/* ── PROCESO ── */
#proceso {
  background: var(--gray-50);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.steps-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--red));
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 1.5rem;
  border: 4px solid var(--white);
  box-shadow: 0 4px 20px rgba(1, 161, 175, 0.3);
  position: relative;
}
.step-num::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed rgba(1, 161, 175, 0.3);
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: 0.6rem;
}
.step-card p {
  font-size: 0.84rem;
  color: var(--gray-500);
  line-height: 1.65;
  max-width: 240px;
  margin: 0 auto;
}

/* ── COTIZAR ── */
#cotizar {
  background: var(--white);
}
.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
}
.info-card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 8px;
  background: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.info-card h4 {
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--teal-dark);
  margin-bottom: 0.2rem;
}
.info-card p {
  font-size: 0.79rem;
  color: var(--gray-500);
  line-height: 1.5;
}
.quote-form-box {
  background: var(--teal-dark);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.quote-form-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--teal-light));
}
.quote-form-box h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 0.4rem;
}
.quote-form-box > p {
  color: var(--teal-pale);
  font-size: 0.84rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  color: var(--teal-pale);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.72rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.86rem;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-light);
}
.form-group select {
  appearance: none;
  cursor: pointer;
}
.form-group select option {
  background: #013a40;
  color: var(--white);
}
.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 0.5rem;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-submit:hover {
  background: var(--red-light);
  transform: translateY(-1px);
}

/* ── REVIEWS ── */
#resenas {
  background: var(--gray-50);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.7rem;
  border: 1px solid var(--gray-200);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  color: var(--teal-pale);
  font-family: serif;
  line-height: 1;
}
.stars {
  color: #f59e0b;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.review-card p {
  font-size: 0.86rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 0.88rem;
}
.reviewer-name {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--teal-dark);
}
.reviewer-role {
  font-size: 0.71rem;
  color: var(--gray-500);
}

/* ── FAQ ── */
#faq {
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 0;
  text-align: left;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--teal);
}
.faq-icon {
  font-size: 1.2rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-style: normal;
}
.faq-q.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 0 1.1rem;
  font-size: 0.83rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.faq-a.open {
  display: block;
}
.faq-visual {
  background: var(--teal-dark);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.faq-visual h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.35;
}
.faq-visual p {
  color: var(--teal-pale);
  font-size: 0.84rem;
  line-height: 1.7;
  opacity: 0.85;
}
.faq-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  transition: background 0.2s;
}
.faq-btn.phone {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.faq-btn.phone:hover {
  background: rgba(255, 255, 255, 0.15);
}
.faq-btn.mail {
  background: var(--red);
  color: var(--white);
}
.faq-btn.mail:hover {
  background: var(--red-light);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 80% 50%,
    rgba(255, 57, 54, 0.15) 0%,
    transparent 50%
  );
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: white;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
  position: relative;
}
.cta-banner p {
  color: var(--teal-pale);
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.85;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── FOOTER ── */
footer {
  background: #010f11;
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 0.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 1rem;
  display: block;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.8rem;
  line-height: 1.7;
}
.footer-col h4 {
  color: white;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.48);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--red-light);
}
.contact-item {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.8rem;
  margin-bottom: 0.55rem;
}
.contact-item strong {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  margin-bottom: 0.1rem;
  font-size: 0.76rem;
}
.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.76rem;
}
.footer-bottom a {
  color: var(--red-light);
  text-decoration: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner,
  .services-intro,
  .about-grid,
  .quote-wrapper,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-visual {
    display: none;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links,
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .about-visual {
    grid-template-columns: 1fr;
  }
  .about-block:first-child {
    grid-column: span 1;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
