/* Cuimo Service landing — local styles. Tokens from ../design-system/colors_and_type.css */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.dirA section[id] { scroll-margin-top: 24px; }

/* =====================================================
   SHARED
   ===================================================== */
.cs-art {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  font-family: var(--font-family);
  color: var(--tire-black);
  line-height: var(--lh-normal);
  letter-spacing: var(--tracking-normal);
  overflow: hidden;
}
.cs-art a { color: inherit; text-decoration: none; }
.cs-art button { font-family: inherit; cursor: pointer; border: none; background: none; }
.cs-art img { display: block; max-width: 100%; }

/* Photo placeholders — neutral concrete-like fill, no AI-slop gradients */
.ph {
  position: relative;
  background:
    radial-gradient(120% 90% at 30% 20%, rgba(255,255,255,.4), transparent 60%),
    linear-gradient(135deg, #c9c5c0, #8b8680);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-weight: 500; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  overflow: hidden;
}
.ph.dark {
  background:
    radial-gradient(120% 90% at 30% 20%, rgba(255,255,255,.12), transparent 60%),
    linear-gradient(135deg, #2a2826, #15130f);
  color: rgba(255,255,255,.45);
}
.ph.warm {
  background:
    radial-gradient(120% 90% at 30% 20%, rgba(255,255,255,.35), transparent 60%),
    linear-gradient(135deg, #d8c8b8, #8a7864);
}
.ph::after {
  content: attr(data-label);
  position: absolute; bottom: 12px; right: 14px;
  font-size: 10px; letter-spacing: 0.08em;
}

/* =====================================================
   DIRECTION A — "Service Confianza"
   Fiel a cuimo.com: aluminium bg, white cards, orange accents
   ===================================================== */
.dirA {
  background: var(--aluminium-grey);
}
.dirA .nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 40px;
  background: #fff; border-bottom: 1px solid var(--light-gray);
}
.dirA .nav-left { display: flex; align-items: center; gap: 36px; }
.dirA .nav-logo { display: inline-flex; align-items: center; }
.dirA .nav-logo img { height: 32px; display: block; }
.dirA .nav-logo .service-tag {
  display: none;
  margin-left: 10px; padding: 3px 10px;
  background: var(--tire-black); color: #fff;
  border-radius: 999px; font-size: 10px; font-weight: 900;
  letter-spacing: 0.08em; text-transform: uppercase;
  vertical-align: 4px;
}
.dirA .nav-menu { display: flex; gap: 26px; }
.dirA .nav-menu a { font-size: 14px; font-weight: 500; }
.dirA .nav-right { display: flex; align-items: center; gap: 16px; }
.dirA .nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
}
.dirA .btn-cta {
  height: 40px; padding: 0 20px; border-radius: 999px;
  background: var(--signal-orange); color: #fff;
  font-size: 14px; font-weight: 500;
  line-height: 1;
}
/* Buttons-as-links: keep visual parity */
.dirA a.btn-cta,
.dirA a.primary,
.dirA a.secondary,
.dirA a.reserve,
.dirA a.perk-cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; }

/* Hero */
.dirA .hero {
  padding: 12px;
}
.dirA .hero-card {
  position: relative;
  border-radius: 28px; overflow: hidden;
  background: var(--tire-black);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: 560px;
}
.dirA .hero-img {
  position: relative;
  background-image: url('img/hero-mecanico.png');
  background-size: cover;
  background-position: center;
  background-color: #0e0e0e;
  min-height: 560px;
}
.dirA .hero-img::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(20,20,20,0.55) 0%, rgba(0,0,0,0.1) 35%, rgba(0,0,0,0) 100%);
}
.dirA .hero-content {
  padding: 56px 56px 56px 64px;
  color: #fff;
  display: flex; flex-direction: column; justify-content: center;
}
.dirA .hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  padding: 8px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 24px;
}
.dirA .hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--charge-green); }
.dirA .hero h1 {
  font-size: 64px; font-weight: 600;
  letter-spacing: -0.025em; line-height: 1.0;
  margin: 0 0 20px;
}
.dirA .hero-sub {
  font-size: 19px; font-weight: 500; line-height: 1.45;
  opacity: 0.92; margin-bottom: 32px;
}
.dirA .hero-cta { display: flex; gap: 12px; align-items: center; }
.dirA .hero-cta .primary {
  height: 56px; padding: 0 28px; border-radius: 999px;
  background: var(--signal-orange); color: #fff;
  font-size: 16px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
}
.dirA .hero-cta .secondary {
  height: 56px; padding: 0 28px; border-radius: 999px;
  background: #fff; color: var(--tire-black);
  font-size: 16px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
}

