/* =========================================================================
   MOTIVOFIT ITALIA — RESPONSIVE LANDING PAGE
   Mobile-first approach, 5-breakpoint system
   ========================================================================= */

/* Fonts: Plus Jakarta Sans (display) + Inter (body) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  /* COLOR SYSTEM */
  --color-navy:       #1A1A2E;
  --color-charcoal:   #2D2D3F;
  --color-warm-white: #FAFAF7;
  --color-cream:      #F5F0EB;
  --color-warm-gray:  #8C8C8C;
  --color-coral:      #FF6B6B;
  --color-lime:       #C6F135;

  /* Legacy aliases (backwards compat with inline styles) */
  --sp-black: var(--color-navy);
  --sp-white: var(--color-warm-white);
  --sp-gray-light: var(--color-cream);
  --sp-gray-medium: var(--color-warm-gray);
  --sp-gray-dark: var(--color-charcoal);
  --mf-coral: var(--color-coral);
  --mf-lime: var(--color-lime);

  /* TYPOGRAPHY */
  --font-display: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', 'Arial', sans-serif;

  /* SPACING (base = mobile) */
  --section-gap: 64px;
  --section-padding-y: 48px;
  --card-gap: 16px;
  --content-gap: 24px;
  --cta-margin-top: 24px;
  --page-padding: 16px;

  /* BORDER RADIUS */
  --radius-pill: 9999px;
  --radius-card: 24px;
  --radius-img: 12px;

  /* TRANSITIONS */
  --transition-base: 200ms ease-out;

  /* HEADER */
  --header-height: 56px;
}

/* Responsive spacing overrides */
@media (min-width: 768px) {
  :root {
    --section-gap: 80px;
    --section-padding-y: 64px;
    --card-gap: 20px;
    --content-gap: 32px;
    --cta-margin-top: 32px;
    --page-padding: 32px;
    --header-height: 64px;
  }
}
@media (min-width: 1280px) {
  :root {
    --section-gap: 120px;
    --section-padding-y: 96px;
    --card-gap: 24px;
    --content-gap: 48px;
    --cta-margin-top: 40px;
    --page-padding: 48px;
  }
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-warm-white);
  color: var(--color-navy);
  line-height: 1.5;
  font-size: clamp(0.875rem, 0.3vw + 0.8rem, 1rem);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition-base);
}
a:hover { opacity: 0.7; }

/* Focus state for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-coral);
  outline-offset: 2px;
}

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

/* =========================================================================
   TYPOGRAPHY (fluid clamp scale from brief)
   ========================================================================= */

/* Display / Hero tagline */
.t-display-giant {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw + 1rem, 5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* Large display (massive text section) */
.t-display-large {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw + 0.75rem, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-warm-white);
}

/* H2 – Section titles */
.t-h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.375rem, 2vw + 0.5rem, 2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* H3 – Card titles, subsections */
.t-h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.75rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Subtitle */
.t-subtitle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(1rem, 0.5vw + 0.875rem, 1.125rem);
  line-height: 1.5;
  color: var(--color-navy);
}

/* Body */
.t-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.875rem, 0.3vw + 0.8rem, 1rem);
  line-height: 1.5;
}

/* Utility classes */
.text-white  { color: var(--color-warm-white); }
.text-black  { color: var(--color-navy); }
.text-gray   { color: var(--color-warm-gray); }
.text-center { text-align: center; }

/* =========================================================================
   LAYOUT – Container
   ========================================================================= */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--page-padding);
  padding-right: var(--page-padding);
}

/* Utility classes */
.bg-black { background-color: var(--color-navy); color: var(--color-warm-white); }
.bg-white { background-color: var(--color-warm-white); color: var(--color-navy); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }

.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 64px; }
.mt-4 { margin-top: 32px; }
.mt-8 { margin-top: 128px; }

/* =========================================================================
   COMPONENTS – Buttons
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  height: 52px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;   /* Fixed, per brief */
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
  border: 1px solid transparent;
  white-space: nowrap;
  min-width: 44px;        /* Touch target */
  min-height: 44px;       /* Touch target */
}
.btn:active { transform: scale(0.97); }

