/* =====================================================
   THE SQUEEZE STORE — Main Stylesheet
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:         #FFFEF9;
  --off-white:     #F7F6FF;
  --pink:          #FF6BA8;
  --pink-light:    #FFE0EF;
  --pink-dark:     #E8457A;
  --blue:          #4CC9F0;
  --blue-light:    #D9F3FC;
  --yellow:        #FFD93D;
  --yellow-light:  #FFF7CC;
  --mint:          #06D6A0;
  --mint-light:    #D0F9ED;
  --purple:        #8B5CF6;
  --purple-light:  #EDE9FF;
  --coral:         #FF7051;
  --coral-light:   #FFE5DE;
  --dark:          #1A1A2E;
  --text:          #2D3047;
  --text-muted:    #7C7F96;
  --border:        rgba(0,0,0,0.07);
  --sh-sm:         0 2px 8px rgba(0,0,0,0.06);
  --sh:            0 6px 28px rgba(0,0,0,0.09);
  --sh-lg:         0 16px 52px rgba(0,0,0,0.12);
  --sh-xl:         0 28px 72px rgba(0,0,0,0.15);
  --r:             16px;
  --r-lg:          28px;
  --r-xl:          48px;
  --r-full:        9999px;
  --nav-h:         72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-muted); font-size: 1.05rem; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }

/* ===== PILLS / LABELS ===== */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.pill-pink   { background: var(--pink-light); color: var(--pink-dark); }
.pill-blue   { background: var(--blue-light); color: #0098C7; }
.pill-mint   { background: var(--mint-light); color: #058A64; }
.pill-purple { background: var(--purple-light); color: var(--purple); }
.pill-yellow { background: var(--yellow-light); color: #A87B00; }
.pill-coral  { background: var(--coral-light); color: #C04830; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255,107,168,0.35);
}
.btn-primary:hover {
  background: var(--pink-dark);
  box-shadow: 0 8px 32px rgba(255,107,168,0.45);
  transform: translateY(-2px);
}
.btn-outline {
  border: 2px solid var(--pink);
  color: var(--pink);
}
.btn-outline:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--text);
  padding-left: 0;
}
.btn-ghost:hover { color: var(--pink); }
.btn-dark {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 6px 24px rgba(26,26,46,0.25);
}
.btn-dark:hover {
  background: #2D2D4E;
  box-shadow: 0 8px 32px rgba(26,26,46,0.35);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,254,249,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--sh-sm);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1;
}
.logo-the { color: var(--text-muted); font-weight: 500; font-size: 0.9rem; }
.logo-squeeze { color: var(--pink); }
.logo-store { color: var(--text); }
.logo-dot { color: var(--yellow); font-size: 1.8rem; line-height: 0; margin-bottom: -4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--pink-light);
  color: var(--pink-dark);
}
.nav-cta {
  background: var(--pink) !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(255,107,168,0.3);
}
.nav-cta:hover {
  background: var(--pink-dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO SECTIONS ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #fff;
  border-radius: var(--r-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--sh-sm);
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.hero-badge span { color: var(--pink); }
.hero h1 { margin-bottom: 20px; }
.hero p { font-size: 1.15rem; margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Hero page (non-home) */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { max-width: 540px; margin: 0 auto; font-size: 1.1rem; }

/* ===== FLOATING BLOB BACKGROUNDS ===== */
.blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  opacity: 0.18;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 {
  width: 600px; height: 600px;
  background: var(--pink);
  top: -200px; right: -150px;
  animation-delay: 0s;
}
.blob-2 {
  width: 400px; height: 400px;
  background: var(--blue);
  bottom: -100px; left: -100px;
  animation-delay: -3s;
}
.blob-3 {
  width: 300px; height: 300px;
  background: var(--yellow);
  top: 40%; left: 20%;
  animation-delay: -5s;
}
.blob-4 {
  width: 500px; height: 500px;
  background: var(--mint);
  top: -150px; left: -150px;
  animation-delay: -2s;
}
.blob-5 {
  width: 350px; height: 350px;
  background: var(--purple);
  bottom: -50px; right: -80px;
  animation-delay: -6s;
}

@keyframes blobFloat {
  0%, 100% {
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    transform: translate(0, 0) scale(1);
  }
  25% {
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
    transform: translate(20px, -20px) scale(1.02);
  }
  50% {
    border-radius: 70% 30% 50% 50% / 40% 70% 30% 60%;
    transform: translate(-15px, 15px) scale(0.98);
  }
  75% {
    border-radius: 30% 70% 60% 40% / 70% 30% 70% 30%;
    transform: translate(10px, 25px) scale(1.01);
  }
}

/* ===== PARALLAX DIVIDER ===== */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,168,0.85), rgba(139,92,246,0.80));
}
.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 60px 24px;
}
.parallax-content h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.parallax-content p  { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 32px; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

/* ===== CARDS ===== */
.card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--sh);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
  border: 1px solid var(--border);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
}
.product-img-wrap {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.squish-ball {
  width: 130px;
  height: 130px;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: rgba(255,255,255,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  animation: morphBall 5s ease-in-out infinite;
  backdrop-filter: blur(4px);
}
.squish-ball-sm {
  width: 80px; height: 80px;
  font-size: 2rem;
}
@keyframes morphBall {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  25%       { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
  50%       { border-radius: 70% 30% 50% 50% / 40% 70% 30% 60%; }
  75%       { border-radius: 30% 70% 40% 60% / 70% 30% 70% 30%; }
}
.product-body { padding: 22px 24px 26px; }
.product-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.product-body p  { font-size: 0.9rem; margin-bottom: 18px; line-height: 1.55; }
.product-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--pink);
  margin-bottom: 14px;
}
.product-price span { font-size: 0.8rem; font-weight: 500; color: var(--text-muted); margin-left: 4px; }
.product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.tag {
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--off-white);
  color: var(--text-muted);
}

