/* ============================================================
   C&C Comercializadora y Control Soluciones — Design System
   Style Pack: Industrial B2B Premium (Light)
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  /* Palette */
  --bg: #F7FAFC;
  --surface: #FFFFFF;
  --surface2: #EEF2F8;
  --text: #0B1220;
  --muted: #5B667A;
  --border: #DDE4EE;
  --accent: #0F4C81;
  --accent-d: #0a3a63;
  --accent-l: #1a65a8;
  --accent2: #25D366;
  --accent2-d: #1da851;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(15, 76, 129, .06), 0 1px 2px rgba(15, 76, 129, .04);
  --shadow-md: 0 4px 16px rgba(15, 76, 129, .10), 0 2px 6px rgba(15, 76, 129, .06);
  --shadow-lg: 0 10px 40px rgba(15, 76, 129, .14), 0 4px 16px rgba(15, 76, 129, .08);

  /* Typography */
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Spacing */
  --gutter: clamp(1rem, 3vw, 1.5rem);
  --section-y: clamp(4rem, 8vw, 7rem);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Transitions */
  --trans: 0.25s cubic-bezier(.4, 0, .2, 1);
  --trans-slow: 0.45s cubic-bezier(.4, 0, .2, 1);
}

/* ── RESET ────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ── FOCUS VISIBLE ────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  width: min(1240px, 100% - 2 * var(--gutter));
  margin-inline: auto;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
}

h4 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  color: var(--muted);
  font-size: 1.0625rem;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9375rem;
  transition: var(--trans);
  white-space: nowrap;
  text-decoration: none;
}

.btn svg {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15, 76, 129, .35);
}

.btn--primary:hover {
  background: var(--accent-l);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 76, 129, .45);
}

.btn--whatsapp {
  background: var(--accent2);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, .35);
}

.btn--whatsapp:hover {
  background: var(--accent2-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .45);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .5);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
}

.btn--sm {
  padding: .5rem 1.1rem;
  font-size: .875rem;
}

.btn--lg {
  padding: .85rem 2rem;
  font-size: 1rem;
}

/* ── LABEL BADGE ──────────────────────────────────────────── */
.label-badge {
  display: inline-block;
  padding: .3rem .9rem;
  border-radius: 50px;
  background: rgba(15, 76, 129, .08);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8125rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.label-badge--light {
  background: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .95);
}

/* ── SECTION BASE ─────────────────────────────────────────── */
.section {
  padding-block: var(--section-y);
}

.section__header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section__header.centered {
  margin-inline: auto;
  text-align: center;
}

.section__title {
  margin-bottom: .75rem;
}

.section__subtitle {
  font-size: 1.0625rem;
}

.section__footer {
  margin-top: 2.5rem;
}

.section__footer.centered {
  text-align: center;
}

.bg-light {
  background: var(--bg);
}

.bg-surface {
  background: var(--surface);
}

.bg-surface2 {
  background: var(--surface2);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background var(--trans), box-shadow var(--trans), backdrop-filter var(--trans);
}

.header.scrolled {
  background: rgba(247, 250, 252, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 36px;
  height: 36px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: -.01em;
}

.logo-text .logo-sub {
  font-family: var(--font-body);
  font-size: .6rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Navigation */
.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav__link {
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
  transition: color var(--trans), background var(--trans);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--accent);
  background: rgba(15, 76, 129, .06);
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: var(--accent);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__link--dropdown::after {
  content: ' ▾';
  font-size: .7em;
  opacity: .6;
}

.dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: .5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans), transform var(--trans);
  z-index: 10;
}

.nav__dropdown:hover .dropdown__menu,
.nav__dropdown:focus-within .dropdown__menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown__menu a {
  display: block;
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: background var(--trans), color var(--trans);
}

.dropdown__menu a:hover {
  background: rgba(15, 76, 129, .06);
  color: var(--accent);
}

/* Hamburger */
.header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  padding: 6px;
  transition: background var(--trans);
}

.header__menu-toggle:hover {
  background: rgba(15, 76, 129, .06);
}

