/* ============================================
   REBRICKIT — Landing Page Styles
   Aesthetic: Toy-Store-Meets-Tech / Playful Maximalism
   ============================================ */

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

:root {
  /* Brand Colors */
  --yellow: #FFD700;
  --yellow-soft: #FFF3B0;
  --yellow-deep: #F5A623;
  --red: #E31E24;
  --red-soft: #FFE0E0;
  --blue: #0091D5;
  --blue-soft: #D6F0FF;
  --green: #00A651;
  --green-soft: #D6FFE8;
  --black: #1A1A1A;
  --gray: #555;
  --gray-light: #F5F5F5;
  --white: #FFFFFF;

  /* Typography */
  --font-display: 'Lilita One', 'Impact', sans-serif;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: clamp(60px, 10vw, 120px);
  --container-max: 1200px;

  /* Brick Stud */
  --stud-size: 18px;
  --stud-color: rgba(0,0,0,0.06);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- UTILITY CLASSES ---------- */
.text-red { color: var(--red); }
.text-blue { color: var(--blue); }
.text-green { color: var(--green); }
.text-yellow { color: var(--yellow); }

/* ---------- SECTION TITLE ---------- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-title--light { color: var(--white); }

.section-title__accent {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--yellow-deep);
  letter-spacing: 0.02em;
  margin-top: 6px;
}

.section-title--light .section-title__accent {
  color: var(--yellow);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.2s var(--ease-bounce), box-shadow 0.2s ease;
  background: var(--red);
  color: var(--white);
  padding: 16px 36px;
  box-shadow: 0 4px 0 #B0161A, 0 6px 20px rgba(227,30,36,0.3);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #B0161A, 0 10px 30px rgba(227,30,36,0.35);
}

.btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #B0161A, 0 3px 10px rgba(227,30,36,0.3);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.9rem;
  border-radius: 10px;
  box-shadow: 0 3px 0 #B0161A, 0 4px 14px rgba(227,30,36,0.25);
}

.btn--lg {
  padding: 20px 48px;
  font-size: 1.15rem;
  border-radius: 16px;
}

.btn--white {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 4px 0 #ddd, 0 6px 20px rgba(0,0,0,0.15);
}

.btn--white:hover {
  box-shadow: 0 6px 0 #ddd, 0 10px 30px rgba(0,0,0,0.2);
}

.btn--white:active {
  box-shadow: 0 2px 0 #ddd, 0 3px 10px rgba(0,0,0,0.15);
}

.btn--block { width: 100%; }

.btn__icon { font-size: 1.2em; }

/* ---------- FLOATING BRICK DECORATIONS ---------- */
.brick-deco {
  position: fixed;
  width: 40px;
  height: 24px;
  border-radius: 4px;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.brick-deco::before,
.brick-deco::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: inherit;
  top: -5px;
}

.brick-deco::before { left: 5px; }
.brick-deco::after { right: 5px; }

.brick-deco--1 { background: var(--red); top: 15%; left: 3%; transform: rotate(-15deg); animation: floatBrick 18s ease-in-out infinite; }
.brick-deco--2 { background: var(--blue); top: 35%; right: 5%; transform: rotate(20deg); animation: floatBrick 22s ease-in-out infinite reverse; }
.brick-deco--3 { background: var(--green); top: 55%; left: 6%; transform: rotate(10deg); animation: floatBrick 20s ease-in-out infinite 2s; }
.brick-deco--4 { background: var(--yellow-deep); top: 75%; right: 4%; transform: rotate(-25deg); animation: floatBrick 16s ease-in-out infinite 1s; }
.brick-deco--5 { background: var(--red); top: 90%; left: 8%; transform: rotate(35deg); animation: floatBrick 24s ease-in-out infinite 3s; }

@keyframes floatBrick {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-30px) rotate(calc(var(--r, 0deg) + 10deg)); }
}