/* Feature strip */
.dirA .features {
  max-width: 1280px; margin: -52px auto 0; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  position: relative; z-index: 5;
}
.dirA .feat {
  background: #fff; padding: 22px; border-radius: 22px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 14px;
}
.dirA .feat .icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,68,30,0.12);
  color: var(--signal-orange);
  display: flex; align-items: center; justify-content: center;
}
.dirA .feat h4 { font-size: 16px; font-weight: 600; margin: 0 0 4px; line-height: 1.2; }
.dirA .feat p { font-size: 13px; color: var(--gray-40); margin: 0; line-height: 1.4; }

/* Section titles */
.dirA .section { max-width: 1280px; margin: 96px auto 0; padding: 0 40px; }
.dirA .section-eyebrow {
  display: inline-block; padding: 6px 14px; background: var(--tire-black); color: #fff;
  border-radius: 999px; font-size: 11px; font-weight: 900;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px;
}
.dirA .section-eyebrow.orange { background: var(--signal-orange); }
.dirA .section h2 {
  font-size: 56px; font-weight: 600;
  letter-spacing: -0.025em; line-height: 1.05;
  margin: 0 0 16px; max-width: 760px;
}
.dirA .section .lead {
  font-size: 18px; color: var(--gray-40);
  max-width: 640px; margin: 0;
}
.dirA .section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 40px;
}