.header__menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--trans);
}

.header__menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  padding-top: 72px;
  display: flex;
  align-items: center;
  background: #05101e;
  /* fallback por si el video no carga */
  position: relative;
  overflow: hidden;
}

/* ── HERO VIDEO DE FONDO ────────────────────────────────── */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
  /* Leve desaturación para que no compita con el contenido */
  filter: brightness(.75) saturate(.9);
}

/* Overlay en gradiente: más oscuro abajo y a la izquierda donde está el texto */
.hero__video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg,
      rgba(5, 16, 30, .78) 0%,
      rgba(5, 16, 30, .55) 55%,
      rgba(5, 16, 30, .25) 100%),
    linear-gradient(to top,
      rgba(5, 16, 30, .6) 0%,
      transparent 50%);
  pointer-events: none;
}

/* Quitamos el ::before y ::after de fondo plano/grid ya que ahora hay video */
.hero::before,
.hero::after {
  display: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-block: 5rem 4rem;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 600px;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8125rem;
  /* Sobre fondo oscuro usamos color claro con acento */
  color: rgba(255, 255, 255, .85);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1.5rem;
}

.hero__tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent2);
  /* verde para contraste */
  border-radius: 2px;
}

.hero__title {
  margin-bottom: 1.25rem;
  color: #FFFFFF;
  /* blanco puro sobre video oscuro */
  text-shadow: 0 2px 20px rgba(0, 0, 0, .35);
}

.hero__title em {
  font-style: normal;
  color: var(--accent2);
  /* verde vibrante destaca bien sobre oscuro */
  position: relative;
}

.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent2), var(--accent-l));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineReveal 1s .8s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes underlineReveal {
  to {
    transform: scaleX(1);
  }
}

.hero__desc {
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .80);
  /* semi-transparente sobre oscuro */
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* El botón outline del hero necesita ser claro sobre fondo oscuro */
.hero .btn--outline {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, .55);
}

.hero .btn--outline:hover {
  background: rgba(255, 255, 255, .15);
  border-color: #FFFFFF;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 540px;
  width: 100%;
}

.hero__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__img-badge {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: .75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .875rem;
  color: var(--text);
  white-space: nowrap;
  animation: floatBadge 4s ease-in-out infinite;
}

.hero__img-badge svg {
  color: var(--accent);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hero__img-badge--1 {
  bottom: 1.5rem;
  left: -1.5rem;
  animation-delay: 0s;
}

.hero__img-badge--2 {
  top: 1.5rem;
  right: -1.5rem;
  animation-delay: 1.5s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Hero placeholder visual (when no image) */
.hero__visual-placeholder {
  width: 100%;
  max-width: 540px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #EEF4FB 0%, #DCE9F8 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero__visual-placeholder svg {
  width: 60%;
  height: 60%;
  opacity: .18;
}

/* ============================================================
   SECTION: SECTORES
   ============================================================ */
.sectors__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.sector-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-decoration: none;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-l));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.sector-card:hover::before {
  transform: scaleX(1);
}

.sector-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(15, 76, 129, .08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
  transition: background var(--trans);
}

.sector-card:hover .sector-card__icon {
  background: rgba(15, 76, 129, .14);
}

.sector-card__icon svg {
  width: 28px;
  height: 28px;
}

.sector-card h3 {
  margin-bottom: .5rem;
}

.sector-card p {
  font-size: .95rem;
}

.sector-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .875rem;
  color: var(--accent);
  transition: gap var(--trans);
}

.sector-card:hover .sector-card__arrow {
  gap: .75rem;
}

.sector-card__arrow svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   SECTION: SOLUCIONES GRID
   ============================================================ */
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.solution-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--trans);
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.solution-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface2);
}

.solution-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.solution-card:hover .solution-card__img img {
  transform: scale(1.05);
}

.solution-card__body {
  padding: 1.5rem;
}

.solution-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(15, 76, 129, .08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}

.solution-card__icon svg {
  width: 22px;
  height: 22px;
}

