/* ───────────────────────────────────────────────
   HomBoo — Design System
   ─────────────────────────────────────────────── */

:root {
  /* Core brand */
  --purple-50:  #F0EBFF;
  --purple-100: #E2D9FF;
  --purple-300: #B8A5FF;
  --purple-500: #7C5CFC;
  --purple-700: #5E3EDB;

  /* Feature identity colours */
  --feat-budget:    #7C5CFC; --feat-budget-dk:   #5E3EDB;
  --feat-tasks:     #10B981; --feat-tasks-dk:    #059669;
  --feat-ledger:    #4F46E5; --feat-ledger-dk:   #3730A3;
  --feat-shopping:  #F59E0B; --feat-shopping-dk: #D97706;
  --feat-meal:      #EF4444; --feat-meal-dk:     #DC2626;
  --feat-reports:   #0EA5E9; --feat-reports-dk:  #0284C7;
  --feat-notif:     #EC4899; --feat-notif-dk:    #DB2777;
  --feat-members:   #EAB308; --feat-members-dk:  #CA8A04;
  --feat-calendar:  #8B5CF6; --feat-calendar-dk: #7C3AED;
  --feat-savings:   #14B8A6; --feat-savings-dk:  #0F766E;

  /* Neutrals */
  --blue-100: #e9f6ff;
  --blue-300: #b7ddf7;
  --blue-500: #83bde7;
  --mint-500: #7fcf9f;
  --pink-50:  #fff0f6;
  --pink-500: #EC4899;
  --pink-700: #BE185D;
  --ink:   #1e1b4b;
  --soft:  #6b7280;
  --card:  rgba(255,255,255,0.92);
  --hero-grad: linear-gradient(135deg, #7C5CFC 0%, #9E84FC 100%);
}

/* ── Base ────────────────────────────────────── */
body {
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 5% 0%, rgba(124,92,252,.13) 0%, transparent 50%),
    radial-gradient(ellipse at 95% 5%, rgba(14,165,233,.10) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, rgba(16,185,129,.07) 0%, transparent 50%),
    linear-gradient(160deg, #F0EBFF 0%, #f9f8ff 35%, #f0f9ff 70%, #f8fff9 100%);
  min-height: 100vh;
}

.brand-font { font-family: "Baloo 2", cursive; }

/* ── Navbar ──────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: transparent;
  border-bottom: 0;
}

.site-navbar {
  border-radius: 34px 34px 0 0;
  background: var(--header-grad, var(--hero-grad));
  border: 0;
  box-shadow: none;
}

.brand-logo { height: 42px; width: auto; display: block; }
.nav-icon   { width: 34px; height: 34px; border-radius: 8px; }

.navbar-nav .nav-link {
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: .45rem .75rem;
  transition: background .18s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: rgba(255,255,255,.24);
  color: #fff;
}

.nav-cta-btn {
  display: inline-block;
  background: rgba(255,255,255,.95);
  color: var(--purple-700);
  font-weight: 800;
  font-size: .85rem;
  padding: .42rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  transition: transform .18s, box-shadow .18s;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  white-space: nowrap;
}
.nav-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,.18); color: var(--purple-700); }

/* ── Hero ────────────────────────────────────── */
.hero-container { margin-top: .6rem; }

.hero-wrap {
  background: var(--hero-grad);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  transition: background 1s ease;
}
.hero-wrap.hero-merged {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.hero-merged { border-top-left-radius: 0; border-top-right-radius: 0; }

/* Decorative corner blobs inside hero */
.hero-wrap::before,
.hero-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-wrap::before {
  width: 340px; height: 340px;
  top: -100px; right: -60px;
  background: rgba(255,255,255,.07);
  filter: blur(1px);
}
.hero-wrap::after {
  width: 220px; height: 220px;
  bottom: -60px; left: -50px;
  background: rgba(255,255,255,.05);
}
.hero-wrap > * { position: relative; z-index: 1; }

.hero-slider { padding-top: .6rem; padding-bottom: 2.8rem; }
.hero-slider .carousel-inner  { padding-top: .4rem; padding-bottom: .7rem; }
.hero-slider .carousel-item   { min-height: 580px; }

/* Crossfade */
.hero-slider.carousel-fade .carousel-item { transition: opacity .7s ease; }

/* Pill indicators — numbered */
.hero-indicators {
  gap: .4rem;
}
.hero-indicators button {
  width: 28px; height: 6px;
  border: 0; border-radius: 3px;
  background: rgba(255,255,255,.35);
  opacity: 1;
  transition: width .3s ease, background .3s ease;
}
.hero-indicators .active {
  width: 44px;
  background: rgba(255,255,255,.95);
}

/* Hero prev/next controls — centred bottom, raised above indicators */
.hero-control {
  width: 40px; height: 40px;
  top: auto; bottom: 2.6rem;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
  transition: background .2s;
}
.hero-control:hover { background: rgba(255,255,255,.32); }
.hero-control.carousel-control-prev { left: calc(50% - 62px); }
.hero-control.carousel-control-next { right: calc(50% - 62px); }
.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon { width: .9rem; height: .9rem; }

/* Kicker pill */
.soft-pill {
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  color: rgba(255,255,255,.95);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .02em;
  padding: .38rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  backdrop-filter: blur(4px);
}

/* Hero heading */
.hero-heading {
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin-bottom: .65rem;
}

/* Hero feature chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: 1.3rem;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: rgba(255,255,255,.92);
  font-size: .82rem;
  font-weight: 700;
  padding: .32rem .75rem;
  backdrop-filter: blur(4px);
}
.hero-chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  flex-shrink: 0;
}

/* Hero description */
.hero-desc {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 1.4rem;
  max-width: 480px;
}

/* Hero CTA row */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
}
.hero-learn-link {
  color: rgba(255,255,255,.8);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: color .18s;
}
.hero-learn-link:hover { color: #fff; }
.hero-learn-link::after { content: " →"; }

/* ── Device mockup ───────────────────────────── */
.device-mock {
  max-width: 390px; width: 100%;
  border-radius: 36px;
  background: linear-gradient(160deg,#9d9ba8 0%,#72717b 44%,#5b5a63 100%);
  border: 1px solid #6e6d75;
  border-left-color: #8b8a94;
  border-right-color: #55545c;
  box-shadow: 0 12px 22px rgba(46,42,52,.22),
    inset 0 0 0 2px rgba(255,255,255,.18),
    inset 0 0 0 4px rgba(42,41,49,.22),
    inset 5px 0 10px rgba(255,255,255,.26);
  animation: float 4s ease-in-out infinite;
  position: relative; overflow: hidden;
}
.device-float-wrap {
  position: relative;
  animation: sway 6s ease-in-out infinite;
  transform-origin: center bottom;
  padding-top: 10px; padding-bottom: 16px;
}
.device-float-wrap::after {
  content: "";
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: -8px; width: 62%; height: 12px;
  border-radius: 50%;
  background: rgba(124,92,252,.12);
  filter: blur(5px);
}
.device-top {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  height: 18px; width: 110px;
  background: #141319; border-radius: 0 0 13px 13px;
  box-shadow: 0 1px 0 rgba(255,255,255,.12); z-index: 3;
}
.device-content {
  padding: 8px; background: transparent;
  border-radius: 28px; height: 540px; overflow: hidden;
}
.device-screen {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  border-radius: 24px;
  border: 6px solid #111116;
  box-shadow: inset 0 -14px 0 rgba(255,255,255,.12), inset 0 0 0 1px rgba(255,255,255,.06);
}

/* ── Stats band ──────────────────────────────── */
.stats-band {
  background: linear-gradient(135deg, rgba(30,27,75,.96) 0%, rgba(94,62,219,.92) 100%);
  border-radius: 22px;
  padding: 1.8rem 2rem;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.stats-band::before {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-item { text-align: center; position: relative; }
.stat-number {
  font-family: "Baloo 2", cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff 40%, rgba(255,255,255,.7));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: .85rem;
  font-weight: 700;
  opacity: .75;
  margin-top: .2rem;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  align-self: stretch;
}

/* ── Bento Grid ──────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 175px;
  gap: 1rem;
}

.bento-card {
  border-radius: 24px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s ease;
  cursor: pointer;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bento-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 28px 56px rgba(0,0,0,.22) !important;
  text-decoration: none;
}

/* Span variants — prefixed to avoid Bootstrap .col-2 conflict */
.bento-card.bspan-2 { grid-column: span 2; }
.bento-card.bspan-r2 { grid-row: span 2; }

/* Background noise texture overlay */
.bento-card::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .5;
  pointer-events: none;
}

.bento-card * { position: relative; z-index: 1; }

/* Decorative blob in each card */
.bento-blob {
  position: absolute; z-index: 0;
  width: 160px; height: 160px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .35;
  top: -20px; right: -20px;
  pointer-events: none;
}

.bento-icon {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: .5rem;
  display: block;
}
.bento-title {
  font-family: "Baloo 2", cursive;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .2rem;
  line-height: 1.15;
}
.bento-desc {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  margin: 0;
  line-height: 1.4;
}
.bento-arrow {
  position: absolute;
  top: 1.1rem; right: 1.1rem;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: .9rem;
  color: #fff;
  transition: background .2s, transform .2s;
}
.bento-card:hover .bento-arrow {
  background: rgba(255,255,255,.35);
  transform: translate(2px, -2px);
}

/* Feature colour themes */
.bento-budget   { background: linear-gradient(135deg, #7C5CFC 0%, #5E3EDB 100%); box-shadow: 0 12px 32px rgba(124,92,252,.35); }
.bento-tasks    { background: linear-gradient(135deg, #10B981 0%, #059669 100%); box-shadow: 0 12px 32px rgba(16,185,129,.35); }
.bento-ledger   { background: linear-gradient(135deg, #4F46E5 0%, #3730A3 100%); box-shadow: 0 12px 32px rgba(79,70,229,.35); }
.bento-shopping { background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); box-shadow: 0 12px 32px rgba(245,158,11,.35); }
.bento-meal     { background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%); box-shadow: 0 12px 32px rgba(239,68,68,.35); }
.bento-reports  { background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%); box-shadow: 0 12px 32px rgba(14,165,233,.35); }
.bento-notif    { background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%); box-shadow: 0 12px 32px rgba(236,72,153,.35); }
.bento-members  { background: linear-gradient(135deg, #EAB308 0%, #CA8A04 100%); box-shadow: 0 12px 32px rgba(234,179,8,.35); }
.bento-calendar { background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%); box-shadow: 0 12px 32px rgba(139,92,246,.35); }
.bento-savings  { background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%); box-shadow: 0 12px 32px rgba(20,184,166,.35); }

/* ── Section headings ────────────────────────── */
.section-kicker {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--purple-700);
  background: var(--purple-50);
  border-radius: 999px;
  padding: .28rem .75rem;
  margin-bottom: .6rem;
  border: 1px solid var(--purple-100);
}
.section-title {
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .4rem;
  line-height: 1.15;
}
.section-sub {
  color: var(--soft);
  font-weight: 600;
  font-size: 1.05rem;
  max-width: 560px;
}

/* ── Why HomBoo — spotlight cards ────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.why-spotlight {
  border-radius: 22px;
  padding: 1.6rem 1.4rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.why-spotlight:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.15) !important; }
.why-spotlight .ws-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: .9rem;
}
.why-spotlight h5 {
  font-family: "Baloo 2", cursive;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: .3rem;
}
.why-spotlight p { margin: 0; font-weight: 600; line-height: 1.5; }

.ws-purple { background: linear-gradient(135deg,#F0EBFF,#E2D9FF); border: 1px solid #c4b5fd; }
.ws-purple .ws-icon { background: rgba(124,92,252,.15); }
.ws-purple h5 { color: var(--purple-700); }
.ws-purple p  { color: #6d28d9; }

.ws-green  { background: linear-gradient(135deg,#ecfdf5,#d1fae5); border: 1px solid #6ee7b7; }
.ws-green  .ws-icon { background: rgba(16,185,129,.15); }
.ws-green  h5 { color: #065f46; }
.ws-green  p  { color: #047857; }

.ws-blue   { background: linear-gradient(135deg,#eff6ff,#dbeafe); border: 1px solid #93c5fd; }
.ws-blue   .ws-icon { background: rgba(14,165,233,.15); }
.ws-blue   h5 { color: #1e40af; }
.ws-blue   p  { color: #1d4ed8; }

.ws-amber  { background: linear-gradient(135deg,#fffbeb,#fef3c7); border: 1px solid #fcd34d; }
.ws-amber  .ws-icon { background: rgba(234,179,8,.15); }
.ws-amber  h5 { color: #78350f; }
.ws-amber  p  { color: #92400e; }

/* ── Premium section ─────────────────────────── */
.premium-wrap {
  background: linear-gradient(135deg, #1e1b4b 0%, #3730a3 50%, #1e1b4b 100%);
  border-radius: 28px;
  padding: 2.2rem 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.premium-wrap::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(124,92,252,.4) 0%, transparent 60%);
}
.premium-wrap > * { position: relative; }
.premium-wrap h2 {
  font-family: "Baloo 2", cursive;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
}
.premium-badge {
  display: inline-block;
  background: linear-gradient(135deg, #EAB308, #F59E0B);
  color: #1e1b4b;
  font-weight: 800;
  font-size: .8rem;
  padding: .25rem .65rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}
.premium-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-top: 1.2rem;
}
.premium-feat-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: .9rem;
  backdrop-filter: blur(8px);
}
.premium-feat-item .pf-check {
  width: 28px; height: 28px;
  min-width: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: .85rem;
  font-weight: 800;
}
.pf-check-free    { background: rgba(16,185,129,.2); color: #6ee7b7; }
.pf-check-premium { background: linear-gradient(135deg,#EAB308,#F59E0B); color: #1e1b4b; }
.premium-feat-item p { margin: 0; font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.85); }
.premium-feat-item small { color: rgba(255,255,255,.5); font-size: .78rem; }

.premium-cta-box {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  padding: 1.4rem;
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
}

/* ── Manual CTA banner ───────────────────────── */
.manual-cta-banner {
  background: linear-gradient(135deg, #F0EBFF 0%, #dbeafe 100%);
  border: 1.5px solid #c4b5fd;
  border-radius: 24px;
  padding: 2rem 2.2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: transform .22s ease, box-shadow .22s ease;
}
.manual-cta-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(124,92,252,.2);
}
.manual-cta-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(124,92,252,.3));
}
.manual-cta-banner h3 {
  font-family: "Baloo 2", cursive;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--purple-700);
  margin-bottom: .25rem;
}
.manual-cta-banner p { margin: 0; color: #5b21b6; font-weight: 600; }

/* ── FAQ ─────────────────────────────────────── */
.faq-wrap {
  background: rgba(255,255,255,.88);
  border: 1px solid #ebdeea;
  border-radius: 22px;
  box-shadow: 0 10px 22px rgba(132,121,146,.1);
}
.accordion-item {
  border: 1px solid #eadfea;
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: .55rem;
}
.accordion-button {
  font-weight: 800;
  border-radius: 12px !important;
}
.accordion-button:not(.collapsed) {
  color: var(--purple-700);
  background: var(--purple-50);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(124,92,252,.14); }

/* ── Store badges ────────────────────────────── */
.app-store-links { margin-top: .4rem; }
.store-btn-img {
  display: inline-block; text-decoration: none;
  transition: transform .2s ease, opacity .2s ease;
}
.store-btn-img:hover { transform: translateY(-2px); opacity: .95; }
.store-badge { display: block; height: 52px; width: auto; }

/* ── Feature hub (legacy, detail pages) ─────── */
.feature-hub-head {
  background: linear-gradient(120deg, rgba(240,235,255,.9), rgba(235,246,255,.9));
  border: 1px solid #d4cdf0;
  border-radius: 20px;
  padding: 1rem 1.1rem;
}
.feature-hub-kicker {
  display: inline-block;
  font-size: .76rem; font-weight: 800; letter-spacing: .04em;
  color: var(--purple-700); background: var(--purple-50);
  border-radius: 999px; padding: .28rem .65rem; margin-bottom: .4rem;
}
.feature-hub-head p { color: #6f6879; font-weight: 600; margin-top: .35rem; }
.feature-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}
.feature-hub-card {
  display: block; text-decoration: none;
  border-radius: 18px; border: 1px solid #e8dce5;
  background: rgba(255,255,255,.84);
  box-shadow: 0 10px 20px rgba(124,116,138,.12);
  padding: .95rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.feature-hub-card:hover { transform: translateY(-3px); box-shadow: 0 14px 24px rgba(110,100,124,.18); }
.feature-hub-card .icon {
  display: inline-grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px;
  margin-bottom: .5rem; font-size: 1.2rem;
  background: rgba(255,255,255,.65);
}
.feature-hub-card h5 {
  font-family: "Baloo 2", cursive; font-size: 1.32rem;
  color: #3a3742; margin-bottom: .25rem;
}
.feature-hub-card p { color: #6f6879; margin: 0; font-weight: 600; line-height: 1.4; font-size: .95rem; }
.feature-hub-card.tint-pink   { background: linear-gradient(135deg,#fff2f7,#ffeaf2); }
.feature-hub-card.tint-purple { background: linear-gradient(135deg,#F0EBFF,#E2D9FF); }
.feature-hub-card.tint-blue   { background: linear-gradient(135deg,#eef7ff,#e6f3ff); }
.feature-hub-card.tint-mint   { background: linear-gradient(135deg,#ecfff4,#e6faef); }

/* ── Detail page — feature rows ─────────────── */
.detail-hero {
  border-radius: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 2.5rem 2rem 0;
}
.detail-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(255,255,255,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 5% 85%,  rgba(0,0,0,.08) 0%, transparent 45%);
}
.detail-hero > .row { position: relative; z-index: 1; }

/* Screenshot trio */
.screenshot-trio {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.1rem;
  padding: 0 .5rem;
}
.sshot-phone {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,.28);
  position: relative;
  flex-shrink: 0;
  border: 6px solid #111116;
  background: #111;
}
.sshot-phone img {
  display: block; width: 100%;
  height: 380px; object-fit: cover; object-position: center top;
}
.sshot-phone.sp-center {
  width: 210px;
  transform: translateY(-12px);
  box-shadow: 0 32px 64px rgba(0,0,0,.35);
  z-index: 2;
}
.sshot-phone.sp-side {
  width: 170px;
  opacity: .88;
  transform: translateY(0);
}

/* Screenshot trio labels */
.screenshot-trio-wrap { text-align: center; }
.sshot-label {
  font-size: .8rem;
  font-weight: 800;
  color: var(--soft);
  margin-top: .6rem;
  letter-spacing: .02em;
}

/* Alternating feature rows */
.feat-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.feat-row:last-child { border-bottom: 0; }
.feat-row.rev { flex-direction: row-reverse; }
.feat-row-text { flex: 1 1 0; min-width: 0; }
.feat-row-visual { flex: 0 0 220px; width: 220px; max-width: 220px; }

.feat-row-kicker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: 999px;
  margin-bottom: .7rem;
}
.feat-row-title {
  font-family: "Baloo 2", cursive;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .5rem;
  line-height: 1.18;
}
.feat-row-body {
  color: var(--soft);
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.feat-check-list { list-style: none; margin: 0; padding: 0; }
.feat-check-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .35rem 0;
  font-weight: 700;
  color: var(--ink);
  font-size: .95rem;
}
.feat-check-list li::before {
  content: "✓";
  width: 20px; height: 20px; min-width: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C5CFC, #5E3EDB);
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  display: grid; place-items: center;
  margin-top: .1rem;
}

/* Feature mini-card grid (2×2 or 3-col) */
.feat-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feat-mini-card {
  border-radius: 18px;
  padding: 1.3rem;
  position: relative;
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
}
.feat-mini-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0,0,0,.15) !important; }
.feat-mini-card .fmc-icon {
  font-size: 1.8rem;
  margin-bottom: .6rem;
  display: block;
}
.feat-mini-card h5 {
  font-family: "Baloo 2", cursive;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: .3rem;
}
.feat-mini-card p {
  margin: 0;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.5;
}

/* Detail tips */
.tip-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.tip-card-v2 {
  background: rgba(255,255,255,.92);
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.1rem 1rem;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  box-shadow: 0 4px 12px rgba(100,100,120,.07);
}
.tip-card-v2 .tc-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: .05rem;
}
.tip-card-v2 h6 {
  font-family: "Baloo 2", cursive;
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: .2rem;
  color: var(--ink);
}
.tip-card-v2 p { margin: 0; font-size: .85rem; font-weight: 600; color: var(--soft); line-height: 1.5; }

/* Related features nav */
.related-feat-row { display: flex; gap: .75rem; flex-wrap: wrap; }
.related-feat-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none !important;
  border: 1.5px solid transparent;
  transition: transform .18s, box-shadow .18s;
}
.related-feat-chip:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,.12); }

/* Download CTA banner (detail pages) */
.detail-cta {
  border-radius: 24px;
  padding: 2rem 2.2rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.detail-cta h3 {
  font-family: "Baloo 2", cursive;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .3rem;
}
.detail-cta p { margin: 0; color: rgba(255,255,255,.75); font-weight: 600; }

/* Responsive detail */
@media (max-width: 900px) {
  .feat-row, .feat-row.rev { flex-direction: column; gap: 1.5rem; }
  .feat-row-visual { width: 100%; max-width: 280px; flex-basis: auto; margin: 0 auto; }
  .feat-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .tip-row { grid-template-columns: 1fr; }
  .detail-cta { flex-direction: column; text-align: center; }
  .screenshot-trio { gap: .65rem; }
  .sshot-phone.sp-center { width: 160px; }
  .sshot-phone.sp-center img { height: 290px; }
  .sshot-phone.sp-side { width: 125px; }
  .sshot-phone.sp-side img { height: 230px; }
}
@media (max-width: 576px) {
  .feat-mini-grid { grid-template-columns: 1fr; }
  .screenshot-trio { display: none; } /* too cramped on small phone */
}

/* ── Guide pages (detail pages) ─────────────── */
.guide-hero {
  border-radius: 24px;
  color: #fff;
  box-shadow: 0 16px 34px rgba(124,92,252,.22);
}
.guide-card {
  background: rgba(255,255,255,.92);
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(132,121,146,.12);
  height: 100%;
}
.kicker {
  display: inline-block;
  font-size: .76rem; font-weight: 800; letter-spacing: .04em;
  border-radius: 999px; padding: .3rem .65rem; margin-bottom: .6rem;
}
.guide-list { margin: 0; padding-left: 1.1rem; }
.guide-list li { margin-bottom: .55rem; font-weight: 600; }

.guide-device .device-mock { max-width: 330px; }
.guide-device .device-content { height: 470px; }
.guide-device .device-content .carousel,
.guide-device .device-content .carousel-inner { height: 100%; width: 100%; }
.guide-device .device-content .carousel-item {
  height: 100%; width: 100%; overflow: hidden;
  border-radius: 24px; border: 6px solid #111116;
  box-shadow: inset 0 -14px 0 rgba(255,255,255,.12), inset 0 0 0 1px rgba(255,255,255,.06);
}
.guide-device .device-content .carousel-item img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}

/* ── Manual / Rehber page ────────────────────── */
.rehber-hero {
  background: linear-gradient(135deg, #1e1b4b 0%, #5E3EDB 60%, #7C5CFC 100%);
  border-radius: 28px;
  color: #fff;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.rehber-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 10% 80%, rgba(14,165,233,.3) 0%, transparent 50%),
              radial-gradient(ellipse at 90% 10%, rgba(236,72,153,.2) 0%, transparent 40%);
}
.rehber-hero > * { position: relative; }

.rehber-toc {
  background: rgba(255,255,255,.92);
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 1.1rem;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(124,92,252,.1);
}
.rehber-toc h6 {
  font-family: "Baloo 2", cursive;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: .6rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid #e5e7eb;
}
.rehber-toc a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .5rem;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: background .15s, color .15s;
  margin-bottom: .15rem;
}
.rehber-toc a:hover,
.rehber-toc a.active {
  background: var(--purple-50);
  color: var(--purple-700);
}
.rehber-toc .toc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0;
}

.rehber-section {
  background: rgba(255,255,255,.9);
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 1.8rem;
  box-shadow: 0 6px 18px rgba(100,100,120,.08);
  margin-bottom: 1.2rem;
}
.rehber-section-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid #f0f0f5;
}
.rehber-section-icon {
  width: 52px; height: 52px; min-width: 52px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 1.6rem;
}
.rehber-section-head h2 {
  font-family: "Baloo 2", cursive;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  color: var(--ink);
}
.rehber-section-head p {
  margin: 0;
  color: var(--soft);
  font-weight: 600;
  font-size: .95rem;
}

.step-list { list-style: none; margin: 0; padding: 0; }
.step-item {
  display: flex;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px solid #f5f3ff;
}
.step-item:last-child { border-bottom: 0; }
.step-num {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: #fff;
  font-weight: 800;
  font-size: .82rem;
  display: grid; place-items: center;
  margin-top: .1rem;
  flex-shrink: 0;
}
.step-item p { margin: 0; font-weight: 600; color: var(--ink); line-height: 1.5; }
.step-item small { color: var(--soft); font-size: .85rem; }

.tip-box {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #6ee7b7;
  border-radius: 14px;
  padding: .85rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin-top: 1rem;
}
.tip-box .tip-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .05rem; }
.tip-box p { margin: 0; font-weight: 700; color: #065f46; font-size: .9rem; }

.subsection-title {
  font-family: "Baloo 2", cursive;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-top: 1.2rem;
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ── Legal pages ─────────────────────────────── */
.legal-wrap {
  background: rgba(255,255,255,.9);
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  box-shadow: 0 10px 22px rgba(132,121,146,.12);
}
.legal-wrap h1, .legal-wrap h2 { font-family: "Baloo 2", cursive; }
.legal-wrap h2 { font-size: 1.4rem; margin-top: 1.2rem; }
.legal-wrap p, .legal-wrap li { color: #5f5a69; font-weight: 600; }
.legal-note {
  background: #eef6ff; border: 1px solid #d4e5f7;
  border-radius: 12px; padding: .9rem;
}

/* ── Footer ──────────────────────────────────── */
.site-footer {
  background: rgba(255,255,255,.8);
  border: 1px solid #efdfe7;
  border-radius: 22px;
  padding: 1.4rem 1.2rem;
  box-shadow: 0 8px 20px rgba(144,121,133,.12);
}
.site-footer a { color: var(--purple-500); text-decoration: none; font-weight: 700; }
.site-footer a:hover { color: var(--purple-700); text-decoration: underline; }
.footer-stores .store-badge { height: 46px; }

/* ── Animations ──────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
@keyframes sway {
  0%, 100% { transform: rotate(-1deg) translateY(0); }
  50%       { transform: rotate(1deg) translateY(-2px); }
}
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(24px); animation: reveal .8s ease forwards; }
.reveal.d2 { animation-delay: .16s; }
.reveal.d3 { animation-delay: .32s; }

/* ── Misc shared ─────────────────────────────── */
.btn-hb-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: #fff !important;
  border: 0;
  font-weight: 800;
  border-radius: 14px;
  padding: .7rem 1.4rem;
  text-decoration: none !important;
  transition: transform .18s, box-shadow .18s;
  box-shadow: 0 4px 14px rgba(124,92,252,.35);
}
.btn-hb-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,92,252,.45);
}
.btn-hb-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff !important;
  font-weight: 700;
  border-radius: 14px;
  padding: .65rem 1.2rem;
  text-decoration: none !important;
  transition: background .18s;
}
.btn-hb-ghost:hover { background: rgba(255,255,255,.22); }

