/* =========================================================
   רוני מג'יק — Magic Trust palette
   Cream + Indigo + Gold. Built RTL for Hebrew.
   ========================================================= */

:root {
  --cream: #FFFBF5;
  --cream-2: #FFF6E8;
  --indigo: #1A1B4B;
  --indigo-soft: #2B2D6E;
  --indigo-deep: #0E0F35;
  --gold: #F4B83C;
  --gold-soft: #FFD978;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --ink: #15172E;
  --ink-2: #3A3D5C;
  --muted: #6E7191;
  --line: #E9E2D2;

  /* Polish-round additions: tactile palette */
  --peach: #FFE4D6;
  --mint:  #DEF2E7;
  --rose:  #FCDDE2;
  --butter:#FFF1C8;
  --rose-deep: #E94B6A;

  /* Buttery shadows: warmer tint, more diffuse */
  --shadow-sm: 0 4px 14px rgba(244, 184, 60, 0.10), 0 1px 3px rgba(26, 27, 75, 0.06);
  --shadow-md: 0 12px 36px rgba(244, 184, 60, 0.14), 0 4px 12px rgba(26, 27, 75, 0.08);
  --shadow-lg: 0 32px 80px rgba(244, 184, 60, 0.16), 0 12px 32px rgba(26, 27, 75, 0.10);

  /* Easings — 'butter' is silky; 'spring' is gently bouncy */
  --ease-butter: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 38px;
  --r-pill: 999px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: 'Rubik', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Match the original magicroni.co.il: Rubik default + Open Sans for paragraphs */
p {
  font-family: 'Open Sans', 'Rubik', system-ui, sans-serif;
}

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

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

p { margin: 0 0 1em; }

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

.container.narrow {
  max-width: 840px;
}

.center { text-align: center; }

h1, h2, h3 {
  font-family: 'Rubik', system-ui, sans-serif;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--indigo);
  margin: 0 0 24px;
}

h2 em, h1 em, .pivot-h2 em {
  font-style: normal;
  color: var(--gold);
  background: linear-gradient(180deg, transparent 60%, rgba(244,184,60,0.25) 60%);
  padding: 0 4px;
}

h2 { font-size: clamp(28px, 4vw, 44px); }
h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  padding: 6px 14px;
  background: rgba(244, 184, 60, 0.12);
  border-radius: var(--r-pill);
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  padding: 6px 16px;
  background: rgba(244, 184, 60, 0.14);
  border-radius: var(--r-pill);
  text-transform: uppercase;
}

.section-tag.light {
  color: var(--gold-soft);
  background: rgba(244, 184, 60, 0.18);
}

.section-lead {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 720px;
  margin-bottom: 40px;
}

.lead { font-size: 19px; color: var(--ink-2); }
.lead.bold { font-weight: 700; color: var(--indigo); }

.white { color: var(--cream) !important; }

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: 'Rubik', sans-serif;
  font-weight: 800;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  white-space: nowrap;
}

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

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1FBF5E;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--indigo);
  border: 2px solid var(--indigo);
}

.btn-ghost:hover { background: var(--indigo); color: var(--cream); }

.btn-sm  { padding: 10px 18px; font-size: 14px; }
.btn-lg  { padding: 16px 34px; font-size: 17px; }
.btn-xl  { padding: 20px 44px; font-size: 19px; }
.btn.full { width: 100%; justify-content: center; }

.wa-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  line-height: 1;
}

.wa-glyph svg {
  width: 100%;
  height: 100%;
}

.btn-sm .wa-glyph { width: 18px; height: 18px; }
.btn-lg .wa-glyph { width: 22px; height: 22px; }
.btn-xl .wa-glyph { width: 26px; height: 26px; }

/* ===== Header ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 18px;
}

.logo img {
  height: 40px;
  width: auto;
}

.site-nav {
  display: flex;
  gap: 26px;
  flex: 1;
  justify-content: center;
}

.site-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  transition: color 0.15s ease;
}

.site-nav a:hover { color: var(--indigo); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--indigo);
  font-size: 15px;
}

.phone-icon { font-size: 14px; }

@media (max-width: 880px) {
  .site-nav { display: none; }
  .phone-text { display: none; }
  .logo img { height: 34px; }
  .header-inner { padding: 10px 16px; }
}

/* ===== Hero ===== */

.hero {
  padding: 64px 0 40px;
  background:
    radial-gradient(circle at 90% -10%, rgba(244,184,60,0.18), transparent 50%),
    radial-gradient(circle at -10% 110%, rgba(26,27,75,0.06), transparent 50%),
    var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}

.hero-text h1 {
  font-size: clamp(34px, 5.2vw, 60px);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 21px;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 20px;
}

.hero-body, .hero-mood {
  font-size: 16px;
  color: var(--ink-2);
}

.quote-pull {
  font-family: 'Rubik', system-ui, sans-serif;
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 12px;
}

.cta-fineprint {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.hero-photo {
  position: relative;
}

.hero-photo-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--indigo);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26,27,75,0.25));
  pointer-events: none;
}

.sparkle {
  position: absolute;
  width: 22px;
  height: 22px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(0.5px);
  animation: twinkle 2.6s ease-in-out infinite;
}

.sparkle.s1 { top: 8%; right: -10px; animation-delay: 0s; width: 28px; height: 28px; }
.sparkle.s2 { top: 40%; left: -14px; animation-delay: 0.6s; }
.sparkle.s3 { bottom: 14%; right: 30%; animation-delay: 1.2s; width: 16px; height: 16px; }

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ===== Trust strip ===== */

.trust-strip {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px 32px;
  box-shadow: var(--shadow-sm);
}

