/* ============================================================
   VILDEK — Hoja de estilos principal
   Paleta: #F6F6F4 fondo | #1C1C1E texto | #1D3557 acento
============================================================ */

/* ——— Variables ——— */
:root {
  --bg:          #F6F6F4;
  --bg-alt:      #EEECEA;
  --white:       #FFFFFF;
  --text:        #1C1C1E;
  --text-muted:  #6B6B72;
  --accent:      #1D3557;
  --accent-mid:  #2A4A70;
  --accent-light:#EBF1F8;
  --green-wa:    #25D366;
  --green-wa-dk: #1DAA57;
  --border:      #E0DDD9;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --header-h:    72px;
  --container:   1200px;
  --transition:  .3s cubic-bezier(.25,.1,.25,1);
}

/* ——— Reset & base ——— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ——— Container ——— */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ——— Botones ——— */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.3;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition),
              border-color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(29,53,87,.30), 0 1px 2px rgba(29,53,87,.20);
}
.btn--primary:hover {
  background: var(--accent-mid);
  box-shadow: 0 6px 20px rgba(29,53,87,.40), 0 2px 6px rgba(29,53,87,.25);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn--outline:hover {
  background: var(--accent-light);
  box-shadow: 0 4px 12px rgba(29,53,87,.12);
}

.btn--whatsapp {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(37,211,102,.35), 0 1px 2px rgba(37,211,102,.20);
}
.btn--whatsapp:hover {
  background: var(--green-wa-dk);
  box-shadow: 0 6px 20px rgba(37,211,102,.45), 0 2px 6px rgba(37,211,102,.25);
}

.btn--lg { padding: 15px 32px; font-size: 1rem; }
.btn--sm { padding: 9px 18px; font-size: .875rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--add-window {
  width: 100%;
  justify-content: center;
  color: var(--accent);
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  font-size: .9rem;
  margin-top: 8px;
  transition: border-color var(--transition), background var(--transition);
}
.btn--add-window:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  transform: none;
}
.btn--add-window svg { width: 18px; height: 18px; }

/* ——— Section labels & headers ——— */
.section-label {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ——— Link ——— */
.link { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   HEADER
============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(246,246,244,.94);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,.07);
  background: rgba(246,246,244,.98);
}

.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.header__logo:hover { opacity: .75; }

.header__logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.footer__logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.logo-mark {
  background: var(--accent);
  color: var(--white);
  border-radius: 6px;
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  margin-right: 4px;
}

.header__nav { flex: 1; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 11px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 11px; right: 11px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.nav__link:hover {
  color: var(--text);
  background: rgba(28,28,30,.05);
}
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.active {
  color: var(--accent);
  background: var(--accent-light);
  font-weight: 600;
}
.nav__link.active::after { transform: scaleX(1); }

/* ---- Dropdown ---- */
.nav__item--has-dropdown { position: relative; }

.nav__chevron {
  flex-shrink: 0;
  transition: transform .22s cubic-bezier(.4,0,.2,1);
  opacity: .5;
}
.nav__item--has-dropdown:hover > .nav__link .nav__chevron,
.nav__item--has-dropdown:focus-within > .nav__link .nav__chevron,
.nav__item--has-dropdown.open > .nav__link .nav__chevron {
  transform: rotate(180deg);
  opacity: .85;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 192px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  padding: 10px 6px 6px;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s cubic-bezier(.4,0,.2,1), transform .22s cubic-bezier(.4,0,.2,1);
  z-index: 200;
}
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0; right: 0;
  height: 10px;
}
.nav__item--has-dropdown:hover > .nav__dropdown,
.nav__item--has-dropdown:focus-within > .nav__dropdown,
.nav__item--has-dropdown.open > .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-link {
  display: block;
  padding: 9px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.nav__dropdown-link:hover {
  color: var(--accent);
  background: var(--accent-light);
}
.nav__dropdown-link.active {
  color: var(--accent);
  background: var(--accent-light);
  font-weight: 600;
}

/* ---- CTA ---- */
.header__cta {
  flex-shrink: 0;
  margin-left: auto;
  padding: 9px 18px;
  font-size: .875rem;
}

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  /* [Placeholder1] — reemplazar con: background-image: url('../img/hero.jpg'); */
  background: linear-gradient(135deg, #1a2d44 0%, #2c4a6e 40%, #3d6491 70%, #1D3557 100%);
  background-size: cover;
  background-position: center;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13,22,35,.82) 0%,
    rgba(13,22,35,.60) 50%,
    rgba(13,22,35,.35) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 80px;
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.9);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,.78);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero__actions .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
}
.hero__actions .btn--outline:hover {
  border-color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1;
}
.hero__stat span {
  font-size: .8125rem;
  color: rgba(255,255,255,.6);
  font-weight: 400;
}
.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.25);
}

