/* ============================================================
   MENTORIA THAI MASSAGE — Premium Sales Page
   Design System: Dark Mode + Gold/Amber Accents
   Author: Arnoldo Benkenstein
   ============================================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* === CSS CUSTOM PROPERTIES === */
:root {
  /* Backgrounds */
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-tertiary: #1a1a1a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --bg-glass: rgba(255, 255, 255, 0.04);

  /* Gold Palette */
  --gold-primary: #d4a853;
  --gold-dark: #c9952e;
  --gold-light: #f0d78c;
  --gold-glow: rgba(212, 168, 83, 0.3);
  --gold-subtle: rgba(212, 168, 83, 0.08);
  --gold-gradient: linear-gradient(135deg, #d4a853 0%, #f0d78c 50%, #c9952e 100%);

  /* Text */
  --text-white: #ffffff;
  --text-light: #e5e5e5;
  --text-muted: #b3b3b3;
  --text-dim: #888888;
  --text-dark: #555555;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(212, 168, 83, 0.2);
  --border-gold-hover: rgba(212, 168, 83, 0.5);

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-max: 1200px;
  --container-narrow: 800px;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-hero: clamp(2.2rem, 5vw, 4rem);
  --fs-h2: clamp(1.6rem, 3.5vw, 2.8rem);
  --fs-h3: clamp(1.1rem, 2vw, 1.4rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);
  --fs-small: clamp(0.8rem, 1vw, 0.9rem);
  --fs-xs: 0.75rem;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-base: 0.4s var(--ease-out);
  --transition-slow: 0.6s var(--ease-out);

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 4px 30px rgba(212, 168, 83, 0.15);
  --shadow-elevated: 0 8px 40px rgba(0, 0, 0, 0.4);
}

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

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

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

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

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

ul, ol {
  list-style: none;
}

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

/* Selection */
::selection {
  background: var(--gold-primary);
  color: var(--bg-primary);
}

::-moz-selection {
  background: var(--gold-primary);
  color: var(--bg-primary);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 3px;
}

/* === LAYOUT === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding: var(--section-padding) 0;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 168, 83, 0.2),
                0 0 40px rgba(212, 168, 83, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(212, 168, 83, 0.35),
                0 0 60px rgba(212, 168, 83, 0.15);
  }
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.4;
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.is-visible:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll.is-visible:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll.is-visible:nth-child(4) { transition-delay: 0.3s; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-fast);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1rem clamp(1.2rem, 4vw, 2rem);
}


/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-light));
  color: #0a0a0a;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: clamp(0.6rem, 1.8vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1.4;
  display: block;
}

.announcement-bar .pulse-dot {
  display: inline-block;
  vertical-align: middle;
  background: #f43f5e;
  box-shadow: 0 0 8px #f43f5e;
  width: 6px;
  height: 6px;
  margin-right: 0.4rem;
  margin-top: -2px;
}

.nav__logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.nav__logo span {
  color: var(--gold-primary);
}

.nav__cta {
  display: none; /* Hidden on mobile */
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--bg-primary);
  background: var(--gold-gradient);
  border-radius: var(--radius-pill);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  letter-spacing: 0.02em;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

@media (min-width: 768px) {
  .nav__cta {
    display: inline-flex; /* Show on desktop */
  }
}

/* === SPOTS COUNTER COMPONENT === */
.spots-counter {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  text-align: left;
  max-width: 320px;
  width: 100%;
}

.spots-counter__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-small);
  color: var(--text-light);
}

.spots-counter__status strong {
  color: var(--gold-primary);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #f43f5e;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(244, 63, 94, 0.6);
  animation: pulseDot 2s infinite;
}

.spots-counter__bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.spots-counter__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), #f43f5e);
  border-radius: var(--radius-pill);
}

/* === IMAGE FRAME MOCKUP === */
.image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  background: var(--bg-glass);
  padding: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.image-frame img {
  border-radius: calc(var(--radius-lg) - 4px);
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-frame:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--border-gold-hover);
  box-shadow: var(--shadow-gold), var(--shadow-elevated);
}

.image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 var(--section-padding);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 168, 83, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(212, 168, 83, 0.03) 0%, transparent 50%);
  animation: gradientShift 12s ease-in-out infinite;
  background-size: 200% 200%;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__content {
  text-align: center;
}

.hero__image-area {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  order: -1; /* Image first on mobile */
}

.hero__image-area .image-frame {
  animation: float 6s ease-in-out infinite;
}

/* Badge / Pill */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: var(--gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  margin-bottom: 2rem;
  animation: fadeIn 1s var(--ease-out);
}

.badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 50%;
  animation: pulseGlow 2s ease-in-out infinite;
}

/* Headline */
.hero__headline {
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--text-white);
  animation: fadeInUp 0.8s var(--ease-out);
}

.hero__headline .highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subheadline */
.hero__subheadline {
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s var(--ease-out) 0.15s both;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

/* CTA Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--gold-gradient);
  background-size: 200% auto;
  border-radius: var(--radius-pill);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-position 0.5s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
  border-radius: inherit;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.35);
  background-position: right center;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary--pulse {
  animation: pulseGlow 3s ease-in-out infinite;
}

.hero__note {
  font-size: var(--fs-small);
  color: var(--text-dim);
}

.hero__note strong {
  color: var(--gold-primary);
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.section-header__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.section-header__title {
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-header__subtitle {
  font-size: var(--fs-body);
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === PILLARS SECTION === */
.pillars {
  background: var(--bg-secondary);
  position: relative;
}

.pillars::before,
.pillars::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

.pillars::before { top: 0; }
.pillars::after { bottom: 0; }

.pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pillar-card {
  position: relative;
  padding: 2rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-hover);
  box-shadow: var(--shadow-gold);
  background: var(--bg-card-hover);
}