.trust-count strong {
  display: block;
  font-family: 'Rubik', system-ui, sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--indigo);
  line-height: 1.1;
  margin-bottom: 4px;
}

.trust-count span {
  font-size: 14px;
  color: var(--muted);
}

.trust-quotes {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.trust-quotes li {
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
  position: relative;
  padding-right: 18px;
}

.trust-quotes li::before {
  content: '★';
  color: var(--gold);
  position: absolute;
  right: 0;
  font-size: 13px;
}

@media (max-width: 880px) {
  .hero { padding: 40px 0 24px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
  }
  .hero-photo-frame { aspect-ratio: 5 / 4; }
  .trust-strip {
    grid-template-columns: 1fr;
    text-align: right;
    padding: 22px;
  }
}

/* ===== Generic section ===== */

.section {
  padding: 88px 0;
}

.section h2 { margin-bottom: 28px; }

@media (max-width: 880px) {
  .section { padding: 56px 0; }
}

/* ===== Section: Problem ===== */

.section-problem {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.problem-list {
  display: grid;
  gap: 8px;
  background: #fff;
  padding: 28px 32px;
  border-radius: var(--r-md);
  border-right: 5px solid var(--gold);
  margin: 28px 0;
  box-shadow: var(--shadow-sm);
}

.problem-list p {
  margin: 0;
  font-size: 17px;
}

/* ===== Section: How ===== */

.section-how {
  background: var(--cream);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.how-text p { font-size: 17px; }

.how-text .callout {
  font-family: 'Rubik', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--indigo);
  background: rgba(244,184,60,0.12);
  padding: 18px 22px;
  border-radius: var(--r-md);
  margin-top: 16px;
}

.how-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 14px;
}

.how-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}

.how-photo.p1 { grid-column: 1 / 2; grid-row: 1 / 3; height: 100%; }
.how-photo.p2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.how-photo.p3 { grid-column: 2 / 3; grid-row: 2 / 3; }

@media (max-width: 880px) {
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
  .how-photos {
    grid-template-rows: 160px 160px;
  }
}

/* ===== Section: Fits ===== */

.section-fits {
  background: var(--cream-2);
}

.fits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fit-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  text-align: right;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.fit-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 14px;
}

.icon-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(244,184,60,0.18), rgba(244,184,60,0.05));
  color: var(--indigo);
  margin-bottom: 14px;
}

.icon-svg svg { width: 28px; height: 28px; }

.fit-card h3 { color: var(--indigo); margin-bottom: 10px; }

.fit-card p {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0;
}

@media (max-width: 880px) {
  .fits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .fits-grid { grid-template-columns: 1fr; }
}

/* ===== Section: Why ===== */

.section-why {
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why-card {
  background: #fff;
  padding: 30px 28px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.why-num {
  display: inline-block;
  font-family: 'Rubik', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.55;
}

.why-card h3 { color: var(--indigo); }
.why-card p { color: var(--ink-2); margin: 0; font-size: 15px; }

@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ===== Section: Reassurance ===== */

.section-reassure {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}

.reassure-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.reassure-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  color: var(--ink);
}

.check {
  flex: 0 0 26px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  margin-top: 2px;
}

@media (max-width: 540px) {
  .reassure-list { grid-template-columns: 1fr; padding: 22px; }
}

/* ===== Section: Included ===== */

.section-included {
  background: var(--cream);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.included-card {
  background: #fff;
  padding: 28px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  text-align: right;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.included-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.included-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 14px;
}

.included-card.icon-svg { /* not used; the icon is an inline span */ }

.included-card h3 { color: var(--indigo); margin-bottom: 8px; font-size: 18px; }
.included-card p { font-size: 15px; color: var(--ink-2); margin: 0; }

@media (max-width: 880px) {
  .included-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .included-grid { grid-template-columns: 1fr; }
}

/* ===== Section: Pivot ===== */

.section-pivot {
  background:
    radial-gradient(circle at 80% 20%, rgba(244,184,60,0.15), transparent 50%),
    var(--cream-2);
  text-align: center;
}

.pivot-h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 32px;
}

.pivot-body {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 18px;
  color: var(--ink-2);
}

.pivot-body p { margin-bottom: 0.6em; }

.pivot-quote {
  font-family: 'Rubik', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--indigo);
  margin: 14px 0 !important;
}

/* ===== Section: Testimonials ===== */

.section-testimonials {
  background: var(--cream);
}

.testimonial-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

