/* ============================================================
   ASTRAVEX STUDIO — styles.css
   Premium agency landing page
   ============================================================ */

/* ── Variables ── */
:root {
  --blue:       #0ea5e9;
  --blue-dark:  #0369a1;
  --purple:     #6e3af8;
  --purple-mid: #8b5cf6;
  --pink:       #f72585;
  --pink-light: #fb3ea9;
  --black:      #050610;
  --black-2:    #080c1a;
  --black-3:    #0d1226;
  --white:      #ffffff;
  --white-60:   rgba(255,255,255,.6);
  --white-10:   rgba(255,255,255,.08);
  --white-5:    rgba(255,255,255,.04);
  --glass-bg:   rgba(255,255,255,.04);
  --glass-bd:   rgba(255,255,255,.1);
  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --radius-xl:  40px;
  --font-main:  'Inter', sans-serif;
  --font-head:  'Space Grotesk', sans-serif;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-main);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; padding: 0; margin: 0; }

/* ── Utility — gradient text ── */
.gradient-text {
  background: linear-gradient(90deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-pink {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Shared section labels / titles ── */
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.2rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ── Glass card ── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius-md);
}

/* ── Scroll reveal ── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}


/* ================================================================
   NAVBAR
================================================================ */
.glass-nav {
  background: rgba(5,6,16,.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-bd);
  padding: .9rem 0;
  transition: background var(--transition), padding var(--transition);
  z-index: 1000;
}
.glass-nav.scrolled {
  background: rgba(5,6,16,.92);
  padding: .6rem 0;
}

/* Logo imagen */
.nav-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: -10px 0;
  transition: opacity var(--transition), transform var(--transition);
}
.nav-logo-img:hover {
  opacity: .85;
  transform: scale(1.03);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
  opacity: .9;
  transition: opacity var(--transition);
}
.footer-logo-img:hover { opacity: 1; }

/* Brand */
.brand-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
}
.brand-icon {
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-name { color: var(--white); }
.brand-accent {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 2px;
}

/* Nav links */
.nav-item-link {
  color: rgba(255,255,255,.6) !important;
  font-size: .82rem;
  font-weight: 500;
  padding: .45rem .85rem !important;
  border-radius: var(--radius-sm);
  display: flex !important;
  align-items: center;
  gap: .45rem;
  position: relative;
  transition: color .3s ease, background .3s ease;
  letter-spacing: .02em;
}

/* Icono */
.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: transparent;
  transition: color .3s ease,
              text-shadow .3s ease,
              background .3s ease,
              transform .3s ease;
  flex-shrink: 0;
}

/* Texto */
.nav-text {
  transition: color .3s ease;
}

/* Puntito indicador debajo */
.nav-glow-dot {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue), 0 0 16px var(--blue);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), opacity .3s ease;
  opacity: 0;
}

/* ── Hover ── */
.nav-item-link:hover {
  color: var(--white) !important;
  background: rgba(255,255,255,.06);
}
.nav-item-link:hover .nav-icon {
  color: var(--blue);
  text-shadow: 0 0 10px var(--blue), 0 0 20px rgba(14,165,233,.6);
  transform: translateY(-1px);
  background: rgba(14,165,233,.1);
}
.nav-item-link:hover .nav-glow-dot {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

/* ── Activo al hacer scroll ── */
.nav-item-link.active {
  color: var(--white) !important;
  background: rgba(110,58,248,.12);
}
.nav-item-link.active .nav-icon {
  color: var(--purple-mid);
  text-shadow:
    0 0 8px var(--purple-mid),
    0 0 20px rgba(110,58,248,.7),
    0 0 35px rgba(110,58,248,.4);
  background: rgba(110,58,248,.15);
  transform: scale(1.1);
}
.nav-item-link.active .nav-glow-dot {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  background: var(--purple-mid);
  box-shadow:
    0 0 8px var(--purple-mid),
    0 0 18px rgba(110,58,248,.7);
  animation: dotPulse 1.8s ease-in-out infinite;
}
.nav-item-link.active .nav-text {
  background: linear-gradient(90deg, var(--blue), var(--purple-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
  50%       { opacity: .5; transform: translateX(-50%) scale(.6); }
}

/* CTA nav button */
.btn-cta-nav {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: var(--white) !important;
  font-size: .88rem;
  font-weight: 600;
  padding: .5rem 1.25rem;
  border-radius: 50px;
  border: none;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 18px rgba(110,58,248,.35);
}
.btn-cta-nav:hover {
  opacity: .9;
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(247,37,133,.45);
}

/* Toggler */
.nav-toggle-icon { color: var(--white); font-size: 1.3rem; }
.navbar-toggler { border: 1px solid var(--glass-bd); border-radius: 8px; padding: .35rem .55rem; }
.navbar-toggler:focus { box-shadow: none; }


/* ================================================================
   HERO
================================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(110,58,248,.18) 0%, transparent 60%),
              radial-gradient(ellipse 60% 50% at 80% 30%, rgba(14,165,233,.15) 0%, transparent 55%),
              radial-gradient(ellipse 50% 60% at 60% 80%, rgba(247,37,133,.12) 0%, transparent 55%),
              var(--black);
}

/* ── Video background ── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);        /* evita bordes blancos en zoom */
  filter: saturate(1.15) brightness(.75);
  transition: filter 1.2s ease;
}

/* Oscurecimiento base — el más importante */
.hero-video-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 16, .68);
}