.solution-card h3 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}

.solution-card p {
  font-size: .9rem;
  line-height: 1.6;
}

.solution-card__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: .875rem;
  color: var(--accent);
  transition: gap var(--trans);
}

.solution-card__link:hover {
  gap: .6rem;
}

/* ============================================================
   SECTION: CATÁLOGO (category grid)
   ============================================================ */
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.cat-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: var(--trans);
}

.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.cat-card__img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--surface2);
  position: relative;
}

.cat-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.cat-card:hover .cat-card__img img {
  transform: scale(1.06);
}

.cat-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 76, 129, .06), rgba(15, 76, 129, .12));
  color: var(--accent);
}

.cat-card__img-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: .5;
}

.cat-card__body {
  padding: 1.25rem;
}

.cat-card h3 {
  font-size: 1rem;
  margin-bottom: .4rem;
}

.cat-card__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.cat-card__items li {
  font-size: .825rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.cat-card__items li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.cat-card__more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .9rem;
  font-weight: 600;
  font-size: .8125rem;
  color: var(--accent);
}

/* Catalog search */
.catalog__search {
  position: relative;
  max-width: 440px;
  margin-bottom: 2rem;
}

.catalog__search input {
  width: 100%;
  padding: .75rem 1rem .75rem 2.75rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: var(--surface);
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--text);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}

.catalog__search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 76, 129, .12);
}

.catalog__search svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted);
  pointer-events: none;
}

/* ============================================================
   SECTION: PROCESO
   ============================================================ */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5%);
  width: calc(75%);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(15, 76, 129, .40);
  transition: var(--trans);
}

.process-step:hover .process-step__num {
  transform: scale(1.08);
  background: var(--accent-l);
}

.process-step h3 {
  margin-bottom: .5rem;
  font-size: 1rem;
}

.process-step p {
  font-size: .9rem;
}

/* ============================================================
   SECTION: STATS BANNER
   ============================================================ */
.stats-section {
  background: var(--accent);
  padding-block: 4rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat {
  color: var(--white);
}

.stat__num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
}

.stat__sym {
  font-weight: 800;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--accent2);
}

.stat__label {
  display: block;
  font-size: .9rem;
  color: rgba(255, 255, 255, .75);
  margin-top: .4rem;
  font-weight: 500;
}

/* ============================================================
   SECTION: CONFIANZA / TRUST
   ============================================================ */
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: var(--trans);
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.trust-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: rgba(15, 76, 129, .07);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.trust-card__icon svg {
  width: 28px;
  height: 28px;
}

.trust-card h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
}

.trust-card p {
  font-size: .9rem;
}

/* ============================================================
   SECTION: CASOS / CASES
   ============================================================ */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.case-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.case-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transition: transform var(--trans);
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.case-card:hover::after {
  transform: scaleX(1);
}

.case-card--featured {
  background: linear-gradient(135deg, rgba(15, 76, 129, .04), rgba(15, 76, 129, .09));
  border-color: rgba(15, 76, 129, .2);
}

.case-card__sector {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 50px;
  background: rgba(15, 76, 129, .1);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 1rem;
}

.case-card h3 {
  font-size: 1.05rem;
  margin-bottom: .65rem;
}

.case-card p {
  font-size: .9rem;
}

.case-card__results {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.25rem;
}

.result-tag {
  padding: .3rem .75rem;
  border-radius: 50px;
  background: rgba(37, 211, 102, .1);
  color: #1da851;
  font-size: .8rem;
  font-weight: 600;
}

/* ============================================================
   SECTION: TESTIMONIALES
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
  transition: var(--trans);
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: .12;
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial__stars {
  color: #F4B83F;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: .1em;
}

.testimonial p {
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 76, 129, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial__name {
  font-weight: 700;
  font-size: .9375rem;
}

.testimonial__role {
  font-size: .8rem;
  color: var(--muted);
}

/* ============================================================
   SECTION: FAQ ACORDEÓN
   ============================================================ */