.testimonial-pull {
  background: linear-gradient(160deg, var(--indigo) 0%, var(--indigo-soft) 100%);
  color: var(--cream);
  padding: 32px 28px;
  border-radius: var(--r-lg);
  margin: 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.testimonial-pull::before {
  content: '"';
  position: absolute;
  top: 0;
  right: 22px;
  font-family: 'Rubik', system-ui, sans-serif;
  font-size: 110px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.45;
}

.testimonial-pull p {
  position: relative;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
}

.testimonial-pull em {
  font-style: normal;
  font-weight: 800;
  color: var(--gold);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}

.testimonial {
  background: #fff;
  padding: 22px 26px;
  border-radius: var(--r-md);
  border-right: 4px solid var(--gold);
  margin: 0;
  box-shadow: var(--shadow-sm);
}

.testimonial p { margin: 0; font-size: 16px; color: var(--ink); }

.testimonial-screens-title {
  text-align: center;
  font-weight: 700;
  color: var(--indigo);
  font-size: 17px;
  margin-bottom: 22px;
}

.testimonial-screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-screens-grid img {
  width: 100%;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  background: #f3f3f7;
}

@media (max-width: 880px) {
  .testimonial-highlights { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-screens-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .testimonial-screens-grid img:nth-child(3) { display: none; }
}

/* ===== Section: Urgency ===== */

.section-urgency {
  background:
    radial-gradient(circle at 20% 20%, rgba(244,184,60,0.18), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(244,184,60,0.10), transparent 55%),
    linear-gradient(160deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: var(--cream);
  text-align: center;
}

.section-urgency h2 { color: var(--cream); }

.urgency-line {
  font-size: 19px;
  color: rgba(255,251,245,0.85);
  margin-bottom: 28px;
}

.urgency-line strong { color: var(--gold-soft); }

.urgency-fineprint {
  margin-top: 20px;
  color: rgba(255,251,245,0.7);
  font-size: 15px;
}

.phone-inline {
  color: var(--gold-soft);
  font-weight: 800;
  text-decoration: underline;
}

/* ===== FAQ ===== */

.section-faq {
  background: var(--cream);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 700;
  color: var(--indigo);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 900;
  color: var(--gold);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 24px 22px;
  color: var(--ink-2);
  font-size: 16px;
}

.faq-body p { margin: 0 0 12px; }

.faq-body .btn { margin-top: 8px; }

/* ===== Contact ===== */

.section-contact {
  background:
    linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-direct {
  background: #fff;
  border-radius: var(--r-md);
  padding: 22px 24px;
  border: 1px solid var(--line);
  margin-top: 24px;
}

.contact-direct-title {
  font-weight: 700;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-direct-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-2);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-weight: 700;
  color: var(--indigo);
  margin-left: 8px;
  margin-bottom: 8px;
  transition: background 0.15s ease;
}

.contact-direct-link:hover {
  background: var(--gold-soft);
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--indigo);
}

.contact-form label.full { grid-column: 1 / -1; }

.contact-form span {
  display: block;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-family: inherit;
  font-size: 16px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--gold);
  background: #fff;
}

.contact-form .btn { grid-column: 1 / -1; margin-top: 8px; }

.form-note {
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { grid-template-columns: 1fr; padding: 22px; }
}

/* ===== Footer ===== */

.site-footer {
  background:
    radial-gradient(circle at 50% 0%, rgba(244,184,60,0.18), transparent 50%),
    linear-gradient(180deg, var(--indigo-deep) 0%, var(--indigo) 100%);
  color: var(--cream);
  padding: 96px 0 48px;
  text-align: center;
}

.site-footer h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  margin-bottom: 20px;
}

.footer-lead {
  font-size: 18px;
  color: rgba(255,251,245,0.8);
  max-width: 640px;
  margin: 0 auto 32px;
}

.footer-meta {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255,251,245,0.6);
  font-size: 14px;
}

.footer-meta a {
  color: var(--gold-soft);
  font-weight: 700;
}

@media (max-width: 540px) {
  .site-footer { padding: 64px 0 36px; }
}

/* ===== Floating WhatsApp ===== */

.floating-wa {
  position: fixed;
  bottom: 22px;
  left: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: float-pulse 2.4s ease-in-out infinite;
}

.floating-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.7);
}

.floating-wa-icon svg { width: 32px; height: 32px; }

@keyframes float-pulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37,211,102,0.55); }
  50%      { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5), 0 0 0 16px rgba(37,211,102,0); }
}

/* ===== Reveal-on-scroll ===== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   BIRTHDAY-MAGIC ENHANCEMENTS
   Bunny ears, confetti drift, show-reel video, photo
   marquee, 5-star ratings, sparkle floats.
   ========================================================= */

/* ---- Big bunny peeking from behind hero photo ---- */

.hero-photo {
  position: relative;
}

.hero-bunny {
  position: absolute;
  top: -82px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 130px;
  z-index: 0; /* behind the photo frame */
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(26, 27, 75, 0.28));
  animation: bunny-peek 4.5s ease-in-out infinite;
  transform-origin: 50% 100%;
}

.hero-bunny svg { width: 100%; height: 100%; overflow: visible; }

@keyframes bunny-peek {
  0%, 100% { transform: translateX(-50%) translateY(0)   rotate(0deg); }
  25%      { transform: translateX(-50%) translateY(-4px) rotate(-3deg); }
  60%      { transform: translateX(-50%) translateY(0)   rotate(2deg); }
}

/* The hero photo frame should sit ABOVE the bunny so only the ears peek */
.hero-photo-frame { position: relative; z-index: 1; }

@media (max-width: 880px) {
  .hero-bunny { top: -64px; width: 140px; height: 100px; }
}

/* ---- Floating decorations on hero photo ---- */

.float-deco {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 4px 10px rgba(26, 27, 75, 0.15));
}

.float-deco svg { width: 100%; height: 100%; overflow: visible; }

.balloons-cluster {
  width: 110px;
  height: 165px;
  top: -40px;
  right: -30px;
  animation: balloon-float 5.5s ease-in-out infinite;
  transform-origin: 50% 100%;
}

@keyframes balloon-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(-3deg); }
}

.lollipop {
  width: 70px;
  height: 120px;
  bottom: -30px;
  left: -30px;
  animation: lollipop-spin 7s ease-in-out infinite;
  transform-origin: 50% 80%;
}

@keyframes lollipop-spin {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%      { transform: rotate(8deg) translateY(-6px); }
}

@media (max-width: 880px) {
  .balloons-cluster { width: 80px; height: 120px; top: -20px; right: -10px; }
  .lollipop { width: 56px; height: 96px; bottom: -20px; left: -10px; }
}

/* ---- Pivot section: cake + candy cane peeking ---- */

.pivot-cake {
  position: absolute;
  top: -20px;
  right: 40px;
  width: 150px;
  height: 150px;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 8px 20px rgba(26, 27, 75, 0.18));
  animation: cake-bob 5s ease-in-out infinite;
}