/* ---------- BRICK STUD PATTERN MIXIN ---------- */
.stud-pattern {
  background-image:
    radial-gradient(circle, var(--stud-color) 6px, transparent 6px);
  background-size: var(--stud-size) var(--stud-size);
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--red);
  transition: box-shadow 0.3s ease;
}

.nav--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo img {
  height: 52px;
  width: auto;
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav__links a {
  font-weight: 700;
  font-size: 0.95rem;
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.3s var(--ease-out);
}

.nav__links a:hover::after { width: 100%; }

.nav__cta {
  margin-left: 8px;
  white-space: nowrap;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav__burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px 24px;
  border-top: 1px solid #eee;
}

.nav__mobile a {
  font-weight: 700;
  font-size: 1.05rem;
  padding: 8px 0;
}

.nav__mobile.open { display: flex; }

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ---------- HERO ---------- */
.hero {
  padding: calc(100px + var(--section-pad)) 0 0;
  background: linear-gradient(145deg, #E31E24 0%, #C41018 60%, #A00D12 100%);
  position: relative;
  overflow: hidden;
}

.hero__bg-studs {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.07) 7px, transparent 7px);
  background-size: 36px 36px;
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--yellow);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero__scroll-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--yellow);
  transition: color 0.2s;
}

.hero__scroll-link:hover { color: var(--white); }

.hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

.hero__stars {
  color: var(--yellow);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__img-wrap {
  position: relative;
  max-width: 520px;
  animation: heroFloat 6s ease-in-out infinite;
}

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

.hero__img {
  border-radius: 24px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* Yellow CTA on red hero */
.hero .btn {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 0 #C9A800, 0 6px 20px rgba(0,0,0,0.3);
  font-size: 1.2rem;
}

.hero .btn:hover {
  box-shadow: 0 6px 0 #C9A800, 0 10px 30px rgba(0,0,0,0.35);
}

.hero .btn:active {
  box-shadow: 0 2px 0 #C9A800, 0 3px 10px rgba(0,0,0,0.3);
}

.hero__price-tag {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--yellow);
  color: var(--black);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  border: 4px solid var(--white);
  animation: pricePulse 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes pricePulse {
  0%, 100% { transform: scale(1) rotate(-8deg); }
  50% { transform: scale(1.06) rotate(-8deg); }
}

.hero__price-dollar {
  font-size: 1.2rem;
  margin-top: -8px;
  align-self: flex-start;
}

.hero__price-amount {
  font-size: 2.6rem;
  line-height: 1;
}

.hero__wave {
  position: relative;
  margin-top: -1px;
  z-index: 2;
}

.hero__wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__sub { margin: 0 auto 32px; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__img-wrap { max-width: 380px; margin: 0 auto; }
}

/* ---------- PROBLEM / SOLUTION ---------- */
.problem {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.problem__grid {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}

.problem__arrow {
  flex-shrink: 0;
}

.problem__card {
  flex: 1;
  min-width: 300px;
  max-width: 440px;
  padding: 36px;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.problem__card--pain {
  background: linear-gradient(135deg, #FFF5F5, #FFEDED);
  border: 2px solid var(--red-soft);
}

.problem__card--fix {
  background: linear-gradient(135deg, #F0FFF4, #E6FFE6);
  border: 2px solid var(--green-soft);
}

.problem__emoji {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.problem__card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.problem__card--pain h3 { color: var(--red); }
.problem__card--fix h3 { color: var(--green); }

.problem__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.problem__list li {
  padding-left: 28px;
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
}

.problem__card--pain .problem__list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.problem__list--check li::before {
  content: '✓' !important;
  color: var(--green) !important;
}

@media (max-width: 768px) {
  .problem__arrow {
    transform: rotate(90deg);
  }
}

/* ---------- HOW IT WORKS ---------- */
.how {
  padding: var(--section-pad) 0;
  background: linear-gradient(145deg, #0091D5 0%, #0077B6 100%);
  position: relative;
  color: var(--white);
}

.how__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.08) 6px, transparent 6px);
  background-size: 32px 32px;
  pointer-events: none;
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.how__step {
  text-align: center;
  position: relative;
}

.how__step-num {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 0 #0070A5, 0 6px 16px rgba(0,145,213,0.25);
  position: relative;
  z-index: 1;
}

.how__step:nth-child(2) .how__step-num { background: var(--red); box-shadow: 0 4px 0 #B0161A, 0 6px 16px rgba(227,30,36,0.25); }
.how__step:nth-child(3) .how__step-num { background: var(--green); box-shadow: 0 4px 0 #007A3D, 0 6px 16px rgba(0,166,81,0.25); }

.how__step-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  aspect-ratio: 3/4;
  background: #eee;
}

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

.how__step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--white);
}

.how__step p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  max-width: 300px;
  margin: 0 auto;
}

.how__cta {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .how__steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 48px auto 0;
  }
}

/* ---------- APP FEATURES ---------- */
.app {
  padding: var(--section-pad) 0;
  background: linear-gradient(145deg, #FFD700 0%, #FFC107 100%);
}

.app__feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 64px;
}

.app__feature--reverse { direction: rtl; }
.app__feature--reverse > * { direction: ltr; }

.app__phone {
  display: flex;
  justify-content: center;
}

.app__phone-frame {
  width: 280px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 0 0 8px var(--black),
    0 0 0 10px #444,
    0 20px 60px rgba(0,0,0,0.25);
  background: var(--black);
  position: relative;
}

.app__phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: var(--black);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.app__phone-frame img {
  width: 100%;
  display: block;
}

.app__info-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.app__info-badge--red { background: var(--red-soft); color: var(--red); }
.app__info-badge--blue { background: var(--blue-soft); color: var(--blue); }
.app__info-badge--green { background: var(--green-soft); color: var(--green); }
.app__info-badge--yellow { background: var(--yellow-soft); color: #B8860B; }

.app__info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 14px;
}

.app__info p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .app__feature,
  .app__feature--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
    text-align: center;
  }
  .app__phone-frame { width: 240px; }
}

/* ---------- BUCKET SECTION ---------- */
.bucket {
  padding: var(--section-pad) 0;
  background: linear-gradient(145deg, #0077B6 0%, #005F8A 100%);
  position: relative;
  overflow: hidden;
}

.bucket__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.08) 6px, transparent 6px);
  background-size: 30px 30px;
  pointer-events: none;
}

