/* PouchSavings — Homepage design system (v3) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap');

.page-home {
  --home-font: 'Plus Jakarta Sans', Inter, system-ui, sans-serif;
  --home-ink: #0f172a;
  --home-muted: #64748b;
  --home-line: #e2e8f0;
  --home-bg: #f6f7fb;
  --home-card: #ffffff;
  --home-navy: #0b1120;
  --home-navy-2: #151d32;
  --home-accent: #f97316;
  --home-accent-dark: #ea580c;
  --home-indigo: #6366f1;
  --home-brand: #10b981;
  --home-radius: 14px;
  --home-radius-lg: 20px;
  --home-shadow: 0 4px 24px rgba(15, 23, 42, .06);
  --home-shadow-lg: 0 20px 50px rgba(15, 23, 42, .12);
}

.page-home,
.page-home .btn,
.page-home input,
.page-home button {
  font-family: var(--home-font);
}

.page-home main {
  overflow-x: clip;
  background: var(--home-bg);
}

/* --- Buttons (homepage only) --- */
.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .72rem 1.25rem;
  border-radius: 11px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: -.01em;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}

.home-btn-sm { padding: .55rem 1rem; font-size: .82rem; border-radius: 10px; }

.home-btn-accent {
  background: linear-gradient(135deg, var(--home-accent), var(--home-accent-dark));
  color: #fff;
  box-shadow: 0 6px 20px rgba(249, 115, 22, .35);
}

.home-btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(249, 115, 22, .4);
}

.home-btn-solid {
  background: #fff;
  color: var(--home-ink);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
}

.home-btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
}

.home-btn-dark {
  background: var(--home-ink);
  color: #fff;
}

.home-btn-dark:hover {
  background: #1e293b;
  transform: translateY(-1px);
}

.home-btn-line {
  background: transparent;
  color: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .28);
}

.home-btn-line:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .45);
}

.home-btn-line-dark {
  background: var(--home-card);
  color: var(--home-ink);
  border: 1px solid var(--home-line);
}

.home-btn-line-dark:hover {
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

/* --- Hero --- */
.home-hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 2.5rem;
}

