/* ====== Aseo Casa Express — base styles ====== */

:root {
  /* Defaults (overridden via inline style on :root from tweaks) */
  --navy: #0B2545;
  --navy-2: #13315C;
  --navy-soft: #1B3A6B;
  --aqua: #14B8A6;
  --aqua-2: #06B6D4;
  --aqua-soft: #E0F7F4;
  --accent: #14B8A6;
  --accent-soft: #E0F7F4;
  --ink: #0F172A;
  --ink-2: #334155;
  --ink-3: #64748B;
  --line: #E2E8F0;
  --surface: #FFFFFF;
  --bg: #F8FAFC;
  --bg-2: #F1F5F9;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow: 0 4px 12px rgba(15, 23, 42, 0.06), 0 12px 28px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 60px rgba(11, 37, 69, 0.18);
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; margin: 0; color: var(--ink); }
h1 { font-size: clamp(36px, 5vw, 60px); letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 1.8vw, 26px); }
p { margin: 0; color: var(--ink-2); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: clamp(64px, 8vw, 110px) 0; position: relative; overflow: hidden; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; position: relative; overflow: hidden; }

/* Default light section gradient (matches hero) — overridden by .dark-section sections below */
.section:not(.services-section):not(.about):not(.packages):not(.testimonials):not(.forms-section) {
  background: linear-gradient(180deg, #F0F9FF 0%, #FFFFFF 100%);
}
.section:not(.services-section):not(.about):not(.packages):not(.testimonials):not(.forms-section)::before,
.section-tight::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--accent) 22%, transparent), transparent);
  pointer-events: none;
  z-index: 0;
}
/* Alternate the accent glow to left on every other section for rhythm */
.section:nth-of-type(even):not(.services-section):not(.about)::before {
  right: auto;
  left: -150px;
  top: auto;
  bottom: -200px;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--navy) 14%, transparent), transparent);
}
.section-tight {
  background: linear-gradient(180deg, #F0F9FF 0%, #FFFFFF 100%);
}
.section-tight::before {
  left: -150px; right: auto;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--accent) 18%, transparent), transparent);
}
.section > .container, .section-tight > .container { position: relative; z-index: 1; }

/* Keep packages/testimonials with their own backgrounds but layer the gradient on top */
.packages {
  background: linear-gradient(180deg, #F0F9FF 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}
.packages::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--accent) 22%, transparent), transparent);
  pointer-events: none;
  z-index: 0;
}
.packages > .container { position: relative; z-index: 1; }