/* ===== USP STRIP ===== */
.usp-strip {
  background: var(--dark);
  padding: 20px 0;
}
.usp-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
}
.usp-icon {
  width: 32px; height: 32px;
  background: var(--pink);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 32px;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.fi-pink   { background: var(--pink-light); }
.fi-blue   { background: var(--blue-light); }
.fi-mint   { background: var(--mint-light); }
.fi-yellow { background: var(--yellow-light); }
.fi-purple { background: var(--purple-light); }
.fi-coral  { background: var(--coral-light); }
.feature-card h4 { margin-bottom: 8px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--sh);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 18px; left: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--pink-light);
  line-height: 1;
}
.testimonial-card p {
  padding-top: 20px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.testimonial-author span   { font-size: 0.8rem; color: var(--text-muted); }
.stars { color: #FFD93D; letter-spacing: 1px; font-size: 0.9rem; margin-bottom: 6px; }

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }

/* ===== TWO COL LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ===== VISUAL PANEL ===== */
.visual-panel {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-panel-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.floating-orbs {
  position: relative;
  width: 280px;
  height: 280px;
}
.orb {
  position: absolute;
  border-radius: 50%;
  animation: orbFloat 4s ease-in-out infinite;
}
.orb-main {
  width: 160px; height: 160px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #FF6BA8, #FF9EC6);
  box-shadow: 0 16px 48px rgba(255,107,168,0.35);
}
.orb-sm1 {
  width: 80px; height: 80px;
  top: 10px; right: 20px;
  background: linear-gradient(135deg, #4CC9F0, #90E0FF);
  animation-delay: -1.5s;
  box-shadow: 0 8px 24px rgba(76,201,240,0.3);
}
.orb-sm2 {
  width: 60px; height: 60px;
  bottom: 20px; left: 10px;
  background: linear-gradient(135deg, #06D6A0, #5EFFD8);
  animation-delay: -3s;
  box-shadow: 0 8px 24px rgba(6,214,160,0.3);
}
.orb-sm3 {
  width: 44px; height: 44px;
  top: 50%; right: 0;
  background: linear-gradient(135deg, #FFD93D, #FFE98A);
  animation-delay: -0.8s;
  box-shadow: 0 6px 18px rgba(255,217,61,0.3);
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-12px) scale(1.04); }
}
.orb-main { animation: orbFloat 5s ease-in-out infinite; }

/* ===== SHIPPING / INFO CARDS ===== */
.info-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 28px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.info-icon {
  width: 52px; height: 52px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.info-card h4 { margin-bottom: 4px; }
.info-card p  { font-size: 0.9rem; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 720px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--r);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--sh-sm);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--off-white); }
.faq-chevron {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 20px; }
.faq-answer-inner p { font-size: 0.95rem; }

/* ===== CONTACT FORM ===== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,107,168,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ===== TRUST BADGES ===== */
.trust-bar {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 32px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.trust-badge-icon {
  width: 48px; height: 48px;
  background: #fff;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--sh-sm);
}
.trust-badge span { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); }

/* ===== BANNER CTA ===== */
.cta-banner {
  background: linear-gradient(135deg, #FF6BA8 0%, #845EF7 50%, #4CC9F0 100%);
  border-radius: var(--r-xl);
  padding: 64px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 32px; }
.cta-banner .btn-white {
  background: #fff;
  color: var(--pink);
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}
.cta-banner .btn-white:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}
.footer-logo .f-logo-squeeze { color: var(--pink); }
.footer-desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r);
  border-left: 3px solid var(--pink);
}
.footer-col h5 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== PAGE-SPECIFIC BG GRADIENTS ===== */
.hero-home-bg {
  background: linear-gradient(145deg, #FFF0F7 0%, #F0F5FF 40%, #F0FFF9 100%);
}
.hero-products-bg {
  background: linear-gradient(145deg, #F0F9FF 0%, #FFF0F7 60%, #FFFAE0 100%);
}
.hero-why-bg {
  background: linear-gradient(145deg, #F5F0FF 0%, #FFF0F7 50%, #F0FFF9 100%);
}
.hero-about-bg {
  background: linear-gradient(145deg, #FFFAE0 0%, #FFF0F7 50%, #F0F9FF 100%);
}
.hero-contact-bg {
  background: linear-gradient(145deg, #F0FFF9 0%, #F0F9FF 50%, #FFF0F7 100%);
}

/* Light bg sections */
.bg-off-white { background: var(--off-white); }
.bg-pink-light { background: var(--pink-light); }
.bg-white { background: #fff; }

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  position: relative;
}
.step {
  text-align: center;
  padding: 32px 24px;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: var(--r-full);
  background: var(--pink);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 20px rgba(255,107,168,0.3);
}
.step h4 { margin-bottom: 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { max-width: 100%; }
}

@media (max-width: 720px) {
  .nav-links { display: none; flex-direction: column; gap: 4px; }
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(255,254,249,0.97);
    backdrop-filter: blur(16px);
    padding: 16px;
    box-shadow: var(--sh);
    z-index: 999;
  }
  .nav-links.mobile-open a {
    padding: 12px 16px;
    border-radius: var(--r);
    width: 100%;
  }
  .nav-toggle { display: flex; }
  .navbar { position: fixed; }
  .footer-grid { grid-template-columns: 1fr; }
  .usp-items { flex-direction: column; gap: 16px; }
  .trust-bar { gap: 24px; padding: 24px; }
  .cta-banner { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .section { padding: 64px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .parallax-section { background-attachment: scroll; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