/* ============================================================
   TRUST
============================================================ */
.trust {
  padding: 56px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.trust__item {
  text-align: center;
}

.trust__icon {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
}
.trust__icon svg { width: 24px; height: 24px; }

.trust__item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.trust__item p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  padding: 96px 0;
  background: var(--bg);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card__icon {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.service-card p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-card__benefit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 5px 12px;
  border-radius: 100px;
}

/* ============================================================
   WHY VILDEK
============================================================ */
.why {
  padding: 96px 0;
  background: var(--white);
}

.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why__img {
  width: 100%;
  aspect-ratio: 4/5;
  /* [Placeholder2] — reemplazar con: background-image: url('../img/why-vildek.jpg'); */
  background: linear-gradient(160deg, #c8d8e8 0%, #a0b8cc 40%, #7a9eb8 100%);
  background-size: cover;
  background-position: center;
}

.why__img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.why__img-badge strong {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.04em;
  line-height: 1;
}
.why__img-badge span {
  font-size: .8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.why__content h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.why__intro {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.why__list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why__list-icon {
  width: 28px; height: 28px;
  min-width: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-top: 2px;
}
.why__list-icon svg { width: 14px; height: 14px; }

.why__list-item strong {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.why__list-item p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   PROJECTS
============================================================ */
.projects {
  padding: 96px 0;
  background: var(--bg);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 24px;
  align-items: start;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.project-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.project-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.project-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-alt);
  flex-shrink: 0;
}

.project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.project-card:hover .project-card__img img {
  transform: scale(1.03);
}

.project-card--featured .project-card__img {
  aspect-ratio: unset;
  flex: 1;
  min-height: 300px;
}

.project-card__info {
  padding: 24px;
}

.project-card__type {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}

.project-card__info h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -.02em;
  line-height: 1.3;
}

.project-card__info p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.project-card__result {
  font-size: .85rem;
  font-weight: 600;
  color: #2d7a4f;
}

.projects__footer {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   PROCESS
============================================================ */
.process {
  padding: 96px 0;
  background: var(--accent);
}

.process .section-header { color: var(--white); }
.process .section-header .section-label { color: rgba(255,255,255,.65); }
.process .section-header h2 { color: var(--white); }
.process .section-header p { color: rgba(255,255,255,.7); }

.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process__step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.process__step-num {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: rgba(255,255,255,.12);
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}

.process__step-icon {
  width: 68px; height: 68px;
  background: rgba(255,255,255,.14);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.process__step-icon svg { width: 28px; height: 28px; }

.process__step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -.02em;
  line-height: 1.3;
}
.process__step p {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
}

.process__connector {
  flex-shrink: 0;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.25);
  margin-top: 104px;
  position: relative;
}
.process__connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid rgba(255,255,255,.35);
  border-right: 1.5px solid rgba(255,255,255,.35);
  transform: rotate(45deg);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  padding: 96px 0;
  background: var(--bg-alt);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: #F4A623;
}
.testimonial-card__stars svg { width: 16px; height: 16px; }

.testimonial-card p {
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-card footer { margin-top: auto; }

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8125rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.testimonial-card__author strong {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text);
}
.testimonial-card__author span {
  font-size: .8125rem;
  color: var(--text-muted);
}

/* ============================================================
   CTA QUOTE (Homepage)
============================================================ */
.cta-quote {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--accent) 0%, #5a8aa8 100%);
  position: relative;
  overflow: hidden;
}

.cta-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-quote__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-quote__content .section-label { color: rgba(255,255,255,.7); }

.cta-quote__content h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-quote__content p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  margin-bottom: 32px;
}

.cta-quote__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-quote__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.cta-quote__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: .9375rem;
  font-weight: 500;
}

.cta-quote__feature svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================================
   QUOTE / FORMULARIO
============================================================ */
.quote {
  padding: 96px 0;
  background: var(--white);
}

.quote__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* —— Formulario ——*/
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-section-title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text);
  border-bottom: 2px solid var(--border);
  padding-bottom: 10px;
  letter-spacing: -.01em;
}

