/* ============================================================
   ALTA GRACIA HOME CARE – Professional Stylesheet
   Paleta basada en logo: Azul #3b6fd4, Rosa #d93c7e, Dorado #f5b942
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  /* Brand Colors – Logo Palette */
  --clr-primary:       #2f5fc4;
  --clr-primary-dark:  #1e3fa0;
  --clr-primary-light: #4d7de0;
  --clr-pink:          #d93c7e;
  --clr-pink-dark:     #b52d65;
  --clr-pink-light:    #ee6fa0;
  --clr-gold:          #f5b942;
  --clr-gold-dark:     #d4961e;
  --clr-accent:        #ee6fa0;
  --clr-green:         #10b981;
  --clr-whatsapp:      #25d366;

  /* Logo gradient (blue → pink) */
  --grad-brand:        linear-gradient(135deg, #3b6fd4 0%, #d93c7e 100%);
  --grad-brand-rev:    linear-gradient(135deg, #d93c7e 0%, #3b6fd4 100%);
  --grad-gold:         linear-gradient(135deg, #f5b942 0%, #f08c1a 100%);
  --grad-blue:         linear-gradient(135deg, #4d7de0 0%, #1e3fa0 100%);
  --grad-pink:         linear-gradient(135deg, #ee6fa0 0%, #b52d65 100%);

  /* Neutrals */
  --clr-dark:          #12162a;
  --clr-dark-2:        #1c2340;
  --clr-dark-3:        #252d52;
  --clr-text:          #2d3461;
  --clr-text-light:    #6b7aaa;
  --clr-border:        #d8dff5;
  --clr-bg:            #f8f9ff;
  --clr-bg-soft:       #eef0fb;
  --clr-white:         #ffffff;

  /* Typography */
  --font-sans:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif:        'Playfair Display', Georgia, serif;

  /* Spaces */
  --section-pad:       5.5rem 0;
  --container-max:     1200px;
  --radius:            12px;
  --radius-lg:         20px;
  --radius-xl:         30px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(47,95,196,.1);
  --shadow-md:   0 8px 30px rgba(47,95,196,.15);
  --shadow-lg:   0 20px 60px rgba(47,95,196,.2);
  --shadow-pink: 0 8px 30px rgba(217,60,126,.2);
  --shadow-gold: 0 8px 30px rgba(245,185,66,.25);
  --shadow-card: 0 4px 24px rgba(18,22,42,.08);

  /* Transitions */
  --trans:      all .3s cubic-bezier(.4,0,.2,1);
  --trans-fast: all .18s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--clr-text);
  background: var(--clr-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Utilities ──────────────────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-pad { padding: var(--section-pad); }
.bg-soft { background: var(--clr-bg-soft); }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }

/* ── Section Header ─────────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, rgba(47,95,196,.1), rgba(217,60,126,.08));
  color: var(--clr-primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .38rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(47,95,196,.22);
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.section-header { max-width: 680px; margin: 0 auto 3.5rem; }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1.25;
  margin-bottom: .75rem;
}
.section-subtitle {
  color: var(--clr-text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
  font-weight: 600;
  padding: .88rem 2.1rem;
  border-radius: 999px;
  transition: var(--trans);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: var(--trans);
  border-radius: inherit;
}
.btn:hover::after { background: rgba(255,255,255,.08); }

.btn-primary {
  background: var(--grad-brand);
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(47,95,196,.4);
}
.btn-primary:hover {
  box-shadow: 0 10px 36px rgba(47,95,196,.5);
  transform: translateY(-3px);
}
.btn-pink {
  background: var(--grad-pink);
  color: var(--clr-white);
  box-shadow: var(--shadow-pink);
}
.btn-pink:hover {
  box-shadow: 0 12px 40px rgba(217,60,126,.45);
  transform: translateY(-3px);
}
.btn-whatsapp {
  background: var(--clr-whatsapp);
  color: var(--clr-white);
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  background: #1ebe5c;
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--clr-white);
  color: var(--clr-primary);
  box-shadow: var(--shadow-md);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--clr-bg-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn-full { width: 100%; justify-content: center; }
.btn-nav {
  background: var(--grad-brand);
  color: var(--clr-white) !important;
  padding: .6rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(47,95,196,.35);
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(217,60,126,.4);
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: .9rem 0;
  transition: var(--trans);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(47,95,196,.12);
  padding: .6rem 0;
  border-bottom: 1px solid rgba(47,95,196,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-white);
  transition: var(--trans);
}
.logo-sub {
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: var(--trans);
}
.navbar.scrolled .logo-main { color: var(--clr-dark); }
.navbar.scrolled .logo-sub  { color: var(--clr-text-light); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  padding: .5rem .9rem;
  border-radius: 8px;
  transition: var(--trans);
}
.nav-link:hover, .nav-link.active { color: var(--clr-white); background: rgba(255,255,255,.15); }
.navbar.scrolled .nav-link { color: var(--clr-text); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
  color: var(--clr-primary);
  background: rgba(14,165,233,.08);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--clr-white);
  transition: var(--trans);
}
.navbar.scrolled .hamburger span { background: var(--clr-dark); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(8,10,28,.98) 0%,
    rgba(12,16,44,.95) 30%,
    rgba(16,22,55,.88) 52%,
    rgba(70,12,45,.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 8rem;
  padding-bottom: 7rem;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  color: var(--clr-white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .5rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.text-accent {
  background: linear-gradient(135deg, #f5b942, #ffd97a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-desc strong { color: var(--clr-white); }
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  width: fit-content;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
}
.stat-label {
  font-size: .72rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  letter-spacing: .03em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.25);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 1;
}
.hero-scroll-hint span {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: .4; transform: scaleY(.6); }
}

/* ── About ──────────────────────────────────────────────────── */
.about { background: var(--clr-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img { width: 100%; height: 500px; object-fit: cover; }
.about-badge-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-md);
}
.about-badge-card strong { display: block; font-weight: 700; color: var(--clr-dark); font-size: .9rem; }
.about-badge-card span  { font-size: .78rem; color: var(--clr-text-light); }

.about-content { padding: 1rem 0; }
.about-text {
  color: var(--clr-text-light);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}
.about-text strong { color: var(--clr-text); }

.mission-vision-grid { display: grid; gap: 1.25rem; margin-top: 2rem; }
.mv-card {
  display: flex;
  gap: 1.25rem;
  background: var(--clr-bg-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--clr-border);
  transition: var(--trans);
}
.mv-card:hover { border-color: var(--clr-primary-light); box-shadow: var(--shadow-md); }
.mv-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(14,165,233,.15), rgba(34,211,238,.1));
  border: 1px solid rgba(14,165,233,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
}
.mv-icon-gold {
  background: linear-gradient(135deg, rgba(245,158,11,.15), rgba(252,211,77,.1));
  border-color: rgba(245,158,11,.25);
  color: var(--clr-gold);
}
.mv-card h3 { font-size: .95rem; font-weight: 700; color: var(--clr-dark); margin-bottom: .4rem; }
.mv-card p  { font-size: .88rem; color: var(--clr-text-light); line-height: 1.7; }

/* ── Services ───────────────────────────────────────────────── */
.services { }
.services-tabs {
  display: flex;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: nowrap;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--clr-text-light);
  padding: .85rem 2rem;
  border-radius: 999px;
  border: 2px solid var(--clr-border);
  background: var(--clr-white);
  transition: var(--trans);
}
.tab-btn:hover {
  border-color: var(--clr-primary-light);
  color: var(--clr-primary);
  box-shadow: var(--shadow-sm);
}
.tab-btn.active {
  background: var(--grad-brand);
  border-color: transparent;
  color: var(--clr-white);
  box-shadow: 0 8px 28px rgba(47,95,196,.4);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.service-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  opacity: 0;
  transition: var(--trans);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(47,95,196,.18);
  border-color: rgba(47,95,196,.18);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--icon-color) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--icon-color) 25%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color);
  margin-bottom: 1.25rem;
  transition: var(--trans);
}
.service-card:hover .service-icon {
  background: color-mix(in srgb, var(--icon-color) 20%, transparent);
  transform: scale(1.05);
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: .5rem;
}
.service-card p { font-size: .88rem; color: var(--clr-text-light); margin-bottom: 1rem; line-height: 1.7; }
.service-list { display: flex; flex-direction: column; gap: .4rem; }
.service-list li {
  font-size: .82rem;
  color: var(--clr-text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--clr-primary-light);
}