.home-hero--light {
  color: var(--home-ink);
  background: linear-gradient(165deg, #fafbff 0%, #f8f4ff 38%, #fff8f3 72%, #f0fdf9 100%);
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 92% 8%, rgba(167, 139, 250, .14), transparent 55%),
    radial-gradient(ellipse 60% 50% at 8% 92%, rgba(251, 191, 36, .12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(52, 211, 153, .08), transparent 60%);
}

/* Animated color blobs */
.home-hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.home-blob {
  position: absolute;
  will-change: transform, border-radius;
  filter: blur(var(--blob-blur, 48px));
  opacity: var(--blob-opacity, .72);
}

.home-blob-1 {
  width: 340px;
  height: 340px;
  top: -12%;
  right: -6%;
  --blob-blur: 52px;
  background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 45%, #818cf8 100%);
  animation:
    blobMorph1 16s ease-in-out infinite,
    blobDrift1 26s ease-in-out infinite;
}

.home-blob-2 {
  width: 280px;
  height: 280px;
  bottom: -8%;
  left: -4%;
  --blob-blur: 44px;
  background: linear-gradient(145deg, #fda4af 0%, #fb7185 50%, #f472b6 100%);
  animation:
    blobMorph2 14s ease-in-out infinite,
    blobDrift2 22s ease-in-out infinite;
  animation-delay: -4s, -6s;
}

.home-blob-3 {
  width: 200px;
  height: 200px;
  top: 35%;
  left: 8%;
  --blob-blur: 40px;
  --blob-opacity: .58;
  background: linear-gradient(160deg, #7dd3fc 0%, #38bdf8 100%);
  animation:
    blobMorph3 18s ease-in-out infinite,
    blobDrift3 28s ease-in-out infinite;
  animation-delay: -2s, -9s;
}

.home-blob-4 {
  width: 160px;
  height: 160px;
  top: 12%;
  left: 38%;
  --blob-blur: 36px;
  --blob-opacity: .5;
  background: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
  animation:
    blobMorph4 12s ease-in-out infinite,
    blobDrift4 20s ease-in-out infinite;
  animation-delay: -7s, -3s;
}

.home-blob-5 {
  width: 220px;
  height: 220px;
  bottom: 15%;
  right: 18%;
  --blob-blur: 46px;
  background: linear-gradient(135deg, #6ee7b7 0%, #34d399 55%, #2dd4bf 100%);
  animation:
    blobMorph5 15s ease-in-out infinite,
    blobDrift5 24s ease-in-out infinite;
  animation-delay: -5s, -11s;
}

.home-blob-6 {
  width: 120px;
  height: 120px;
  top: 55%;
  right: 6%;
  --blob-blur: 28px;
  --blob-opacity: .65;
  background: linear-gradient(145deg, #e9d5ff 0%, #d8b4fe 100%);
  animation:
    blobMorph6 11s ease-in-out infinite,
    blobDrift6 19s ease-in-out infinite;
  animation-delay: -8s, -5s;
}

/* Shape morph — each blob unique rhythm */
@keyframes blobMorph1 {
  0%, 100% { border-radius: 42% 58% 68% 32% / 38% 42% 58% 62%; }
  50%      { border-radius: 62% 38% 42% 58% / 52% 64% 36% 48%; }
}

@keyframes blobMorph2 {
  0%, 100% { border-radius: 58% 42% 38% 62% / 48% 56% 44% 52%; }
  50%      { border-radius: 36% 64% 58% 42% / 60% 38% 62% 40%; }
}

@keyframes blobMorph3 {
  0%, 100% { border-radius: 48% 52% 62% 38% / 44% 58% 42% 56%; }
  50%      { border-radius: 64% 36% 44% 56% / 38% 66% 34% 62%; }
}

@keyframes blobMorph4 {
  0%, 100% { border-radius: 52% 48% 36% 64% / 62% 40% 60% 38%; }
  50%      { border-radius: 38% 62% 54% 46% / 46% 54% 46% 54%; }
}

@keyframes blobMorph5 {
  0%, 100% { border-radius: 44% 56% 52% 48% / 36% 62% 38% 64%; }
  50%      { border-radius: 60% 40% 38% 62% / 58% 42% 58% 42%; }
}

@keyframes blobMorph6 {
  0%, 100% { border-radius: 50% 50% 42% 58% / 54% 46% 54% 46%; }
  50%      { border-radius: 40% 60% 56% 44% / 42% 58% 38% 62%; }
}

/* Gentle floating drift — slow, wide, relaxing loops */
@keyframes blobDrift1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25%      { transform: translate(75px, -60px) rotate(8deg) scale(1.06); }
  50%      { transform: translate(40px, 50px) rotate(-5deg) scale(0.96); }
  75%      { transform: translate(-65px, 35px) rotate(6deg) scale(1.04); }
}

@keyframes blobDrift2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33%      { transform: translate(-70px, 55px) rotate(-10deg) scale(1.05); }
  66%      { transform: translate(55px, -40px) rotate(7deg) scale(0.97); }
}

@keyframes blobDrift3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  20%      { transform: translate(50px, 45px) rotate(6deg) scale(1.04); }
  40%      { transform: translate(-45px, 30px) rotate(-8deg) scale(0.95); }
  60%      { transform: translate(-30px, -50px) rotate(5deg) scale(1.06); }
  80%      { transform: translate(40px, -25px) rotate(-4deg) scale(1); }
}

@keyframes blobDrift4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50%      { transform: translate(-55px, -45px) rotate(12deg) scale(1.08); }
}

@keyframes blobDrift5 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25%      { transform: translate(-60px, -35px) rotate(-7deg) scale(1.05); }
  50%      { transform: translate(35px, -55px) rotate(9deg) scale(0.96); }
  75%      { transform: translate(70px, 25px) rotate(-5deg) scale(1.03); }
}

@keyframes blobDrift6 {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  33%      { transform: translate(45px, -50px) rotate(10deg) scale(1.07); }
  66%      { transform: translate(-50px, 40px) rotate(-12deg) scale(0.94); }
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 380px);
  gap: 2rem;
  align-items: center;
}