.faq__wrap {
  max-width: 760px;
  margin-inline: auto;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: .75rem;
  overflow: hidden;
  background: var(--surface);
}

.faq__q {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--trans), background var(--trans);
}

.faq__q:hover {
  color: var(--accent);
  background: rgba(15, 76, 129, .03);
}

.faq__q[aria-expanded="true"] {
  color: var(--accent);
}

.faq__icon {
  width: 24px;
  height: 24px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--trans), background var(--trans);
}

.faq__icon::before {
  content: '+';
  font-size: .9rem;
  line-height: 1;
}

.faq__q[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1);
}

.faq__a-inner {
  padding: 0 1.5rem 1.5rem;
}

.faq__a-inner p {
  font-size: .9375rem;
}

/* ============================================================
   SECTION: CTA FINAL
   ============================================================ */
.cta-final {
  background: linear-gradient(135deg, var(--accent-d) 0%, var(--accent) 60%, #1a65a8 100%);
  padding-block: 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
}

.cta-final__title {
  color: var(--white);
  margin-block: 1rem 1.25rem;
}

.cta-final p {
  color: rgba(255, 255, 255, .8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.cta-final__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0B1220;
  color: rgba(255, 255, 255, .7);
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-block: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer__brand p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .6);
  margin-block: 1rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer__col h4 {
  color: var(--white);
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer__col ul li a {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  transition: color var(--trans);
}

.footer__col ul li a:hover {
  color: var(--white);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent2);
  flex-shrink: 0;
}

.footer__bottom {
  padding-block: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8125rem;
  color: rgba(255, 255, 255, .4);
}

.footer__bottom a {
  color: rgba(255, 255, 255, .5);
}

.footer__bottom a:hover {
  color: var(--white);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  transition: transform var(--trans), box-shadow var(--trans);
  text-decoration: none;
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .65);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent2);
  animation: waPulse 2.5s ease-out infinite;
  opacity: 0;
}

@keyframes waPulse {
  0% {
    transform: scale(.9);
    opacity: .6;
  }

  80% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.wa-float__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--text);
  color: var(--white);
  font-size: .8125rem;
  font-weight: 600;
  padding: .45rem .9rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
}

.wa-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--text);
}

.wa-float:hover .wa-float__tooltip {
  opacity: 1;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--accent-d), var(--accent));
  padding-block: 6rem 4rem;
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .8rem;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 1rem;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, .8);
  font-size: 1.1rem;
  max-width: 580px;
}

/* ============================================================
   NOSOTROS PAGE
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__img-wrap img {
  width: 100%;
  height: auto;
}

.about__img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(15, 76, 129, .07), rgba(15, 76, 129, .15));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: .4;
}

.about__img-placeholder svg {
  width: 80px;
  height: 80px;
}

.about__mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border-top: 3px solid var(--accent);
}

.mv-card h3 {
  color: var(--accent);
  margin-bottom: .75rem;
}

.mv-card p {
  font-size: .9rem;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  transition: var(--trans);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto .9rem;
  background: rgba(15, 76, 129, .08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.value-card__icon svg {
  width: 24px;
  height: 24px;
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: .4rem;
}

.value-card p {
  font-size: .875rem;
}

/* ============================================================
   SERVICIOS PAGE
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  display: flex;
  gap: 1.5rem;
  transition: var(--trans);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(15, 76, 129, .08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin-bottom: .5rem;
  font-size: 1.1rem;
}

.service-card p {
  font-size: .9rem;
}

/* ============================================================
   CONTACTO PAGE
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--text);
  transition: var(--trans);
}

.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--accent);
}

.contact-card--wa {
  border-color: var(--accent2);
}

.contact-card--wa:hover {
  background: rgba(37, 211, 102, .04);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(15, 76, 129, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-card--wa .contact-card__icon {
  background: rgba(37, 211, 102, .1);
  color: var(--accent2);
}

.contact-card__icon svg {
  width: 22px;
  height: 22px;
}

.contact-card__label {
  font-size: .75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--muted);
  margin-bottom: .2rem;
}

.contact-card__value {
  font-weight: 600;
  font-size: .9375rem;
  color: var(--text);
}

/* Contact Form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__group label {
  display: block;
  font-weight: 600;
  font-size: .875rem;
  color: var(--text);
  margin-bottom: .45rem;
}

.form__group input,
.form__group textarea,
.form__group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--text);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
}

.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 76, 129, .1);
}

.form__group textarea {
  min-height: 130px;
  resize: vertical;
}

.form__note {
  font-size: .8125rem;
  color: var(--muted);
  margin-top: 1rem;
}

/* ============================================================
   RECURSOS PAGE
   ============================================================ */