/* Degradado de colores de marca encima del video */
.hero-video-overlay-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 55%, rgba(110,58,248,.32) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 85% 25%, rgba(14,165,233,.22) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 55% 85%, rgba(247,37,133,.18) 0%, transparent 55%);
  mix-blend-mode: screen;
}

/* Viñeta: oscurece bordes para enfocar el contenido central */
.hero-video-overlay-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 85% at 50% 50%,
    transparent 40%,
    rgba(5,6,16,.55) 75%,
    rgba(5,6,16,.88) 100%
  );
}

/* Scanlines sutiles — efecto digital/tech */
.hero-video-overlay-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,.08) 3px,
    rgba(0,0,0,.08) 4px
  );
  pointer-events: none;
  opacity: .4;
}

/* Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: rgba(110,58,248,.22);
  top: -150px; left: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: rgba(14,165,233,.18);
  top: 10%; right: -80px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.hero-orb-3 {
  width: 400px; height: 400px;
  background: rgba(247,37,133,.14);
  bottom: -80px; left: 40%;
  animation: orbFloat 12s ease-in-out infinite;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-30px) scale(1.05); }
  66%      { transform: translate(-20px,20px) scale(.97); }
}

/* Grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

/* Particles */
.particles-wrap { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleRise linear infinite;
  opacity: 0;
}
@keyframes particleRise {
  0%   { transform: translateY(0) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .6; }
  100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 3;
  padding: 110px 6vw 60px;
}
/* Capa oscura detrás del texto — solo en el área del contenido */
.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 80% at 30% 50%,
    rgba(5,6,16,.55) 0%,
    transparent 75%
  );
  pointer-events: none;
  z-index: -1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(14,165,233,.4);
  background: rgba(14,165,233,.12);
  padding: .35rem .95rem;
  border-radius: 50px;
  margin-bottom: .85rem;
  backdrop-filter: blur(10px);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.8); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.06;
  margin-bottom: .85rem;
  letter-spacing: -.025em;
  /* Sin text-shadow para no apagar los gradientes */
}

/* Palabras con gradiente en el hero: más brillantes y saturadas */
.hero-title .gradient-text {
  background: linear-gradient(90deg, #38bdf8, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: brightness(1.25) saturate(1.3);
}
.hero-title .gradient-text-pink {
  background: linear-gradient(90deg, #c084fc, #f472b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: brightness(1.3) saturate(1.4);
}

.hero-sub {
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,.92);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 20px rgba(0,0,0,.85);
}

/* Hero buttons */
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.8rem; }

.btn-primary-glow {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 0 30px rgba(14,165,233,.4), 0 8px 24px rgba(0,0,0,.3);
  transition: transform var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-primary-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(14,165,233,.6), 0 12px 32px rgba(0,0,0,.4);
  color: var(--white);
}