.home-hero--light .home-kicker {
  color: var(--home-muted);
  background: rgba(255, 255, 255, .7);
  padding: .35rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(167, 139, 250, .2);
}

.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 .85rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-accent);
  box-shadow: 0 0 8px rgba(249, 115, 22, .5);
  animation: kickerPulse 2.5s ease-in-out infinite;
}

@keyframes kickerPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

.home-hero--light .home-hero-title {
  color: var(--home-ink);
  background: linear-gradient(135deg, #0f172a 0%, #334155 55%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-hero-title {
  margin: 0 0 .85rem;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.035em;
  max-width: 14ch;
}

.home-hero--light .home-hero-lead {
  color: var(--home-muted);
}

.home-hero-lead {
  margin: 0;
  max-width: 42ch;
  font-size: .92rem;
  line-height: 1.55;
  font-weight: 500;
}

.home-hero--light .home-search {
  background: #fff;
  border: 1px solid var(--home-line);
  box-shadow: 0 8px 32px rgba(15, 23, 42, .06);
}

.home-search {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 1.35rem 0 1rem;
  max-width: 440px;
  padding: .4rem .4rem .4rem .9rem;
  border-radius: 13px;
}

.home-hero--light .home-search svg {
  color: var(--home-muted);
}

.home-search svg {
  flex-shrink: 0;
}

.home-hero--light .home-search input {
  color: var(--home-ink);
}

.home-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: .88rem;
  font-weight: 500;
  outline: none;
}

.home-hero--light .home-search input::placeholder {
  color: #94a3b8;
}

.home-search .home-btn {
  padding: .55rem 1rem;
  font-size: .82rem;
  border-radius: 9px;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.home-hero--light .home-hero-metrics {
  border-top-color: var(--home-line);
}

.home-hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.home-hero--light .home-metric strong {
  color: var(--home-ink);
}

.home-metric strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}

.home-hero--light .home-metric span {
  color: var(--home-muted);
}

.home-metric span {
  display: block;
  margin-top: .2rem;
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.home-hero-visual {
  position: relative;
  z-index: 1;
}

.home-hero-visual .deal-carousel {
  max-width: 340px;
  margin: 0 auto;
}

.home-hero-visual .deal-carousel-premium {
  padding: 8px 4px 0;
}

.home-hero--light .home-hero-visual .deal-carousel-premium::before,
.home-hero--light .home-hero-visual .deal-carousel-premium::after {
  background: rgba(255, 255, 255, .6);
  border-color: rgba(167, 139, 250, .2);
}

.home-hero-visual .deal-carousel-premium::before,
.home-hero-visual .deal-carousel-premium::after {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .1);
}

.home-hero--light .home-hero-visual .deal-carousel-viewport {
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, .06),
    0 20px 50px rgba(15, 23, 42, .12);
}

.home-hero-visual .deal-carousel-viewport {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .1),
    0 24px 48px rgba(0, 0, 0, .35);
  animation: none;
}

.home-hero--light .home-hero-visual .deal-nav-btn {
  border-color: var(--home-line);
  background: #fff;
  color: var(--home-ink);
  box-shadow: var(--home-shadow);
}

.home-hero-visual .deal-nav-btn {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
}

/* --- Section system --- */
.home-section {
  padding: 3.5rem 0;
}

.home-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.home-section-header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-label {
  display: inline-block;
  margin-bottom: .4rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--home-accent);
}

.home-label--light { color: rgba(255, 255, 255, .55); }

.home-h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--home-ink);
  line-height: 1.15;
}