.testimonials {
  background: linear-gradient(180deg, #F0F9FF 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: auto; bottom: -200px; left: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--accent) 22%, transparent), transparent);
  pointer-events: none;
  z-index: 0;
}
.testimonials > .container { position: relative; z-index: 1; }

.forms-section {
  background: linear-gradient(180deg, #F0F9FF 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}
.forms-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--accent) 22%, transparent), transparent);
  pointer-events: none;
  z-index: 0;
}
.forms-section > .container { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--navy);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head p { margin-top: 16px; font-size: 17px; }

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 6px 18px rgba(11, 37, 69, 0.25);
}
.btn-primary:hover { background: var(--navy-2); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(11, 37, 69, 0.3); }
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px color-mix(in oklab, var(--accent) 35%, transparent);
}
.btn-accent:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { background: var(--bg); border-color: var(--navy); }
.btn-white {
  background: #fff;
  color: var(--navy);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: #1ebe5b; transform: translateY(-1px); }
.btn-lg { padding: 16px 26px; font-size: 16px; }

/* ====== Header ====== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.brand .logo-slot,
.brand .brand-logo {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px color-mix(in oklab, var(--navy) 35%, transparent);
}
.brand .brand-logo svg { display: block; }
.brand-logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}
@media (max-width: 600px) {
  .brand-logo-img { height: 44px; }
}
.brand .brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand .brand-text .b1 { font-size: 19px; color: var(--navy); letter-spacing: -0.01em; }
.brand .brand-text .b2 { font-size: 12px; color: var(--ink-3); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 3px; }

.nav {
  display: flex; align-items: center; gap: 28px;
}
.nav a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-2);
  transition: color .15s ease;
}
.nav a:hover { color: var(--navy); }
.header-cta { display: flex; align-items: center; gap: 12px; }

.btn-wa-header {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  flex-shrink: 0;
}
.btn-wa-header:hover {
  background: #1ebe5b;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}
.header-phone {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--navy);
  font-size: 14.5px;
}

.cta-short { display: none; }

@media (max-width: 900px) {
  .nav { display: none; }
  .header-phone span { display: none; }
}
@media (max-width: 600px) {
  .site-header .bar { gap: 10px; padding: 12px 0; }
  .brand { gap: 8px; min-width: 0; }
  .brand-logo-img { height: 38px; }
  .brand .brand-text .b1 { font-size: 15px; }
  .brand .brand-text .b2 { font-size: 9px; letter-spacing: 0.06em; }
  .header-cta { gap: 8px; }
  .btn-wa-header { width: 38px; height: 38px; }
  .header-cta .btn-primary { padding: 9px 14px; font-size: 13px; }
  .cta-full { display: none; }
  .cta-short { display: inline; }
}
@media (max-width: 380px) {
  .brand .brand-text .b2 { display: none; }
  .brand .brand-text .b1 { font-size: 14px; }
}

/* ====== Hero ====== */
.hero {
  position: relative;
  background: linear-gradient(180deg, #F0F9FF 0%, #FFFFFF 100%);
  overflow: hidden;
  padding: clamp(48px, 7vw, 90px) 0 clamp(64px, 8vw, 110px);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--accent) 25%, transparent), transparent);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  position: relative;
}
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy h1 .accent { color: var(--accent); }
.hero-copy .lead { font-size: 18px; color: var(--ink-2); margin-bottom: 28px; max-width: 540px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 24px;
  margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line);
}
.hero-trust .item { display: flex; align-items: center; gap: 10px; }
.hero-trust .icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-soft); color: var(--navy);
  display: grid; place-items: center;
}
.hero-trust .label { font-size: 13px; color: var(--ink-3); font-weight: 500; }
.hero-trust .val { font-size: 15px; color: var(--navy); font-weight: 700; }

.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero image */
.hero-art {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(11, 37, 69, 0.25), 0 12px 32px rgba(11, 37, 69, 0.15);
  aspect-ratio: 4/3;
  background: var(--bg-2);
  order: 2;
}
.hero-art .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease, transform 5s ease-out;
  transform: scale(1.05);
}
.hero-art .hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide-dots {
  position: absolute;
  bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 2;
  background: rgba(11, 37, 69, 0.4);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 999px;
}
.hero-slide-dots .dot {
  width: 28px; height: 4px; border-radius: 999px;
  background: rgba(255,255,255,0.45);
  border: none; padding: 0; cursor: pointer;
  transition: background .25s ease, width .25s ease;
}
.hero-slide-dots .dot:hover { background: rgba(255,255,255,0.75); }
.hero-slide-dots .dot.active { background: var(--accent); width: 40px; }
.hero-art img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
}
.hero-badge.b1 { top: 18px; left: -12px; }
.hero-badge.b2 { bottom: 22px; right: -12px; }
.hero-badge .ic {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--accent-soft); color: var(--navy);
  display: grid; place-items: center;
}
.hero-badge .ic svg { width: 18px; height: 18px; }
.hero-badge .t1 { font-size: 11px; color: var(--ink-3); font-weight: 500; line-height: 1.2; }
.hero-badge .t2 { font-size: 13px; color: var(--navy); font-weight: 700; line-height: 1.2; }

@media (max-width: 600px) {
  .hero-badge { padding: 8px 12px; border-radius: 12px; }
  .hero-badge .ic { width: 28px; height: 28px; }
  .hero-badge .ic svg { width: 16px; height: 16px; }
  .hero-badge .t1 { font-size: 10px; }
  .hero-badge .t2 { font-size: 12px; }
}

/* Hero quick form */
.quick-quote {
  margin-top: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
}
.quick-quote .qq-title { font-size: 13px; color: var(--ink-3); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.quick-quote .qq-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 10px;
}
.quick-quote select, .quick-quote input {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--bg);
  transition: border-color .15s ease, background .15s ease;
}
.quick-quote select:focus, .quick-quote input:focus { outline: none; border-color: var(--accent); background: #fff; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { aspect-ratio: 4/3; max-width: 100%; }
  .quick-quote .qq-grid { grid-template-columns: 1fr 1fr; }
  .quick-quote .qq-grid .btn { grid-column: 1 / -1; }
}

