/* ================================================
   SHOP WITH ROSSY — Styles
   Emil Kowalski + Taste + Impeccable
   ================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #C8973A;
  --gold-light: #E8C070;
  --gold-glow: rgba(200, 151, 58, 0.15);
  --blue: #1A3A6E;
  --blue-mid: #2A5F9E;
  --blue-light: #4A80C0;
  --beige: #FAF5EE;
  --beige-dark: #EDE3D2;
  --cream: #F7F1E8;
  --dark: #141424;
  --text: #2D2D3A;
  --text-muted: #6B6B7B;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; }

section[id] { scroll-margin-top: 72px; }

::selection { background: var(--gold-light); color: var(--dark); }

body {
  font-family: 'Inter', sans-serif;
  background: var(--beige);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

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

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 245, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 151, 58, 0.12);
  transition: box-shadow 0.4s var(--ease-out), background 0.4s var(--ease-out);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  background: rgba(250, 245, 238, 0.97);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo .gold { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.25s var(--ease-out);
}

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

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out);
  letter-spacing: 0.3px;
}

.btn:active { transform: scale(0.97); }

@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); }
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #E8A840);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(200, 151, 58, 0.3);
}

.btn-gold:hover { box-shadow: 0 14px 36px rgba(200, 151, 58, 0.4); }

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

.btn-full { width: 100%; justify-content: center; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0F2247 0%, #1A3A6E 45%, #2A5F9E 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 62%, rgba(200, 151, 58, 0.14) 0%, transparent 70%),
    radial-gradient(ellipse 120% 60% at 50% 110%, rgba(15, 34, 71, 0.75) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.14;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 151, 58, 0.15);
  border: 1px solid rgba(200, 151, 58, 0.4);
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 24px;
  margin-bottom: 28px;
  font-weight: 600;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(15, 34, 71, 0.45);
}

.hero-title .gold { color: var(--gold-light); }

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.15rem;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-avail {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

.hero-avail strong {
  color: var(--gold-light);
  font-weight: 600;
}

.hero-stores {
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.store-logos {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 14px;
  flex-wrap: wrap;
}

.store-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: background 0.3s var(--ease-out);
}

.store-tag:hover { background: rgba(255, 255, 255, 0.14); }

/* ---- WAVE DIVIDERS ---- */
.wave-divider {
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  width: 100%;
  height: 50px;
  display: block;
}

/* ---- SECTION SHARED ---- */
section { padding: 80px 24px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 14px;
  text-wrap: balance;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

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

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- HOW IT WORKS ---- */
.how-it-works { background: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}

.step-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  background: var(--beige);
  border: 1px solid var(--beige-dark);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

@media (hover: hover) {
  .step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(42, 95, 158, 0.1);
  }
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--blue);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ---- ABOUT ROSSY ---- */
.about { background: var(--beige); }

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

.about-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-quote {
  border-left: 3px solid var(--gold);
  padding: 12px 0 12px 20px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--blue);
  font-size: 1.1rem;
  margin: 20px 0;
}

.about-image { position: relative; }