/* Services banner */
.services-img-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 300px;
  box-shadow: var(--shadow-lg);
}
.services-img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.services-img-banner:hover img { transform: scale(1.04); }
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,22,42,.88), rgba(47,95,196,.7), rgba(217,60,126,.6));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}
.banner-overlay p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--clr-white);
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

/* ── Why Choose Us ──────────────────────────────────────────── */
.why {
  background: linear-gradient(135deg, var(--clr-dark) 0%, var(--clr-dark-2) 50%, #1a1535 100%);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(47,95,196,.15) 0%, transparent 70%);
  pointer-events: none;
}
.why::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(217,60,126,.1) 0%, transparent 70%);
  pointer-events: none;
}
.why .section-tag { background: rgba(217,60,126,.12); border-color: rgba(217,60,126,.3); color: var(--clr-pink-light); }
.why .section-title { color: var(--clr-white); }
.why .section-subtitle { color: rgba(255,255,255,.6); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-brand);
  opacity: 0;
  transition: var(--trans);
}
.why-card:hover {
  background: rgba(47,95,196,.1);
  border-color: rgba(217,60,126,.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(217,60,126,.15);
}
.why-card:hover::after { opacity: 1; }
.why-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,.05);
  line-height: 1;
  margin-bottom: .75rem;
  font-family: var(--font-serif);
}
.why-icon {
  color: var(--clr-gold);
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 8px rgba(245,185,66,.4));
}
.why-card h3 { font-size: .95rem; font-weight: 700; color: var(--clr-white); margin-bottom: .6rem; }
.why-card p  { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ── Coverage ───────────────────────────────────────────────── */
.coverage { }
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.coverage-col { }
.coverage-col .section-title { margin-top: .5rem; }
.coverage-desc {
  color: var(--clr-text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.client-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.client-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--clr-white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  transition: var(--trans);
}
.client-card:hover {
  border-color: var(--clr-primary-light);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}
.client-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(14,165,233,.1), rgba(34,211,238,.06));
  border: 1px solid rgba(14,165,233,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  flex-shrink: 0;
}
.client-card h4 { font-size: .9rem; font-weight: 700; color: var(--clr-dark); margin-bottom: .2rem; }
.client-card p  { font-size: .8rem; color: var(--clr-text-light); }

/* Coverage map */
.coverage-map {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.5rem;
}
.map-pin-group { 
  display: grid; 
  grid-template-columns: repeat(2, 1fr); 
  gap: 1.25rem 1rem; 
}
.map-pin {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  color: var(--clr-text-light);
}
.map-pin.active { color: var(--clr-primary); }
.map-pin svg { flex-shrink: 0; margin-top: .15rem; }
.map-pin strong { display: block; font-size: .9rem; color: var(--clr-dark); }
.map-pin span   { font-size: .78rem; }

/* ── Contact ────────────────────────────────────────────────── */
.contact { background: var(--clr-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.contact-card {
  background: var(--clr-bg-soft);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(14,165,233,.12), rgba(34,211,238,.08));
  border: 1px solid rgba(14,165,233,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  flex-shrink: 0;
}
.contact-icon-green  { background: rgba(37,211,102,.1); border-color: rgba(37,211,102,.2); color: #25d366; }
.contact-icon-orange { background: rgba(245,158,11,.1);  border-color: rgba(245,158,11,.2);  color: var(--clr-gold); }
.contact-icon-red    { background: rgba(239,68,68,.1);   border-color: rgba(239,68,68,.2);   color: #ef4444; }
.contact-label { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--clr-text-light); margin-bottom: .2rem; }
.contact-value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--clr-dark);
  transition: var(--trans-fast);
}
a.contact-value:hover { color: var(--clr-primary); }

/* WhatsApp CTA */
.whatsapp-cta {
  background: var(--grad-brand);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 30px rgba(47,95,196,.25);
}
.whatsapp-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.whatsapp-cta-text strong { display: block; font-size: .92rem; color: var(--clr-white); margin-bottom: .2rem; }
.whatsapp-cta-text span   { font-size: .78rem; color: rgba(255,255,255,.7); }

/* Contact Form */
.contact-form-wrap { }
.contact-form {
  background: var(--clr-bg-soft);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.form-title { font-size: 1.3rem; font-weight: 700; color: var(--clr-dark); margin-bottom: .4rem; }
.form-subtitle { font-size: .88rem; color: var(--clr-text-light); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--clr-text);
  margin-bottom: .5rem;
  letter-spacing: .02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: 10px;
  font-size: .9rem;
  color: var(--clr-text);
  background: var(--clr-white);
  transition: var(--trans);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a0b4c5; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-primary-light);
  box-shadow: 0 0 0 3px rgba(14,165,233,.12);
}
.form-success {
  display: none;
  align-items: center;
  gap: .75rem;
  color: var(--clr-green);
  font-weight: 600;
  font-size: .9rem;
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.25);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}
.form-success.show { display: flex; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(160deg, var(--clr-dark) 0%, #0e0f20 60%, #1a0f1e 100%);
  padding: 4.5rem 0 0;
  border-top: 1px solid rgba(217,60,126,.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand { }
.logo-footer .logo-main { color: var(--clr-white); }
.logo-footer .logo-sub  { color: rgba(255,255,255,.5); }
.footer-tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  font-style: italic;
  margin: 1.25rem 0 1.5rem;
  line-height: 1.6;
}
.footer-social { display: flex; gap: .75rem; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--trans);
}
.social-link:hover {
  border-color: var(--clr-primary-light);
  color: var(--clr-primary-light);
  background: rgba(14,165,233,.1);
}

.footer-col h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.5rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: var(--trans-fast);
}
.footer-col ul li a:hover { color: var(--clr-primary-light); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: .9rem; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.footer-contact-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--clr-primary-light); }
.footer-contact-list a { color: rgba(255,255,255,.55); transition: var(--trans-fast); }
.footer-contact-list a:hover { color: var(--clr-primary-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: .5rem;
}

/* ── WhatsApp Float ──────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--clr-whatsapp);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,.45);
  transition: var(--trans);
  animation: whatsappPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(37,211,102,.6);
  animation: none;
}
.whatsapp-float-tooltip {
  position: absolute;
  right: 72px;
  white-space: nowrap;
  background: var(--clr-dark);
  color: var(--clr-white);
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .9rem;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans-fast);
}
.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; }
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 8px 50px rgba(37,211,102,.7), 0 0 0 12px rgba(37,211,102,.1); }
}

/* ── Animations ─────────────────────────────────────────────── */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .7s ease forwards;
}
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }
.delay-4 { animation-delay: .48s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .24s; }
.reveal.delay-3 { transition-delay: .36s; }
.reveal.delay-4 { transition-delay: .48s; }