.recursos__grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}

.download-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--trans);
}

.download-card:hover {
  box-shadow: var(--shadow-sm);
}

.download-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(15, 76, 129, .07);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.download-card__icon svg {
  width: 22px;
  height: 22px;
}

.download-card__name {
  font-weight: 600;
  font-size: .9375rem;
}

.download-card__meta {
  font-size: .8rem;
  color: var(--muted);
}

.download-card__btn {
  margin-left: auto;
  padding: .4rem .9rem;
  border-radius: 50px;
  background: rgba(15, 76, 129, .08);
  color: var(--accent);
  font-weight: 600;
  font-size: .8rem;
  flex-shrink: 0;
  cursor: pointer;
  transition: var(--trans);
}

.download-card__btn:hover {
  background: var(--accent);
  color: white;
}

/* ============================================================
   CATEGORÍA TEMPLATE PAGE
   ============================================================ */
.category__hero-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-md);
  max-height: 380px;
}

.category__hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.category__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9375rem;
  transition: var(--trans);
}

.category__item:hover {
  border-color: var(--accent);
  background: rgba(15, 76, 129, .03);
}

.category__item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.category__cta-box {
  background: linear-gradient(135deg, rgba(15, 76, 129, .06), rgba(15, 76, 129, .12));
  border: 1px solid rgba(15, 76, 129, .15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

.category__cta-box h3 {
  margin-bottom: .75rem;
}

.category__cta-box p {
  margin-bottom: 2rem;
}

/* ============================================================
   REVEAL ANIMATIONS (IntersectionObserver)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-28px);
}

.reveal-right {
  transform: translateX(28px);
}

.reveal-left.visible,
.reveal-right.visible {
  transform: translateX(0);
}

/* Stagger delay for grid children */
.stagger>* {
  transition-delay: calc(var(--i, 0) * .08s);
}

/* ============================================================
   PREFERS-REDUCED-MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

  .solutions__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .sectors__grid {
    grid-template-columns: 1fr;
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__steps::before {
    display: none;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cases__grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__mv {
    grid-template-columns: 1fr;
  }

  .trust__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .recursos__grid {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .values__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Header mobile */
  .header__menu-toggle {
    display: flex;
  }

  .header__nav {
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem;
    transform: translateX(100%);
    transition: transform var(--trans-slow);
    border-top: 1px solid var(--border);
    overflow-y: auto;
  }

  .header__nav.is-open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    width: 100%;
    gap: .25rem;
  }

  .nav__link {
    width: 100%;
    display: block;
    padding: .85rem 1rem;
    font-size: 1rem;
  }

  .nav__link.active::after {
    display: none;
  }

  .nav__dropdown .dropdown__menu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--accent);
    border-radius: 0;
    margin: .25rem 0 .25rem 1rem;
    padding: .25rem;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-block: 5rem 3rem;
  }

  /* Grids */
  .solutions__grid {
    grid-template-columns: 1fr;
  }

  .catalog__grid {
    grid-template-columns: 1fr;
  }

  .cases__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 1.25rem;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust__grid {
    grid-template-columns: 1fr;
  }

  .about__mv {
    grid-template-columns: 1fr;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .footer__main {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .service-card {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .cta-final__btns {
    flex-direction: column;
    align-items: center;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .stats__grid {
    grid-template-columns: 1fr;
  }
}