.about-img {
  border-radius: var(--radius);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-stat-strip {
  display: flex;
  gap: 24px;
  margin-top: 16px;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-stat strong {
  font-size: 1.2rem;
  color: var(--blue);
}

.about-stat span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ---- STORES ---- */
.stores-section { background: var(--white); }

.stores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.store-card {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  border: 1px solid var(--beige-dark);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

@media (hover: hover) {
  .store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  }
}

.store-card h3 {
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.store-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- GALLERY ---- */
.gallery-section { background: var(--beige); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

@media (hover: hover) {
  .gallery-item:hover img { transform: scale(1.04); }
}

.gallery-item.large { grid-column: span 2; }
.gallery-item.large img { height: 280px; }

/* ---- PRICING ---- */
.pricing { background: var(--white); }

.price-card {
  max-width: 440px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 20px 60px rgba(42, 95, 158, 0.3);
  border: 1px solid rgba(200, 151, 58, 0.35);
  position: relative;
  overflow: hidden;
}

.price-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  position: relative;
}

.price-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 151, 58, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  position: relative;
}

.price-amount sup {
  font-size: 1.5rem;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
}

.price-label {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.price-features {
  list-style: none;
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  opacity: 0.9;
}

.price-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(200, 151, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- COMPARISON ---- */
.comparison { background: var(--beige); }

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.comp-card {
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 2px solid;
}

.comp-card.not {
  background: #FFF5F5;
  border-color: #FFC8C8;
}

.comp-card.yes {
  background: #F0FFF4;
  border-color: #A8E6C0;
}

.comp-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comp-card.not h3 { color: #C0392B; }
.comp-card.yes h3 { color: #1A7A40; }

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.comp-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.comp-callout {
  max-width: 720px;
  margin: 28px auto 0;
  background: linear-gradient(135deg, #EEF4FF, #E8F0FF);
  border: 1px solid #C0D4F0;
  border-radius: var(--radius);
  padding: 24px 28px;
  text-align: center;
}

.comp-callout p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
}

/* ---- FAQ ---- */
.faq-section { background: var(--white); }

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

.faq-item {
  background: var(--beige);
  border: 1px solid var(--beige-dark);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s var(--ease-out);
}

.faq-item:hover { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06); }

.faq-q {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-q svg {
  color: var(--gold);
  transition: transform 0.35s var(--ease-out);
  flex-shrink: 0;
}

.faq-item.open .faq-q svg { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  transition: max-height 0.4s var(--ease-out), padding 0.3s var(--ease-out);
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 22px 18px;
}

/* ---- BRANDS ---- */
.brands-section { background: var(--beige); }

.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 720px;
  margin: 0 auto;
}

.brand-tag {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.25s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (hover: hover) {
  .brand-tag:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
    transform: translateY(-2px);
  }
}

/* ---- REELS ---- */
.reels-section { background: var(--white); }

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  justify-items: center;
}

.reel-item {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  background: #fafafa;
}

.reel-item iframe {
  width: 100%;
  min-height: 520px;
  border: none;
}

/* ---- FORM ---- */
.form-section { background: var(--beige); }

.form-card {
  max-width: 580px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--beige-dark);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.05);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--beige-dark);
  background: var(--beige);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(42, 95, 158, 0.1);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-form {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42, 95, 158, 0.3);
}

.form-success {
  display: none;
  text-align: center;
  padding: 16px 20px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  border-radius: var(--radius-sm);
  color: #128C7E;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
}

/* ---- CONTACT ---- */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s var(--ease-out), filter 0.25s var(--ease-out);
}

@media (hover: hover) {
  .contact-btn:hover {
    transform: translateY(-3px);
    filter: brightness(1.08);
  }
}

.contact-btn.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.contact-btn.instagram { background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737); }
.contact-btn.facebook { background: linear-gradient(135deg, #1877F2, #0D5ABF); }

/* ---- WA FLOAT ---- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), opacity 0.3s;
  color: var(--white);
}

@media (hover: hover) {
  .wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
  }
}

/* ---- FOOTER ---- */
.footer {
  background: var(--dark);
  padding: 50px 24px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand strong {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links strong {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.made-with {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.72rem;
  letter-spacing: 0.5px;
}

/* ---- ANIMATIONS ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  .steps-grid { grid-template-columns: 1fr; max-width: 400px; }

  .stores-grid { grid-template-columns: 1fr 1fr; }

  .comparison-grid { grid-template-columns: 1fr; }

  .reels-grid { grid-template-columns: 1fr; gap: 16px; }
  .reel-item { max-width: 100%; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; }

  .contact-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

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

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 245, 238, 0.98);
    backdrop-filter: blur(12px);
    padding: 8px 0;
    border-bottom: 2px solid rgba(200, 151, 58, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    gap: 0;
  }

  .nav-links.active a {
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(200, 151, 58, 0.08);
    font-size: 0.95rem;
  }
}

@media (max-width: 500px) {
  section { padding: 60px 16px; }
  .hero { padding: 80px 16px 50px; }
  .hero-title { font-size: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .store-logos { gap: 8px; }
  .store-tag { padding: 6px 14px; font-size: 0.7rem; }
  .stores-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .price-card { padding: 36px 24px; }
  .reel-item iframe { min-height: 460px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .gallery-item img, .gallery-item.large img { height: 200px; }
}
