@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/* ===========================
   CSS CUSTOM PROPERTIES
=========================== */
:root {
  --color-primary: #6c3fff;
  --color-secondary: #3584a7;
  --color-accent: #2872fa;
  --color-text: #192a3d;
  --color-text-muted: #5a6a7a;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f9fc;
  --color-border: #e1e8ed;
  --color-footer: #1a2b3c;

  --gradient: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  --gradient-hero: linear-gradient(135deg, rgba(108,63,255,0.92), rgba(53,132,167,0.92));

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(108,63,255,0.12);
  --shadow-lg: 0 20px 60px rgba(108,63,255,0.18);

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 72px;
  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select, button { font: inherit; }

/* ===========================
   UTILITIES
=========================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 96px;
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(108,63,255,0.08);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(108,63,255,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108,63,255,0.45);
}

.btn--outline {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn--white {
  background: #fff;
  color: var(--color-primary);
  font-weight: 700;
}
.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.btn--outline-white {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
  background: transparent;
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn--full { width: 100%; }

/* ===========================
   HEADER
=========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo__sm {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo__text {
  font-size: 17px;
  color: #fff;
  transition: color var(--transition);
}

.header.scrolled .logo__text { color: var(--color-text); }

/* Desktop Nav */
.nav--desktop .nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: #fff;
  background: rgba(255,255,255,0.12);
}

.header.scrolled .nav__link {
  color: var(--color-text-muted);
}
.header.scrolled .nav__link:hover,
.header.scrolled .nav__link.active {
  color: var(--color-text);
  background: rgba(108,63,255,0.08);
}

.nav__link--cta {
  background: var(--gradient);
  color: #fff !important;
  padding: 8px 20px;
  box-shadow: 0 2px 12px rgba(108,63,255,0.3);
}
.nav__link--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(108,63,255,0.4);
  background: var(--gradient) !important;
}

/* Mobile Nav Overlay (body-level, never clipped) */
.nav--mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1100;
  background: #07071a;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow: hidden;
}
.nav--mobile.open {
  opacity: 1;
  pointer-events: all;
}

/* Decorative aurora blobs inside menu */
.nav--mobile::before,
.nav--mobile::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.nav--mobile::before {
  width: 400px;
  height: 400px;
  top: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(108,63,255,0.35) 0%, transparent 70%);
  filter: blur(50px);
}
.nav--mobile::after {
  width: 350px;
  height: 350px;
  bottom: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(53,132,167,0.3) 0%, transparent 70%);
  filter: blur(50px);
}

.nav--mobile__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 32px 40px;
}

.nav--mobile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 40px;
}

.nav--mobile__logo .logo__text { color: #fff; }

.nav--mobile__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: var(--transition);
}
.nav--mobile__close:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

.nav--mobile .nav__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.nav--mobile .nav__link {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  padding: 10px 0;
  border-radius: 0;
  letter-spacing: -0.5px;
  transition: color 0.2s ease, transform 0.2s ease;
  background: none;
}
.nav--mobile .nav__link:hover,
.nav--mobile .nav__link.active {
  color: #fff;
  transform: translateX(8px);
  background: none;
}

.nav--mobile__cta {
  margin-top: 40px;
  width: 100%;
  font-size: 16px;
}