.pillar-card__icon {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold-primary);
  margin-bottom: 1.2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(212, 168, 83, 0.2));
  transition: transform var(--transition-base), filter var(--transition-base);
}

.pillar-card:hover .pillar-card__icon {
  transform: translateY(-2px) scale(1.05);
  filter: drop-shadow(0 0 12px rgba(212, 168, 83, 0.4));
}

.pillar-card__title {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.pillar-card__description {
  font-size: var(--fs-body);
  color: var(--text-muted);
  line-height: 1.7;
}

/* === LOGISTICS SECTION === */
.logistics {
  background: var(--bg-primary);
  position: relative;
}

.logistics__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.logistics__image-area {
  display: flex;
  justify-content: center;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.logistics__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  position: relative;
}

/* Vertical connector line */
.logistics__timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-primary), var(--border-gold), transparent);
}

.logistics__item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  position: relative;
}

.logistics__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border: 2px solid var(--border-gold);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold-primary);
  line-height: 1;
  transition: border-color var(--transition-base), color var(--transition-base), box-shadow var(--transition-base);
}

.logistics__item:hover .logistics__icon {
  border-color: var(--gold-light);
  color: var(--gold-light);
  box-shadow: 0 0 15px rgba(212, 168, 83, 0.25);
}

.logistics__text h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.logistics__text p {
  font-size: var(--fs-body);
  color: var(--text-muted);
  line-height: 1.7;
}

/* === PRICING SECTION === */
.pricing {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(212, 168, 83, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.pricing__card {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-gold);
}

.pricing__anchor {
  font-size: var(--fs-body);
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.pricing__anchor s {
  text-decoration: line-through;
  color: var(--text-dark);
  font-size: 1.3rem;
}

.pricing__label {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: var(--gold-subtle);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.pricing__price {
  margin-bottom: 0.5rem;
}

.pricing__currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  vertical-align: super;
}

.pricing__value {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing__period {
  font-size: var(--fs-body);
  color: var(--text-dim);
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.pricing__renewal {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing__renewal strong {
  color: var(--gold-primary);
  font-weight: 600;
}

.pricing__features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: var(--fs-body);
  color: var(--text-light);
}

.pricing__feature::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--bg-primary);
  background: var(--gold-primary);
  border-radius: 50%;
}

.pricing__disclaimer {
  margin-top: 1.2rem;
  font-size: var(--fs-xs);
  color: var(--text-dim);
  line-height: 1.6;
}

.pricing__card .spots-counter {
  margin: 1.5rem auto 0;
  background: rgba(244, 63, 94, 0.05);
  border-color: rgba(244, 63, 94, 0.15);
}

/* === CTA FINAL === */
.cta-final {
  background: var(--bg-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(212, 168, 83, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final__content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-final__headline {
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.cta-final__text {
  font-size: var(--fs-body);
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-final .spots-counter {
  margin: 0 auto 1.5rem;
  background: rgba(212, 168, 83, 0.03);
  border-color: var(--border-gold);
}

.cta-final__urgency {
  margin-top: 1rem;
  font-size: var(--fs-small);
  color: var(--gold-primary);
  font-weight: 500;
}

/* === FOOTER === */
.footer {
  padding: 2.5rem 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-primary);
}

.footer__copy {
  font-size: var(--fs-small);
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.footer__disclaimer {
  font-size: var(--fs-xs);
  color: var(--text-dark);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === RESPONSIVE === */

/* 480px+ */
@media (min-width: 480px) {
  .pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px+ */
@media (min-width: 768px) {
  .pillar-card {
    padding: 2.5rem;
  }

  .logistics__item {
    padding: 2rem 0;
  }

  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }

  .hero__image-area {
    order: 1; /* Image second on desktop */
  }

  .hero__content {
    text-align: left;
  }

  .hero__ctas {
    flex-direction: row;
    align-items: center;
  }

  .logistics__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

/* 1024px+ */
@media (min-width: 1024px) {
  .pillars__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .pillar-card {
    padding: 2rem 1.5rem;
  }
}

/* 1200px+ */
@media (min-width: 1200px) {
  .pillar-card {
    padding: 2.5rem 2rem;
  }

  .pillars__grid {
    gap: 2rem;
  }
}

/* Mobile nav */
@media (max-width: 479px) {
  .nav__cta {
    padding: 0.5rem 1rem;
    font-size: var(--fs-xs);
  }

  .hero {
    min-height: auto;
    padding: 7rem 0 4rem;
  }

  .btn-primary {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
  }

  .pricing__card {
    padding: 1.5rem;
  }
}

/* === FLOATING WHATSAPP === */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-base), box-shadow var(--transition-base), opacity 0.3s ease, visibility 0.3s ease;
  animation: pulseGreen 3s infinite 2s;
}

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

.whatsapp-float.whatsapp-float--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes pulseGreen {
  0%, 100% {
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3),
                0 0 40px rgba(37, 211, 102, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5),
                0 0 60px rgba(37, 211, 102, 0.2);
  }
}

@media (max-width: 767px) {
  .nav__inner {
    justify-content: center;
  }
  .nav__logo {
    text-align: center;
  }
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

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