/* ====== Logos / trust strip ====== */
.trust-strip {
  background: var(--bg);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.trust-strip .row {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.trust-strip .row span {
  font-size: 13px; font-weight: 600; color: var(--ink-3); letter-spacing: 0.04em;
  display: inline-flex; align-items: center; gap: 8px;
}

/* ====== Services ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-card .ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--navy);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 15px; }
.service-card ul {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.service-card ul li {
  font-size: 14px; color: var(--ink-2);
  display: flex; align-items: center; gap: 8px;
}
.service-card ul li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ===== Services section with photo backgrounds ===== */
.services-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(72px, 9vw, 120px) 0;
  background: #fff;
}
.services-hero-photo {
  margin: 0 auto 48px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(11, 37, 69, 0.18);
  max-width: 1000px;
  position: relative;
  aspect-ratio: 16/9;
}
.services-photo-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease, transform 4s ease-out;
  transform: scale(1.05);
}
.services-photo-slide.active {
  opacity: 1;
  transform: scale(1);
}
.services-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.services-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease, transform 8s ease-out;
  transform: scale(1.04);
  filter: blur(18px) saturate(110%);
}
.services-bg-img.active {
  opacity: 0.35;
  transform: scale(1);
}
.services-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.85) 100%);
}
.services-content { position: relative; z-index: 1; }
.services-head .eyebrow { background: var(--accent-soft); color: var(--navy); }
.services-head .eyebrow .dot { background: var(--accent); }
.services-head h2 { color: var(--ink); }
.services-head p { color: var(--ink-2); }