.form-section-title--advanced {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.form-section-optional {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 3px 10px;
  border-radius: 100px;
}

.form-section-desc {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: -8px;
}

.form-row { display: flex; gap: 16px; }
.form-row--2 > * { flex: 1; min-width: 0; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.01em;
}

.required { color: #c0392b; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B6B72' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(29,53,87,.1);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-error {
  font-size: .8125rem;
  color: #c0392b;
  font-weight: 500;
  min-height: 18px;
}

.form-hint {
  font-size: .8125rem;
  color: var(--text-muted);
}

/* —— Ventanas / elementos ——*/
.windows-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.window-item {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  position: relative;
}

.window-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.window-item__title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

.window-item__title-icon {
  width: 24px; height: 24px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
}

.window-item__remove {
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
  border: none;
  background: none;
  flex-shrink: 0;
}
.window-item__remove:hover { color: #c0392b; background: #fdf0ee; }
.window-item__remove svg { width: 16px; height: 16px; }

.window-item .form-row { margin-bottom: 12px; }
.window-item .form-row:last-child { margin-bottom: 0; }

/* —— Privacy checkbox ——*/
.form-privacy { display: flex; flex-direction: column; gap: 6px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.checkbox-custom {
  width: 20px; height: 20px;
  min-width: 20px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--accent);
  border-color: var(--accent);
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  width: 5px; height: 9px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

/* —— Form success ——*/
.form-success {
  background: #edfbf4;
  border: 1.5px solid #a3e6c4;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  color: #1d6b47;
}
.form-success svg { width: 36px; height: 36px; color: #27ae60; }
.form-success strong { font-size: 1.125rem; font-weight: 700; }
.form-success p { font-size: .9375rem; }
.form-success a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* —— Sidebar ——*/
.quote__sidebar-inner {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.quote__sidebar-inner h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.quote__sidebar-inner > p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-quick {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-quick:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.contact-quick--phone {
  background: var(--accent-light);
  color: var(--accent);
  border: 1.5px solid rgba(29,53,87,.15);
}

.contact-quick--whatsapp {
  background: #edfbf4;
  color: #1d6b47;
  border: 1.5px solid rgba(37,211,102,.25);
}

.contact-quick__icon {
  width: 40px; height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-quick--phone .contact-quick__icon { background: var(--accent); color: var(--white); }
.contact-quick--whatsapp .contact-quick__icon { background: var(--green-wa); color: var(--white); }
.contact-quick__icon svg { width: 20px; height: 20px; }

.contact-quick span { font-size: .8125rem; opacity: .75; display: block; }
.contact-quick strong { font-size: 1rem; font-weight: 700; }

.quote__sidebar-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.quote__sidebar-note svg { width: 16px; height: 16px; color: var(--text-muted); flex-shrink: 0; margin-top: 3px; }
.quote__sidebar-note p { font-size: .8375rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   CONTACT
============================================================ */
.contact {
  padding: 96px 0;
  background: var(--bg-alt);
}

.contact__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact__item-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.contact__item-icon svg { width: 20px; height: 20px; }

.contact__item span {
  display: block;
  font-size: .8125rem;
  color: var(--text-muted);
  font-weight: 500;
}
.contact__item strong, .contact__item a {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  transition: color var(--transition);
}
.contact__item a:hover { color: var(--accent); }

.contact__info .btn--whatsapp { margin-top: 8px; align-self: flex-start; }

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-md);
}
.contact__map iframe { display: block; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,.75);
  padding: 72px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.footer__logo .logo-mark { background: var(--accent-mid); }

.footer__brand p {
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer h4 {
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}

.footer__nav ul,
.footer__services ul { display: flex; flex-direction: column; gap: 10px; }

.footer__nav a,
.footer__services a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer__nav a:hover,
.footer__services a:hover { color: var(--white); }

.footer__contact ul { display: flex; flex-direction: column; gap: 14px; }
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
}
.footer__contact li svg { width: 16px; height: 16px; flex-shrink: 0; opacity: .6; }
.footer__contact a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer__contact a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: .85rem; color: rgba(255,255,255,.4); }

.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.footer__legal a:hover { color: rgba(255,255,255,.8); }

/* ============================================================
   WHATSAPP FLOTANTE
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float svg { width: 30px; height: 30px; }
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--text);
  color: var(--white);
  font-size: .8125rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.whatsapp-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--text);
}
.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   RESPONSIVE — Tablet (max 1024px)
============================================================ */
@media (max-width: 1024px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__inner { grid-template-columns: 1fr; gap: 48px; }
  .why__img { aspect-ratio: 16/7; }
  .projects__grid { grid-template-columns: repeat(2, 1fr); }
  .project-card--featured { grid-column: span 2; grid-row: span 1; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid .testimonial-card:last-child { grid-column: span 2; max-width: 560px; margin: 0 auto; width: 100%; }
  .quote__inner { grid-template-columns: 1fr; }
  .quote__sidebar-inner { position: static; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: span 2; }
  .process__steps { flex-wrap: wrap; justify-content: center; gap: 32px; }
  .process__connector { display: none; }
  .process__step { flex: 0 0 calc(50% - 32px); max-width: 280px; }
  .cta-quote__inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-quote__features { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — Mobile (max 768px)
============================================================ */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 24px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    max-height: calc(100dvh - var(--header-h));
  }
  .header__nav.open {
    transform: translateY(0);
    opacity: 1;
  }
  .nav__list { flex-direction: column; gap: 2px; align-items: stretch; }
  .nav__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    font-size: 1rem;
    width: 100%;
  }
  .nav__link::after { display: none; }
  .nav__item--has-dropdown { position: static; }
  .nav__dropdown {
    position: static;
    transform: none !important;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--accent-light);
    border-radius: 0;
    background: transparent;
    padding: 4px 0 8px 8px;
    margin: 0 0 4px 16px;
    display: none;
  }
  .nav__item--has-dropdown.open > .nav__dropdown { display: block; }
  .nav__dropdown-link { padding: 9px 14px; font-size: .9375rem; }

  .header__cta { display: none; }
  .hamburger { display: flex; }

  .hero__content { padding-top: 40px; padding-bottom: 60px; }
  .hero__stats { gap: 16px; }
  .hero__stat-divider { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .trust { padding: 40px 0; }
  .trust__grid { grid-template-columns: 1fr 1fr; gap: 20px; }

  .services { padding: 72px 0; }
  .services__grid { grid-template-columns: 1fr; gap: 16px; }

  .why { padding: 72px 0; }

  .projects { padding: 72px 0; }
  .projects__grid { grid-template-columns: 1fr; }
  .project-card--featured { grid-column: span 1; grid-row: span 1; }

  .process { padding: 72px 0; }
  .process__step { flex: 0 0 100%; max-width: 320px; }

  .testimonials { padding: 72px 0; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__grid .testimonial-card:last-child { grid-column: span 1; max-width: 100%; }
}

/* ============================================================
   RESPONSIVE — Small mobile (max 480px)
============================================================ */
@media (max-width: 480px) {
  .trust__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 2rem; }
  .section-header { margin-bottom: 40px; }
  .container { padding: 0 16px; }
  .footer__legal { flex-direction: column; gap: 10px; }
  .quote { padding: 72px 0; }
  .form-row { flex-direction: column; }

  .cta-quote { padding: 48px 0; }
  .cta-quote__content h2 { font-size: 1.75rem; }
  .cta-quote__actions { flex-direction: column; }
  .cta-quote__actions .btn { width: 100%; justify-content: center; }
  .cta-quote__features { grid-template-columns: 1fr; }

  .contact { padding: 72px 0; }

  .footer { padding: 48px 0 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}


/* ============================================================
   ANIMACIONES DE ENTRADA (Intersection Observer via JS)
============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .9s cubic-bezier(.22,.68,0,1.05), transform .9s cubic-bezier(.22,.68,0,1.05);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: .10s; }
.fade-in-delay-2 { transition-delay: .20s; }
.fade-in-delay-3 { transition-delay: .30s; }
.fade-in-delay-4 { transition-delay: .40s; }

/* Asegurar visibilidad si JS no carga */
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ============================================================
   PREMIUM DESIGN REFINEMENTS
============================================================ */

:root {
  --shadow-xl:   0 24px 64px rgba(0,0,0,.13), 0 8px 24px rgba(0,0,0,.08);
  --accent-glow: rgba(29,53,87,.18);
}

/* ——— Button micro-interactions ——— */
.btn {
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition),
              transform .22s cubic-bezier(.34,1.3,.64,1),
              border-color var(--transition);
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--primary:hover {
  background: var(--accent-mid);
  box-shadow: 0 6px 22px rgba(29,53,87,.32);
}
.btn--outline:hover { transform: translateY(-1px); }

/* ——— Hero enhancements ——— */
.hero__content { text-align: center; margin: 0 auto; max-width: 760px; }
.hero__badge    { margin-left: auto; margin-right: auto; }
.hero__subtitle {
  color: rgba(255,255,255,.92);
  margin-left: auto; margin-right: auto;
}
.hero__actions { justify-content: center; gap: 16px; }
.hero__stats   { justify-content: center; }
.hero__bg-overlay {
  background:
    linear-gradient(to top, rgba(8,16,28,.62) 0%, transparent 38%),
    linear-gradient(105deg,
      rgba(8,16,28,.80) 0%,
      rgba(13,22,35,.54) 45%,
      rgba(13,22,35,.26) 100%);
}

/* ——— Trust section ——— */
.trust__item {
  padding: 24px 16px;
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}
.trust__item:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.trust__icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--accent-light) 0%, rgba(29,53,87,.06) 100%);
  border-radius: 14px;
  transition: transform var(--transition);
}
.trust__item:hover .trust__icon { transform: scale(1.07); }

/* ——— Services section ——— */
.services { position: relative; }
.services::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(29,53,87,.04) 0%, transparent 68%);
  pointer-events: none;
}
.service-card {
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .36s cubic-bezier(.25,.1,.25,1),
              box-shadow .36s cubic-bezier(.25,.1,.25,1), border-color .3s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29,53,87,.08);
}
.service-card__icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--accent-light) 0%, rgba(29,53,87,.07) 100%);
  border-radius: 14px;
  margin-bottom: 24px;
  transition: transform var(--transition);
}
.service-card:hover .service-card__icon { transform: scale(1.04); }
.service-card__icon svg { width: 30px; height: 30px; }
.service-card p { margin-bottom: 20px; }

