/*
Theme Name: Publicidad en Redes
Theme URI: https://publicidadenredes.com/
Description: Landing page profesional para agencia de publicidad digital especializada en Meta Ads y Google Ads.
Author: Publicidad en Redes
Version: 1.1.8
Text Domain: publicidad-en-redes
*/

/* ========================================
   DESIGN TOKENS
   ======================================== */
:root {
  /* Colors */
  --color-bg: #0D1B2A;
  --color-surface: #1B2838;
  --color-primary: #5CC2DB;
  --color-primary-hover: #4DA8B8;
  --color-primary-glow: rgba(92, 194, 219, 0.15);
  --color-primary-10: rgba(92, 194, 219, 0.1);
  --color-primary-20: rgba(92, 194, 219, 0.2);
  --color-text: #FFFFFF;
  --color-text-secondary: #94A3B8;
  --color-text-muted: #64748B;
  --color-border: rgba(255, 255, 255, 0.05);
  --color-border-hover: rgba(92, 194, 219, 0.4);

  /* Typography */
  --font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;
  --fs-6xl: 3.75rem;
  --fs-7xl: 4.5rem;

  /* Spacing */
  --section-padding-y: 8rem;
  --section-padding-x: 1.5rem;
  --max-width: 80rem;
  --border-radius: 1rem;
  --border-radius-lg: 1.5rem;
  --border-radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text-secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--color-primary-20);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

.section {
  padding: var(--section-padding-y) var(--section-padding-x);
}

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

.text-center {
  text-align: center;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section-label {
  color: var(--color-primary);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: var(--fs-4xl);
  color: var(--color-text);
  margin-bottom: 1rem;
}

.text-primary {
  color: var(--color-primary);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: var(--border-radius-full);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-bg);
  padding: 1rem 2rem;
  font-size: var(--fs-lg);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(92, 194, 219, 0.2);
}

.btn-ghost {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.625rem 1.5rem;
  font-size: var(--fs-sm);
}

.btn-ghost:hover {
  background: var(--color-primary);
  color: var(--color-bg);
}

.btn-dark {
  background: var(--color-bg);
  color: var(--color-text);
  padding: 1rem 2.5rem;
  font-size: var(--fs-lg);
}

.btn-dark:hover {
  transform: scale(1.05);
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: var(--fs-xl);
  font-weight: 900;
  box-shadow: 0 25px 50px rgba(92, 194, 219, 0.2);
}

.btn .arrow {
  transition: transform 0.3s ease;
  font-size: 1.25rem;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* ========================================
   MATERIAL ICONS
   ======================================== */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0;
}

/* ========================================
   NAVIGATION
   ======================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(92, 194, 219, 0.1);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-icon {
  width: 2rem;
  height: 2rem;
  background: var(--color-primary);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg);
}

.nav-logo-icon .material-symbols-outlined {
  font-size: 1.125rem;
  font-weight: 700;
}

.nav-logo-text {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--color-primary);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  padding: 11rem var(--section-padding-x) 8rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 27, 42, 0.6) 0%, rgba(13, 27, 42, 0.95) 80%, var(--color-bg) 100%);
  z-index: 0;
}

.hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-grid.hero-centered {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.hero-centered .hero-subtitle {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--border-radius-full);
  background: var(--color-primary-10);
  border: 1px solid var(--color-primary-20);
  color: var(--color-primary);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
}

.hero-badge-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-primary);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hero-badge-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-primary);
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.hero h1 {
  font-size: var(--fs-5xl);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: var(--fs-xl);
  color: var(--color-text-secondary);
  max-width: 36rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-image-wrap {
  position: relative;
}

.hero-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(92, 194, 219, 0.1);
  background-size: cover;
  background-position: center;
  background-color: var(--color-surface);
}

.hero-floating-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--color-surface);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid var(--color-border);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-floating-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color-primary-20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.hero-floating-label {
  font-size: var(--fs-xs);
  color: var(--color-text-secondary);
  font-weight: 500;
}

.hero-floating-value {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--color-text);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  padding: var(--section-padding-y) var(--section-padding-x);
  background: rgba(255, 255, 255, 0.02);
}

.services-header {
  text-align: center;
  margin-bottom: 5rem;
}

.services-header .section-title {
  font-size: var(--fs-5xl);
}

.service-card {
  background: var(--color-surface);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--color-border-hover);
}

.service-card.featured {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(92, 194, 219, 0.05);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--border-radius);
  background: var(--color-primary-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon .material-symbols-outlined {
  font-size: 2rem;
}

.service-card h4 {
  font-size: var(--fs-2xl);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card-img {
  margin-top: auto;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.service-card-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.03);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: var(--color-text-secondary);
}

.service-feature .material-symbols-outlined {
  color: var(--color-primary);
  font-size: var(--fs-sm);
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats {
  padding: var(--section-padding-y) var(--section-padding-x);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 4rem 2rem;
  background: var(--color-surface);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 2rem 3rem;
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 0 8px rgba(91, 193, 219, 0.3));
}

.stat-number {
  font-size: var(--fs-6xl);
  font-weight: 900;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.stat-label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.5rem;
}

.stat-divider {
  width: 1px;
  height: 5rem;
  background: linear-gradient(to bottom, transparent, var(--color-primary), transparent);
  opacity: 0.4;
  flex-shrink: 0;
}

.stats-bottom {
  margin-top: 5rem;
  text-align: center;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.stats-bottom p {
  font-size: var(--fs-xl);
  font-weight: 500;
  line-height: 1.6;
  font-style: italic;
  color: var(--color-bg);
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process {
  padding: var(--section-padding-y) var(--section-padding-x);
}

.process-header {
  margin-bottom: 5rem;
}

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

.process-step {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-number {
  font-size: var(--fs-6xl);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.process-step-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.process-step-header .material-symbols-outlined {
  color: var(--color-primary);
}

.process-step-header h4 {
  font-size: var(--fs-xl);
  font-weight: 700;
}

.process-step p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ========================================
   CLIENT LOGOS
   ======================================== */