.home-h2--light { color: #fff; }

.home-sub {
  margin: .45rem 0 0;
  font-size: .9rem;
  color: var(--home-muted);
  max-width: 44ch;
  line-height: 1.5;
  font-weight: 500;
}

.home-section-header--center .home-sub {
  margin-left: auto;
  margin-right: auto;
}

.home-header-actions {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* --- Explore / categories --- */
.home-explore {
  background: var(--home-card);
  border-bottom: 1px solid var(--home-line);
}

.cat-rail-wrap {
  margin: 0 -.5rem;
  padding: 0 .5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cat-rail-wrap::-webkit-scrollbar { display: none; }

.cat-rail {
  display: flex;
  gap: .75rem;
  padding-bottom: .25rem;
}

.cat-pick {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 220px;
  max-width: 280px;
  padding: .9rem 1rem;
  background: var(--home-bg);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius);
  text-decoration: none;
  color: var(--home-ink);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.cat-pick:hover {
  transform: translateY(-3px);
  box-shadow: var(--home-shadow-lg);
  border-color: #cbd5e1;
}

.cat-pick-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--pick-accent, var(--home-indigo)) 12%, #fff);
  color: var(--pick-accent, var(--home-indigo));
  border: 1px solid color-mix(in srgb, var(--pick-accent, var(--home-indigo)) 20%, transparent);
}

.cat-pick-text {
  flex: 1;
  min-width: 0;
}

.cat-pick-text strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.25;
}

.cat-pick-text em {
  display: block;
  margin-top: .15rem;
  font-size: .75rem;
  font-style: normal;
  font-weight: 500;
  color: var(--home-muted);
}

.cat-pick-go {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .85rem;
  background: var(--home-card);
  border: 1px solid var(--home-line);
  color: var(--home-muted);
  transition: background .2s, color .2s;
}

.cat-pick:hover .cat-pick-go {
  background: var(--home-ink);
  color: #fff;
  border-color: var(--home-ink);
}

.cat-pick-all {
  background: var(--home-ink);
  border-color: var(--home-ink);
  color: #fff;
}

.cat-pick-all .cat-pick-icon {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .15);
}

.cat-pick-all .cat-pick-text em { color: rgba(255, 255, 255, .55); }

.cat-pick-all .cat-pick-go {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .15);
  color: #fff;
}

/* --- Partners --- */
.home-partners {
  background: var(--home-bg);
}

.biz-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.15rem;
}

.biz-feature {
  position: relative;
  background: var(--home-card);
  border-radius: var(--home-radius-lg);
  border: 1px solid var(--home-line);
  overflow: hidden;
  box-shadow: var(--home-shadow);
  transition: transform .3s, box-shadow .3s;
}

.biz-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--home-shadow-lg);
}

.biz-feature-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.biz-feature-media {
  height: 100px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  background-size: cover;
  background-position: center;
  position: relative;
}

.biz-feature-tag {
  position: absolute;
  top: .6rem;
  left: .6rem;
  padding: .25rem .55rem;
  border-radius: 6px;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .95);
  color: var(--home-ink);
}

.biz-feature-tag--gold { color: #b45309; }

.biz-feature-body {
  padding: 0 1rem 1rem;
  margin-top: -24px;
  position: relative;
}

.biz-feature-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .1);
  background: linear-gradient(135deg, var(--home-indigo), #818cf8);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  overflow: hidden;
}

.biz-feature-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biz-feature-body h3 {
  margin: .7rem 0 0;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.25;
  color: var(--home-ink);
}

.biz-feature-tagline {
  margin: .3rem 0 0;
  font-size: .8rem;
  color: var(--home-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.biz-feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .55rem;
}

.biz-feature-meta span {
  font-size: .68rem;
  font-weight: 600;
  padding: .2rem .5rem;
  border-radius: 6px;
  background: var(--home-bg);
  color: var(--home-muted);
}

.biz-feature-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--home-line);
}

.biz-feature-deals {
  font-size: .75rem;
  font-weight: 700;
  color: var(--home-muted);
}

.biz-feature-cta {
  font-size: .78rem;
  font-weight: 800;
  color: var(--home-accent);
}

/* --- Coupons on home --- */
.home-coupons {
  background: var(--home-card);
}

.home-coupons--alt {
  background: var(--home-bg);
  border-top: 1px solid var(--home-line);
}

.home-coupon-grid {
  gap: 1rem;
}

.page-home .section-deals-popular,
.page-home .section-deals-alt {
  background: transparent;
}