/* ——— Project cards ——— */
.project-card {
  transition: transform .36s cubic-bezier(.25,.1,.25,1), box-shadow .36s cubic-bezier(.25,.1,.25,1);
}
.project-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.project-card__info { padding: 28px; }
.project-card--featured .project-card__info { padding: 32px; }
.project-card--featured .project-card__info h3 { font-size: 1.25rem; }
.project-card__img { position: relative; }
.project-card--featured .project-card__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,22,35,.4) 0%, transparent 55%);
  pointer-events: none;
  transition: opacity var(--transition);
}
.project-card--featured:hover .project-card__img::after { opacity: 1.4; }
.project-card__result {
  color: #226e45;
  background: #edf7f1;
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
  font-size: .8125rem;
  font-weight: 600;
}

/* ——— Process / Cómo trabajamos ——— */
.process { padding: 112px 0; }
.process__step-num {
  font-size: 6rem;
  color: rgba(255,255,255,.14);
  letter-spacing: -.06em;
  margin-bottom: 2px;
}
.process__step-icon {
  width: 80px; height: 80px;
  background: rgba(255,255,255,.16);
  border: 1.5px solid rgba(255,255,255,.28);
  box-shadow: 0 4px 24px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.15);
  margin-bottom: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.process__step:hover .process__step-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.2);
}
.process__step-icon svg { width: 32px; height: 32px; }
.process__step { padding: 0 32px; }
.process__step h3 { font-size: 1.125rem; margin-bottom: 12px; }
.process__step p   { font-size: .9375rem; color: rgba(255,255,255,.72); }
.process__connector { margin-top: 124px; }

