/* ================================================================
   MAXIMILIANO DEL CANTO — Meta Ads Consulting Landing Page
   styles.css
   Mobile-first responsive stylesheet
================================================================ */

/* ================================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
================================================================ */
:root {
  /* Colors */
  --color-primary:     #2563EB;
  --color-primary-dark:#1D4ED8;
  --color-accent:      #3B82F6;
  --color-bg:          #FFFFFF;
  --color-bg-tinted:   #F0F5FF;
  --color-dark:        #0F1117;
  --color-dark-card:   #1A1F2E;
  --color-text:        #0F1117;
  --color-text-muted:  #4B5563;
  --color-text-light:  #E5E7EB;
  --color-white:       #FFFFFF;
  --color-pain-icon:   #EF4444;
  --color-border:      #E5E7EB;
  --color-border-light:#F3F4F6;

  /* Typography */
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Border radius */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg:  0 10px 30px rgba(0,0,0,0.12), 0 4px 8px rgba(0,0,0,0.08);
  --shadow-featured: 0 12px 40px rgba(37, 99, 235, 0.20), 0 4px 12px rgba(37, 99, 235, 0.12);

  /* Transitions */
  --transition-fast:   0.15s ease;
  --transition-base:   0.25s ease;
  --transition-scroll: opacity 0.6s ease, transform 0.6s ease;

  /* Container */
  --container-max: 1140px;
  --container-pad: 1.25rem;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ol,
ul {
  list-style: none;
}

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

/* ================================================================
   3. UTILITY — CONTAINER
================================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* ================================================================
   4. SCROLL ANIMATION
================================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-scroll);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

/* Stagger siblings automatically */
.animate-on-scroll:nth-child(2) { transition-delay: 0.10s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.20s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.30s; }

/* ================================================================
   5. CTA BUTTON (global)
================================================================ */
.cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  transition:
    background-color var(--transition-base),
    transform var(--transition-fast),
    box-shadow var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.cta-button:hover,
.cta-button:focus-visible {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
  outline: none;
}

.cta-button:active {
  transform: translateY(0) scale(1);
}

.cta-button--large {
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
}

/* White variant (used on teal CTA section) */
.cta-button--white {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

.cta-button--white:hover,
.cta-button--white:focus-visible {
  background-color: var(--color-bg);
  box-shadow: 0 6px 24px rgba(0,0,0,0.20);
}

/* ================================================================
   6. SECTION TITLES
================================================================ */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.section-title--light {
  color: var(--color-white);
}

/* ================================================================
   7. NAV
================================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(10, 10, 10, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    background-color var(--transition-base);
}

/* JS adds .scrolled when page scrolled > 50px */
.site-nav.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--color-border-light);
  background-color: rgba(245, 245, 240, 0.97);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

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

.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 8px;
}

.nav-cta {
  font-size: 0.875rem;
  padding: 0.55rem 1.2rem;
}

/* ================================================================
   8. HERO
================================================================ */
.hero {
  padding: var(--space-xl) 0 var(--space-2xl);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255, 255, 255, 0.07) 0%, transparent 70%),
    #0A0A0A;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xl);
}

/* --- Hero content (left) --- */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
  max-width: 640px;
  width: 100%;
}

.badge-pill {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.08);
  color: #E5E7EB;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.18);
  letter-spacing: 0.01em;
}

.hero-heading {
  font-family: var(--font-heading);
  color: #FFFFFF;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.hero-heading em {
  font-style: italic;
  color: #FFFFFF;
}

.hero-sub {
  font-size: 1.05rem;
  color: #B0B8C8;
  max-width: 520px;
  line-height: 1.7;
}

.hero-cta {
  margin-top: var(--space-xs);
}

.hero-trust {
  font-size: 0.875rem;
  color: #7A8599;
  margin-top: calc(-1 * var(--space-xs));
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-xs);
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: #B0B8C8;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

/* --- Hero avatar (right) --- */
.hero-avatar-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Decorative blob behind avatar */
.hero-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.25), rgba(37, 99, 235, 0.10) 70%);
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  filter: blur(8px);
  z-index: 0;
}

.hero-avatar {
  position: relative;
  z-index: 1;
  width: 260px;
  height: 340px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.15), var(--shadow-lg);
  border: 3px solid rgba(255,255,255,0.8);
  overflow: hidden;
}

.hero-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  display: block;
}

.hero-avatar-initials {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 0.05em;
  user-select: none;
}

/* ================================================================
   9. PROBLEMA SECTION
================================================================ */
.problema {
  background-color: var(--color-dark);
  color: var(--color-text-light);
  padding: var(--space-2xl) 0;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.pain-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background-color: var(--color-dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.30);
}

.pain-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background-color: rgba(239, 68, 68, 0.15);
  color: var(--color-pain-icon);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.pain-card p {
  font-size: 1rem;
  line-height: 1.55;
  color: #D1D5DB;
}

/* Closing callout */
.problema-callout {
  margin-top: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-left: 4px solid var(--color-primary);
  background-color: rgba(37, 99, 235, 0.10);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.problema-callout p {
  font-size: 1.1rem;
  color: var(--color-text-light);
}

.problema-callout strong {
  color: var(--color-white);
}

/* ================================================================
   10. SOBRE MAXI SECTION
================================================================ */
.sobre {
  background-color: var(--color-bg);
  padding: var(--space-2xl) 0;
}

.sobre-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.sobre-text .section-title {
  margin-bottom: var(--space-md);
}

.sobre-text p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 680px;
  margin-bottom: var(--space-sm);
  line-height: 1.75;
}

