/* =========================================================
   TINY COLOR ADVENTURES — Landing Page Styles
   ========================================================= */

:root {
  --yellow: #FFC93C;
  --yellow-deep: #FFB627;
  --coral: #FF6F61;
  --orange: #FF8C42;
  --pink: #FF6FA5;
  --fuchsia: #E85DAE;
  --sky: #4DC9E6;
  --blue: #2E9CCA;
  --turquoise: #2DD4BF;
  --mint: #9BE8D8;
  --violet: #9B7EDE;
  --lilac: #C9B6F2;
  --cream: #FFF8EC;
  --white: #FFFFFF;
  --ink: #2B2545;
  --ink-soft: #4A4463;
  --gray-text: #5b5570;

  --font-title: 'Baloo 2', 'Fredoka', cursive, sans-serif;
  --font-title2: 'Fredoka', cursive, sans-serif;
  --font-body: 'Nunito', sans-serif;

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;

  --shadow-soft: 0 12px 30px rgba(43, 37, 69, 0.12);
  --shadow-card: 0 10px 25px rgba(43, 37, 69, 0.10);
  --shadow-btn: 0 10px 24px rgba(255, 111, 97, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.container.narrow { max-width: 880px; }

.section { padding: 80px 0; position: relative; overflow: hidden; }
@media (max-width: 640px) { .section { padding: 56px 0; } }

.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-mint { background: linear-gradient(180deg, #EAFBF6 0%, #D9F5EC 100%); }
.section-lilac { background: linear-gradient(180deg, #F3EEFD 0%, #EDE4FB 100%); }
.section-sky { background: linear-gradient(135deg, #2E9CCA 0%, #4DC9E6 55%, #2DD4BF 100%); }
.section-turquoise { background: linear-gradient(135deg, #2DD4BF 0%, #2E9CCA 100%); }
.section-gradient-1 { background: linear-gradient(135deg, #FF6F61 0%, #FF8C42 45%, #FFC93C 100%); }
.section-offer { background: linear-gradient(135deg, #FFC93C 0%, #FF8C42 50%, #FF6FA5 100%); position: relative; }
.section-final { background: linear-gradient(160deg, #9B7EDE 0%, #2E9CCA 55%, #2DD4BF 100%); position: relative; }

/* ============= TYPOGRAPHY ============= */
.h1 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.8rem, 4.4vw, 2.8rem);
  line-height: 1.12;
  margin: 12px 0 12px;
  color: var(--ink);
}
.h2 {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--ink);
}
.h3 {
  font-family: var(--font-title2);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  margin: 0 0 24px;
}
.h3.accent { color: var(--coral); }
.center { text-align: center; }
.center-block { display: block; margin-left: auto; margin-right: auto; width: fit-content; }
.light { color: var(--white); }
.lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--gray-text);
  max-width: 720px;
  margin: 0 auto 16px;
}
.lead.light { color: rgba(255,255,255,0.95); }
.quote-big {
  font-family: var(--font-title2);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--coral);
  font-weight: 600;
  margin: 24px 0;
}
.callout {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: var(--violet);
  font-weight: 700;
  margin: 28px 0 8px;
}
.fineprint { font-size: 0.85rem; color: var(--gray-text); opacity: 0.85; margin-top: 14px; }
.fineprint.light { color: rgba(255,255,255,0.85); }

/* ============= TOP BAR ============= */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,248,236,0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 14px rgba(43,37,69,0.08);
}
.topbar-inner {
  max-width: 1180px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 8px; font-family: var(--font-title); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.brand-emoji { font-size: 1.4rem; }
.btn-topbar { font-size: 0.85rem; padding: 10px 18px; }

/* ============= BUTTONS ============= */
.btn {
  display: inline-block;
  font-family: var(--font-title2);
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-3px) scale(1.02); filter: brightness(1.04); }
.btn:focus-visible { outline: 3px solid var(--violet); outline-offset: 3px; }

.btn-cta {
  background: linear-gradient(135deg, var(--coral), var(--pink));
  color: var(--white);
  padding: 16px 24px;
  font-size: 1rem;
  box-shadow: var(--shadow-btn);
}
.btn-cta-white {
  background: var(--white);
  color: var(--coral);
  padding: 16px 30px;
  font-size: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  display: inline-block;
  margin-top: 14px;
}
.btn-big { width: 100%; max-width: 480px; }
.btn-xl { font-size: 1.2rem; padding: 22px 32px; }

/* ============= HERO ============= */
.hero {
  position: relative;
  padding: 24px 0 40px;
  background: linear-gradient(160deg, #FFF3D6 0%, #FFE8EF 45%, #E4F6FF 100%);
  overflow: hidden;
}
.hero-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
  position: relative; z-index: 2;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
}

.badge {
  display: inline-block;
  font-family: var(--font-title2);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.badge-rainbow {
  background: linear-gradient(90deg, var(--coral), var(--orange), var(--yellow), var(--turquoise), var(--violet));
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.badge-fire {
  background: var(--coral);
  color: var(--white);
  margin: 10px 0;
}
.badge-note {
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
  margin-top: 20px;
  box-shadow: var(--shadow-card);
}
.badge-save {
  background: var(--turquoise);
  color: var(--white);
  font-weight: 700;
  margin: 10px 0 18px;
}

.hero-sub { font-size: 1.02rem; color: var(--ink-soft); max-width: 560px; margin-bottom: 8px; }
.hero-emotion {
  font-family: var(--font-title2);
  font-weight: 600;
  font-size: 1rem;
  color: var(--violet);
  margin-bottom: 14px;
}
.hero-stats {
  list-style: none; margin: 0 0 18px; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hero-stats li {
  background: var(--white);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  box-shadow: var(--shadow-card);
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  box-shadow: var(--shadow-soft);
  max-width: 480px;
  border: 3px solid #FFE1C4;
}
.price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 2px; }
.price-label { font-size: 0.78rem; font-weight: 700; color: var(--gray-text); letter-spacing: 0.5px; }
.price-old { font-size: 1.1rem; color: #B4AFC4; text-decoration: line-through; }
.price-now {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.6rem);
  color: var(--coral);
  line-height: 1;
  margin: 4px 0 2px;
}
.price-now-alt { color: var(--white); }
.light-old { color: rgba(255,255,255,0.75) !important; }
.price-save {
  display: inline-block;
  font-family: var(--font-title2);
  font-weight: 700;
  color: var(--white);
  background: var(--turquoise);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.microcopy { font-size: 0.78rem; color: var(--gray-text); margin-top: 10px; text-align: center; }

.hero-art { position: relative; min-height: 360px; display: flex; align-items: center; justify-content: center; }
.hero-mainimg {
  width: 100%; max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  position: relative; z-index: 3;
}
.fan-cover {
  position: absolute;
  width: 130px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.22);
  z-index: 1;
  animation: floaty 5s ease-in-out infinite;
}
.fc-1 { top: -6%; left: -8%; transform: rotate(-14deg); animation-delay: 0s; }
.fc-2 { top: 55%; left: -12%; transform: rotate(10deg); animation-delay: 0.6s; }
.fc-3 { top: -10%; right: -10%; transform: rotate(12deg); animation-delay: 1.2s; }
.fc-4 { top: 58%; right: -10%; transform: rotate(-10deg); animation-delay: 1.8s; }
@media (max-width: 960px) {
  .fan-cover { width: 90px; }
}
@media (max-width: 640px) {
  .fan-cover { display: none; }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--r, 0deg)); }
}

/* decorative background elements */
.hero-decor, .offer-decor, .final-decor { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.deco { position: absolute; opacity: 0.85; }
.deco.star { font-size: 1.8rem; animation: twinkle 3s ease-in-out infinite; }
.deco.cloud { font-size: 2.6rem; opacity: 0.6; animation: drift 12s ease-in-out infinite; }
.deco.confetti { font-size: 1.8rem; animation: twinkle 2.6s ease-in-out infinite; }
.s1 { top: 8%; left: 6%; }
.s2 { top: 14%; right: 10%; animation-delay: 1s; }
.c1 { top: 4%; left: 40%; }
.c2 { bottom: 10%; right: 20%; animation-delay: 2s; }
.confetti.c1 { top: 20%; left: 15%; }
.confetti.c2 { top: 12%; right: 15%; animation-delay: 0.8s; }
.confetti.c3 { bottom: 15%; left: 45%; animation-delay: 1.4s; }
@keyframes twinkle { 0%,100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes drift { 0%,100% { transform: translateX(0); } 50% { transform: translateX(30px); } }

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
}
.blob1 { width: 220px; height: 220px; background: radial-gradient(circle, rgba(255,201,60,0.35), transparent 70%); bottom: -60px; left: -60px; }
.blob2 { width: 260px; height: 260px; background: radial-gradient(circle, rgba(77,201,230,0.3), transparent 70%); top: -80px; right: -80px; }
.bubble { position: absolute; border-radius: 50%; border: 3px solid rgba(77,201,230,0.4); }
.b1 { width: 40px; height: 40px; top: 30%; left: 3%; }
.b2 { width: 24px; height: 24px; top: 60%; right: 5%; }

/* ============= PROBLEM SECTION ============= */
.transition-row {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  flex-wrap: wrap; margin: 34px 0 10px;
}
.transition-from, .transition-to { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 2.2rem; }
.transition-from span, .transition-to span { font-size: 0.9rem; font-weight: 700; color: var(--gray-text); }
.transition-arrow { font-size: 1.8rem; color: var(--coral); }
.transition-to { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 10px; }
.chip {
  background: var(--white);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: var(--shadow-card);
  color: var(--ink);
}
.chip-dark { background: rgba(255,255,255,0.9); color: var(--violet); }

/* ============= EQUATION ============= */
.equation {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 14px; margin: 40px auto; max-width: 980px;
}
.eq-item {
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-family: var(--font-title2);
  font-weight: 700;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.95rem;
  min-width: 120px;
  box-shadow: var(--shadow-card);
}
.eq-op { font-size: 1.8rem; color: var(--white); font-weight: 700; }
.eq-equals { font-size: 2.2rem; }
.eq-result {
  background: var(--white);
  color: var(--coral);
  font-family: var(--font-title);
  font-weight: 700;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 1.15rem;
  box-shadow: 0 10px 26px rgba(0,0,0,0.2);
}
.offer-mini { text-align: center; margin-top: 20px; }

/* ============= WORLDS GRID ============= */
.worlds-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin: 40px 0 10px;
}
@media (max-width: 900px) { .worlds-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .worlds-grid { grid-template-columns: 1fr; } }

.world-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.world-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.world-card img { border-radius: var(--radius-md); margin-bottom: 14px; width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.world-card h3 { font-family: var(--font-title2); font-size: 1.15rem; margin: 0 0 8px; }
.world-card p { font-size: 0.92rem; color: var(--gray-text); margin: 0; }

/* ============= PAGES STACK ============= */
.pages-stack {
  display: flex; justify-content: center; align-items: flex-end; gap: -20px; margin: 40px 0 20px;
  flex-wrap: wrap; position: relative; min-height: 260px;
}
.stack-img {
  width: 170px; border-radius: 14px; box-shadow: 0 14px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease; margin-left: -30px;
}
.stack-img:first-child { margin-left: 0; }
.stack-img:hover { transform: translateY(-14px) scale(1.05); z-index: 5; }
.s-1 { transform: rotate(-10deg); }
.s-2 { transform: rotate(-4deg); }
.s-3 { transform: rotate(2deg); }
.s-4 { transform: rotate(6deg); }
.s-5 { transform: rotate(12deg); }
@media (max-width: 720px) {
  .pages-stack { gap: 6px; }
  .stack-img { width: 110px; margin-left: -18px; }
}

/* ============= CHECKLIST GRID ============= */
.checklist-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 34px 0;
}
@media (max-width: 640px) { .checklist-grid { grid-template-columns: 1fr; } }
.check-item {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid #FFE8CC;
}

.checklist-simple { list-style: none; padding: 0; margin: 30px 0; display: grid; gap: 12px; }
.checklist-simple li {
  background: var(--mint);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
}

.price-block { margin: 30px auto 0; }
.price-block .price-old { display: block; margin-bottom: 6px; }
.price-block .btn { margin-top: 16px; }

/* ============= BENEFITS ============= */
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px;
}
@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease;
}
.benefit-card:hover { transform: translateY(-6px); }
.benefit-icon { font-size: 2.4rem; display: block; margin-bottom: 12px; }
.benefit-card h3 { font-family: var(--font-title2); font-size: 1.1rem; margin: 0 0 8px; }
.benefit-card p { font-size: 0.92rem; color: var(--gray-text); margin: 0; }

/* ============= GALLERY ============= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 1/1;
}
.gallery-item.tall { aspect-ratio: 3/4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent);
  color: var(--white); font-family: var(--font-title2); font-weight: 600;
  font-size: 0.85rem; padding: 18px 10px 8px; text-align: center; letter-spacing: 0.5px;
}

/* ============= STATS ============= */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 36px 0;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 14px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 3px solid #FFE8CC;
}
.stat-num {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--coral);
}
.stat-label { font-size: 0.78rem; font-weight: 700; color: var(--gray-text); letter-spacing: 0.4px; }

/* ============= SPLIT (LEARN/FUN) ============= */
.split-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; margin-top: 40px;
}
@media (max-width: 800px) {
  .split-grid { grid-template-columns: 1fr; }
  .split-center { order: -1; }
}
.split-col {
  border-radius: var(--radius-lg);
  padding: 30px 26px;
}
.split-learn { background: linear-gradient(135deg, #E4F6FF, #D3EEFF); }
.split-fun { background: linear-gradient(135deg, #FFE8EF, #FFDCF0); }
.split-col h3 { font-family: var(--font-title2); font-size: 1.3rem; margin: 0 0 16px; }
.split-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.split-col li { font-weight: 700; font-size: 0.98rem; }
.split-center {
  text-align: center;
  background: linear-gradient(135deg, var(--violet), var(--coral));
  border-radius: 50%;
  width: 220px; height: 220px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); padding: 20px; margin: 0 auto;
  box-shadow: var(--shadow-soft);
}
.split-center-emoji { font-size: 2.2rem; }
.split-center h3 { font-family: var(--font-title); font-size: 1.05rem; margin: 6px 0; }
.split-center p { font-size: 0.75rem; margin: 0; opacity: 0.95; }

/* ============= BILINGUAL ============= */
.bilingual-showcase {
  display: flex; justify-content: center; gap: 26px; flex-wrap: wrap; margin: 36px 0 10px;
}
.bilingual-showcase img {
  width: 280px; border-radius: var(--radius-md); box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}
.bilingual-showcase img:hover { transform: translateY(-8px) rotate(-1deg); }

/* ============= STEPS ============= */
.steps-row { display: flex; justify-content: center; gap: 26px; margin-top: 36px; flex-wrap: wrap; }
.step-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  flex: 1; min-width: 180px; max-width: 240px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: var(--white); font-family: var(--font-title);
  font-weight: 700; width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
}
.step-icon { font-size: 2.2rem; display: block; margin: 12px 0 10px; }
.step-box h3 { font-family: var(--font-title2); font-size: 1rem; margin: 0; }
.tag-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

/* ============= MOMENTS ============= */
.moments-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px;
}
@media (max-width: 800px) { .moments-grid { grid-template-columns: repeat(2, 1fr); } }
.moment-card {
  background: linear-gradient(135deg, #FFF3D6, #FFE1C4);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  font-size: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  box-shadow: var(--shadow-card);
}
.moment-card span { font-size: 0.85rem; font-weight: 700; color: var(--ink); font-family: var(--font-body); }

/* ============= BEFORE/AFTER ============= */
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 34px; }
@media (max-width: 640px) { .before-after { grid-template-columns: 1fr; } }
.ba-col { border-radius: var(--radius-lg); padding: 28px 24px; }
.ba-before { background: #F1EEF7; }
.ba-after { background: linear-gradient(135deg, #FFF3D6, #FFE1C4); }
.ba-col h3 { font-family: var(--font-title2); text-align: center; margin: 0 0 18px; font-size: 1.2rem; }
.ba-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.ba-col li { font-weight: 700; font-size: 0.95rem; }

/* ============= OFFER COVERS ============= */
.offer-covers, .final-covers {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin: 32px 0;
}
.offer-covers img, .final-covers img {
  width: 130px; border-radius: 14px; box-shadow: 0 12px 26px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}
.offer-covers img:hover, .final-covers img:hover { transform: translateY(-8px) scale(1.05); }
.final-covers img.final-main { width: 180px; }
@media (max-width: 640px) {
  .offer-covers img, .final-covers img { width: 90px; }
  .final-covers img.final-main { width: 130px; }
}

/* ============= COMPARISON ============= */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 36px; }
@media (max-width: 640px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-col { border-radius: var(--radius-lg); padding: 30px 26px; }
.compare-basic { background: var(--white); border: 2px dashed #D8D2E8; color: var(--gray-text); }
.compare-kit { background: linear-gradient(135deg, var(--violet), var(--fuchsia)); color: var(--white); box-shadow: var(--shadow-soft); }
.compare-col h3 { font-family: var(--font-title2); text-align: center; margin: 0 0 18px; }
.compare-col p { margin: 10px 0; font-weight: 700; }
.compare-price { font-size: 1.2rem; margin-top: 16px !important; }

/* ============= ACCORDION ============= */
.accordion { margin-top: 32px; display: grid; gap: 12px; }
.acc-item {
  background: var(--cream);
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid #FFE8CC;
}
.acc-trigger {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 18px 20px; font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  color: var(--ink); display: flex; justify-content: space-between; align-items: center;
  gap: 10px;
}
.acc-trigger:focus-visible { outline: 3px solid var(--violet); outline-offset: -3px; }
.acc-icon { font-size: 1.3rem; color: var(--coral); transition: transform 0.25s ease; flex-shrink: 0; }
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 20px; }
.acc-item.open .acc-panel { max-height: 200px; padding-bottom: 18px; }
.acc-panel p { margin: 0; color: var(--gray-text); font-size: 0.95rem; }

/* ============= FOOTER ============= */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 50px 0 20px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 30px; padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; text-align: center; } }
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-brand .brand-text { font-family: var(--font-title); font-size: 1.2rem; color: var(--white); }
.footer-brand p { margin: 6px 0 0; font-size: 0.9rem; }
.footer-info p { margin: 4px 0; font-size: 0.9rem; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
@media (max-width: 700px) { .footer-links { align-items: center; } }
.footer-links a { font-size: 0.9rem; }
.footer-links a:hover { color: var(--turquoise); }
.footer-copy { text-align: center; font-size: 0.8rem; margin-top: 20px; opacity: 0.6; }

/* ============= STICKY MOBILE CTA ============= */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 -6px 20px rgba(0,0,0,0.15);
  padding: 10px 16px;
  display: none;
  align-items: center; justify-content: space-between;
  gap: 12px; z-index: 200;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
}
.sticky-cta-info { display: flex; flex-direction: column; font-size: 0.75rem; line-height: 1.3; }
.sticky-label { font-weight: 700; color: var(--gray-text); }
.sticky-price s { color: #B4AFC4; }
.sticky-price strong { color: var(--coral); font-size: 1rem; }
.btn-sticky { padding: 12px 18px; font-size: 0.85rem; white-space: nowrap; }

@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 68px; }
}

/* AOS override for reduced motion safety */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
