/* ═══════════════════════════════════════════
   DESATASCOS YA PROFESIONAL — style.css
   ═══════════════════════════════════════════ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-dark:   #0a2540;
  --blue-mid:    #0d3460;
  --blue:        #1a56db;
  --blue-light:  #3b82f6;
  --blue-hover:  #1d4ed8;
  --orange:      #f97316;
  --orange-dark: #ea6c0a;
  --green-wa:    #25d366;
  --green-wa-d:  #1da851;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-900:    #0f172a;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(10,37,64,.10);
  --shadow-lg:   0 8px 40px rgba(10,37,64,.18);
  --transition:  .22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── UTILITIES ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--blue-hover); border-color: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,86,219,.35); }

.btn-wa {
  background: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
}
.btn-wa:hover { background: var(--green-wa-d); border-color: var(--green-wa-d); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,.35); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); transform: translateY(-1px); }

.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-xl { padding: 18px 40px; font-size: 1.1rem; border-radius: 12px; }

/* ── TOPBAR ── */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,.8);
  font-size: .8rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-contacts { display: flex; align-items: center; gap: 16px; }
.topbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
.topbar-link:hover { color: var(--white); }
.topbar-wa { color: var(--green-wa); }
.topbar-wa:hover { color: #4ade80; }

/* ── HEADER ── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(10,37,64,.07);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex-shrink: 0;
}
.logo-main {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue-dark);
}
.logo-sub {
  font-size: .7rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
}
.nav-link:hover { color: var(--blue); background: var(--gray-100); }
.header-cta { margin-left: 12px; font-size: .875rem; padding: 10px 20px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 16px 24px 24px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
}
.nav-mobile-link:hover { background: var(--gray-100); color: var(--blue); }
.nav-mobile-cta { margin-top: 12px; justify-content: center; }

/* ── SECTION BASE ── */
.section { padding: 80px 0; }
.section-dark {
  background: var(--blue-dark);
  color: var(--white);
}
.section-light { background: var(--gray-50); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-label-light { color: rgba(255,255,255,.7); }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title-light { color: var(--white); }
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,37,64,.85) 0%,
    rgba(13,52,96,.7) 50%,
    rgba(10,37,64,.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  width: fit-content;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero-title-accent { color: #60a5fa; }

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 580px;
}
.hero-desc strong { color: var(--white); }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  font-weight: 500;
}
.hero-badge-item svg { color: #60a5fa; flex-shrink: 0; }

/* Tabs */
.hero-tabs {
  position: relative;
  z-index: 2;
  background: rgba(10,37,64,.85);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.1);
}
.tabs-row {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs-row::-webkit-scrollbar { display: none; }
.tab-btn {
  flex: 1;
  min-width: 160px;
  padding: 18px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--white); background: rgba(255,255,255,.06); }
.tab-active { color: var(--white) !important; border-bottom-color: #60a5fa !important; background: rgba(255,255,255,.06); }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-img { transform: scale(1.05); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,.3) 0%, transparent 60%);
}

.service-body { padding: 24px; }
.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.service-desc {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-700);
}
.service-features svg { color: var(--blue); flex-shrink: 0; }