.bucket__showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.bucket__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.bucket__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.bucket__card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.bucket__card-label {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 8px;
  margin: 20px 20px 12px;
  letter-spacing: 0.03em;
}

.bucket__card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  padding: 0 20px 24px;
}

@media (max-width: 768px) {
  .bucket__showcase {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 48px auto 0;
  }
}

/* ---------- WHAT'S INCLUDED ---------- */
.included {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.included__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.included__img {
  display: flex;
  justify-content: center;
}

.included__img img {
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

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

.included__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.included__icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow-soft);
  border-radius: 14px;
}

.included__item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.included__item p {
  font-size: 0.92rem;
  color: var(--gray);
}

.included__item--note {
  background: var(--blue-soft);
  padding: 16px 20px;
  border-radius: 12px;
  border-left: 4px solid var(--blue);
  font-size: 0.9rem;
  color: var(--gray);
}

@media (max-width: 768px) {
  .included__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .included__img img { max-width: 320px; }
}

/* ---------- REVIEWS ---------- */
.reviews {
  padding: var(--section-pad) 0;
  background: linear-gradient(145deg, #00A651 0%, #008C44 100%);
  position: relative;
  color: var(--white);
}

.reviews__bg-studs {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.08) 6px, transparent 6px);
  background-size: 34px 34px;
  pointer-events: none;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.review {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
}