.sobre-text p:last-child {
  margin-bottom: 0;
}

/* Industry badges */
.industry-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-white);
  border: 1.5px solid rgba(37, 99, 235, 0.20);
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-base);
}

.industry-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.industry-badge svg {
  flex-shrink: 0;
}

/* ================================================================
   11. SERVICIOS SECTION
================================================================ */
.servicios {
  background-color: var(--color-bg-tinted);
  padding: var(--space-2xl) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

/* Service card base */
.service-card {
  position: relative;
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Featured card */
.service-card--featured {
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-featured);
  padding-top: calc(var(--space-lg) + 0.5rem);
}

.service-card--featured:hover {
  box-shadow: 0 16px 50px rgba(37, 99, 235, 0.25), 0 6px 16px rgba(37, 99, 235, 0.15);
}

/* "Recomendado" badge */
.recommended-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
}

.service-desc {
  font-size: 0.975rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  flex: 1;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.service-cta {
  align-self: flex-start;
  margin-top: var(--space-xs);
}

/* ================================================================
   12. PROCESO SECTION
================================================================ */
.proceso {
  background-color: var(--color-bg);
  padding: var(--space-2xl) 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
}

/* Vertical line connector on mobile */
.process-steps::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
  opacity: 0.25;
  pointer-events: none;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-left: 3.5rem;
  position: relative;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.30);
  flex-shrink: 0;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 0.6rem;
}

.step-desc {
  font-size: 0.975rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ================================================================
   13. TESTIMONIOS SECTION
================================================================ */
.testimonios {
  background-color: var(--color-dark);
  color: var(--color-text-light);
  padding: var(--space-2xl) 0;
}

.testimonios-placeholder {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.testimonios-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.testimonios-placeholder-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.testimonios-placeholder-text {
  font-size: 1rem;
  color: #9CA3AF;
  line-height: 1.7;
}

.testimonial-card {
  background-color: var(--color-dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.quote-mark {
  display: block;
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.6;
  margin-bottom: -0.5rem;
}

.testimonial-text {
  font-size: 0.975rem;
  line-height: 1.7;
  color: #D1D5DB;
  margin-bottom: var(--space-md);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-white);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: #9CA3AF;
}

/* Result callout card */
.result-callout {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.20), rgba(59, 130, 246, 0.10));
  border: 1.5px solid rgba(37, 99, 235, 0.40);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.result-metric {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--color-accent);
  white-space: nowrap;
  line-height: 1;
}

.result-text {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.result-text strong {
  color: var(--color-white);
}

/* ================================================================
   14. CTA FINAL SECTION
================================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  padding: var(--space-2xl) 0;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}

.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  line-height: 1.65;
}

.cta-urgency {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  margin-top: calc(-1 * var(--space-xs));
}

/* ================================================================
   15. FOOTER
================================================================ */

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background-color: #0B1221;
  color: #9CA3AF;
  padding: var(--space-xl) 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer-email {
  font-size: 0.9rem;
  color: var(--color-accent);
  transition: color var(--transition-fast);
}

.footer-email:hover {
  color: var(--color-white);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: #9CA3AF;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-social-link:hover {
  color: var(--color-white);
  transform: translateY(-1px);
}

.footer-copy {
  font-size: 0.8rem;
  color: #4B5563;
}

/* ================================================================
   16. MEDIA QUERIES — DESKTOP (768px+)
================================================================ */
@media (min-width: 768px) {

  /* Container */
  :root {
    --container-pad: 2rem;
  }

  /* Hero — side by side */
  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    flex: 1;
    max-width: 580px;
  }

  .hero-avatar-wrap {
    flex-shrink: 0;
  }

  .hero-avatar {
    width: 280px;
    height: 360px;
  }

  .hero-avatar-initials {
    font-size: 4rem;
  }

  .hero-blob {
    width: 380px;
    height: 380px;
  }

  /* Pain grid — 2 columns */
  .pain-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Sobre — side by side */
  .sobre-inner {
    flex-direction: row;
    gap: var(--space-2xl);
    align-items: flex-start;
  }

  .sobre-text {
    flex: 1;
  }

  .industry-badges {
    flex-direction: column;
    flex-shrink: 0;
    width: 220px;
  }

  .industry-badge {
    width: 100%;
  }

  /* Services — 3 columns */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Process steps — horizontal */
  .process-steps {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }

  /* Horizontal connector line */
  .process-steps::before {
    left: 22px;
    right: 22px;
    top: 22px;
    bottom: auto;
    width: auto;
    height: 2px;
    background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  }

  .process-step {
    flex: 1;
    padding-left: 0;
    padding-top: 3.5rem;
    text-align: center;
    align-items: center;
  }

  .step-number {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    position: absolute;
  }

  .step-title {
    margin-top: 0;
  }

  /* Testimonials — 3 columns */
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer — row */
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-brand {
    align-items: flex-start;
  }
}

/* ================================================================
   17. LARGE DESKTOP (1024px+)
================================================================ */
@media (min-width: 1024px) {
  :root {
    --container-pad: 3rem;
  }

  .hero-heading {
    font-size: 3rem;
  }

  .hero-avatar {
    width: 300px;
    height: 400px;
  }

  .hero-avatar-initials {
    font-size: 4.5rem;
  }
}

/* ================================================================
   18. REDUCED MOTION
================================================================ */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  .cta-button:hover,
  .cta-button:focus-visible {
    transform: none;
  }

  .service-card:hover,
  .pain-card:hover,
  .testimonial-card:hover,
  .industry-badge:hover {
    transform: none;
  }
}
