/* ===========================
   INTER — SELF-HOSTED (v20)
   =========================== */
/* latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===========================
   SOFIST — LANDING PAGE CSS
   =========================== */

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

:root {
  --yellow:     #FFE000;
  --yellow-dk:  #E6C800;
  --dark:       #1A1A1A;
  --dark-2:     #2D2D2D;
  --gray:       #606876;
  --gray-lt:    #F4F4F5;
  --white:      #FFFFFF;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.12);
  --shadow-lg:  0 24px 64px rgba(0,0,0,.16);
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
  --font:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

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

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .2px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  text-align: center;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0);    }

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

/* WhatsApp CTA */
.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
  box-shadow: 0 4px 20px rgba(255,224,0,.35);
}
.btn-primary:hover {
  background: var(--yellow-dk);
  border-color: var(--yellow-dk);
  box-shadow: 0 8px 32px rgba(255,224,0,.45);
}

/* Promotions Group CTA */
.btn-promo {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.btn-promo:hover {
  background: var(--dark-2);
  border-color: var(--dark-2);
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
}

/* Header button */
.btn-header {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: var(--radius-md);
}
.btn-header:hover {
  background: var(--yellow-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255,224,0,.4);
}

/* ===========================
   HEADER
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }

.sofist-logo-img {
  height: 52px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.sofist-logo-img {
  height: 48px;
  width: auto;
  mix-blend-mode: multiply;
}

.sofist-logo-footer {
  height: 56px;
  width: auto;
  border-radius: 10px;
  object-fit: contain;
  margin-bottom: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: background var(--transition), color var(--transition);
}
.nav-link:hover {
  background: var(--gray-lt);
  color: var(--dark);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(0,0,0,.06);
  background: var(--white);
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius-md);
  color: var(--dark);
}
.mobile-nav-link:hover { background: var(--gray-lt); }
.mobile-cta { width: 100%; justify-content: center; margin-top: 8px; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
  background: var(--gray-lt);
}

/* Decorative shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--yellow);
  opacity: .18;
  top: -200px; right: -150px;
}
.shape-2 {
  width: 300px; height: 300px;
  background: var(--dark);
  opacity: .05;
  bottom: -80px; left: -80px;
}
.shape-3 {
  width: 180px; height: 180px;
  background: var(--yellow);
  opacity: .25;
  bottom: 15%; right: 10%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--dark);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--dark);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.85); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--dark);
}
.hero-title .highlight {
  color: var(--dark);
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 3px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--gray);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray);
}
.stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero store photo card */
.hero-store-card {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(0,0,0,.06);
}
.hero-store-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-store-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
}
.hero-store-logo {
  height: 44px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}
.shoe-card-tag {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: .5px;
  box-shadow: var(--shadow-sm);
}

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,.06);
  white-space: nowrap;
  animation: float 3.5s ease-in-out infinite;
}
.float-badge strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}
.float-badge small {
  font-size: 11px;
  color: var(--gray);
}
.float-icon { font-size: 22px; }

.float-icon-svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.float-icon-svg svg {
  width: 100%;
  height: 100%;
}
.float-1 {
  top: 20%; left: -30px;
  animation-delay: 0s;
}
.float-2 {
  bottom: 22%; right: -30px;
  animation-delay: 1.7s;
}

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

/* ===========================
   BRANDS SECTION
   =========================== */
.brands-section {
  padding: 80px 0 60px;
  background: var(--white);
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Marquee */
.marquee-wrapper {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

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

/* Brand logo item — uniform pattern */
.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 80px;
  border: 2px solid #E5E7EB;
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 12px 20px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: default;
  flex-shrink: 0;
}
.brand-logo-item:hover {
  border-color: var(--dark);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

/* All brand logos same size/fit */
.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* White-on-transparent logos — invert to dark */
.logo-invert { filter: invert(1); }

/* Sofist in marquee — yellow bg */
.sofist-brand {
  background: var(--yellow);
  border-color: var(--dark);
  padding: 8px 12px;
}
.sofist-brand:hover {
  background: var(--yellow-dk);
}
.brand-logo-sofist {
  mix-blend-mode: multiply;
}

/* Hero card brand image */
.shoe-card-brand-img {
  height: 36px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

/* ===========================
   FEATURES SECTION
   =========================== */
.features-section {
  padding: 100px 0;
  background: var(--gray-lt);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(24px);
}
.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease, box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}
.feature-icon svg { width: 100%; height: 100%; }

.feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--dark);
}
.feature-card p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.65;
}

/* ===========================
   GALLERY SECTION
   =========================== */
.gallery-section {
  padding: 100px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 16px;
  margin-top: 16px;
}

/* Brick pattern: large-small / small-large */
.gallery-grid .gallery-item:nth-child(1) { grid-column: 1 / span 2; grid-row: 1; }
.gallery-grid .gallery-item:nth-child(2) { grid-column: 3;           grid-row: 1; }
.gallery-grid .gallery-item:nth-child(3) { grid-column: 1;           grid-row: 2; }
.gallery-grid .gallery-item:nth-child(4) { grid-column: 2 / span 2;  grid-row: 2; }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  opacity: 0;
  transform: translateY(24px);
  cursor: pointer;
}
.gallery-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
}