@keyframes cake-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-6px) rotate(2deg); }
}

.pivot-cake svg { width: 100%; height: 100%; }

.pivot-cane {
  position: absolute;
  top: 30px;
  left: 50px;
  width: 80px;
  height: 160px;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 8px 20px rgba(26, 27, 75, 0.18));
  transform: rotate(-25deg);
  animation: cane-tilt 6s ease-in-out infinite;
}

@keyframes cane-tilt {
  0%, 100% { transform: rotate(-25deg) translateY(0); }
  50%      { transform: rotate(-18deg) translateY(-5px); }
}

.pivot-cane svg { width: 100%; height: 100%; }

@media (max-width: 880px) {
  .pivot-cake { width: 90px; height: 90px; top: -10px; right: 12px; }
  .pivot-cane { width: 50px; height: 100px; top: 14px; left: 16px; }
}

/* ---- Confetti drift in hero ---- */

.confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.confetti .c {
  position: absolute;
  top: -20px;
  width: 12px;
  height: 14px;
  border-radius: 2px;
  opacity: 0;
  animation: confetti-fall linear infinite;
  transform-origin: center;
}

@keyframes confetti-fall {
  0%   { transform: translate3d(0, -10vh, 0) rotate(0deg);  opacity: 0; }
  10%  { opacity: 0.85; }
  100% { transform: translate3d(var(--drift, 30px), 110vh, 0) rotate(720deg); opacity: 0; }
}

/* Confetti palette — 10 colors: 5 brand (gold, indigo, dusty rose, soft gold, white)
   + 5 party accents (vivid red, electric blue, lime green, magenta, vibrant orange).
   35 particles. Falls in 7-12s (was 16-25s). Stagger 0-1.5s so the full
   storm is visible within ~2s of page open (was 0-8s). */