/* Services grid */
.dirA .svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.dirA .svc.feature {
  grid-column: 1 / -1;
  background: var(--tire-black); color: #fff;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; padding: 0; align-items: stretch;
  border-radius: 24px; overflow: hidden;
}
.dirA .svc {
  background: #fff; border-radius: 24px; padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.dirA .svc:hover { border-color: var(--light-gray); transform: translateY(-2px); }
.dirA .svc.feature .body { padding: 48px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.dirA .svc.feature .img-side { background: #1f1c1a; }
.dirA .svc-icon {
  width: 52px; height: 52px; border-radius: 999px;
  background: var(--aluminium-grey); color: var(--signal-orange);
  display: flex; align-items: center; justify-content: center;
}
.dirA .svc.feature .svc-icon { background: rgba(255,255,255,0.1); }
.dirA .svc h3 { font-size: 24px; font-weight: 600; margin: 0; line-height: 1.15; letter-spacing: -0.01em; }
.dirA .svc p { font-size: 14px; color: var(--gray-40); margin: 0; line-height: 1.45; flex: 1; }
.dirA .svc.feature p { color: rgba(255,255,255,0.7); }
.dirA .svc .price-from {
  display: flex; align-items: baseline; gap: 6px;
  margin-top: auto;
}
.dirA .svc .price-from .label { font-size: 12px; color: var(--gray-40); }
.dirA .svc .price-from .num { font-size: 22px; font-weight: 600; color: var(--signal-orange); }
.dirA .svc.feature .price-from .label { color: rgba(255,255,255,0.6); }
.dirA .svc.feature .price-from .num { color: var(--signal-orange); }

/* Brands / official band */
.dirA .brands-band {
  background: #fff; border-radius: 28px; padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  border: 1px solid var(--light-gray);
}
.dirA .brands-copy h2 { font-size: 40px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; margin: 14px 0 16px; }
.dirA .brands-copy p { font-size: 16px; color: var(--gray-40); line-height: 1.5; margin: 0; }
.dirA .brands-copy strong { color: var(--tire-black); font-weight: 600; }
.dirA .brands-logos { display: flex; flex-wrap: wrap; gap: 10px; align-content: center; }
.dirA .brand-pill {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 20px; border-radius: 999px;
  background: var(--aluminium-grey); color: var(--gray-40);
  font-size: 15px; font-weight: 600;
}
.dirA .brand-pill.official {
  background: var(--tire-black); color: #fff;
}
.dirA .brand-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--signal-orange); }

/* Process */
.dirA .process {
  background: #fff; border-radius: 28px; padding: 48px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.dirA .step .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--signal-orange); color: #fff;
  font-size: 18px; font-weight: 900; margin-bottom: 16px;
}
.dirA .step h4 { font-size: 18px; font-weight: 600; margin: 0 0 6px; letter-spacing: -0.01em; }
.dirA .step p { font-size: 14px; color: var(--gray-40); margin: 0; line-height: 1.45; }

/* Pricing */
.dirA .pricing {
  background: #fff; border-radius: 28px; overflow: hidden;
  border: 1px solid var(--light-gray);
}
.dirA .pricing-layout {
  display: grid; grid-template-columns: 1.7fr 1fr; gap: 16px; align-items: start;
}
.dirA .pricing-row {
  display: grid; grid-template-columns: 1.4fr 1.6fr 1fr 160px;
  align-items: center; gap: 24px;
  padding: 22px 32px;
  border-bottom: 1px solid var(--light-gray);
}
.dirA .pricing-row:last-child { border-bottom: none; }
.dirA .pricing-row.head {
  background: var(--aluminium-grey);
  font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gray-40); padding: 14px 32px;
}
.dirA .pricing-row .name { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.dirA .pricing-row .name small { display: block; font-size: 13px; font-weight: 500; color: var(--gray-40); margin-top: 2px; }
.dirA .pricing-row .duration { font-size: 14px; color: var(--gray-40); }
.dirA .pricing-row .price { font-size: 20px; font-weight: 600; }
.dirA .pricing-row .price .mes { font-size: 13px; color: var(--signal-orange); display: block; }
.dirA .pricing-row .reserve {
  height: 40px; padding: 0 18px; border-radius: 999px;
  background: var(--tire-black); color: #fff;
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.dirA .pricing-row.featured { background: rgba(255,68,30,0.04); }
.dirA .pricing-row.featured .reserve { background: var(--signal-orange); }
.dirA .pricing-row .reserve.presupuesto { background: var(--signal-orange); white-space: nowrap; }
.dirA .pricing-foot {
  padding: 22px 32px; background: var(--aluminium-grey);
  font-size: 13px; color: var(--gray-40);
  display: flex; justify-content: space-between; align-items: center;
}

/* Cuimo perk side panel */
.dirA .cuimo-perk {
  background: var(--tire-black); color: #fff;
  border-radius: 24px; padding: 36px;
  position: sticky; top: 24px;
  display: flex; flex-direction: column; gap: 20px;
}
.dirA .cuimo-perk .badge {
  align-self: flex-start;
  background: var(--signal-orange); color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em;
}
.dirA .cuimo-perk h3 {
  font-size: 32px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.05;
  margin: 0;
}
.dirA .cuimo-perk > p {
  font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.72); margin: 0;
}
.dirA .perk-list {
  list-style: none; padding: 18px 0; margin: 4px 0;
  display: flex; flex-direction: column; gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.dirA .perk-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center;
}
.dirA .perk-num {
  font-size: 28px; font-weight: 600; color: var(--signal-orange);
  letter-spacing: -0.02em; line-height: 1;
}
.dirA .perk-txt { font-size: 14px; font-weight: 600; line-height: 1.3; }
.dirA .perk-txt small { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.55); display: block; margin-top: 2px; }
.dirA .perk-foot { font-size: 12px; color: rgba(255,255,255,0.55); margin: 0; line-height: 1.5; }
.dirA .perk-cta {
  height: 48px; padding: 0 22px; border-radius: 999px;
  background: var(--signal-orange); color: #fff;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer;
}

/* Service price extras */
.dirA .svc .price-from .iva { font-size: 11px; color: var(--gray-40); margin-left: 4px; }
.dirA .svc.feature .price-from .iva { color: rgba(255,255,255,0.5); }
.dirA .svc .price-from .num-sm {
  font-size: 15px; font-weight: 600; color: var(--signal-orange);
}