.btn-black {
  background-color: var(--color-navy);
  color: var(--color-warm-white);
}
.btn-black:hover { opacity: 0.9; }

.btn-white {
  background-color: var(--color-warm-white);
  color: var(--color-navy);
  border-color: rgba(0,0,0,0.1);
}
.btn-white:hover { background-color: #f0f0ed; }

.btn-outline-black {
  background-color: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn-outline-white {
  background-color: transparent;
  color: var(--color-warm-white);
  border-color: var(--color-warm-white);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* =========================================================================
   HEADER / NAVBAR
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 50;
  background: rgba(250, 250, 247, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.header-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}

/* Language button container */
.header-actions-left {
  display: flex;
  align-items: center;
}

/* Desktop nav links */
.header-links-left {
  display: none;
  gap: 32px;
  font-weight: 500;
  font-size: 0.9375rem;
}

.header-buttons-right {
  display: none;
  gap: 16px;
}

/* Hamburger button */
.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 60;
  position: relative;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.hamburger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-navy);
  border-radius: 2px;
  transition: all 0.25s ease-out;
}

/* Hamburger open state */
.hamburger-btn.is-open .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger-btn.is-open .hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.is-open .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.hamburger-btn.is-open .hamburger-icon span {
  background: var(--color-warm-white);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgba(26, 26, 46, 0.95);
  z-index: 55;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: right 0.25s ease-out;
}

.mobile-menu.is-open {
  right: 0;
}

.mobile-menu a {
  color: var(--color-warm-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  text-decoration: none;
  transition: opacity 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-menu a:hover {
  opacity: 0.7;
}

/* Mobile: logo centered, hamburger right */
@media (max-width: 767px) {
  .header-nav {
    position: relative;
  }
  .header-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Tablet+: show nav links and buttons, hide hamburger */
@media (min-width: 768px) {
  .header-links-left {
    display: flex;
  }
  .header-buttons-right {
    display: flex;
  }
  .hamburger-btn {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
  .header-logo {
    position: static;
    transform: none;
  }
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
  position: relative;
  width: 100%;
  padding-top: calc(var(--header-height) + 24px);
  padding-bottom: 48px;
  background: 
    radial-gradient(circle at 10% 80%, rgba(255, 107, 107, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(255, 107, 107, 0.15) 0%, transparent 40%),
    var(--color-warm-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.hero-grid-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.hero-left-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Giant text container */
.hero-giant-text-container {
  position: relative;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.9;
}

.hero-giant-word-1,
.hero-giant-word-2,
.hero-giant-word-3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero-giant-word-1 {
  color: var(--color-navy);
  align-self: flex-start;
  font-size: clamp(3rem, 12vw, 11rem);
}

.hero-giant-word-2 {
  color: var(--color-navy);
  align-self: flex-start;
  font-size: clamp(2.5rem, 10vw, 9rem);
  margin-top: -1vh;
}

.hero-giant-word-3 {
  color: var(--color-coral);
  align-self: flex-start;
  font-size: clamp(2.5rem, 10vw, 9rem);
  margin-top: -1vh;
}

/* Telefoni stretti (≤360px, es. iPhone SE): abbassa i floor così le parole
   giganti — soprattutto "APPARTIENI." — non vengono tagliate dal bordo. */
@media (max-width: 360px) {
  .hero-giant-word-1 { font-size: clamp(2.25rem, 12vw, 11rem); }
  .hero-giant-word-2,
  .hero-giant-word-3 { font-size: clamp(2rem, 10vw, 9rem); }
}

/* Bottom content (subtitle + CTAs) */
.hero-content-bottom {
  position: relative;
  z-index: 3;
  text-align: left;
  max-width: 100%;
}

.hero-content-bottom .t-subtitle {
  color: var(--color-gray-600);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.5;
  margin-bottom: 16px;
  max-width: 480px;
}

.hero-content-bottom .btn-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.hero-content-bottom .btn-group .btn {
  width: 100%;
  justify-content: center;
}

/* Hero image */
.hero-right-column {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.hero-image-container:hover {
  transform: translateY(-4px);
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Hero — tablet+ */
@media (min-width: 768px) {
  .hero {
    padding-top: calc(var(--header-height) + 64px);
    padding-bottom: 80px;
  }
  
  .hero-content-bottom .btn-group {
    flex-direction: row;
    width: auto;
  }
  
  .hero-content-bottom .btn-group .btn {
    width: auto;
    padding: 0 32px;
  }

  .hero-image-container {
    aspect-ratio: 16 / 10;
    border-radius: 32px;
  }
}

/* Hero — desktop+ (2 columns) */
@media (min-width: 1024px) {
  .hero {
    min-height: 100vh;
    justify-content: center;
  }

  .hero-grid-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }

  .hero-left-column {
    flex: 0 0 45%;
    max-width: 540px;
    gap: 40px;
  }

  .hero-right-column {
    flex: 1;
  }

  .hero-giant-word-1,
  .hero-giant-word-2,
  .hero-giant-word-3 {
    text-shadow: none;
  }

  .hero-giant-word-1 {
    font-size: clamp(4rem, 6vw, 6rem);
    line-height: 0.9;
  }

  .hero-giant-word-2 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.9;
    margin-top: 0;
  }

  .hero-giant-word-3 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.9;
    margin-top: 0;
  }

  .hero-image-container {
    aspect-ratio: 4 / 3;
    max-width: 100%;
    margin-top: 0;
  }
}

@media (min-width: 1280px) {
  .hero-grid-container {
    gap: 80px;
  }
  
  .hero-left-column {
    flex: 0 0 48%;
    max-width: 600px;
  }
  
  .hero-giant-word-1 {
    font-size: 6.5rem;
  }

  .hero-giant-word-2,
  .hero-giant-word-3 {
    font-size: 5.5rem;
  }
}

/* =========================================================================
   EVENTS CAROUSEL (Navy background)
   ========================================================================= */
.events-section {
  background-color: var(--color-navy);
  padding: var(--section-padding-y) 0;
}

.events-carousel {
  display: flex;
  gap: var(--card-gap);
  padding: 16px var(--page-padding);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.events-carousel::-webkit-scrollbar { display: none; }

.event-card {
  flex: 0 0 260px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  background-color: var(--color-charcoal);
  scroll-snap-align: start;
}

.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--color-warm-white);
}

/* sm */
@media (min-width: 390px) {
  .event-card {
    flex: 0 0 260px;
  }
}

/* md: slightly wider cards */
@media (min-width: 768px) {
  .event-card {
    flex: 0 0 280px;
  }
}

/* lg+: all cards visible in a row */
@media (min-width: 1024px) {
  .events-carousel {
    overflow-x: visible;
    justify-content: center;
    padding-left: var(--page-padding);
    padding-right: var(--page-padding);
    max-width: 1280px;
    margin: 0 auto;
  }
  .event-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: 260px;
  }
}

/* =========================================================================
   MASSIVE TEXT SECTION
   ========================================================================= */
.massive-text-section {
  background-color: var(--color-navy);
  padding: var(--section-padding-y) 0;
  text-align: center;
}

.massive-text-section .t-display-large {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--page-padding);
}

.massive-text-section p {
  color: var(--color-warm-gray);
  max-width: 600px;
  margin: 16px auto;
  padding: 0 var(--page-padding);
  font-size: clamp(0.875rem, 0.3vw + 0.8rem, 1rem);
}

/* =========================================================================
   HOST DASHBOARD SECTION
   ========================================================================= */
.host-dashboard-section {
  padding: var(--section-padding-y) 0;
  background: linear-gradient(135deg, #E0F7FA, #E8EAF6, #F3E5F5);
  position: relative;
  overflow: hidden;
}

/* Su mobile nascondiamo SOLO le card flottanti (.hide-mobile), ma l'immagine
   principale dell'Host resta visibile e centrata (prima l'intero blocco era
   display:none → sezione vuota sul telefono). */
.host-dashboard-mockups {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .host-dashboard-mockups {
    display: flex;
    height: 500px; /* stage assoluto per le card flottanti su desktop */
  }
}

/* =========================================================================
   SPLIT SECTION (HOST / PAL)
   ========================================================================= */
.split-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.split-block {
  flex: 1;
  padding: var(--section-padding-y) var(--page-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.split-host {
  background-color: var(--color-navy);
  color: var(--color-warm-white);
}

.split-pal {
  background-color: var(--color-charcoal);
  color: var(--color-warm-white);
}

.split-pal-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-scopri.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 1;
  filter: blur(2px) grayscale(50%);
}

.split-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

/* Split CTA full-width on mobile */
.split-content .btn {
  width: 100%;
  text-align: center;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.7);
  font-size: clamp(0.6875rem, 0.2vw + 0.625rem, 0.8125rem);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color: var(--color-warm-white);
}

@media (min-width: 1024px) {
  .split-section {
    flex-direction: row;
    min-height: 80vh;
    max-height: 800px;
  }
  .split-block {
    padding: 96px 64px;
  }
  .split-content .btn {
    width: auto;
  }
}

/* =========================================================================
   BUILT-FOR CARDS (Categories)
   ========================================================================= */
.built-for-section {
  background-color: var(--color-warm-white);
  padding: var(--section-padding-y) 0;
  text-align: center;
}

.built-for-title {
  color: var(--color-navy);
  margin-bottom: var(--content-gap);
}

.built-for-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--card-gap);
  text-align: left;
}

.built-card {
  display: flex;
  flex-direction: column;
}

.built-card-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-img);
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--color-cream);
}