/* ——— CTA Quote ——— */
.cta-quote { padding: 120px 0; }
.cta-quote__actions { gap: 16px; }

/* ——— Footer enhancements ——— */
.footer h4 {
  color: rgba(255,255,255,.58);
  text-align: center;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .75rem;
  margin-bottom: 20px;
}
.footer__nav a,
.footer__services a {
  transition: color var(--transition), transform var(--transition);
  display: inline-block;
}
.footer__nav a:hover,
.footer__services a:hover { color: var(--white); transform: translateX(3px); }
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer__contact li svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  opacity: .65;
  color: var(--white);
  background: none;
  margin-top: 3px;
}
.footer__bottom { padding: 28px 0; }
.footer__legal a:hover { color: rgba(255,255,255,.85); }

/* ——— Why Vildek subtle bg ——— */
.why { position: relative; }
.why::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 100% 50%, rgba(29,53,87,.03) 0%, transparent 68%);
  pointer-events: none;
}



/* ============================================================
   TESTIMONIALS SLIDER
============================================================ */
.testimonials__slider-wrap {
  overflow: hidden;
  padding: 4px 0;
}
.testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  align-items: stretch;
}
.testimonials__track .testimonial-card {
  flex-shrink: 0;
}
.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 44px;
}
.testimonials__btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), box-shadow var(--transition),
              transform var(--transition);
}
.testimonials__btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px var(--accent-glow);
  transform: scale(1.06);
}
.testimonials__btn:disabled { opacity: .35; cursor: not-allowed; transform: none; }
.testimonials__btn svg { width: 18px; height: 18px; }
.testimonials__dots { display: flex; gap: 8px; align-items: center; }
.testimonials__dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: var(--border);
  border: none; cursor: pointer; padding: 0;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}
.testimonials__dot.active {
  background: var(--accent);
  transform: scale(1.15);
  width: 22px;
}
@media (max-width: 768px) {
  .testimonials__nav { margin-top: 32px; gap: 14px; }
  .testimonials__btn { width: 40px; height: 40px; }
}