/* --- How it works --- */
.home-how {
  background: var(--home-bg);
  border-top: 1px solid var(--home-line);
}

.home-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.home-how-card {
  background: var(--home-card);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--home-shadow);
  transition: transform .25s, box-shadow .25s;
}

.home-how-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--home-shadow-lg);
}

.home-how-num {
  display: block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--home-accent);
  margin-bottom: .75rem;
}

.home-how-card h3 {
  margin: 0 0 .4rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--home-ink);
}

.home-how-card p {
  margin: 0;
  font-size: .85rem;
  color: var(--home-muted);
  line-height: 1.5;
}

.home-how-link {
  text-align: center;
  margin: 1.5rem 0 0;
}

.home-how-link a {
  font-size: .88rem;
  font-weight: 700;
  color: var(--home-indigo);
}

.home-how-link a:hover { color: var(--home-accent); }

/* --- Business CTA panel --- */
.home-biz-cta { padding: 2.5rem 0 3.5rem; }

.home-biz-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 2.25rem;
  border-radius: var(--home-radius-lg);
  background:
    radial-gradient(ellipse 80% 100% at 100% 0%, rgba(99, 102, 241, .25), transparent 55%),
    linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
  color: #fff;
  box-shadow: var(--home-shadow-lg);
}

.home-biz-copy p {
  margin: .65rem 0 1.25rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .65);
  max-width: 40ch;
  line-height: 1.55;
}

.home-biz-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .75rem;
}

.home-biz-perks li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  padding: .75rem 1rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--home-radius);
}

.home-biz-perks li span {
  color: var(--home-accent);
  font-size: .75rem;
}

/* --- Testimonials --- */
.home-testimonials {
  background: var(--home-card);
  border-top: 1px solid var(--home-line);
}

.home-testimonial-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .5rem;
  scrollbar-width: none;
}

.home-testimonial-rail::-webkit-scrollbar { display: none; }

.home-testimonial {
  flex: 0 0 min(340px, 88vw);
  margin: 0;
  padding: 1.35rem;
  background: var(--home-bg);
  border: 1px solid var(--home-line);
  border-radius: var(--home-radius-lg);
}

.home-testimonial p {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--home-ink);
  font-weight: 500;
}

.home-testimonial footer {
  margin-top: 1rem;
  padding-top: .85rem;
  border-top: 1px solid var(--home-line);
}

.home-testimonial footer strong {
  display: block;
  font-size: .85rem;
  font-weight: 800;
}

.home-testimonial footer span {
  font-size: .78rem;
  color: var(--home-muted);
}

/* --- Final CTA --- */
.home-final-cta {
  background: var(--home-ink);
  color: #fff;
  padding: 2.5rem 0;
}

.home-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.home-final-cta h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -.03em;
}

.home-final-cta p {
  margin: .35rem 0 0;
  font-size: .88rem;
  color: rgba(255, 255, 255, .55);
}

.home-final-cta-actions {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-hero-title { max-width: none; }

  .home-hero-visual {
    max-width: 300px;
    margin: 0 auto;
  }

  .home-hero-visual .deal-carousel { max-width: 100%; }

  .home-biz-panel { grid-template-columns: 1fr; }

  .home-how-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .home-hero {
    padding: 1.5rem 0 2rem;
    text-align: center;
  }

  .home-kicker { justify-content: center; }

  .home-hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .home-search {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .home-hero-actions {
    justify-content: center;
  }

  .home-hero-metrics {
    justify-content: center;
  }

  .home-blob-4,
  .home-blob-6 {
    opacity: .45;
    transform: scale(.75);
  }

  .home-blob-1 { width: 220px; height: 220px; }
  .home-blob-2 { width: 180px; height: 180px; }
  .home-blob-5 { width: 160px; height: 160px; }

  .home-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-section-header .home-btn { width: 100%; }

  .home-final-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .home-final-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .home-final-cta-actions .home-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .home-kicker-dot {
    animation: none !important;
  }

  .home-blob {
    animation: none !important;
    translate: none;
  }

  .biz-feature:hover,
  .cat-pick:hover,
  .home-how-card:hover {
    transform: none;
  }
}