.built-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.built-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.built-card p {
  color: var(--color-warm-gray);
  font-size: clamp(0.875rem, 0.3vw + 0.8rem, 1rem);
}

/* md: 2 cols */
@media (min-width: 768px) {
  .built-for-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* lg: 3 cols */
@media (min-width: 1024px) {
  .built-for-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================================================================
   FOOTER
   ========================================================================= */
footer {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
}

/* Footer CTA Box */
.footer-cta-box {
  background: var(--color-warm-white);
  border-radius: 32px;
  padding: 48px var(--page-padding);
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  max-width: 720px;
  margin: 0 auto var(--section-gap);
}

@media (min-width: 768px) {
  .footer-cta-box {
    padding: 48px 40px;
    max-width: 640px;
  }
}

@media (min-width: 1024px) {
  .footer-cta-box {
    padding: 56px 48px;
    max-width: 720px;
  }
}

/* Footer columns */
.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-col-label {
  font-size: clamp(0.6875rem, 0.2vw + 0.625rem, 0.8125rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-charcoal);
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--color-navy);
  opacity: 0.8;
  transition: opacity 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-col a:hover {
  opacity: 1;
}

/* Social icons touch target */
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-navy);
  transition: opacity 0.2s;
}

.social-icons a:hover {
  opacity: 0.7;
}

/* Footer copyright */
.footer-copyright {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 0.85rem;
  color: var(--color-charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* md+: multi-column footer */
@media (min-width: 768px) {
  .footer-columns {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 48px;
  }
  .footer-col {
    flex: 1;
    min-width: 150px;
  }
}

@media (min-width: 1024px) {
  .footer-columns {
    flex-wrap: nowrap;
  }
}

/* =========================================================================
   LOGO BRAND
   ========================================================================= */
.logo-m {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-coral) 0%, #ff4a4a 100%);
  color: var(--color-warm-white);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
}

/* =========================================================================
   FEATURED LOGOS (if used)
   ========================================================================= */
.featured-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-top: 48px;
  opacity: 0.5;
  filter: grayscale(100%);
}

.featured-logos img {
  height: 30px;
  object-fit: contain;
}

/* =========================================================================
   UTILITY: HIDDEN CLASSES
   ========================================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Hide on mobile, show on md+ */
.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hide-mobile {
    display: block;
  }
}

/* Hide on desktop, show on mobile only */
.show-mobile {
  display: block;
}

@media (min-width: 768px) {
  .show-mobile {
    display: none;
  }
}
