/* =============================================
   SOBER SOLDIERS — STYLESHEET
   Palette: Charcoal #1A1A1A · Red #D42B2B · White #FFFFFF · Gold #C8932A
   ============================================= */

:root {
  --black: #1A1A1A;
  --red: #D42B2B;
  --red-dark: #B01F1F;
  --white: #FFFFFF;
  --gold: #C8932A;
  --gold-light: #E8A830;
  --grey-light: #F5F5F5;
  --grey-mid: #888888;
  --grey-dark: #2C2C2C;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-alt: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.accent-red { color: var(--red); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: pulse-wa 2.5s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--white);
}

.logo-accent { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 120px 24px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(212, 43, 43, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200, 147, 42, 0.05) 0%, transparent 60%);
}

.hero-slash {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 55vw;
  height: 130vh;
  background: linear-gradient(135deg, rgba(212,43,43,0.06) 0%, rgba(200,147,42,0.04) 100%);
  transform: rotate(-8deg);
  border-left: 2px solid rgba(212,43,43,0.15);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  font-family: var(--font-alt);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.2s;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: 2px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.line-reveal {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: lineReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.line-reveal { animation-delay: 0.4s; }
.line-reveal.delay-1 { animation-delay: 0.55s; }
.line-reveal.delay-2 { animation-delay: 0.7s; }
.line-reveal.delay-3 { animation-delay: 0.85s; }

@keyframes lineReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-family: var(--font-alt);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1.1s;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1.3s;
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 1px;
  color: var(--white);
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.15);
}

.hero-badge {
  position: absolute;
  right: 10%;
  bottom: 12%;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1.5s;
}

.badge-inner {
  background: rgba(200, 147, 42, 0.12);
  border: 1px solid rgba(200, 147, 42, 0.35);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(8px);
}

.badge-icon { font-size: 1.8rem; }

.badge-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  line-height: 1.4;
  text-transform: uppercase;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.22s ease;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 43, 43, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-xl { padding: 20px 44px; font-size: 1.1rem; border-radius: 6px; }

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--red);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  animation: ticker 30s linear infinite;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 3px;
  color: var(--white);
}

.ticker-dot {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION SHARED ===== */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ===== ABOUT ===== */
.about {
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 18px;
  line-height: 1.8;
  font-family: var(--font-alt);
}

.mission-box {
  margin-top: 32px;
  border-left: 3px solid var(--red);
  padding: 16px 24px;
  background: rgba(212, 43, 43, 0.06);
  border-radius: 0 4px 4px 0;
}

.mission-statement {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--white) !important;
  margin: 0 !important;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s;
}

.value-card:hover {
  background: rgba(212,43,43,0.07);
  border-color: rgba(212,43,43,0.25);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
}

.value-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  font-family: var(--font-alt);
}

/* ===== SERVICES ===== */
.services {
  background: var(--grey-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  border-color: rgba(212, 43, 43, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.service-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255,255,255,0.05);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
  pointer-events: none;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.service-card > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: var(--font-alt);
}

.service-card ul {
  margin-bottom: 28px;
}

.service-card ul li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
  font-family: var(--font-alt);
}

.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.75rem;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.5px;
  transition: all 0.2s;
  gap: 4px;
}

.service-cta:hover {
  color: var(--gold);
  gap: 8px;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--red);
  padding: 40px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band-text {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 1px;
}

.cta-band .btn-primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--red);
}

.cta-band .btn-primary:hover {
  background: var(--grey-light);
  border-color: var(--grey-light);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ===== HOW IT WORKS ===== */
.how {
  background: var(--black);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 72px;
  height: 72px;
  background: var(--grey-dark);
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--red);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

.step:hover .step-circle {
  background: var(--red);
  color: var(--white);
  transform: scale(1.1);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.step p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-family: var(--font-alt);
}

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

/* ===== FOUNDER ===== */
.founder {
  background: var(--grey-dark);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.founder-visual {
  display: flex;
  justify-content: center;
}

.founder-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.founder-initial {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, #8B1A1A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--white);
  border: 4px solid rgba(212,43,43,0.3);
  box-shadow: 0 0 60px rgba(212,43,43,0.2);
}

.founder-award {
  background: rgba(200, 147, 42, 0.12);
  border: 1px solid rgba(200, 147, 42, 0.3);
  color: var(--gold);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.founder-title {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  font-family: var(--font-alt);
}

.founder-text p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 16px;
  line-height: 1.8;
  font-family: var(--font-alt);
}

.award-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(200, 147, 42, 0.08);
  border: 1px solid rgba(200, 147, 42, 0.2);
  border-radius: 8px;
  padding: 20px;
  margin: 28px 0;
}

.award-icon { font-size: 1.8rem; flex-shrink: 0; }

.award-highlight strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--gold);
}

.award-highlight p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6) !important;
  margin: 0 !important;
}

.media-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.media-label {
  font-size: 0.78rem;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.media-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 5px 14px;
  border-radius: 3px;
  transition: all 0.2s;
}

.media-link:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ===== FOUNDER'S NOTE ===== */
.founders-note {
  background: var(--black);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.founders-note::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(212, 43, 43, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.note-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.note-quote-mark {
  font-family: var(--font-display);
  font-size: 10rem;
  line-height: 0.6;
  color: var(--red);
  opacity: 0.18;
  margin-bottom: 20px;
  display: block;
  user-select: none;
}

.note-text {
  font-family: var(--font-alt);
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
  border: none;
  padding: 0;
  margin: 0 0 40px;
  quotes: none;
}

.note-signature {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.note-sig-line {
  width: 48px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.note-sig-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.note-sig-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  color: var(--white);
}

.note-sig-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-alt);
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--black);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 44px;
}

.review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 30px;
  transition: all 0.3s;
}

.review-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212,43,43,0.2);
  transform: translateY(-4px);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  font-family: var(--font-alt);
}

.reviewer {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--grey-mid);
  letter-spacing: 0.5px;
}

.reviews-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--grey-dark);
  padding: 100px 0;
}

.final-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.final-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  font-family: var(--font-alt);
}

/* ===== FOOTER ===== */
.footer {
  background: #111111;
  padding: 70px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
  line-height: 1.7;
  font-family: var(--font-alt);
}

.footer-brand .logo-text {
  font-size: 1.4rem;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-alt);
  transition: color 0.2s;
}

.footer-links ul li a:hover { color: var(--white); }

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #25D366;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: opacity 0.2s;
}

.footer-wa:hover { opacity: 0.8; }

.footer-area {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  font-family: var(--font-alt);
}

.footer-media {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-media a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 10px;
  border-radius: 3px;
  transition: all 0.2s;
  font-family: var(--font-alt);
}

.footer-media a:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-alt);
}

.footer-tagline {
  color: var(--gold) !important;
  font-weight: 500;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-visual { order: -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80vw;
    max-width: 320px;
    background: var(--grey-dark);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 32px;
    gap: 28px;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid rgba(255,255,255,0.08);
    z-index: 998;
  }

  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }

  .hero-headline { font-size: clamp(3.5rem, 15vw, 6rem); }
  .hero-badge { display: none; }
  .hero-stats { gap: 16px; }

  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }

  .cta-band-inner { flex-direction: column; text-align: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 16px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .about-values { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .line-reveal, .hero-eyebrow, .hero-sub, .hero-actions, .hero-stats, .hero-badge {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .ticker { animation: none; }
  .whatsapp-float { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