.btn-outline-glow {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: inset 0 0 20px rgba(255,255,255,.03);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-outline-glow:hover {
  border-color: var(--purple);
  box-shadow: 0 0 25px rgba(110,58,248,.35);
  transform: translateY(-2px);
  color: var(--white);
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hstat { display: flex; flex-direction: column; gap: .25rem; }
.hstat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hstat-label { font-size: .78rem; color: var(--white-60); font-weight: 500; }
.hstat-divider {
  width: 1px; height: 40px;
  background: var(--glass-bd);
}

/* Mockups */
.hero-mockups {
  position: absolute;
  right: 4vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  z-index: 3;
  pointer-events: none;
}

.mockup-card {
  background: rgba(13,18,38,.85);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 40px rgba(110,58,248,.12);
}
.mockup-main {
  width: 320px;
  animation: floatCard 6s ease-in-out infinite;
}
.mockup-secondary {
  width: 150px;
  animation: floatCard 7s ease-in-out infinite .5s;
}
.mockup-tertiary {
  width: 150px;
  padding: 1rem;
  animation: floatCard 5s ease-in-out infinite 1s;
}
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .6rem .8rem;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid var(--glass-bd);
}
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }
.mockup-url {
  margin-left: .4rem;
  font-size: .65rem;
  color: var(--white-60);
  font-family: monospace;
}
.mockup-body { padding: .8rem; display: flex; flex-direction: column; gap: .55rem; }

.mock-hero-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.08);
}
.glow-bar { background: linear-gradient(90deg, var(--blue), var(--purple)); box-shadow: 0 0 12px rgba(110,58,248,.5); }
.mock-wide    { width: 90%; }
.mock-medium  { width: 68%; }
.mock-short   { width: 45%; }
.mock-btns-row { display: flex; gap: .5rem; margin-top: .3rem; }
.mock-btn-el { height: 18px; border-radius: 20px; }
.btn-el-blue { width: 72px; background: linear-gradient(90deg, var(--blue), var(--purple)); }
.btn-el-outline { width: 60px; border: 1px solid var(--glass-bd); }
.mock-img-placeholder {
  width: 100%;
  height: 100px;
  background: linear-gradient(135deg, rgba(110,58,248,.15), rgba(14,165,233,.1));
  border-radius: 8px;
  border: 1px solid var(--glass-bd);
}
.mini-img { height: 60px; }

.mockup-mini-header {
  padding: .5rem .7rem;
  font-size: .62rem;
  color: var(--white-60);
  border-bottom: 1px solid var(--glass-bd);
  display: flex;
  align-items: center;
}
.mockup-body-mini { padding: .6rem; display: flex; flex-direction: column; gap: .45rem; }

.mockup-stat-label {
  font-size: .65rem;
  color: var(--white-60);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.perf-score {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--blue), var(--purple-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .6rem;
}
.perf-bars { display: flex; flex-direction: column; gap: .4rem; }
.perf-bar {
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  box-shadow: 0 0 8px rgba(110,58,248,.4);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  z-index: 3;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--blue);
  border-radius: 3px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(18px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}


/* ================================================================
   TRUST BAND
================================================================ */
.trust-section {
  padding: 5rem 6vw;
  border-top: 1px solid var(--glass-bd);
  border-bottom: 1px solid var(--glass-bd);
  background: linear-gradient(180deg, var(--black-2) 0%, var(--black) 100%);
}
.trust-inner { }
.trust-headline {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 3rem;
  color: var(--white);
  text-align: center;
}

.trust-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.trust-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.pillar-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(14,165,233,.15), rgba(110,58,248,.15));
  border: 1px solid rgba(14,165,233,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--blue);
}
.pillar-text { display: flex; flex-direction: column; gap: .3rem; }
.pillar-text strong { font-size: .95rem; font-weight: 600; }
.pillar-text span   { font-size: .85rem; color: var(--white-60); line-height: 1.5; }


/* ================================================================
   SERVICES
================================================================ */
.services-section {
  padding: 7rem 6vw;
  background: var(--black);
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: left;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(110,58,248,.06), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(110,58,248,.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(110,58,248,.15);
}
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  transition: transform var(--transition);
}
.service-card:hover .service-icon-wrap { transform: scale(1.1); }

.icon-blue   { background: rgba(14,165,233,.15); border: 1px solid rgba(14,165,233,.25); color: var(--blue); }
.icon-purple { background: rgba(110,58,248,.15); border: 1px solid rgba(110,58,248,.25); color: var(--purple-mid); }
.icon-pink   { background: rgba(247,37,133,.12); border: 1px solid rgba(247,37,133,.25); color: var(--pink-light); }

.service-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.service-desc {
  font-size: .88rem;
  color: var(--white-60);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.service-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition), color var(--transition);
}
.service-link:hover { gap: .6rem; color: var(--purple-mid); }

.badge-coming {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .3rem .8rem;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(247,37,133,.15), rgba(110,58,248,.15));
  border: 1px solid rgba(247,37,133,.3);
  color: var(--pink-light);
}