@media (max-width: 680px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-grid .gallery-item:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
    height: 240px;
  }
}

/* ===========================
   STATS SECTION
   =========================== */
.stats-section {
  padding: 80px 0;
  background: var(--dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--yellow);
  display: inline-block;
  line-height: 1;
  letter-spacing: -2px;
}
.stat-suffix {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--yellow);
  letter-spacing: -1px;
}
.stat-item p {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: .3px;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  padding: 100px 0;
  background: var(--gray-lt);
}

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

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-inner p {
  font-size: 16px;
  color: var(--gray);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.cta-disclaimer {
  font-size: 13px !important;
  color: #606876 !important;
  margin-bottom: 0 !important;
}

/* ===========================
   STORY SECTION
   =========================== */
.story-section {
  padding: 100px 0;
  background: var(--gray-lt);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 16px;
}

/* Timeline */
.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.story-step {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 36px;
  opacity: 0;
  transform: translateX(-20px);
}
.story-step.visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .5s ease, transform .5s ease;
}
.story-step:last-child { padding-bottom: 0; }

/* Vertical connector line */
.story-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(0,0,0,.1), transparent);
}

.story-step-marker {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.story-step-marker svg {
  width: 100%;
  height: 100%;
}

.story-step-content {
  padding-top: 4px;
}

.story-step-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.story-step-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -.3px;
}

.story-step-content p {
  font-size: 14.5px;
  color: var(--gray);
  line-height: 1.65;
}
.story-step-content p strong {
  color: var(--dark);
  font-weight: 700;
}

/* Quote block */
.story-quote-block {
  position: static;
  opacity: 0;
  transform: translateX(20px);
}

@media (min-width: 961px) {
  .story-quote-block {
    position: sticky;
    top: 100px;
  }
}
.story-quote-block.visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .6s ease .15s, transform .6s ease .15s;
}

.story-quote {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.story-quote::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: var(--yellow);
  opacity: .08;
  border-radius: 50%;
}

.story-quote-icon {
  width: 36px;
  height: 27px;
  margin-bottom: 20px;
  opacity: .7;
}

.story-quote p {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.6;
  letter-spacing: -.2px;
  font-style: italic;
}

.story-quote-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.story-quote-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--yellow);
}
.story-quote-role {
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

/* Values chips */
.story-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.story-value-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}
.story-value-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.story-value-item a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Responsive */
@media (max-width: 960px) {
  .story-section {
    padding: 64px 0;
  }
  .story-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-quote-block {
    position: static;
  }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo p {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  max-width: 280px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--yellow); }

.footer-ctas { padding-top: 4px; }
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--yellow);
  transition: opacity var(--transition);
  margin-bottom: 14px;
}
.footer-whatsapp:hover { opacity: .75; }

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
  transition: color var(--transition);
}
.footer-address:hover { color: rgba(255,255,255,.8); }
.footer-address svg { flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-align: center;
}

.footer-agency {
  margin-top: 6px;
  font-size: 11px !important;
  color: rgba(255,255,255,.55) !important;
}
.footer-agency a {
  color: rgba(255,255,255,.55);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.footer-agency a:hover {
  color: rgba(255,255,255,.8);
}

/* ===========================
   FLOATING WHATSAPP
   =========================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  pointer-events: none;
}
.floating-whatsapp.visible {
  opacity: 1;
  pointer-events: all;
  animation: popIn .35s cubic-bezier(.34,1.56,.64,1) forwards;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}

.floating-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(6px);
  pointer-events: none;
  transition: opacity .2s, transform .2s;
}
.floating-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
  border-right: none;
}
.floating-whatsapp:hover .floating-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes popIn {
  from { transform: scale(.5); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding-top: 40px;
  }
  .hero-content { order: 1; }
  .hero-visual   { order: 2; max-width: 360px; margin: 0 auto; }
  .hero-ctas { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 680px) {
  .nav { display: none; }
  .btn-header { display: none; }
  .menu-toggle { display: flex; }

  .hero-inner { padding-top: 32px; padding-bottom: 60px; }
  .hero-title { letter-spacing: -1px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-large { width: 100%; justify-content: center; }

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

  .float-1 { left: -10px; }
  .float-2 { right: -10px; }

  .cta-buttons { flex-direction: column; align-items: center; }

  .story-section { padding: 48px 0 16px; }
  .cta-section   { padding: 32px 0 48px; }

  .floating-whatsapp { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero-title { letter-spacing: -.5px; }
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--gray-lt);
}

.faq-item.open .faq-question {
  background: var(--yellow);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

@media (max-width: 600px) {
  .faq-section { padding: 64px 0; }
  .faq-question { padding: 16px 18px; font-size: 0.93rem; }
  .faq-answer   { padding: 0 18px 16px; }
}