.nav--mobile__tagline {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin-top: 20px;
  letter-spacing: 0.05em;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.header.scrolled .burger span { background: var(--color-text); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO — AURORA ANIMATION
=========================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: #07071a;
  overflow: hidden;
}

/* Aurora container */
.hero__aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Individual color blobs */
.aurora__blob {
  position: absolute;
  border-radius: 50%;
  opacity: 1;
  will-change: transform;
}

.aurora__blob--1 {
  width: 80vw;
  height: 80vw;
  top: -30%;
  left: -20%;
  background: radial-gradient(circle at center, rgba(108,63,255,0.9) 0%, rgba(108,63,255,0.3) 40%, transparent 70%);
  filter: blur(60px);
  animation: drift1 8s ease-in-out infinite;
}
.aurora__blob--2 {
  width: 65vw;
  height: 65vw;
  top: 10%;
  right: -15%;
  background: radial-gradient(circle at center, rgba(6,182,212,0.85) 0%, rgba(53,132,167,0.4) 40%, transparent 70%);
  filter: blur(70px);
  animation: drift2 10s ease-in-out infinite;
}
.aurora__blob--3 {
  width: 60vw;
  height: 60vw;
  bottom: -20%;
  left: 10%;
  background: radial-gradient(circle at center, rgba(168,85,247,0.9) 0%, rgba(168,85,247,0.3) 40%, transparent 70%);
  filter: blur(65px);
  animation: drift3 7s ease-in-out infinite;
}
.aurora__blob--4 {
  width: 50vw;
  height: 50vw;
  top: 35%;
  left: 25%;
  background: radial-gradient(circle at center, rgba(34,211,238,0.7) 0%, rgba(34,211,238,0.2) 40%, transparent 70%);
  filter: blur(80px);
  animation: drift4 12s ease-in-out infinite;
}
.aurora__blob--5 {
  width: 45vw;
  height: 45vw;
  bottom: 5%;
  right: 0%;
  background: radial-gradient(circle at center, rgba(79,70,229,0.85) 0%, rgba(79,70,229,0.3) 40%, transparent 70%);
  filter: blur(55px);
  animation: drift5 9s ease-in-out infinite;
}

/* Subtle noise texture overlay for depth */
.aurora__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

/* Drift keyframes — organic, asymmetric movement */
@keyframes drift1 {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(8%, 6%) scale(1.08); }
  50%  { transform: translate(-5%, 12%) scale(0.95); }
  75%  { transform: translate(10%, -4%) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes drift2 {
  0%   { transform: translate(0, 0) scale(1); }
  30%  { transform: translate(-10%, 8%) scale(1.1); }
  60%  { transform: translate(5%, -10%) scale(0.92); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes drift3 {
  0%   { transform: translate(0, 0) scale(1); }
  20%  { transform: translate(6%, -8%) scale(1.12); }
  55%  { transform: translate(-8%, 5%) scale(0.9); }
  80%  { transform: translate(4%, 10%) scale(1.06); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes drift4 {
  0%   { transform: translate(0, 0) scale(1) rotate(0deg); }
  40%  { transform: translate(-12%, -6%) scale(1.15) rotate(20deg); }
  70%  { transform: translate(8%, 8%) scale(0.88) rotate(-15deg); }
  100% { transform: translate(0, 0) scale(1) rotate(0deg); }
}
@keyframes drift5 {
  0%   { transform: translate(0, 0) scale(1); }
  35%  { transform: translate(-6%, 10%) scale(1.08); }
  65%  { transform: translate(10%, -5%) scale(0.94); }
  100% { transform: translate(0, 0) scale(1); }
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-block: 120px 80px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero__body {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  position: relative;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 999px;
  animation: scrollDown 1.6s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { top: 6px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

/* ===========================
   CARDS GRID
=========================== */
.cards {
  display: grid;
  gap: 24px;
}
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

/* Service Cards */
.card {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card--featured {
  background: linear-gradient(160deg, #f5f0ff, #edf6ff);
  border-color: rgba(108,63,255,0.2);
  box-shadow: var(--shadow-md);
}

.card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}

.card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.card__icon svg { width: 56px; height: 56px; }

.card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.card__body {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap var(--transition);
  margin-top: auto;
}
.card__link:hover { text-decoration: underline; }

/* ===========================
   BENEFITS
=========================== */
.benefits { background: var(--color-bg-alt); }

.benefit {
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(108,63,255,0.15);
}

.benefit__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(108,63,255,0.08);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--color-primary);
}
.benefit__icon svg { width: 22px; height: 22px; }

.benefit__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit__body {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ===========================
   CTA BANNER
=========================== */
.cta-banner {
  background: var(--gradient);
  padding-block: 80px;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner__title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}

.cta-banner__body {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ===========================
   CLIENTS
=========================== */
.clients__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  min-width: 180px;
  min-height: 110px;
  transition: var(--transition);
  text-decoration: none;
}
.client-logo:hover {
  border-color: rgba(108,63,255,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* M33 — image logo */
.client-logo--m33 {
  background: #1a1a1a;
  border-color: #333;
}
.client-logo__img {
  max-height: 72px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}
.client-logo:hover .client-logo__img {
  transform: scale(1.06);
}

/* A&E — styled text logo */
.client-logo__ae {
  font-family: 'Great Vibes', cursive;
  font-size: 42px;
  color: #1a1a1a;
  line-height: 1;
  transition: color var(--transition);
}
.client-logo__ae-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b8975a;
  margin-top: 4px;
  border-top: 1px solid #b8975a;
  padding-top: 5px;
  width: 100%;
  text-align: center;
}
.client-logo--ae:hover .client-logo__ae { color: var(--color-primary); }

/* Hilandera — styled text logo */
.client-logo__hilandera {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--color-text);
  transition: color var(--transition);
}
.client-logo__hilandera-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 5px;
}
.client-logo--hilandera:hover .client-logo__hilandera { color: var(--color-primary); }

/* ===========================
   CONTACT
=========================== */
.contact { background: var(--color-bg-alt); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact__body {
  color: var(--color-text-muted);
  margin-top: 16px;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.7;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--color-text-muted);
}
.contact__details svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Form */
.contact__form {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form__group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.form__group input,
.form__group select,
.form__group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form__group input::placeholder,
.form__group textarea::placeholder {
  color: #b0bec8;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(108,63,255,0.12);
}

.form__note {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 12px;
}
.form__note a { color: var(--color-primary); text-decoration: underline; }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--color-footer);
  color: rgba(255,255,255,0.75);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-block: 72px 48px;
}

.footer .logo__text { color: #fff; }

.footer__tagline {
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}

.footer__nav-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer__nav ul,
.footer__contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a {
  font-size: 14px;
  transition: color var(--transition);
}
.footer__nav a:hover { color: #fff; }

.footer__contact li {
  font-size: 14px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 24px;
}
.footer__bottom p {
  font-size: 13px;
  text-align: center;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
  /* Show burger, hide desktop nav */
  .burger { display: flex; }
  .nav--desktop { display: none; }

  /* Show mobile overlay */
  .nav--mobile { display: flex; }

  /* Cards */
  .cards--3, .cards--4 { grid-template-columns: 1fr; }

  /* CTA Banner */
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }

  /* Contact */
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__form { padding: 28px; }
  .form__row { grid-template-columns: 1fr; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .cards--3, .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { gap: 48px; }
}