.clients {
  padding: 5rem var(--section-padding-x);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.clients .section-label {
  text-align: center;
  margin-bottom: 3rem;
}

/* Marquee Slider */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.client-name {
  font-size: var(--fs-2xl);
  font-weight: 900;
  color: var(--color-text);
  letter-spacing: -0.04em;
  white-space: nowrap;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.client-name:hover {
  opacity: 1;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: var(--section-padding-y) var(--section-padding-x);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 5rem;
}

.testimonials-header .section-title {
  font-size: var(--fs-5xl);
}

.testimonial-card {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--color-primary);
  opacity: 0.2;
}

.testimonial-card .quote-icon .material-symbols-outlined {
  font-size: 3.5rem;
}

.testimonial-text {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 700;
  color: var(--color-primary);
}

.testimonial-role {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary-20);
  flex-shrink: 0;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  padding: var(--section-padding-y) var(--section-padding-x);
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-bg) 0%, rgba(13, 27, 42, 0.85) 30%, rgba(13, 27, 42, 0.85) 70%, var(--color-bg) 100%);
  z-index: 0;
}

.final-cta-inner {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  font-size: var(--fs-5xl);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.final-cta p {
  font-size: var(--fs-xl);
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
}

.whatsapp-widget-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* Dark theme overrides for WhatsApp widget */
.whatsapp-widget-wrap * {
  color-scheme: dark;
}

.whatsapp-widget-wrap div[id^="whatapp-people-widget"] {
  background: var(--color-surface) !important;
  border-radius: var(--border-radius) !important;
  border: 1px solid var(--color-border) !important;
}

.whatsapp-widget-wrap div[id^="whatapp-people-widget"]>div {
  background-color: transparent !important;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  padding: 3rem var(--section-padding-x);
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-icon {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--color-primary);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg);
}

.footer-logo-icon .material-symbols-outlined {
  font-size: var(--fs-sm);
  font-weight: 700;
}

.footer-logo-text {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--color-text);
}

.footer-copy {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
  :root {
    --section-padding-y: 5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero h1 {
    font-size: var(--fs-4xl);
  }

  .hero-floating-card {
    display: none;
  }

  .grid-3,
  .services .grid-3,
  .stats-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card.featured {
    transform: none;
  }

  .stats-row {
    padding: 2.5rem 2rem;
  }

  .stat-number {
    font-size: var(--fs-5xl);
  }

  .section-title,
  .services-header .section-title,
  .testimonials-header .section-title,
  .final-cta h2 {
    font-size: var(--fs-3xl);
  }
}

/* ========================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  :root {
    --section-padding-y: 4rem;
  }

  /* Navigation mobile */
  .nav-links {
    display: none;
    position: fixed;
    top: 5rem;
    left: 0;
    width: 100%;
    background: rgba(13, 27, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem var(--section-padding-x);
    gap: 1.5rem;
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    padding-top: 8rem;
    padding-bottom: 6rem;
    background-size: cover !important;
    background-position: center !important;
  }

  .hero h1 {
    font-size: var(--fs-3xl);
  }

  .hero-subtitle {
    font-size: var(--fs-base);
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }

  /* Grids */
  .grid-3,
  .services .grid-3,
  .stats-grid,
  .process-grid,
  .testimonials .grid-3 {
    grid-template-columns: 1fr;
  }

  .stats-row {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .stat-item {
    padding: 1rem;
    width: 100%;
  }

  .stat-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--color-primary), transparent);
  }

  .stat-number {
    font-size: var(--fs-4xl);
  }

  .stat-label {
    font-size: var(--fs-base);
  }

  .stats-bottom {
    margin-top: 3rem;
  }

  .stats-bottom p {
    font-size: var(--fs-base);
  }

  .clients-grid {
    gap: 1.5rem;
  }

  .client-name {
    font-size: var(--fs-lg);
  }

  .final-cta h2 {
    font-size: var(--fs-2xl);
  }

  .final-cta p {
    font-size: var(--fs-base);
  }

  .btn-large {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: var(--fs-lg);
  }
}

/* ========================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
  .hero h1 {
    font-size: var(--fs-2xl);
  }

  .service-card {
    padding: 1.5rem;
  }

  .hero-glow-1,
  .hero-glow-2 {
    width: 16rem;
    height: 16rem;
  }
}