.site-header .container,
.hero-container { max-width: 1320px; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 991px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  /* Tablet: tüm kartlar tek sütun — temiz 2 kolonlu ızgara */
  .bento-card.bspan-2  { grid-column: span 1; }
  .bento-card.bspan-r2 { grid-row: span 1; }
  /* Anchor kart (Budget) tablet'te 2 col span korunur */
  .bento-card.bento-anchor { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .premium-feature-grid { grid-template-columns: 1fr; }
  .manual-cta-banner { flex-direction: column; text-align: center; gap: 1rem; }
}

@media (max-width: 767px) {
  .hero-wrap { border-radius: 24px; }
  .display-5 { font-size: 2rem; }
  .brand-logo { height: 34px; }
  .site-navbar { border-radius: 24px 24px 0 0; }
  .hero-merged { border-top-left-radius: 0; border-top-right-radius: 0; }
  .hero-slider .carousel-item { min-height: auto; }
  .hero-control { display: none; }
  .hero-heading { font-size: 1.7rem; }
  .hero-desc { font-size: .95rem; max-width: 100%; }
  .hero-chips { gap: .35rem; }
  .hero-chip { font-size: .77rem; padding: .26rem .6rem; }
  .device-mock { max-width: 335px; }
  .device-content { height: 470px; }
  .device-float-wrap { padding-top: 6px; padding-bottom: 12px; }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
    gap: .65rem;
  }
  .bento-card { padding: 1rem; }
  .bento-card.bspan-2  { grid-column: span 1; }
  .bento-card.bspan-r2 { grid-row: span 1; }
  .bento-card.bento-anchor { grid-column: span 2; }
  .bento-icon { font-size: 1.7rem; }
  .bento-title { font-size: 1rem; }
  .bento-desc { display: none; }

  .stats-band { padding: 1.2rem 1rem; }
  .stat-divider { display: none; }

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

  .feature-hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
  .feature-hub-card { padding: .85rem; }

  .rehber-toc { position: relative; top: 0; max-height: none; margin-bottom: 1rem; }
  .rehber-section { padding: 1.2rem; }
  .premium-wrap { padding: 1.4rem 1.2rem; }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .feature-hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