.review:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.review__stars {
  color: var(--yellow-deep);
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review p {
  font-size: 0.98rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.review footer {
  display: flex;
  flex-direction: column;
}

.review footer strong {
  font-size: 1rem;
  color: var(--black);
}

.review footer span {
  font-size: 0.82rem;
  color: #999;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .reviews__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 48px auto 0;
  }
}

/* ---------- FAQ ---------- */
.faq {
  padding: var(--section-pad) 0;
  background: linear-gradient(145deg, #FFD700 0%, #FFC107 100%);
}

.faq__list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.faq__item[open] {
  border-color: var(--blue);
}

.faq__item summary {
  padding: 20px 24px;
  font-weight: 800;
  font-size: 1.02rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  user-select: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--red);
  transition: transform 0.3s ease;
}

.faq__item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

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

.faq__answer a {
  color: var(--blue);
  text-decoration: underline;
}

/* ---------- FINAL CTA ---------- */
.cta-final {
  padding: var(--section-pad) 0;
  background: linear-gradient(145deg, var(--red) 0%, #C41018 100%);
  position: relative;
  overflow: hidden;
}

.cta-final__studs {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.07) 7px, transparent 7px);
  background-size: 36px 36px;
  pointer-events: none;
}

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

.cta-final__logo {
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-final__sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 32px;
}

.cta-final__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 28px;
}

.cta-final__amount {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--white);
  line-height: 1;
}

.cta-final__shipping {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--yellow);
}

.cta-final__guarantees {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 40px 0;
  background: var(--black);
  color: rgba(255,255,255,0.5);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer__brand img {
  margin: 0 auto 8px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.footer__brand p {
  font-size: 0.88rem;
}

.footer__links {
  display: flex;
  gap: 24px;
  font-size: 0.88rem;
}

.footer__links a {
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--yellow); }

.footer__copy {
  font-size: 0.78rem;
  max-width: 640px;
  line-height: 1.6;
}

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 3px solid var(--yellow);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  display: none;
}

.sticky-cta.visible {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .sticky-cta { display: block; }

  /* Add padding at bottom so footer isn't hidden */
  .footer { padding-bottom: 90px; }
}

/* ---------- SCROLL REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal--right {
  transform: translateX(40px);
}

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

/* Stagger children */
.how__steps .reveal:nth-child(2) { transition-delay: 0.12s; }
.how__steps .reveal:nth-child(3) { transition-delay: 0.24s; }
.reviews__grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.reviews__grid .reveal:nth-child(3) { transition-delay: 0.24s; }
.bucket__showcase .reveal:nth-child(2) { transition-delay: 0.12s; }
.bucket__showcase .reveal:nth-child(3) { transition-delay: 0.24s; }

/* ---------- BOLD SECTION TEXT OVERRIDES ---------- */
/* Reviews on bold green */
.reviews .section-title { color: var(--white); }
.reviews .section-title__accent { color: var(--yellow); }

/* App features on bold yellow */
.app .section-title__accent { color: var(--red); }
.app .app__info p { color: var(--black); }

/* FAQ on bold yellow */
.faq .section-title { color: var(--black); }

/* ---------- FUN EXTRAS ---------- */
/* Slight tilt on bucket cards */
.bucket__card:nth-child(1):hover { transform: translateY(-6px) rotate(-1deg); }
.bucket__card:nth-child(3):hover { transform: translateY(-6px) rotate(1deg); }

/* Phone tilt on hover */
.app__phone-frame {
  transition: transform 0.4s var(--ease-out);
}

.app__feature:hover .app__phone-frame {
  transform: scale(1.03) rotate(-1deg);
}

/* Review card scale stagger */
.review:nth-child(2) { transform: translateY(0); }
.review:nth-child(2):hover { transform: translateY(-8px) scale(1.02); }

/* ---------- SELECTION COLOR ---------- */
::selection {
  background: var(--yellow);
  color: var(--black);
}

/* ---------- ACCESSIBILITY ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- SCROLLBAR STYLING ---------- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--gray-light);
}
::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--yellow-deep);
}