/* ── Responsive ─────────────────────────────────────────────── */
/* ── Responsive: Tablet grande / Laptop pequeña (≤ 1024px) ──── */
@media (max-width: 1024px) {

  /* Sección: Hero */
  .hero-scroll-hint { display: none; }
  .hero-content     { padding-bottom: 3rem; }

  /* Sección: About */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img  { height: 380px; }

  /* Sección: Why */
  .why-grid { grid-template-columns: repeat(3, 1fr) !important; }

  /* Sección: Coverage */
  .coverage-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Sección: Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Sección: Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

/* ── Responsive: Tablet / Móvil grande (≤ 768px) ─────────────── */
@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 0; }

  /* ── Navbar ── */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(13,24,38,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 5rem 2rem 2rem;
    min-height: 100vh;
    transform: translateY(-100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link {
    font-size: 1.15rem;
    padding: .9rem 2rem;
    width: 100%;
    text-align: center;
    color: var(--clr-white) !important;
    background: transparent;
  }
  .btn-nav { margin-top: .5rem; }

  /* ── Hero ── */
  .hero-content { padding-top: 7rem; padding-bottom: 3rem; }
  .hero-title   { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-desc    { font-size: 1rem; margin-bottom: 2rem; }
  .hero-actions { flex-direction: column !important; align-items: flex-start !important; gap: .75rem; }
  .hero-actions .btn { width: 100% !important; justify-content: center; }
  .hero-stats   { flex-wrap: wrap; gap: 1rem; padding: 1rem 1.25rem; width: 100%; }
  .stat-divider { display: none; }
  .stat         { flex: 1 1 auto; min-width: 80px; }
  .hero-scroll-hint { display: none; }

  /* ── About ── */
  .about-grid          { grid-template-columns: 1fr; gap: 2rem; }
  .about-img           { height: 280px; }
  .about-badge-card    { position: static; margin-top: 1rem; }
  .about-img-frame     { border-radius: var(--radius); }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .mv-card             { gap: 1rem; }

  /* ── Services ── */
  .services-tabs       { flex-direction: column !important; flex-wrap: wrap; align-items: stretch; }
  .tab-btn             { justify-content: center; padding: .75rem 1.5rem; width: 100%; }
  .services-grid       { grid-template-columns: 1fr; }
  .services-img-banner { height: 220px; }
  .banner-overlay      { padding: 1.5rem; }
  .banner-overlay p    { font-size: 1.1rem; }

  /* ── Why ── */
  .why-grid { grid-template-columns: 1fr 1fr !important; gap: 1rem; }
  .why-card { padding: 1.5rem 1.25rem; }
  .why-num  { font-size: 2rem; }

  /* ── Coverage ── */
  .coverage-grid { grid-template-columns: 1fr; gap: 2rem; }
  .client-cards  { gap: .75rem; }
  .client-card   { padding: 1rem 1.25rem; }
  .coverage-map  { padding: 1.5rem; }

  /* ── Contact ── */
  .contact-grid       { grid-template-columns: 1fr; }
  .contact-card       { padding: 1.5rem; gap: 1rem; }
  .contact-item       { gap: 1rem; }
  .whatsapp-cta       { padding: 1.25rem 1.5rem; }
  .whatsapp-cta-inner { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .form-row           { grid-template-columns: 1fr; }
  .contact-form       { padding: 1.75rem; }
  .contact-value      { font-size: .88rem; word-break: break-all; }

  /* ── Footer ── */
  .footer              { padding: 3rem 0 0; }
  .footer-grid         { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom       { flex-direction: column; text-align: center; gap: .5rem; }
  .footer-contact-list a { word-break: break-all; }

  /* ── WhatsApp float ── */
  .whatsapp-float      { width: 52px; height: 52px; bottom: 1.25rem; right: 1.25rem; }
  .whatsapp-float svg  { width: 24px; height: 24px; }
  .whatsapp-float-tooltip { display: none; }
}

/* ── Responsive: Móvil pequeño (≤ 480px) ─────────────────────── */
@media (max-width: 480px) {
  :root { --section-pad: 2.75rem 0; }
  .container { padding: 0 1.1rem; }

  /* ── Navbar ── */
  .logo-main     { font-size: 1rem; }
  .logo-sub      { font-size: .6rem; }
  .logo-icon svg { width: 30px; height: 30px; }

  /* ── Hero ── */
  .hero-content      { padding-top: 6rem; }
  .hero-badge        { font-size: .7rem; padding: .4rem .9rem; }
  .hero-actions      { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats        { padding: .85rem 1rem; gap: .75rem; justify-content: space-around; }
  .stat-num          { font-size: 1.4rem; }
  .stat-label        { font-size: .65rem; }

  /* ── About ── */
  .about-img { height: 230px; }
  .mv-card   { flex-direction: column; gap: .75rem; padding: 1.25rem; }
  .mv-icon   { width: 42px; height: 42px; }

  /* ── Services ── */
  .services-img-banner { height: 180px; }
  .service-card  { padding: 1.5rem; }
  .service-icon  { width: 50px; height: 50px; }

  /* ── Why ── */
  .why-grid { grid-template-columns: 1fr !important; }
  .why-card { padding: 1.5rem 1.25rem; }

  /* ── Coverage ── */
  .client-icon   { width: 42px; height: 42px; }
  .coverage-map  { padding: 1.25rem; }
  .map-pin-group { grid-template-columns: 1fr; gap: 1rem; }

  /* ── Contact ── */
  .contact-card  { padding: 1.25rem; }
  .contact-icon  { width: 38px; height: 38px; }
  .contact-form  { padding: 1.25rem; }
  .form-title    { font-size: 1.1rem; }
  .contact-value { font-size: .82rem; }

  /* ── Section headers ── */
  .section-title    { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-subtitle { font-size: .92rem; }
  .section-header   { margin-bottom: 2.25rem; }

  /* ── Footer ── */
  .footer-grid   { gap: 1.75rem; }
  .footer-col h4 { margin-bottom: 1rem; }

  /* ── Buttons ── */
  .btn { font-size: .88rem; padding: .78rem 1.5rem; }
}

/* ── Responsive: Móvil muy pequeño (≤ 360px) ─────────────────── */
@media (max-width: 360px) {
  .container { padding: 0 .9rem; }
  .logo      { gap: .5rem; }
  .logo-main { font-size: .9rem; }
  .logo-sub  { display: none; }

  .hero-content      { padding-top: 5.5rem; }
  .hero-title        { font-size: clamp(1.7rem, 8vw, 2rem); }
  .hero-actions .btn { font-size: .82rem; padding: .72rem 1.2rem; }

  .services-img-banner { height: 150px; }
  .why-card    { padding: 1.25rem 1rem; }
  .contact-form { padding: 1rem; }

  .footer-grid        { gap: 1.5rem; }
  .whatsapp-float     { width: 46px; height: 46px; bottom: 1rem; right: 1rem; }
  .whatsapp-float svg { width: 20px; height: 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   NUEVAS SECCIONES Y MEJORAS PREMIUM – Logo Palette
   ═══════════════════════════════════════════════════════════════ */

/* ── Logo imagen en navbar (logo2 – solo ícono) ────────────── */
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.logo-img {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
  transition: var(--trans);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.2));
}
.navbar.scrolled .logo-img { height: 54px; }

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: .01em;
  transition: var(--trans);
}
.logo-sub {
  font-size: .62rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: var(--trans);
}
/* When navbar scrolled → dark text */
.navbar.scrolled .logo-main { color: var(--clr-dark); }
.navbar.scrolled .logo-sub  { color: var(--clr-text-light); }

.logo-icon-wrap { display: none; }

/* ── Trust Strip ─────────────────────────────────────────────── */
.trust-strip {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  padding: 1.1rem 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 16px rgba(47,95,196,.06);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.trust-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon-blue  { background: rgba(47,95,196,.1);   color: var(--clr-primary); }
.trust-icon-pink  { background: rgba(217,60,126,.1);  color: var(--clr-pink); }
.trust-icon-gold  { background: rgba(245,185,66,.14); color: var(--clr-gold-dark); }
.trust-item-label { font-size: .88rem; font-weight: 700; color: var(--clr-dark); line-height: 1.2; }
.trust-item-label span { font-size: .75rem; color: var(--clr-text-light); font-weight: 400; display: block; }
.trust-divider    { width: 1px; height: 38px; background: var(--clr-border); }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials {
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(217,60,126,.07) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(47,95,196,.07) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: .5rem;
}
.testimonial-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -.5rem; right: 1.5rem;
  font-size: 8rem;
  font-family: var(--font-serif);
  line-height: 1;
  color: rgba(47,95,196,.06);
  font-weight: 900;
  pointer-events: none;
}
.testimonial-card:nth-child(2)::before { color: rgba(217,60,126,.06); }
.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(47,95,196,.14);
  border-color: rgba(217,60,126,.18);
}
.testimonial-stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1rem;
  color: var(--clr-gold);
}
.testimonial-text {
  font-size: .92rem;
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--clr-border);
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  flex-shrink: 0;
}
.author-avatar.pink-av { background: var(--grad-pink); }
.author-avatar.gold-av { background: var(--grad-gold); }
.author-name { font-size: .9rem; font-weight: 700; color: var(--clr-dark); margin-bottom: .1rem; }
.author-role { font-size: .75rem; color: var(--clr-text-light); }

/* ── Mid CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  padding: 4.5rem 0;
  background: var(--grad-brand);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}
.cta-banner-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: .65rem;
  line-height: 1.2;
}
.cta-banner-text p {
  font-size: 1rem;
  color: rgba(255,255,255,.82);
  max-width: 500px;
  line-height: 1.7;
}
.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── Nav active underline ──────────────────────────────────── */
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: .9rem; right: .9rem;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: center;
}
.navbar.scrolled .nav-link.active::after,
.navbar.scrolled .nav-link:hover::after { transform: scaleX(1); }

/* ── Additional mobile responsive ───────────────────────────── */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner-inner  { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
  .trust-strip-inner { gap: 1.5rem; }
}
@media (max-width: 768px) {
  .trust-strip-inner  { gap: 1rem; }
  .trust-divider      { display: none; }
  .trust-item         { font-size: .78rem; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .testimonial-card   { padding: 1.5rem; }
  .cta-banner         { padding: 3rem 0; }
  .cta-banner-text h2 { font-size: 1.5rem; }
  .logo-img           { height: 40px; }
}
@media (max-width: 480px) {
  .trust-strip-inner  { gap: 1.25rem; }
  .logo-img           { height: 36px; }
  .cta-banner-actions { flex-direction: column; align-items: stretch; }
  .cta-banner-actions .btn { justify-content: center; }
}