/* ================================================================
   PORTFOLIO
================================================================ */
.portfolio-section {
  padding: 7rem 6vw;
  background: var(--black-2);
  text-align: center;
}

.portfolio-filters {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.pf-btn {
  background: transparent;
  border: 1px solid var(--glass-bd);
  color: var(--white-60);
  font-size: .85rem;
  font-weight: 500;
  padding: .5rem 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}
.pf-btn:hover,
.pf-btn.active {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 0 20px rgba(110,58,248,.35);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

/* ── Card base ── */
.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-bd);
  background: rgba(13,18,38,.6);
  transition: transform .4s cubic-bezier(.25,.8,.25,1),
              box-shadow .4s cubic-bezier(.25,.8,.25,1),
              border-color .4s ease;
  cursor: pointer;
  position: relative;
}
.portfolio-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(110,58,248,.3), rgba(14,165,233,.15), rgba(247,37,133,.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 1;
}
.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow:
    0 30px 70px rgba(0,0,0,.5),
    0 0 40px rgba(110,58,248,.18),
    0 0 80px rgba(14,165,233,.08);
  border-color: rgba(110,58,248,.35);
}
.portfolio-item:hover::before { opacity: 1; }

/* ── Imagen ── */
.portfolio-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.8,.25,1), filter .5s ease;
  background: linear-gradient(135deg,
    rgba(110,58,248,.3) 0%,
    rgba(14,165,233,.2) 50%,
    rgba(247,37,133,.2) 100%
  );
  min-height: 220px;
  filter: brightness(.92) saturate(1.05);
}
.portfolio-item:hover .portfolio-img {
  transform: scale(1.08);
  filter: brightness(1.05) saturate(1.15);
}

/* ── Overlay ── */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,6,16,0) 0%,
    rgba(5,6,16,.3) 40%,
    rgba(5,6,16,.96) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  opacity: 0;
  transition: opacity .4s ease;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

/* ── Tags ── */
.portfolio-tags {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  margin-bottom: .65rem;
}
.ptag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: 50px;
  background: rgba(110,58,248,.25);
  border: 1px solid rgba(110,58,248,.4);
  color: #c4b5fd;
  backdrop-filter: blur(12px);
}

/* ── Texto del overlay ── */
.portfolio-proj-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .3rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}
.portfolio-proj-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1rem;
}

/* ── Botón "Ver proyecto" ── */
.btn-portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .55rem 1.2rem;
  border-radius: 50px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(12px);
  transition: background .3s ease, border-color .3s ease,
              box-shadow .3s ease, transform .3s ease, gap .3s ease;
  align-self: flex-start;
}
.btn-portfolio-link:hover {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-color: transparent;
  box-shadow: 0 0 22px rgba(110,58,248,.55);
  transform: translateY(-2px);
  color: var(--white);
  gap: .8rem;
}

/* ── Meta inferior ── */
.portfolio-meta {
  padding: 1rem 1.2rem;
  background: rgba(8,12,26,.85);
  border-top: 1px solid var(--glass-bd);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.portfolio-category {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.portfolio-category::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 6px var(--blue);
}
.portfolio-name {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  color: var(--white);
}

/* Enlace externo en la meta */
.portfolio-meta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  color: var(--white-60);
  font-size: .85rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.portfolio-meta-link:hover {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 0 14px rgba(110,58,248,.4);
  transform: scale(1.1);
}


/* ================================================================
   WHY ASTRAVEX
================================================================ */
.why-section {
  padding: 7rem 6vw;
  background: var(--black);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-left { }
.why-desc {
  font-size: 1rem;
  color: var(--white-60);
  line-height: 1.8;
  margin-top: 1.2rem;
}
.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.why-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.why-card:hover {
  border-color: rgba(110,58,248,.35);
  box-shadow: 0 8px 30px rgba(110,58,248,.12);
  transform: translateY(-4px);
}
.why-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(110,58,248,.2), rgba(14,165,233,.15));
  border: 1px solid rgba(110,58,248,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--purple-mid);
  margin-bottom: .9rem;
}
.why-card-body h4 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .45rem;
}
.why-card-body p {
  font-size: .82rem;
  color: var(--white-60);
  line-height: 1.6;
  margin: 0;
}


/* ================================================================
   PROCESS TIMELINE
================================================================ */
.process-section {
  padding: 7rem 6vw;
  background: var(--black-2);
  text-align: center;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(14,165,233,.2), rgba(110,58,248,.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .4rem;
}

.step-connector {
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg, var(--purple), transparent);
  margin-bottom: .8rem;
}
.step-connector.last { background: transparent; }