.services-grid-dark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card-dark {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
  color: var(--ink);
  font-family: inherit;
}
.service-card-dark:hover,
.service-card-dark.active {
  background: #fff;
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 37, 69, 0.15);
}
.service-card-dark .ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--navy);
  display: grid; place-items: center;
  margin-bottom: 20px;
  transition: transform .25s ease, background .25s ease;
}
.service-card-dark.active .ic,
.service-card-dark:hover .ic { transform: scale(1.08) rotate(-3deg); background: var(--accent); color: #fff; }
.service-card-dark h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 8px;
}
.service-card-dark p {
  color: var(--ink-2);
  font-size: 15px;
}
.service-card-dark ul {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.service-card-dark ul li {
  font-size: 14px; color: var(--ink-2);
  display: flex; align-items: center; gap: 10px;
}
.service-card-dark ul li::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.services-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.services-dots .dot {
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: rgba(11, 37, 69, 0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.services-dots .dot:hover { background: rgba(11, 37, 69, 0.35); }
.services-dots .dot.active {
  background: var(--accent);
  width: 56px;
}

.services-logo {
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  position: relative;
}
.services-logo-mark {
  width: 84px;
  height: 84px;
  object-fit: contain;
  display: block;
}
.services-logo-text { display: flex; flex-direction: column; gap: 4px; }
.services-logo-text .sl-1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.services-logo-text .sl-2 {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-dark { grid-template-columns: 1fr; }
}

/* ====== Packages ====== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pkg {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1.5px solid var(--line);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pkg:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pkg.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: scale(1.04);
  box-shadow: 0 24px 60px rgba(11, 37, 69, 0.25);
}
.pkg.featured h3, .pkg.featured .pkg-tagline, .pkg.featured .pkg-list li { color: #fff; }
.pkg.featured .pkg-list li::before { background: var(--accent); }
.pkg.featured .pkg-eyebrow { background: var(--accent); color: var(--navy); }
.pkg-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--navy);
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
}
.pkg-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--accent-soft); color: var(--navy);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.pkg h3 { font-size: 28px; margin-bottom: 6px; }
.pkg .pkg-tagline { font-size: 15px; color: var(--ink-3); margin-bottom: 24px; }
.pkg-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.pkg-list li { font-size: 14.5px; color: var(--ink-2); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.pkg-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.pkg .pkg-price {
  font-size: 14px; color: var(--ink-3); margin-bottom: 18px; font-style: italic;
}
.pkg.featured .pkg-price { color: rgba(255,255,255,0.7); }
.pkg .btn { margin-top: auto; }

@media (max-width: 900px) {
  .packages-grid { grid-template-columns: 1fr; }
  .pkg.featured { transform: none; }
}

/* ====== How it works ====== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.step {
  text-align: left;
  position: relative;
}
.step .num {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 18px;
  margin-bottom: 18px;
  font-family: var(--font-display);
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 14.5px; }

@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* ====== About ====== */
.about {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--accent) 30%, transparent), transparent);
}
.about h2, .about p { color: #fff; }
.about .eyebrow { background: rgba(255,255,255,0.1); color: #fff; }
.about .eyebrow .dot { background: var(--accent); }
.about .lead { font-size: 18px; color: rgba(255,255,255,0.85); }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  position: relative;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}
.about-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px 18px;
}
.about-stat .n { font-size: 30px; font-weight: 800; color: var(--accent); font-family: var(--font-display); }
.about-stat .l { font-size: 13px; color: rgba(255,255,255,0.7); }
.about-img {
  border-radius: var(--radius-xl);
  overflow: visible;
  aspect-ratio: 1195/896;
  background: rgba(255,255,255,0.04);
  position: relative;
}
.about-img > img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--radius-xl);
}
.about-logo-card {
  position: absolute;
  right: -28px;
  bottom: -28px;
  background: #fff;
  border-radius: 22px;
  padding: 16px 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  display: flex; align-items: center; gap: 14px;
}
.about-logo-card svg,
.about-logo-card .about-logo-mark { display: block; flex-shrink: 0; }
.about-logo-card .about-logo-mark { width: 52px; height: 52px; object-fit: contain; }
.about-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.about-logo-text .alt-1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.about-logo-text .alt-2 {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin-top: 4px;
}
@media (max-width: 600px) {
  .about-stats { gap: 8px; }
  .about-stat { padding: 14px 10px; border-radius: 12px; }
  .about-stat .n { font-size: 22px; }
  .about-stat .l { font-size: 11px; }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img { aspect-ratio: 1195/896; }
  .about-logo-card { right: 16px; bottom: -32px; padding: 12px 16px; gap: 10px; }
  .about-logo-card svg, .about-logo-card .about-logo-mark { width: 48px; height: 48px; }
  .about-logo-text .alt-1 { font-size: 15px; }
  .about-logo-text .alt-2 { font-size: 9px; }
}

/* ====== Selection process ====== */
.selection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sel-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.sel-card:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.sel-card .ic {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-soft); color: var(--navy);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.sel-card h3 { font-size: 18px; margin-bottom: 6px; }
.sel-card p { font-size: 14.5px; }

@media (max-width: 900px) { .selection-grid { grid-template-columns: 1fr; } }

/* ====== Extras + Care ====== */
.extras-hero {
  max-width: 1000px;
  margin: 0 auto 40px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(11, 37, 69, 0.18);
  aspect-ratio: 16/9;
}
.extras-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.extras-hero-carousel { position: relative; aspect-ratio: 16/9; }
.extras-hero-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  visibility: hidden;
}
.extras-hero-carousel img.is-active { visibility: visible; }
.extras-hero-dots {
  position: absolute;
  bottom: 16px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.extras-hero-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 0;
  transition: background 200ms ease, transform 200ms ease;
}
.extras-hero-dots button.is-active {
  background: #fff;
  transform: scale(1.3);
}

.extras-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.extra-pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.extra-pill:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent);
}
.extra-pill .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--navy);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.extra-pill h3 { font-size: 17px; margin-bottom: 4px; color: var(--navy); }
.extra-pill p { font-size: 14px; color: var(--ink-2); line-height: 1.5; }

@media (max-width: 900px) { .extras-list { grid-template-columns: 1fr; } }

/* (legacy extras-grid — kept for backward compatibility, unused) */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.extra-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.extra-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.extra-card .img {
  background: var(--bg-2);
  width: 100%; height: 100%;
  min-height: 160px;
}
.extra-card .img img { width: 100%; height: 100%; object-fit: cover; }
.extra-card .body { padding: 22px; display: flex; flex-direction: column; justify-content: center; }
.extra-card h3 { font-size: 18px; margin-bottom: 6px; }
.extra-card p { font-size: 14px; }
.extra-card .tag {
  font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 8px;
}