.confetti .c1  { left:  2%; background: #F4B83C; --drift:  25px; animation-duration:  8s; animation-delay: 0.00s; }
.confetti .c2  { left:  6%; background: #1A1B4B; --drift: -20px; animation-duration:  7s; animation-delay: 0.10s; width: 6px; height: 6px; border-radius: 50%; }
.confetti .c3  { left: 10%; background: #FFB6C1; --drift:  35px; animation-duration:  9s; animation-delay: 0.20s; }
.confetti .c4  { left: 14%; background: #FFD978; --drift: -28px; animation-duration:  8s; animation-delay: 0.30s; width: 14px; height: 4px; }
.confetti .c5  { left: 18%; background: #FFFFFF; --drift:  30px; animation-duration: 10s; animation-delay: 0.05s; width: 8px; height: 8px; border-radius: 50%; }
.confetti .c6  { left: 22%; background: #FF3B5C; --drift: -22px; animation-duration:  7s; animation-delay: 0.40s; }
.confetti .c7  { left: 26%; background: #2EA8FF; --drift:  38px; animation-duration:  9s; animation-delay: 0.15s; width: 10px; height: 10px; border-radius: 50%; }
.confetti .c8  { left: 30%; background: #4FE07A; --drift: -18px; animation-duration:  8s; animation-delay: 0.50s; }
.confetti .c9  { left: 34%; background: #E944C2; --drift:  24px; animation-duration: 11s; animation-delay: 0.25s; width: 14px; height: 4px; }
.confetti .c10 { left: 38%; background: #FF8A1F; --drift: -32px; animation-duration:  7s; animation-delay: 0.60s; }
.confetti .c11 { left: 42%; background: #F4B83C; --drift:  28px; animation-duration:  9s; animation-delay: 0.35s; width: 8px; height: 8px; border-radius: 50%; }
.confetti .c12 { left: 46%; background: #1A1B4B; --drift: -25px; animation-duration: 10s; animation-delay: 0.70s; }
.confetti .c13 { left: 50%; background: #FFB6C1; --drift:  30px; animation-duration:  8s; animation-delay: 0.45s; }
.confetti .c14 { left: 54%; background: #FFD978; --drift: -35px; animation-duration: 12s; animation-delay: 0.80s; width: 6px; height: 6px; border-radius: 50%; }
.confetti .c15 { left: 58%; background: #FFFFFF; --drift:  20px; animation-duration:  8s; animation-delay: 0.55s; width: 14px; height: 4px; }
.confetti .c16 { left: 62%; background: #FF3B5C; --drift: -28px; animation-duration:  9s; animation-delay: 0.90s; width: 10px; height: 10px; border-radius: 50%; }
.confetti .c17 { left: 66%; background: #2EA8FF; --drift:  32px; animation-duration: 10s; animation-delay: 0.65s; }
.confetti .c18 { left: 70%; background: #4FE07A; --drift: -22px; animation-duration:  7s; animation-delay: 1.00s; width: 6px; height: 6px; border-radius: 50%; }
.confetti .c19 { left: 74%; background: #E944C2; --drift:  36px; animation-duration:  8s; animation-delay: 0.75s; }
.confetti .c20 { left: 78%; background: #FF8A1F; --drift: -30px; animation-duration: 11s; animation-delay: 1.10s; width: 14px; height: 4px; }
.confetti .c21 { left: 82%; background: #F4B83C; --drift:  25px; animation-duration:  9s; animation-delay: 0.85s; width: 8px; height: 8px; border-radius: 50%; }
.confetti .c22 { left: 86%; background: #1A1B4B; --drift: -20px; animation-duration:  8s; animation-delay: 1.20s; }
.confetti .c23 { left: 90%; background: #FFB6C1; --drift:  28px; animation-duration: 10s; animation-delay: 0.95s; width: 14px; height: 4px; }
.confetti .c24 { left: 94%; background: #FFD978; --drift: -26px; animation-duration:  7s; animation-delay: 1.30s; }
.confetti .c25 { left: 98%; background: #FFFFFF; --drift:  22px; animation-duration:  9s; animation-delay: 1.05s; width: 10px; height: 10px; border-radius: 50%; }
.confetti .c26 { left:  4%; background: #FF3B5C; --drift:  30px; animation-duration: 10s; animation-delay: 1.40s; }
.confetti .c27 { left: 12%; background: #2EA8FF; --drift: -26px; animation-duration:  8s; animation-delay: 0.12s; width: 6px; height: 6px; border-radius: 50%; }
.confetti .c28 { left: 24%; background: #4FE07A; --drift:  22px; animation-duration:  9s; animation-delay: 1.15s; width: 14px; height: 4px; }
.confetti .c29 { left: 44%; background: #E944C2; --drift: -30px; animation-duration: 11s; animation-delay: 0.22s; width: 8px; height: 8px; border-radius: 50%; }
.confetti .c30 { left: 56%; background: #FF8A1F; --drift:  28px; animation-duration:  8s; animation-delay: 1.25s; }
.confetti .c31 { left: 68%; background: #F4B83C; --drift: -24px; animation-duration:  9s; animation-delay: 0.42s; width: 14px; height: 4px; }
.confetti .c32 { left: 80%; background: #1A1B4B; --drift:  26px; animation-duration: 10s; animation-delay: 1.35s; width: 10px; height: 10px; border-radius: 50%; }
.confetti .c33 { left: 92%; background: #FFB6C1; --drift: -22px; animation-duration:  7s; animation-delay: 0.52s; }
.confetti .c34 { left: 28%; background: #FF3B5C; --drift:  34px; animation-duration: 12s; animation-delay: 1.45s; width: 6px; height: 6px; border-radius: 50%; }
.confetti .c35 { left: 76%; background: #4FE07A; --drift: -28px; animation-duration:  8s; animation-delay: 0.62s; }

/* keep hero content above the confetti */
.hero .container { position: relative; z-index: 1; }

/* ---- 5-star rating ---- */

.stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  direction: ltr; /* stars themselves left-to-right inside an RTL doc */
}

.stars svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
  filter: drop-shadow(0 1px 2px rgba(244, 184, 60, 0.4));
}

.stars-sm svg { width: 16px; height: 16px; }
.stars-on-dark svg { fill: var(--gold-soft); filter: drop-shadow(0 0 6px rgba(244, 184, 60, 0.4)); }

.trust-count .stars { margin-bottom: 8px; }

/* ---- Show-reel video section ---- */

.section-showreel {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 96px 0;
  background: var(--indigo-deep);
}

.showreel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.showreel-video-trigger {
  background: #0e0f35 url("assets/images/show-3.webp") center / cover no-repeat;
}

.showreel-video-trigger::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(14, 15, 53, 0.28);
  transform: translate(-50%, -50%);
}

.showreel-video-trigger::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-right: 0;
  border-left: 27px solid var(--indigo-deep);
  transform: translate(-35%, -50%);
}

.showreel-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(244, 184, 60, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(14, 15, 53, 0.55) 0%, rgba(14, 15, 53, 0.78) 100%);
  z-index: 1;
  pointer-events: none;
}

.showreel-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
}

.showreel-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin: 0 0 20px;
  padding: 12px 20px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--indigo-deep);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(14, 15, 53, 0.22);
}

.showreel-play-btn:hover {
  transform: translateY(-1px);
}

.showreel-play-btn-icon {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 0;
  border-left: 13px solid currentColor;
}

.showreel-play-btn.is-playing {
  opacity: 0.78;
  cursor: default;
}

.showreel-content h2 {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 18px;
}

.showreel-lead {
  font-size: 19px;
  color: rgba(255, 251, 245, 0.9);
  max-width: 580px;
  margin: 0 auto 28px;
}

@media (max-width: 880px) {
  .section-showreel { min-height: 420px; padding: 64px 0; }
}

/* ---- Photo marquee gallery ---- */

.section-marquee {
  background: var(--cream);
  padding: 56px 0;
  overflow: hidden;
}

.marquee-row {
  display: flex;
  width: 100%;
  overflow: hidden;
  margin-bottom: 14px;
  direction: ltr; /* photos don't need RTL — keep marquee math simple */
}

.marquee-row:last-child { margin-bottom: 0; }

.marquee-track {
  display: flex;
  gap: 14px;
  padding-left: 14px; /* match gap so the loop seam is invisible */
  flex-shrink: 0;
  width: max-content;
  animation: marquee-scroll 60s linear infinite;
  will-change: transform;
}

.marquee-row-a .marquee-track { animation-direction: normal; }
.marquee-row-b .marquee-track { animation-direction: reverse; animation-duration: 75s; }

.marquee-track img {
  height: 220px;
  width: auto;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

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

/* Pause on hover (desktop) */
@media (hover: hover) {
  .marquee-track:hover { animation-play-state: paused; }
}

@media (max-width: 880px) {
  .marquee-track img { height: 150px; }
  .marquee-row { margin-bottom: 10px; }
  .section-marquee { padding: 36px 0; }
}

/* ---- Pivot section: extra confetti + sparkles ---- */

.section-pivot { position: relative; overflow: hidden; }

.section-pivot::before,
.section-pivot::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  background:
    radial-gradient(circle, rgba(244, 184, 60, 0.4) 0%, transparent 60%),
    radial-gradient(circle at 30% 40%, rgba(255, 182, 193, 0.3) 0%, transparent 50%);
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.section-pivot::before {
  top: -60px;
  right: -40px;
}

.section-pivot::after {
  bottom: -60px;
  left: -40px;
  background:
    radial-gradient(circle, rgba(255, 182, 193, 0.4) 0%, transparent 60%),
    radial-gradient(circle at 60% 60%, rgba(244, 184, 60, 0.3) 0%, transparent 50%);
}

/* Floating decorative balloons in pivot section (pure CSS) */
.section-pivot .container {
  position: relative;
  z-index: 1;
}

/* ---- Section-tag for showreel "תראו זה בעצמכם" must work on dark ---- */

.showreel-content .section-tag {
  background: rgba(244, 184, 60, 0.22);
  color: var(--gold-soft);
}

/* ---- Footer: extra sparkle accents ---- */

.site-footer {
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow:
    -120px 30px 0 rgba(244, 184, 60, 0.6),
    -240px -20px 0 rgba(255, 217, 120, 0.7),
    -360px 50px 0 rgba(244, 184, 60, 0.5),
    -480px 10px 0 rgba(255, 217, 120, 0.6),
    -600px 40px 0 rgba(244, 184, 60, 0.55),
    180px 60px 0 rgba(255, 217, 120, 0.55),
    320px -10px 0 rgba(244, 184, 60, 0.6);
  filter: drop-shadow(0 0 8px rgba(244, 184, 60, 0.6));
  animation: twinkle 3s ease-in-out infinite;
}

.site-footer .container { position: relative; z-index: 1; }

/* ---- Form acknowledgement (after submit) ---- */

.form-ack {
  background: #FFFFFF;
  border-radius: 28px 22px 30px 22px;
  border: 1.5px solid var(--gold);
  padding: 36px 32px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(244, 184, 60, 0.18), 0 4px 12px rgba(26, 27, 75, 0.08);
  animation: ack-pop 0.6s var(--ease-spring);
}

.form-ack-emoji { font-size: 56px; line-height: 1; margin-bottom: 12px; }

.form-ack h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--indigo);
}

.form-ack p {
  font-size: 16px;
  color: var(--ink-2);
  margin: 0;
}

@keyframes ack-pop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* =========================================================
   POLISH ROUND — "Storybook Birthday Atelier"
   Goal: strip the AI-template look. Add warmth, asymmetry,
   tactile materials (paper, washi, polaroid, hand-drawn),
   and butter-smooth motion.
   ========================================================= */

/* ---- Subtle paper grain on cream sections ---- */

.section-problem,
.section-fits,
.section-why,
.section-reassure,
.section-included,
.section-pivot,
.section-testimonials,
.section-faq,
.section-contact,
.section-marquee,
.hero {
  position: relative;
}

.section-problem::before,
.section-fits::before,
.section-why::before,
.section-reassure::before,
.section-included::before,
.section-pivot::after,
.section-testimonials::before,
.section-faq::before,
.section-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.62  0 0 0 0 0.45  0 0 0 0 0.18  0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
  opacity: 0.55;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

/* Make sure section content sits above the grain */
.section .container,
.section .container.narrow {
  position: relative;
  z-index: 1;
}

/* ---- Hero — warmer, layered glow ---- */

.hero {
  background:
    radial-gradient(circle at 90% -10%, rgba(244,184,60,0.22), transparent 50%),
    radial-gradient(circle at -10% 110%, rgba(233,75,106,0.10), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(255,251,245,1) 0%, rgba(255,246,232,1) 100%);
}

/* ---- Eyebrow + section-tag: less SaaS pill, more storybook stamp ---- */

.eyebrow,
.section-tag {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  background: linear-gradient(135deg, rgba(244,184,60,0.20), rgba(233,75,106,0.10));
  border: 1.5px dashed rgba(244, 184, 60, 0.55);
  color: var(--indigo);
  padding: 7px 18px;
  text-transform: uppercase;
}

.section-tag.light {
  background: rgba(244, 184, 60, 0.22);
  border-color: rgba(244, 184, 60, 0.55);
  color: var(--gold-soft);
}

/* ---- "Who it fits" — pastel polaroid cards at slight angles ---- */

.fits-grid {
  align-items: stretch;
}

.fit-card {
  border-radius: 20px 24px 18px 26px; /* organic, not perfect */
  border: 1px solid rgba(26, 27, 75, 0.06);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease-butter);
  box-shadow:
    0 10px 28px rgba(244, 184, 60, 0.10),
    0 2px 8px rgba(26, 27, 75, 0.06);
  position: relative;
}

.fit-card:nth-child(1) { background: var(--peach);  transform: rotate(-1.2deg); }
.fit-card:nth-child(2) { background: var(--mint);   transform: rotate(0.8deg); }
.fit-card:nth-child(3) { background: var(--rose);   transform: rotate(-0.6deg); }
.fit-card:nth-child(4) { background: var(--butter); transform: rotate(1.4deg); }

.fit-card:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Tiny "washi tape" accent on each card */
.fit-card::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 30px;
  width: 60px;
  height: 18px;
  background: linear-gradient(135deg, rgba(244,184,60,0.7), rgba(244,184,60,0.4));
  border-radius: 2px;
  transform: rotate(-6deg);
  box-shadow: 0 2px 4px rgba(26, 27, 75, 0.10);
}

.fit-card:nth-child(2)::before { background: linear-gradient(135deg, rgba(233,75,106,0.6), rgba(233,75,106,0.35)); transform: rotate(8deg); right: 24px; }
.fit-card:nth-child(3)::before { background: linear-gradient(135deg, rgba(61,221,199,0.55), rgba(61,221,199,0.3)); transform: rotate(-12deg); right: 36px; }
.fit-card:nth-child(4)::before { background: linear-gradient(135deg, rgba(26,27,75,0.5), rgba(26,27,75,0.25)); transform: rotate(4deg); right: 28px; }

/* ---- "Why Roni" — corkboard-pinned notebook cards ---- */

.why-card {
  border-radius: 22px 18px 24px 16px; /* organic asymmetric */
  border: 1px solid rgba(26, 27, 75, 0.06);
  background: #FFFFFF;
  box-shadow:
    0 14px 36px rgba(244, 184, 60, 0.10),
    0 3px 10px rgba(26, 27, 75, 0.07);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease-butter), border-color 0.3s ease;
  position: relative;
}

.why-card:nth-child(1) { transform: rotate(-0.8deg); }
.why-card:nth-child(2) { transform: rotate(0.5deg);  background: linear-gradient(180deg, #FFFFFF 0%, var(--cream-2) 100%); }
.why-card:nth-child(3) { transform: rotate(-0.3deg); }
.why-card:nth-child(4) { transform: rotate(0.9deg);  background: linear-gradient(180deg, #FFFFFF 0%, var(--peach) 200%); }
.why-card:nth-child(5) { transform: rotate(-0.6deg); }

.why-card:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.015);
  box-shadow: var(--shadow-lg);
  border-color: rgba(244, 184, 60, 0.45);
}

/* Hand-drawn pin in upper corner */
.why-card::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 14px;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 35% 35%, var(--rose-deep), #B83248);
  border-radius: 50%;
  box-shadow:
    0 1px 0 #fff inset,
    0 3px 6px rgba(26, 27, 75, 0.20);
}

/* Refine the big number — feels more illustrated */
.why-num {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  font-size: 42px;
  background: linear-gradient(135deg, var(--gold), var(--rose-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.85;
}

/* ---- "What's included" — varied organic radii ---- */

.included-card {
  border: 1px solid rgba(26, 27, 75, 0.06);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.45s var(--ease-butter);
  box-shadow:
    0 8px 22px rgba(244, 184, 60, 0.08),
    0 2px 6px rgba(26, 27, 75, 0.05);
}

.included-card:nth-child(1) { border-radius: 26px 18px 22px 18px; }
.included-card:nth-child(2) { border-radius: 18px 26px 18px 22px; }
.included-card:nth-child(3) { border-radius: 22px 18px 26px 18px; }
.included-card:nth-child(4) { border-radius: 18px 22px 18px 26px; }
.included-card:nth-child(5) { border-radius: 26px 22px 18px 18px; }
.included-card:nth-child(6) { border-radius: 18px 18px 26px 22px; }
.included-card:nth-child(7) { border-radius: 22px 26px 18px 22px; }

.included-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Soften the .icon-svg gold gradient */
.icon-svg {
  background: linear-gradient(135deg, rgba(244,184,60,0.22), rgba(233,75,106,0.10));
  border-radius: 18px 22px 18px 22px;
}

/* ---- Testimonials — slight angle, polaroid hint ---- */

.testimonial-pull {
  border-radius: 26px 22px 28px 20px;
  transition: transform 0.5s var(--ease-spring);
}

.testimonial-pull:nth-child(1) { transform: rotate(-0.8deg); }
.testimonial-pull:nth-child(2) { transform: rotate(0.6deg);  }
.testimonial-pull:nth-child(3) { transform: rotate(-0.4deg); }

.testimonial-pull:hover { transform: rotate(0deg) translateY(-4px); }

.testimonial {
  border-radius: 22px 18px 24px 18px;
  transition: transform 0.4s var(--ease-spring);
}

.testimonial:nth-child(odd)  { transform: rotate(-0.5deg); }
.testimonial:nth-child(even) { transform: rotate(0.5deg);  }
.testimonial:hover { transform: rotate(0deg) translateY(-4px); }

/* ---- FAQ — softer, hand-drawn open icon ---- */

.faq-item {
  border-radius: 22px 18px 24px 18px;
  transition: border-color 0.3s var(--ease-butter), box-shadow 0.4s var(--ease-butter), transform 0.3s var(--ease-spring);
}

.faq-item:hover { transform: translateX(2px); }

.faq-item summary::after {
  content: '';
  width: 18px;
  height: 18px;
  border: 2.5px solid var(--gold);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  margin-left: 8px;
  transition: transform 0.35s var(--ease-spring);
}

.faq-item[open] summary::after {
  transform: rotate(135deg);
}

/* ---- Buttons: gentle bounce on hover ---- */

.btn {
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-butter), background 0.25s ease;
}

.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(-1px) scale(0.99); transition-duration: 0.1s; }

/* ---- Reassure list — handwritten-card feel ---- */

.reassure-list {
  border-radius: 28px 24px 30px 22px;
  background:
    radial-gradient(circle at 90% 0%, rgba(244,184,60,0.10), transparent 50%),
    #FFFFFF;
  border: 1px solid rgba(26, 27, 75, 0.06);
  box-shadow: 0 14px 40px rgba(244, 184, 60, 0.10), 0 4px 12px rgba(26, 27, 75, 0.07);
}

.reassure-list li {
  transition: transform 0.3s var(--ease-spring);
}

.reassure-list li:hover { transform: translateX(-6px); }

/* ---- Section dividers — hand-drawn squiggle SVGs between sections ---- */

.section-fits,
.section-why,
.section-included,
.section-testimonials,
.section-faq {
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='28' viewBox='0 0 220 28'><path d='M0 14 Q 18 4, 36 14 T 72 14 T 108 14 T 144 14 T 180 14 T 220 14' fill='none' stroke='%23F4B83C' stroke-width='2.4' stroke-linecap='round' opacity='0.6'/></svg>");
  background-position: center 28px;
  background-size: 220px 28px;
  background-repeat: no-repeat;
}

/* Adjust top padding so the squiggle doesn't crowd the heading */
.section-fits,
.section-why,
.section-included,
.section-testimonials,
.section-faq {
  padding-top: 100px;
}

@media (max-width: 880px) {
  .section-fits,
  .section-why,
  .section-included,
  .section-testimonials,
  .section-faq {
    padding-top: 72px;
  }
}

/* ---- Pivot: amplify the editorial typography ---- */

.pivot-h2 {
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.pivot-quote {
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--rose-deep);
}

/* ---- Trust strip: feels more like a friendly note ---- */

.trust-strip {
  border-radius: 26px 22px 30px 20px;
  background:
    radial-gradient(circle at 90% 0%, rgba(244,184,60,0.10), transparent 55%),
    #FFFFFF;
  border: 1px solid rgba(26, 27, 75, 0.06);
  box-shadow: 0 14px 40px rgba(244, 184, 60, 0.12), 0 3px 10px rgba(26, 27, 75, 0.06);
  position: relative;
}

.trust-strip::after {
  /* small washi tape on the trust strip */
  content: '';
  position: absolute;
  top: -10px;
  right: 60px;
  width: 70px;
  height: 20px;
  background: linear-gradient(135deg, rgba(244,184,60,0.65), rgba(244,184,60,0.4));
  transform: rotate(-4deg);
  border-radius: 2px;
  box-shadow: 0 3px 6px rgba(26, 27, 75, 0.10);
}

.trust-quotes li {
  transition: color 0.3s ease, transform 0.3s var(--ease-spring);
}

.trust-quotes li:hover {
  color: var(--rose-deep);
  transform: translateY(-2px);
}

/* ---- Reveal — buttery easing ---- */

.reveal {
  transition: opacity 0.7s var(--ease-butter), transform 0.7s var(--ease-butter);
}

/* ---- Floating decorations: smoother motion ---- */

.balloons-cluster,
.lollipop,
.pivot-cake,
.pivot-cane,
.hero-bunny {
  animation-timing-function: ease-in-out;
}

/* ---- Mobile tweaks ---- */

@media (max-width: 880px) {
  .fit-card,
  .why-card,
  .testimonial-pull,
  .testimonial { transform: none !important; } /* don't rotate on cramped mobile */

  .fit-card::before,
  .trust-strip::after { right: 16px; }
}

/* =========================================================
   AI ILLUSTRATED BANNERS (gpt-image-2 watercolor)
   ========================================================= */

.ai-banner {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.ai-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
}

/* Soft cream feathered edges so the banner dissolves into adjacent sections.
   Two-layer fade: a quick stronger fade in the first 40px + a long soft tail. */
.ai-banner::before,
.ai-banner::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
}

.ai-banner::before {
  top: 0;
  height: 160px;
  background: linear-gradient(180deg,
    var(--cream) 0%,
    rgba(255, 251, 245, 0.85) 25%,
    rgba(255, 251, 245, 0.45) 60%,
    rgba(255, 251, 245, 0) 100%);
}

.ai-banner::after {
  bottom: 0;
  height: 180px;
  background: linear-gradient(0deg,
    var(--cream) 0%,
    rgba(255, 251, 245, 0.92) 20%,
    rgba(255, 251, 245, 0.6) 50%,
    rgba(255, 251, 245, 0) 100%);
}

.ai-banner-hero {
  margin: 32px 0 -40px; /* let the trust strip start while the banner is still fading */
}

.ai-banner-hero img { max-height: 260px; }
.ai-banner-mid img { max-height: 300px; }
.ai-banner-footer img { max-height: 340px; }

/* Footer banner needs to feather into the dark indigo footer instead of cream */
.ai-banner-footer::after {
  background: linear-gradient(0deg,
    var(--indigo-deep) 0%,
    rgba(14, 15, 53, 0.82) 25%,
    rgba(14, 15, 53, 0.40) 55%,
    rgba(14, 15, 53, 0) 100%);
}

@media (max-width: 880px) {
  .ai-banner-hero img { max-height: 180px; }
  .ai-banner-mid img  { max-height: 200px; }
  .ai-banner-footer img { max-height: 220px; }
  .ai-banner::before,
  .ai-banner::after { height: 100px; }
}

/* ---- Pivot section: AI background illustration ---- */

.section-pivot-illustrated {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.pivot-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.pivot-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
}

/* Soft cream wash overlay so copy stays legible AND a stronger cream
   feather at the top + bottom edges so the section dissolves smoothly
   into adjacent sections instead of cutting hard */
.section-pivot-illustrated::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* top feather */
    linear-gradient(180deg, rgba(255,251,245,1) 0%, rgba(255,251,245,0.4) 12%, rgba(255,251,245,0) 22%) top / 100% 100% no-repeat,
    /* bottom feather */
    linear-gradient(0deg,   rgba(255,251,245,1) 0%, rgba(255,251,245,0.4) 12%, rgba(255,251,245,0) 22%) bottom / 100% 100% no-repeat,
    /* center wash for legibility */
    radial-gradient(ellipse at center, rgba(255,251,245,0.55) 0%, rgba(255,251,245,0.80) 65%, rgba(255,251,245,0.92) 100%);
  pointer-events: none;
}

/* Hide the existing SVG cake/cane when the AI background is in use — would compete */
.section-pivot-illustrated .pivot-cake,
.section-pivot-illustrated .pivot-cane {
  display: none;
}

/* Lift content above the bg + overlay */
.section-pivot-illustrated .container {
  position: relative;
  z-index: 2;
}

/* Disable the dual radial-glow pseudo elements on the illustrated pivot — bg already provides atmosphere */
.section-pivot-illustrated::after {
  display: none;
}