.step-card {
  padding: 1.6rem;
  width: 100%;
  text-align: left;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.step-card:hover {
  border-color: rgba(110,58,248,.4);
  box-shadow: 0 12px 40px rgba(110,58,248,.12);
  transform: translateY(-4px);
}
.step-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .9rem;
  box-shadow: 0 0 20px rgba(110,58,248,.35);
}
.step-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.step-desc {
  font-size: .84rem;
  color: var(--white-60);
  line-height: 1.65;
  margin: 0;
}


/* ================================================================
   FUTURE / MARKETING
================================================================ */
.future-section {
  padding: 7rem 6vw;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.future-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.future-orb-1 {
  width: 500px; height: 500px;
  background: rgba(247,37,133,.12);
  top: -100px; right: -80px;
}
.future-orb-2 {
  width: 400px; height: 400px;
  background: rgba(110,58,248,.14);
  bottom: -80px; left: -60px;
}
.future-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.badge-future {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 50px;
  background: rgba(247,37,133,.12);
  border: 1px solid rgba(247,37,133,.3);
  color: var(--pink-light);
}

.future-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.future-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.future-card:hover {
  border-color: rgba(247,37,133,.35);
  box-shadow: 0 8px 30px rgba(247,37,133,.1);
  transform: translateY(-4px);
}
.future-card:last-child { grid-column: span 2; }

.future-icon {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: .7rem;
}
.future-card h4 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.future-card p {
  font-size: .82rem;
  color: var(--white-60);
  line-height: 1.6;
  margin: 0;
}


/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials-section {
  padding: 7rem 6vw;
  background: var(--black-2);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testi-card {
  padding: 2rem;
  text-align: left;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover {
  border-color: rgba(110,58,248,.4);
  box-shadow: 0 12px 40px rgba(110,58,248,.12);
  transform: translateY(-4px);
}
.testi-stars { font-size: .85rem; color: #fbbf24; margin-bottom: .9rem; letter-spacing: .1rem; }
.testi-text {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.4rem;
}
.testi-author { display: flex; align-items: center; gap: .9rem; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
}
.testi-author span {
  display: block;
  font-size: .78rem;
  color: var(--white-60);
  margin-top: .1rem;
}


/* ================================================================
   CTA FINAL
================================================================ */
.cta-section {
  padding: 8rem 6vw;
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.cta-orb-1 { width: 500px; height: 500px; background: rgba(110,58,248,.2); top: -100px; left: -60px; }
.cta-orb-2 { width: 400px; height: 400px; background: rgba(247,37,133,.14); bottom: -80px; right: -40px; }
.cta-orb-3 { width: 300px; height: 300px; background: rgba(14,165,233,.12); top: 50%; left: 50%; transform: translate(-50%,-50%); }

.cta-inner { position: relative; z-index: 1; }

.cta-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 1.2rem;
}
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.4rem;
  letter-spacing: -.02em;
}
.cta-sub {
  font-size: 1.05rem;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.btn-cta-main {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 0 40px rgba(110,58,248,.45), 0 12px 30px rgba(0,0,0,.3);
  transition: transform var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
}
.btn-cta-main:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 60px rgba(247,37,133,.55), 0 16px 40px rgba(0,0,0,.4);
  color: var(--white);
}

.contact-cards {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem 1.3rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  border-radius: 50px;
  font-size: .87rem;
  color: var(--white-60);
  transition: border-color var(--transition), color var(--transition);
}
.contact-card:hover { border-color: rgba(110,58,248,.3); color: var(--white); }
.contact-card i { color: var(--blue); }


/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background: var(--black-3);
  border-top: 1px solid var(--glass-bd);
  padding: 5rem 6vw 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: .87rem;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: .75rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white-60);
  transition: all var(--transition);
}
.social-link:hover {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(110,58,248,.35);
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer-links ul li {
  margin-bottom: .65rem;
}
.footer-links ul li a {
  font-size: .88rem;
  color: var(--white-60);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.footer-links ul li a:hover { color: var(--blue); }
.footer-links ul li:not(:has(a)) {
  font-size: .88rem;
  color: var(--white-60);
  display: flex;
  align-items: center;
}

.footer-bottom {
  border-top: 1px solid var(--glass-bd);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: var(--white-60);
}


/* ================================================================
   HERO CURSOR — Efecto premium UX/UI
================================================================ */

/* Oculta cursor nativo solo dentro del hero en desktop */
@media (min-width: 992px) {
  .hero-section { cursor: none; }
  .hero-section * { cursor: none; }
}

/* ── Dot central (sigue exacto) ── */
.cur-dot {
  position: fixed;
  top: 0; left: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 8px #fff,
    0 0 18px rgba(14,165,233,.9),
    0 0 35px rgba(14,165,233,.5);
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transition: opacity .25s ease, width .25s ease, height .25s ease;
  will-change: transform;
}
.cur-dot.visible { opacity: 1; }

/* ── Ring magnético (sigue con lag) ── */
.cur-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(139,92,246,.7);
  box-shadow:
    0 0 10px rgba(110,58,248,.4),
    inset 0 0 10px rgba(110,58,248,.1);
  pointer-events: none;
  z-index: 99998;
  opacity: 0;
  transition: opacity .25s ease,
              width .3s cubic-bezier(.34,1.56,.64,1),
              height .3s cubic-bezier(.34,1.56,.64,1),
              border-color .3s ease,
              box-shadow .3s ease;
  will-change: transform;
  background: radial-gradient(circle, rgba(110,58,248,.06) 0%, transparent 70%);
}
.cur-ring.visible { opacity: 1; }

/* Ring sobre enlaces */
.cur-ring.on-link {
  width: 52px; height: 52px;
  border-color: rgba(247,37,133,.8);
  box-shadow:
    0 0 16px rgba(247,37,133,.5),
    0 0 35px rgba(247,37,133,.25),
    inset 0 0 14px rgba(247,37,133,.1);
  background: radial-gradient(circle, rgba(247,37,133,.08) 0%, transparent 70%);
}

/* Animación al hacer click */
.cur-ring.click-pop {
  width: 60px; height: 60px;
  opacity: 0;
  border-color: rgba(56,189,248,.9);
  box-shadow: 0 0 30px rgba(56,189,248,.6);
  transition: width .3s ease, height .3s ease, opacity .3s ease;
}

/* ── Halo de luz ambiente ── */
.cur-halo {
  position: absolute;
  top: 0; left: 0;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(110,58,248,.12) 0%,
    rgba(14,165,233,.07) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity .5s ease;
  will-change: transform;
  margin-left: -110px;
  margin-top: -110px;
  filter: blur(8px);
}

/* ── Partículas de ráfaga / burst ── */
.cur-particle {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99997;
  opacity: 1;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

/* Trail: sale en dirección aleatoria y se desvanece */
.cur-particle--go {
  animation: particleTrail .6s cubic-bezier(.25,.46,.45,.94) forwards;
}
@keyframes particleTrail {
  0%   { transform: translate(-50%,-50%) translate(0,0) rotate(0deg)     scale(1);   opacity: 1; }
  60%  { opacity: .7; }
  100% { transform: translate(-50%,-50%) translate(var(--tx),var(--ty)) rotate(var(--rot)) scale(0); opacity: 0; }
}

/* Burst: explosión radial en click */
.cur-particle--burst {
  animation: particleBurst .7s cubic-bezier(.25,.46,.45,.94) forwards;
}
@keyframes particleBurst {
  0%   { transform: translate(-50%,-50%) translate(0,0)                   scale(1.2); opacity: 1; }
  40%  { opacity: .9; }
  100% { transform: translate(-50%,-50%) translate(var(--tx),var(--ty))   scale(0);   opacity: 0; }
}


/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1199px) {
  .hero-mockups { display: none; }
  /* hero-content sin max-width */
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 991px) {
  .why-inner,
  .future-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-right { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .hero-content { padding: 110px 5vw 60px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary-glow,
  .hero-btns .btn-outline-glow { justify-content: center; }
  .hero-stats { gap: 1.2rem; }
  .hstat-divider { display: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: 1fr; }
  .future-right { grid-template-columns: 1fr; }
  .future-card:last-child { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .contact-cards { flex-direction: column; align-items: center; }
  .trust-pillars { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-section,
  .portfolio-section,
  .why-section,
  .process-section,
  .future-section,
  .testimonials-section,
  .cta-section { padding: 4.5rem 5vw; }
  .trust-section { padding: 3.5rem 5vw; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.8rem, 9vw, 2.5rem); }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.5rem); }
  .services-grid { grid-template-columns: 1fr; }
}