@media (max-width: 700px) { .extras-grid { grid-template-columns: 1fr; } .extra-card { grid-template-columns: 100px 1fr; } }

/* Care cards (larger, two-column) */
.care-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.care-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
}
.care-card img { width: 100%; height: 100%; object-fit: cover; }
.care-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,37,69,0.85) 100%);
}
.care-card .label {
  position: absolute; bottom: 28px; left: 28px; right: 28px; color: #fff;
}
.care-card .label .tag {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  background: var(--accent); color: var(--navy);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 10px;
}
.care-card .label h3 { color: #fff; font-size: 24px; margin-bottom: 6px; }
.care-card .label p { color: rgba(255,255,255,0.9); font-size: 14.5px; }

@media (max-width: 800px) { .care-grid { grid-template-columns: 1fr; } }

/* ====== Testimonials ====== */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column;
}
.testi .stars { color: #F59E0B; margin-bottom: 14px; display: flex; gap: 2px; }
.testi .quote { font-size: 15.5px; color: var(--ink-2); line-height: 1.6; flex: 1; }
.testi .who {
  display: flex; align-items: center; gap: 12px;
  margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line);
}
.testi .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent-soft); color: var(--navy);
  display: grid; place-items: center; font-weight: 700; font-size: 15px;
  flex-shrink: 0;
}
.testi .who .n { font-weight: 700; font-size: 14.5px; color: var(--navy); }
.testi .who .l { font-size: 13px; color: var(--ink-3); }

@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }

/* ====== FAQ ====== */
.faq {
  max-width: 820px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color .15s ease;
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 22px; height: 22px;
  background: var(--bg);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230B2545' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .ans { padding: 0 24px 22px; font-size: 15px; color: var(--ink-2); line-height: 1.6; }

/* ====== Forms ====== */
.forms-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}
.form-card {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-card.dark {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.form-card.dark h3, .form-card.dark p { color: #fff; }
.form-card.dark label { color: rgba(255,255,255,0.85); }
.form-card.dark input, .form-card.dark select, .form-card.dark textarea {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
}
.form-card.dark input::placeholder, .form-card.dark textarea::placeholder { color: rgba(255,255,255,0.5); }
.form-card.dark input:focus, .form-card.dark select:focus, .form-card.dark textarea:focus { border-color: var(--accent); background: rgba(255,255,255,0.12); }
.form-card h3 { font-size: 24px; margin-bottom: 6px; }
.form-card .form-lead { font-size: 14.5px; margin-bottom: 24px; }

.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 12px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* Honeypot anti-spam (invisible to people, tempting to bots) */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Data-consent checkbox */
.consent-label {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 4px 0 18px;
  font-size: 12.5px; line-height: 1.45;
  color: var(--ink-3);
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--accent);
  cursor: pointer;
}
.form-card.dark .consent-label { color: rgba(255,255,255,0.75); }

.file-input {
  border: 1.5px dashed var(--line);
  border-radius: 10px;
  padding: 14px;
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
  cursor: pointer;
  background: var(--bg);
}
.form-card.dark .file-input { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.7); }

.cv-note {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  line-height: 1.45;
}
.cv-note svg { flex-shrink: 0; color: var(--accent); }
.cv-note > span { min-width: 0; overflow-wrap: anywhere; }
.cv-note a { color: #fff; text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; word-break: break-word; }
.cv-note a:hover { color: var(--accent); }

.form-success {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 10px;
  background: color-mix(in oklab, var(--accent) 14%, transparent);
  color: var(--navy);
  font-size: 14px;
  display: flex; align-items: center; gap: 8px;
}
.form-card.dark .form-success { background: rgba(255,255,255,0.1); color: #fff; }

@media (max-width: 900px) { .forms-grid { grid-template-columns: minmax(0, 1fr); } .form-card { padding: 28px; } }

/* ====== Footer ====== */
.footer {
  background: #061A30;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 28px;
}
.footer h4 { color: #fff; font-size: 14px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.footer a { color: rgba(255,255,255,0.65); font-size: 14.5px; }
.footer a:hover { color: var(--accent); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid .col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand .brand-text .b1 { color: #fff; }
.footer .brand .brand-text .b2 { color: rgba(255,255,255,0.5); }
.footer-desc { font-size: 14.5px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 18px; max-width: 320px; }
.footer-contact {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-contact .row { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; }
.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: var(--accent); }

.footer-social {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-social-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.social-icons {
  display: flex;
  gap: 10px;
}
.social-ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  transition: filter .2s ease, transform .2s ease, box-shadow .2s ease;
}
.social-ic:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}
.social-ig,
.social-fb,
.social-tt,
.social-yt { background: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 13px; color: rgba(255,255,255,0.45);
  flex-wrap: wrap; gap: 12px;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ====== Floating WhatsApp ====== */
.fab-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  z-index: 40;
  transition: transform .2s ease;
  animation: pulse-whats 2.4s ease-in-out infinite;
}
.fab-whatsapp:hover { transform: scale(1.08); }
.fab-whatsapp .pulse-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 3px solid #25D366; opacity: 0.5;
  animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes pulse-whats {
  0%, 100% { box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6); }
}

/* ====== Tweaks variant: friendly ====== */
[data-style="friendly"] {
  --radius: 22px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --font-display: 'Nunito', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
}
[data-style="friendly"] .btn { border-radius: 999px; padding: 14px 26px; }
[data-style="friendly"] .field input, [data-style="friendly"] .field select, [data-style="friendly"] .field textarea { border-radius: 14px; }
[data-style="friendly"] .quick-quote select, [data-style="friendly"] .quick-quote input { border-radius: 14px; }

[data-style="bold"] {
  --font-display: 'DM Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 6px;
  --radius-lg: 10px;
  --radius-xl: 14px;
}
[data-style="bold"] h1, [data-style="bold"] h2 { letter-spacing: -0.035em; font-weight: 800; }
[data-style="bold"] .btn { border-radius: 8px; font-weight: 700; }
[data-style="bold"] .pkg { border-width: 2px; }

/* Hero layout variants */
[data-hero="centered"] .hero-grid { grid-template-columns: 1fr; text-align: center; max-width: 900px; margin: 0 auto; }
[data-hero="centered"] .hero-art { display: none; }
[data-hero="centered"] .hero-trust { justify-content: center; }
[data-hero="centered"] .hero-cta-row { justify-content: center; }
[data-hero="centered"] .hero-copy .lead { margin-left: auto; margin-right: auto; }
[data-hero="centered"] .quick-quote { max-width: 720px; margin-left: auto; margin-right: auto; }

[data-hero="overlay"] .hero { padding: 0; }
[data-hero="overlay"] .hero-grid {
  grid-template-columns: 1fr;
  min-height: 640px;
  padding: clamp(64px, 8vw, 120px) 24px;
  border-radius: 0;
  position: relative;
  color: #fff;
}
[data-hero="overlay"] .hero-art {
  position: absolute; inset: 0; border-radius: 0; aspect-ratio: auto;
  z-index: 0;
}
[data-hero="overlay"] .hero-art::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,37,69,0.4) 0%, rgba(11,37,69,0.85) 100%);
}
[data-hero="overlay"] .hero-copy { position: relative; z-index: 1; max-width: 720px; color: #fff; }
[data-hero="overlay"] .hero-copy h1, [data-hero="overlay"] .hero-copy .lead { color: #fff; }
[data-hero="overlay"] .hero-copy .lead { color: rgba(255,255,255,0.85); }
[data-hero="overlay"] .hero-trust { border-color: rgba(255,255,255,0.2); }
[data-hero="overlay"] .hero-trust .label { color: rgba(255,255,255,0.7); }
[data-hero="overlay"] .hero-trust .val { color: #fff; }
[data-hero="overlay"] .hero-trust .icon { background: rgba(255,255,255,0.15); color: #fff; }
[data-hero="overlay"] .hero-badge { display: none; }
[data-hero="overlay"] .quick-quote { background: #fff; color: var(--ink); }
[data-hero="overlay"] .quick-quote .qq-title { color: var(--ink-3); }