/* Workshop strip */
.dirA .workshop {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 16px;
  margin-top: 40px;
}
.dirA .workshop .ph { border-radius: 24px; aspect-ratio: 4/3; }
.dirA .workshop .ph.tall { aspect-ratio: 3/4; }
.dirA .workshop .stack { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.dirA .workshop .stack .ph { aspect-ratio: auto; }

/* Testimonials */
.dirA .testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.dirA .review {
  background: #fff; border-radius: 24px; padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.dirA .review .stars { color: var(--signal-orange); display: flex; gap: 2px; }
.dirA .review .quote { font-size: 17px; font-weight: 500; line-height: 1.4; letter-spacing: -0.005em; flex: 1; }
.dirA .review .who { display: flex; align-items: center; gap: 12px; }
.dirA .review .who .av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #d8d4cc, #a39b8e);
}
.dirA .review .who .meta { display: flex; flex-direction: column; }
.dirA .review .who .name { font-size: 14px; font-weight: 600; }
.dirA .review .who .moto { font-size: 12px; color: var(--gray-40); }

/* FAQ */
.dirA .faq {
  background: #fff; border-radius: 28px; overflow: hidden;
}
.dirA .faq-item {
  padding: 24px 32px;
  border-bottom: 1px solid var(--light-gray);
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
}
.dirA .faq-item:last-child { border-bottom: none; }
.dirA .faq-item .q { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.dirA .faq-item .plus {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--aluminium-grey); color: var(--tire-black);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 400;
  flex-shrink: 0;
}
.dirA .faq-item.open .plus { background: var(--signal-orange); color: #fff; transform: rotate(45deg); }
.dirA .faq-item.open .body { display: block; }
.dirA .faq-item .body { display: none; }
.dirA .faq-item.open {
  flex-direction: column; align-items: flex-start;
  padding: 28px 32px;
}
.dirA .faq-item.open .top { display: flex; justify-content: space-between; width: 100%; align-items: center; gap: 24px; }
.dirA .faq-item.open .body { display: block; margin-top: 14px; font-size: 15px; color: var(--gray-40); line-height: 1.5; max-width: 880px; }

/* Location / map */
.dirA .location {
  background: #fff; border-radius: 28px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.4fr;
}
.dirA .location .info { padding: 48px; display: flex; flex-direction: column; gap: 24px; }
.dirA .location .info h3 { font-size: 36px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
.dirA .location .info p { font-size: 16px; color: var(--gray-40); margin: 0; line-height: 1.45; }
.dirA .location .info .row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-top: 1px solid var(--light-gray);
}
.dirA .location .info .row:first-of-type { border-top: 1px solid var(--light-gray); }
.dirA .location .info .row .lab { font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-40); width: 96px; flex-shrink: 0; padding-top: 2px; }
.dirA .location .info .row .val { font-size: 16px; font-weight: 500; }
.dirA .location .info .row .val small { color: var(--gray-40); font-weight: 500; }
.dirA .location .map {
  position: relative; min-height: 460px;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 38px, rgba(0,0,0,.05) 38px, rgba(0,0,0,.05) 39px),
    repeating-linear-gradient(90deg, transparent, transparent 38px, rgba(0,0,0,.05) 38px, rgba(0,0,0,.05) 39px),
    linear-gradient(135deg, #e8e4dc, #d4cec0);
}
.dirA .location .map::before {
  content: '';
  position: absolute; left: 35%; top: 30%; right: -10%; height: 6px;
  background: rgba(255,255,255,.7); transform: rotate(-12deg); border-radius: 3px;
}
.dirA .location .map::after {
  content: '';
  position: absolute; left: 10%; top: 60%; right: 25%; height: 4px;
  background: rgba(255,255,255,.7); transform: rotate(8deg); border-radius: 2px;
}
.dirA .location .pin {
  position: absolute; left: 56%; top: 48%; transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.dirA .location .pin .badge {
  background: var(--signal-orange); color: #fff;
  padding: 8px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em;
  box-shadow: 0 8px 20px rgba(255,68,30,0.4);
}
.dirA .location .pin .stem { width: 2px; height: 20px; background: var(--signal-orange); }
.dirA .location .pin .dot {
  width: 16px; height: 16px; background: var(--tire-black);
  border: 3px solid var(--signal-orange); border-radius: 50%;
}

/* Final CTA */
.dirA .final-cta {
  margin: 96px 40px 40px;
  background: var(--signal-orange); color: #fff;
  border-radius: 32px; padding: 72px 64px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
}
.dirA .final-cta h2 { font-size: 64px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.0; margin: 0 0 16px; }
.dirA .final-cta p { font-size: 18px; line-height: 1.4; margin: 0; opacity: 0.92; max-width: 480px; }
.dirA .final-cta .actions { display: flex; flex-direction: column; gap: 12px; }
.dirA .final-cta .actions .primary {
  height: 64px; border-radius: 999px;
  background: #fff; color: var(--signal-orange);
  font-size: 17px; font-weight: 600; padding: 0 32px;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
}
.dirA .final-cta .actions .secondary {
  height: 64px; border-radius: 999px;
  background: rgba(0,0,0,0.85); color: #fff;
  font-size: 17px; font-weight: 600; padding: 0 32px;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
}

/* Footer (compact) */
.dirA .footer {
  background: var(--tire-black); color: #fff; padding: 48px 40px 24px;
}
.dirA .footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
.dirA .footer h5 { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 16px; opacity: 0.6; }
.dirA .footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.dirA .footer a { font-size: 14px; opacity: 0.85; }
.dirA .footer .brand { font-size: 14px; opacity: 0.85; line-height: 1.5; max-width: 280px; }
.dirA .footer-bottom {
  max-width: 1280px; margin: 36px auto 0;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15);
  display: flex; justify-content: space-between;
  font-size: 12px; opacity: 0.6;
}

/* =====================================================
   RESPONSIVE — TABLET (≤1024px)
   ===================================================== */
@media (max-width: 1024px) {
  .dirA .section { margin-top: 72px; padding: 0 28px; }
  .dirA .section h2 { font-size: 44px; }
  .dirA .features { padding: 0 28px; grid-template-columns: repeat(2, 1fr); }
  .dirA .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .dirA .svc.feature { grid-template-columns: 1fr 1fr; }
  .dirA .process { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .dirA .testimonials { grid-template-columns: 1fr; }
  .dirA .pricing-layout { grid-template-columns: 1fr; }
  .dirA .cuimo-perk { position: static; }
  .dirA .brands-band { grid-template-columns: 1fr; gap: 28px; }
  .dirA .hero h1 { font-size: 52px; }
  .dirA .final-cta { grid-template-columns: 1fr; gap: 28px; }
  .dirA .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* =====================================================
   RESPONSIVE — MOBILE (≤720px)
   ===================================================== */
@media (max-width: 720px) {
  /* NAV */
  .dirA .nav { height: 60px; padding: 0 16px; }
  .dirA .nav-left { gap: 0; }
  .dirA .nav-menu { display: none; }
  .dirA .nav-logo img { height: 26px; }
  .dirA .nav-phone { display: none; }
  .dirA .nav-right { gap: 10px; }
  .dirA .btn-cta { height: 38px; padding: 0 16px; font-size: 13px; }

  /* HERO — stack */
  .dirA .hero { padding: 8px; }
  .dirA .hero-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .dirA .hero-content {
    padding: 32px 24px 28px;
    order: 1;
  }
  .dirA .hero-img {
    order: 2;
    min-height: 280px;
    border-radius: 0 0 20px 20px;
  }
  .dirA .hero-img::before {
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.15) 100%);
  }
  .dirA .hero-eyebrow { font-size: 11px; padding: 7px 13px; margin-bottom: 18px; }
  .dirA .hero h1 { font-size: 36px; margin-bottom: 14px; }
  .dirA .hero-sub { font-size: 16px; margin-bottom: 24px; }
  .dirA .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .dirA .hero-cta .primary,
  .dirA .hero-cta .secondary { height: 52px; width: 100%; font-size: 15px; }

  /* FEATURES — 1 col, no negative overlap */
  .dirA .features {
    margin-top: 16px; padding: 0 16px;
    grid-template-columns: 1fr; gap: 10px;
  }
  .dirA .feat { flex-direction: row; align-items: flex-start; padding: 18px; }
  .dirA .feat .icon { flex-shrink: 0; }

  /* SECTIONS */
  .dirA .section { margin-top: 56px; padding: 0 16px; }
  .dirA .section-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
  .dirA .section h2 { font-size: 30px; margin-bottom: 12px; }
  .dirA .section .lead { font-size: 16px; }
  .dirA .section-eyebrow { font-size: 10px; margin-bottom: 14px; }

  /* SERVICES */
  .dirA .svc-grid { grid-template-columns: 1fr; gap: 12px; }
  .dirA .svc { padding: 22px; }
  .dirA .svc.feature { grid-template-columns: 1fr; }
  .dirA .svc.feature .body { padding: 28px 24px; }
  .dirA .svc.feature .body h3 { font-size: 28px !important; }
  .dirA .svc.feature .img-side { min-height: 220px; order: 2; }
  .dirA .svc h3 { font-size: 21px; }

  /* BRANDS */
  .dirA .brands-band { padding: 28px 22px; }
  .dirA .brands-copy h2 { font-size: 28px; }

  /* PROCESS — 1 col */
  .dirA .process { grid-template-columns: 1fr; padding: 28px 22px; gap: 24px; }

  /* PRICING — convert rows to stacked cards */
  .dirA .pricing-layout { gap: 14px; }
  .dirA .pricing-row.head { display: none; }
  .dirA .pricing-row {
    grid-template-columns: 1fr;
    gap: 10px; padding: 22px;
    text-align: left;
  }
  .dirA .pricing-row .name { font-size: 18px; }
  .dirA .pricing-row .duration { font-size: 14px; }
  .dirA .pricing-row .price { font-size: 22px; }
  .dirA .pricing-row .reserve,
  .dirA .pricing-row .reserve.presupuesto {
    width: 100%; height: 46px; justify-content: center; font-size: 14px;
  }
  .dirA .pricing-foot { flex-direction: column; align-items: flex-start; gap: 8px; padding: 20px 22px; }
  .dirA .cuimo-perk { padding: 28px 24px; }
  .dirA .cuimo-perk h3 { font-size: 26px; }

  /* TESTIMONIALS */
  .dirA .review { padding: 24px; }
  .dirA .review .quote { font-size: 16px; }

  /* FAQ */
  .dirA .faq-item { padding: 18px 20px; gap: 16px; }
  .dirA .faq-item.open { padding: 22px 20px; }
  .dirA .faq-item .q { font-size: 15px; }
  .dirA .faq-item.open .body { font-size: 14px; }

  /* LOCATION — stack */
  .dirA .location { grid-template-columns: 1fr; }
  .dirA .location .info { padding: 28px 22px; gap: 18px; }
  .dirA .location .info h3 { font-size: 28px; }
  .dirA .location .map { min-height: 320px; }
  .dirA .location iframe { min-height: 320px; }

  /* FINAL CTA */
  .dirA .final-cta { margin: 56px 16px 24px; padding: 40px 24px; }
  .dirA .final-cta h2 { font-size: 34px; }
  .dirA .final-cta p { font-size: 16px; }
  .dirA .final-cta .actions .primary,
  .dirA .final-cta .actions .secondary { height: 56px; font-size: 15px; }

  /* FOOTER */
  .dirA .footer { padding: 36px 20px 20px; }
  .dirA .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .dirA .footer-bottom { flex-direction: column; gap: 8px; text-align: left; }

  /* Floating WhatsApp — slightly smaller */
  .wa-fab { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .wa-fab svg { width: 30px; height: 30px; }
}

/* Extra-small phones */
@media (max-width: 380px) {
  .dirA .hero h1 { font-size: 31px; }
  .dirA .section h2 { font-size: 26px; }
  .dirA .footer-inner { grid-template-columns: 1fr; }
}