/* ── WHY ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-text {
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  margin-bottom: 16px;
}
.why-text strong { color: var(--white); }

.why-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.why-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}
.why-list-item svg { color: #4ade80; flex-shrink: 0; }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.03em;
}
.stat-number span { font-size: 1.8rem; color: #60a5fa; }
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── PROCESO / STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 48px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  text-align: center;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue);
  opacity: .25;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.04em;
}
.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.step-desc { font-size: .9rem; color: var(--gray-600); line-height: 1.65; }

.step-connector {
  width: 48px;
  height: 2px;
  background: var(--gray-200);
  margin-top: 70px;
  position: relative;
  flex-shrink: 0;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: -5px;
  border: 6px solid transparent;
  border-left-color: var(--gray-400);
}

.proceso-cta { text-align: center; }

/* ── REVIEW ── */
.review-wrap { max-width: 720px; margin: 0 auto; }
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 32px;
  font-size: 6rem;
  color: var(--blue);
  opacity: .12;
  font-family: Georgia, serif;
  line-height: 1;
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.review-text {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.review-name {
  display: block;
  font-weight: 700;
  color: var(--gray-900);
  font-size: .95rem;
}
.review-role {
  display: block;
  font-size: .82rem;
  color: var(--gray-400);
}

/* ── MAP SECTION ── */
.section-map {
  position: relative;
  padding: 0;
  min-height: 440px;
  display: flex;
  align-items: center;
}
.map-img-wrap {
  position: absolute;
  inset: 0;
}
.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.map-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,.88) 0%, rgba(10,37,64,.6) 100%);
}
.map-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 600px;
}
.map-desc {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.map-desc strong { color: var(--white); }

/* ── INFRAESTRUCTURA ── */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.infra-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.infra-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow); transform: translateY(-3px); }
.infra-icon {
  width: 56px;
  height: 56px;
  background: rgba(26,86,219,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
}
.infra-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.infra-desc { font-size: .875rem; color: var(--gray-600); line-height: 1.65; }

.infra-cta-box {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.infra-cta-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.infra-cta-text p { color: rgba(255,255,255,.75); font-size: .9rem; }
.infra-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.infra-cta-box .btn-outline { border-color: rgba(255,255,255,.4); color: var(--white); }
.infra-cta-box .btn-outline:hover { background: rgba(255,255,255,.15); }

/* ── FAQ ── */
.faq-container { max-width: 780px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item[open] { border-color: var(--blue-light); box-shadow: var(--shadow); }
.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .95rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--blue);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
details[open] .faq-question::after { content: '−'; }
.faq-answer {
  padding: 0 24px 20px;
  color: var(--gray-600);
  font-size: .9rem;
  line-height: 1.7;
}

/* ── CTA FINAL ── */
.cta-final {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
}
.cta-inner { text-align: center; }
.cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-desc {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.75);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  margin-bottom: 16px;
}
.footer-logo .logo-main { color: var(--white); }
.footer-logo .logo-sub { color: var(--blue-light); }
.footer-desc {
  font-size: .875rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-address {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.footer-contacts { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.footer-contact-link:hover { color: var(--white); }

.footer-col-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,.8); }

/* ── FLOATING CTA ── */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  background: var(--blue);
  color: var(--white);
  border-radius: 100px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 28px rgba(26,86,219,.45);
  transition: all var(--transition);
  animation: slideUp .6s .5s both;
}
.float-cta:hover { background: var(--blue-hover); transform: translateY(-3px); box-shadow: 0 10px 36px rgba(26,86,219,.55); }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BANDA ZONAS ── */
.section-zonas {
  background: var(--blue-dark);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.zonas-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.zonas-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.45);
  white-space: nowrap;
  flex-shrink: 0;
}
.zonas-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.zonas-list span {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
.zonas-list .sep { color: rgba(255,255,255,.25); }
.zonas-more { color: #60a5fa !important; font-weight: 600 !important; }

/* ── SERVICE IMAGE PLACEHOLDERS (for new services without photos) ── */
.service-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sip-teal { background: linear-gradient(135deg, #0d9488 0%, #0e7490 100%); }
.sip-blue { background: linear-gradient(135deg, #1d4ed8 0%, #0d3460 100%); }
.sip-dark { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); }

/* ── LEGAL PAGES ── */
.legal-page { padding: 80px 0; }
.legal-page h1 { font-size: 2rem; font-weight: 800; color: var(--gray-900); margin-bottom: 32px; }
.legal-page h2 { font-size: 1.2rem; font-weight: 700; color: var(--gray-900); margin: 32px 0 12px; }
.legal-page p, .legal-page li { font-size: .95rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 12px; }
.legal-page ul { list-style: disc; padding-left: 24px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .step-connector { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar-item:not(:last-child) { display: none; }
  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 100svh; }
  .hero-content { padding-top: 60px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }

  .float-cta { bottom: 16px; right: 16px; }

  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-badges { flex-direction: column; gap: 12px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .infra-cta-btns { flex-direction: column; width: 100%; }
}
