:root {
  --bg: #f6efff;
  --surface: rgba(255, 255, 255, 0.82);
  --ink: #2f2352;
  --muted: #6f648d;
  --line: rgba(92, 58, 154, 0.14);
  --brand: #d63d92;
  --brand-deep: #6f2dbd;
  --accent: #e8b84f;
  --navy: #4c1d95;
  --success: #2f6d52;
  --shadow: 0 24px 50px rgba(77, 34, 129, 0.12);
  --shadow-strong: 0 30px 80px rgba(67, 28, 121, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(232, 184, 79, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(214, 61, 146, 0.15), transparent 24%),
    radial-gradient(circle at 50% 0%, rgba(143, 87, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #fffefe 0%, var(--bg) 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
  opacity: 0.8;
  animation: ambientDrift 16s ease-in-out infinite;
}

body::before {
  top: 120px;
  right: -60px;
  width: 260px;
  height: 260px;
}

body::after {
  bottom: 80px;
  left: -80px;
  width: 300px;
  height: 300px;
  animation-duration: 20s;
  animation-delay: 1.2s;
}

body.page-home::before,
body.page-home::after {
  background: radial-gradient(circle, rgba(190, 84, 112, 0.12), transparent 66%);
}

body.page-products::before {
  background: radial-gradient(circle, rgba(216, 164, 109, 0.16), transparent 68%);
}

body.page-products::after {
  background: radial-gradient(circle, rgba(143, 49, 80, 0.1), transparent 68%);
}

body.page-education::before {
  background: radial-gradient(circle, rgba(31, 47, 66, 0.1), transparent 68%);
}

body.page-education::after {
  background: radial-gradient(circle, rgba(216, 164, 109, 0.12), transparent 66%);
}

body.page-about::before {
  background: radial-gradient(circle, rgba(190, 84, 112, 0.1), transparent 66%);
}

body.page-about::after {
  background: radial-gradient(circle, rgba(216, 164, 109, 0.14), transparent 70%);
}

body.page-contact::before,
body.page-brochure::before {
  background: radial-gradient(circle, rgba(216, 164, 109, 0.14), transparent 66%);
}

body.page-contact::after,
body.page-brochure::after {
  background: radial-gradient(circle, rgba(190, 84, 112, 0.1), transparent 66%);
}

body.page-dashboard::before,
body.page-admin::before {
  background: radial-gradient(circle, rgba(31, 47, 66, 0.12), transparent 68%);
}

body.page-dashboard::after,
body.page-admin::after {
  background: radial-gradient(circle, rgba(190, 84, 112, 0.08), transparent 66%);
}

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

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

.topbar {
  background: #a3275f;
  color: rgba(255, 248, 251, 0.94);
}

.topbar-inner,
.site-shell {
  width: calc(100% - 40px);
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 10px 0;
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.topbar-label {
  flex: 0 0 auto;
  font-weight: 800;
  white-space: nowrap;
  line-height: 1.1;
  text-transform: uppercase;
}

.topbar-marquee {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.topbar-marquee-track {
  display: inline-flex;
  gap: 72px;
  white-space: nowrap;
  will-change: transform;
  animation: topbarMarquee 24s linear infinite;
}

.topbar-marquee-track span {
  display: inline-block;
  line-height: 1.1;
  text-transform: uppercase;
}

.site-shell {
  padding-bottom: 48px;
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  width: 100%;
  margin-inline: auto;
  padding: 18px 24px;
  border: 1px solid rgba(163, 39, 95, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 38px rgba(67, 28, 121, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header .navbar-collapse {
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 236px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.brand-logo-header {
  width: clamp(154px, 18vw, 212px);
}

.brand-logo-footer {
  width: min(280px, 100%);
  margin-bottom: 14px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 24px;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 0.96rem;
  line-height: 1;
}

.site-nav a,
.site-nav .nav-link {
  position: relative;
  padding: 6px 0;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #6d5e78;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav .nav-link:hover {
  color: #a3275f;
  transform: translateY(-1px);
}

.mobile-menu a {
  font-family: "Fraunces", serif;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  line-height: 1.15;
}

.site-nav a::after,
.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  border-radius: 999px;
  background: #a3275f;
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav .nav-link:hover::after,
.site-nav .nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a.is-active,
.site-nav .nav-link.is-active {
  color: #2f2352;
  font-weight: 800;
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
}

.language-switch .language-toggle {
  min-height: 44px;
  padding: 0 16px;
  border-color: rgba(111, 45, 189, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(67, 28, 121, 0.06);
}

.language-switch .dropdown-menu {
  border: 1px solid rgba(111, 45, 189, 0.12);
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(67, 28, 121, 0.14);
  overflow: hidden;
}

.language-switch .dropdown-item.active,
.language-switch .dropdown-item:active {
  background: var(--brand-deep);
  color: #fff;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: none;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  position: relative;
  overflow: hidden;
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
}

.nav-cta,
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand) 70%, #f15bb5);
  box-shadow: 0 18px 28px rgba(111, 45, 189, 0.24);
}

.nav-cta {
  white-space: nowrap;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.button-secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-cta-heartbeat {
  animation: heartbeatCta 1.7s ease-in-out infinite;
  transform-origin: center;
}

.button-heartbeat {
  animation: heartbeatCta 1.7s ease-in-out infinite;
  transform-origin: center;
}

.nav-cta::after,
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.24) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.nav-cta:hover::after,
.button:hover::after {
  transform: translateX(130%);
}

.nav-cta-heartbeat:hover {
  animation-play-state: paused;
}

.button-heartbeat:hover {
  animation-play-state: paused;
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mobile-menu {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 249, 244, 0.92);
  box-shadow: var(--shadow);
  transform-origin: top center;
  animation: menuDrop 220ms ease;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
}

.mobile-menu a.is-active {
  color: var(--brand-deep);
  font-weight: 800;
}

.hero,
.page-hero {
  padding: 74px 0 0;
  position: relative;
}

.hero-home {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.hero-home::before,
.page-hero::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 4%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(190, 84, 112, 0.08), transparent 68%);
  pointer-events: none;
}

.page-hero-grid,
.showcase-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.contact-hero-grid {
  align-items: start;
}

.contact-hero-copy,
.contact-card-priority,
.contact-support-panel {
  min-width: 0;
}

.contact-card-priority {
  padding: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 239, 245, 0.94));
}

.contact-grid-secondary {
  align-items: stretch;
}

.contact-support-panel {
  display: grid;
  align-content: stretch;
}

.contact-support-panel .visual-panel {
  min-height: 100%;
}

.support-hero-grid {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.support-hero-stack {
  display: grid;
  gap: 18px;
}

.support-hero-copy,
.support-hero-visual,
.support-hero-info-card,
.support-hero-quote,
.support-social-shell,
.support-instagram-mock,
.support-post-card {
  border: 1px solid rgba(163, 39, 95, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(75, 43, 92, 0.08);
}

.support-hero-copy {
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-height: 520px;
  padding: 30px;
  background:
    radial-gradient(circle at top left, rgba(214, 61, 146, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 239, 245, 0.94));
}

.support-hero-intro {
  display: grid;
  align-content: start;
}

.support-hero-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.support-hero-info-card,
.support-hero-visual {
  overflow: hidden;
}

.support-hero-info-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.support-hero-info-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-deep);
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
}

.support-hero-info-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.support-hero-visual {
  min-height: 520px;
}

.support-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-hero-quote {
  padding: 26px;
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255, 250, 251, 0.96), rgba(247, 233, 238, 0.92));
}

.support-hero-quote strong {
  display: block;
  line-height: 1.6;
}

.support-social-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  padding: 28px;
}

.support-social-copy {
  display: grid;
  align-content: start;
}

.support-instagram-mock {
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(214, 61, 146, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 239, 245, 0.94));
}

.support-instagram-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.support-instagram-head p,
.support-post-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.support-instagram-avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: #fff;
  font-family: "Fraunces", serif;
  font-weight: 700;
}

.support-instagram-follow {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 22px rgba(111, 45, 189, 0.18);
}

.support-instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-post-card {
  overflow: hidden;
  padding: 14px;
  display: block;
}

.support-post-copy {
  padding: 4px 4px 14px;
}

.support-post-copy span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--brand-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-post-media {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.support-post-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.support-post-overlay {
  position: absolute;
  inset: auto 14px 14px 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(47, 35, 82, 0.78);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.03em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.45rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.32rem;
}

.hero-text,
.section-heading p,
.showcase-copy p,
.insight-card p,
.site-footer p,
.stacked-panel p,
.contact-card p,
.footer-column p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-copy > * {
  animation: heroRise 780ms ease both;
}

.hero-copy > *:nth-child(1) { animation-delay: 60ms; }
.hero-copy > *:nth-child(2) { animation-delay: 120ms; }
.hero-copy > *:nth-child(3) { animation-delay: 180ms; }
.hero-copy > *:nth-child(4) { animation-delay: 240ms; }
.hero-copy > *:nth-child(5) { animation-delay: 300ms; }

.page-hero-grid > *:first-child,
.page-hero-grid > *:last-child {
  animation: heroRise 760ms ease both;
}

.page-hero-grid > *:last-child {
  animation-delay: 160ms;
}

.hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.hero-kpis article,
.stats-band article,
.insight-card,
.product-suite,
.visual-panel,
.cta-panel,
.stacked-panel article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-kpis article,
.insight-card,
.product-suite,
.contact-card {
  padding: 28px;
}

.hero-kpis article,
.product-suite {
  transform-style: preserve-3d;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.hero-kpis article:hover,
.product-suite:hover {
  transform: translateY(-6px) rotateX(3deg);
  border-color: rgba(190, 84, 112, 0.2);
  box-shadow: var(--shadow-strong);
}

.hero-kpis article,
.stats-band article,
.insight-card,
.product-suite,
.visual-panel,
.cta-panel,
.stacked-panel article,
.contact-card,
.dashboard-panel {
  position: relative;
}

.hero-kpis article::after,
.stats-band article::after,
.insight-card::after,
.product-suite::after,
.contact-card::after,
.dashboard-panel::after,
.cta-panel::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(190, 84, 112, 0.2), rgba(216, 164, 109, 0.05), transparent);
}

.product-suite::before,
.hero-kpis article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(216, 164, 109, 0.12), transparent 36%);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.product-suite:hover::before,
.hero-kpis article:hover::before {
  opacity: 1;
}

.hero-kpis strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.8rem;
  font-family: "Fraunces", serif;
}

.hero-kpis span,
.stats-band article span {
  color: var(--muted);
}

.hero-visual {
  position: relative;
  perspective: 1200px;
}

.visual-panel {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 244, 236, 0.88));
  position: relative;
  overflow: hidden;
}

.visual-panel img {
  border-radius: 24px;
  transform: scale(1.01);
  transition: transform 420ms ease, filter 420ms ease;
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 42%, rgba(143, 49, 80, 0.06));
  pointer-events: none;
}

.visual-panel:hover img {
  transform: scale(1.04);
  filter: saturate(1.02);
}

.brand-campaign-panel {
  padding: 12px;
  background:
    radial-gradient(circle at top left, rgba(244, 211, 255, 0.95), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 239, 255, 0.94));
}

.brand-campaign-panel img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
}

.pack-showcase,
.pack-stack-panel {
  min-height: 430px;
}

.pack-showcase {
  display: grid;
  place-items: center;
}

.pack-card {
  position: absolute;
  width: min(42%, 220px);
  padding: 10px;
  border: 1px solid rgba(190, 84, 112, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 26px 70px rgba(88, 45, 57, 0.14);
}

.pack-card img,
.pack-chip img,
.brochure-product-pack img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.pack-card-left {
  left: 4%;
  top: 16%;
  transform: rotate(-10deg) translateY(18px);
}

.pack-card-center {
  position: relative;
  z-index: 2;
  width: min(48%, 250px);
  transform: translateY(-12px);
}

.pack-card-right {
  right: 4%;
  top: 12%;
  transform: rotate(9deg) translateY(24px);
}

.hero-pack-showcase .pack-card-left,
.hero-pack-showcase .pack-card-right,
.catalog-pack-showcase .pack-card-left,
.catalog-pack-showcase .pack-card-right,
.brochure-pack-showcase .pack-card-left,
.brochure-pack-showcase .pack-card-right {
  animation: packFloat 7s ease-in-out infinite;
}

.hero-pack-showcase .pack-card-right,
.catalog-pack-showcase .pack-card-right,
.brochure-pack-showcase .pack-card-right {
  animation-delay: -3.4s;
}

.pack-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
  height: 100%;
}

.pack-chip {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px 14px;
  border: 1px solid rgba(190, 84, 112, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(88, 45, 57, 0.1);
}

.pack-chip span {
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pack-chip-featured {
  transform: translateY(-16px);
}

.brochure-product-pack {
  width: 100%;
  max-width: 220px;
  margin-bottom: 14px;
  padding: 10px;
  border: 1px solid rgba(190, 84, 112, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(88, 45, 57, 0.08);
}

.architecture-carousel {
  --architecture-accent: var(--brand-deep);
  --architecture-accent-soft: rgba(111, 45, 189, 0.14);
  --architecture-accent-glow: rgba(111, 45, 189, 0.24);
  --architecture-accent-strong: #8c57d6;
  display: grid;
  gap: 24px;
  align-content: start;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(244, 211, 255, 0.72), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 240, 255, 0.92));
}

.architecture-carousel.architecture-theme-daily {
  --architecture-accent: #d97a8c;
  --architecture-accent-soft: rgba(217, 122, 140, 0.18);
  --architecture-accent-glow: rgba(217, 122, 140, 0.24);
  --architecture-accent-strong: #e79aa9;
}

.architecture-carousel.architecture-theme-glow {
  --architecture-accent: #d63d92;
  --architecture-accent-soft: rgba(214, 61, 146, 0.16);
  --architecture-accent-glow: rgba(214, 61, 146, 0.24);
  --architecture-accent-strong: #ea77b6;
}

.architecture-carousel.architecture-theme-night {
  --architecture-accent: #4c1d95;
  --architecture-accent-soft: rgba(76, 29, 149, 0.18);
  --architecture-accent-glow: rgba(76, 29, 149, 0.28);
  --architecture-accent-strong: #6d48b1;
}

.architecture-carousel-stage {
  position: relative;
  min-height: 580px;
}

.architecture-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.architecture-tab {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(111, 45, 189, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  opacity: 0.82;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, opacity 180ms ease, color 180ms ease;
}

.architecture-tab span {
  font-weight: 800;
}

.architecture-tab small {
  color: var(--muted);
  font-size: 0.84rem;
}

.architecture-tab:hover,
.architecture-tab.is-active {
  transform: translateY(-2px);
  opacity: 1;
}

.architecture-tab:hover {
  border-color: rgba(111, 45, 189, 0.16);
  background: rgba(255, 255, 255, 0.86);
}

.architecture-tab.is-active {
  color: #fff;
  border-color: var(--architecture-accent-soft);
  background: linear-gradient(135deg, var(--architecture-accent), var(--architecture-accent-strong));
  box-shadow: 0 20px 38px var(--architecture-accent-glow);
}

.architecture-tab.is-active small {
  color: rgba(255, 255, 255, 0.82);
}

.architecture-tab::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
}

.architecture-tab.is-active::after {
  opacity: 1;
  animation: architectureProgress 4.6s linear forwards;
}

.architecture-slide {
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) 0.95fr;
  gap: 26px;
  align-items: center;
  min-height: 560px;
}

.architecture-slide[hidden] {
  display: none !important;
}

.architecture-slide.is-entering {
  animation: panelSwap 360ms ease;
}

.architecture-pack {
  padding: 28px;
  border: 1px solid var(--architecture-accent-soft);
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.98), rgba(244, 232, 255, 0.88));
  box-shadow: 0 28px 64px var(--architecture-accent-glow);
}

.architecture-pack img {
  width: 100%;
  min-height: 460px;
  max-height: 520px;
  height: auto;
  object-fit: contain;
}

.architecture-meta {
  display: grid;
  gap: 14px;
  padding: 8px 4px;
  align-content: start;
}

.architecture-meta h3 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.architecture-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.architecture-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.architecture-use {
  color: var(--architecture-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.architecture-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.architecture-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--architecture-accent-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--architecture-accent);
  box-shadow: 0 16px 32px var(--architecture-accent-soft);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.architecture-arrow:hover {
  transform: translateY(-50%) scale(1.04);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(88, 45, 57, 0.18);
}

.architecture-arrow span {
  font-size: 2rem;
  line-height: 1;
}

.architecture-arrow-prev {
  left: -10px;
}

.architecture-arrow-next {
  right: -10px;
}

.floating-card {
  position: absolute;
  max-width: 260px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background: rgba(255, 251, 247, 0.92);
  box-shadow: var(--shadow-strong);
  animation: cardFloat 6s ease-in-out infinite;
}

.floating-card-top {
  top: 18px;
  right: -18px;
}

.floating-card-bottom {
  bottom: 18px;
  left: -14px;
  animation-duration: 7.2s;
  animation-delay: 0.6s;
}

.floating-label,
.footer-label,
.stats-band article span,
.pill {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding-top: 78px;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(190, 84, 112, 0.55), rgba(216, 164, 109, 0));
}

.section-grid {
  display: grid;
  gap: 28px;
}

.section-heading {
  max-width: 860px;
}

.section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.home-main {
  display: grid;
  gap: 0;
}

.home-main-saathi {
  gap: 0;
}

.saathi-slider-shell,
.saathi-promo-card,
.saathi-banner,
.saathi-feature-card,
.saathi-product-card,
.saathi-wide-banner,
.saathi-vision-grid,
.saathi-loyalty-banner {
  border: 1px solid rgba(163, 39, 95, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(75, 43, 92, 0.08);
}

.saathi-slider-shell {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  min-height: 640px;
}

.saathi-slider-slide {
  position: relative;
  min-height: 640px;
}

.saathi-slider-slide[hidden] {
  display: none !important;
}

.saathi-slider-slide img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.saathi-slider-overlay {
  position: absolute;
  left: 54px;
  bottom: 54px;
  max-width: 560px;
  padding: 28px 30px;
  border-radius: 28px;
  background: rgba(255, 252, 255, 0.84);
  box-shadow: 0 20px 42px rgba(43, 27, 63, 0.16);
  backdrop-filter: blur(10px);
}

.saathi-slider-overlay h1,
.saathi-slider-overlay h2 {
  margin-bottom: 18px;
}

.saathi-slider-dots {
  position: absolute;
  left: 54px;
  bottom: 20px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.saathi-slider-dot {
  width: 44px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.saathi-slider-dot.is-active {
  background: #ffffff;
}

.saathi-promo-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
}

.saathi-promo-card {
  padding: 24px 26px;
}

.saathi-promo-card h3 {
  margin-bottom: 0;
}

.saathi-banner {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.saathi-banner-large {
  grid-row: span 2;
  min-height: 658px;
}

.saathi-banner img,
.saathi-feature-media img,
.saathi-wide-banner-media img,
.saathi-vision-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.saathi-banner-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 252, 255, 0.88);
  box-shadow: 0 12px 28px rgba(43, 27, 63, 0.12);
}

.saathi-banner-copy h1,
.saathi-banner-copy h2 {
  margin-bottom: 16px;
}

.saathi-banner-copy h2,
.saathi-feature-copy h3,
.saathi-wide-banner-copy h3 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.14;
}

.saathi-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.saathi-system-card {
  text-align: center;
}

.saathi-system-card .impact-svg {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}

.saathi-system-card h3 {
  color: var(--brand-deep);
  margin-bottom: 12px;
}

.saathi-system-card p {
  max-width: 28ch;
  margin-inline: auto;
}

.saathi-feature-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.saathi-feature-card {
  overflow: hidden;
}

.saathi-feature-media {
  height: 320px;
}

.saathi-feature-copy,
.saathi-wide-banner-copy {
  padding: 26px;
}

.saathi-feature-copy p,
.saathi-product-card p,
.saathi-wide-banner-copy p,
.saathi-vision-copy p,
.saathi-loyalty-banner p {
  color: var(--muted);
  line-height: 1.7;
}

.saathi-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.saathi-product-card {
  padding: 18px;
  text-align: center;
}

.saathi-product-link {
  display: block;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.saathi-product-link:hover {
  transform: translateY(-4px);
  border-color: rgba(163, 39, 95, 0.22);
  box-shadow: 0 22px 48px rgba(75, 43, 92, 0.12);
}

.saathi-product-image {
  display: grid;
  place-items: center;
  height: 230px;
  margin-bottom: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 251, 253, 0.96), rgba(248, 236, 241, 0.9));
  overflow: hidden;
}

.saathi-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.saathi-wide-banner,
.saathi-vision-grid,
.saathi-loyalty-banner {
  display: grid;
  gap: 0;
}

.saathi-wide-banner {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
}

.saathi-wide-banner-media {
  min-height: 320px;
}

.saathi-wide-banner-copy,
.saathi-vision-copy {
  display: grid;
  align-content: center;
}

.saathi-vision-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: stretch;
  overflow: hidden;
}

.saathi-vision-copy {
  padding: 34px;
}

.saathi-vision-media {
  min-height: 360px;
}

.saathi-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.saathi-logos span {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(163, 39, 95, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  color: #6d5e78;
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  text-align: center;
}

.saathi-loyalty-banner {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, rgba(255, 250, 251, 0.96), rgba(247, 233, 238, 0.92));
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 28px;
  align-items: center;
  padding-top: 54px;
}

.home-hero-copy {
  max-width: 640px;
}

.home-hero-copy h1 {
  max-width: 11ch;
}

.home-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.home-hero-notes span,
.home-logo-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(163, 39, 95, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: #715f72;
  font-size: 0.92rem;
  font-weight: 700;
}

.home-hero-media {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 18px;
  align-items: end;
}

.home-hero-card,
.promo-banner,
.impact-feature-card,
.home-story-panel,
.home-visual-story,
.home-shop-card,
.home-mission-band,
.home-mission-metrics article,
.home-final-cta {
  border: 1px solid rgba(163, 39, 95, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(75, 43, 92, 0.08);
}

.home-hero-card,
.home-visual-story {
  overflow: hidden;
}

.home-hero-card-primary {
  min-height: 560px;
}

.home-hero-card-secondary {
  min-height: 430px;
  align-self: end;
}

.home-hero-card img,
.home-visual-story img,
.home-shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-card-copy,
.home-visual-story-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 252, 255, 0.9);
  box-shadow: 0 12px 28px rgba(43, 27, 63, 0.12);
}

.home-hero-card,
.home-visual-story {
  position: relative;
}

.home-hero-card-copy p,
.home-visual-story-copy strong {
  margin: 0;
}

.home-hero-card-copy p {
  margin-bottom: 8px;
  color: #a3275f;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-floating-panel {
  position: absolute;
  left: 42px;
  bottom: -38px;
  max-width: 320px;
  padding: 22px;
  border: 1px solid rgba(163, 39, 95, 0.12);
  border-radius: 24px;
  background: #fffafc;
  box-shadow: 0 22px 42px rgba(64, 25, 52, 0.16);
}

.hero-floating-panel strong {
  display: block;
  line-height: 1.55;
}

.home-promo-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 84px;
}

.promo-banner {
  padding: 28px;
}

.promo-banner h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  margin-bottom: 0;
}

.promo-banner-accent {
  background: linear-gradient(135deg, rgba(163, 39, 95, 0.08), rgba(237, 188, 201, 0.32));
}

.home-impact-grid,
.home-shop-grid {
  display: grid;
  gap: 20px;
}

.home-impact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.impact-feature-card,
.home-story-panel,
.home-shop-card,
.home-mission-band,
.home-final-cta {
  padding: 28px;
}

.impact-feature-card p,
.home-shop-card p,
.home-mission-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.home-feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 24px;
  align-items: stretch;
}

.home-visual-story {
  min-height: 100%;
}

.home-visual-story-copy {
  max-width: 360px;
}

.home-shop-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-shop-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.home-shop-card-media {
  height: 250px;
  overflow: hidden;
  border-radius: 22px;
}

.home-mission-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 24px;
  background: linear-gradient(135deg, rgba(255, 251, 253, 0.96), rgba(248, 236, 241, 0.94));
}

.home-mission-copy {
  display: grid;
  align-content: center;
}

.home-mission-metrics {
  display: grid;
  gap: 16px;
}

.home-mission-metrics article {
  padding: 24px;
}

.home-mission-metrics strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Fraunces", serif;
  font-size: 2.3rem;
}

.home-logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.home-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(135deg, rgba(255, 250, 251, 0.96), rgba(247, 233, 238, 0.92));
}

.card-grid {
  display: grid;
  gap: 20px;
}

.product-gallery-section {
  display: grid;
  gap: 26px;
}

.trust-slider-section {
  display: grid;
  gap: 24px;
}

.trust-slider {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.trust-slider-main,
.trust-slider-side,
.trust-slide,
.trust-stats article {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.trust-slider-main,
.trust-slider-side {
  position: relative;
}

.trust-slide {
  padding: 30px;
}

.trust-slide[hidden] {
  display: none !important;
}

.trust-slide.is-entering {
  animation: panelSwap 360ms ease;
}

.trust-slide blockquote {
  margin: 0 0 18px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.trust-slide strong {
  display: block;
  margin-bottom: 8px;
}

.trust-slide p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.trust-slider-side {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  background: linear-gradient(160deg, rgba(255, 250, 246, 0.96), rgba(216, 164, 109, 0.16));
}

.trust-stats {
  display: grid;
  gap: 14px;
}

.trust-stats article {
  padding: 20px 22px;
}

.trust-stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 2rem;
  font-family: "Fraunces", serif;
}

.trust-stats span {
  color: var(--muted);
}

.trust-slider-controls {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(21, 32, 43, 0.16);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.slider-dot.is-active {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  transform: scale(1.15);
}

.brochure-hero,
.brochure-comparison,
.brochure-advantages {
  display: grid;
  gap: 24px;
}

.brochure-cover {
  align-items: stretch;
}

.brochure-meta,
.brochure-band {
  display: grid;
  gap: 16px;
}

.brochure-meta {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
}

.brochure-meta article,
.brochure-band article {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.brochure-meta span,
.brochure-band span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brand-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brochure-meta strong,
.brochure-band strong {
  display: block;
  line-height: 1.5;
}

.brochure-band {
  grid-template-columns: repeat(3, 1fr);
}

.brochure-table-wrap {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.brochure-table td:nth-child(3),
.brochure-table td:nth-child(4) {
  min-width: 220px;
}

.brochure-stack article {
  min-height: 150px;
}

.brochure-cta p {
  margin-bottom: 0;
}

.product-gallery {
  --gallery-accent: #d97a8c;
  --gallery-accent-soft: rgba(217, 122, 140, 0.16);
  --gallery-accent-strong: #e79aa9;
  --gallery-accent-glow: rgba(217, 122, 140, 0.2);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: start;
}

.product-gallery.gallery-theme-daily-ease {
  --gallery-accent: #d97a8c;
  --gallery-accent-soft: rgba(217, 122, 140, 0.16);
  --gallery-accent-strong: #e79aa9;
  --gallery-accent-glow: rgba(217, 122, 140, 0.2);
}

.product-gallery.gallery-theme-glow-day {
  --gallery-accent: #d63d92;
  --gallery-accent-soft: rgba(214, 61, 146, 0.16);
  --gallery-accent-strong: #ea77b6;
  --gallery-accent-glow: rgba(214, 61, 146, 0.22);
}

.product-gallery.gallery-theme-flow-night {
  --gallery-accent: #4c1d95;
  --gallery-accent-soft: rgba(76, 29, 149, 0.18);
  --gallery-accent-strong: #6d48b1;
  --gallery-accent-glow: rgba(76, 29, 149, 0.24);
}

.product-gallery-nav {
  display: grid;
  gap: 12px;
}

.gallery-tab {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  text-align: left;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
  opacity: 0.84;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease, opacity 180ms ease, color 180ms ease;
}

.gallery-tab span {
  font-weight: 800;
}

.gallery-tab small {
  color: var(--muted);
}

.gallery-tab:hover,
.gallery-tab.is-active {
  transform: translateY(-3px);
  opacity: 1;
}

.gallery-tab:hover {
  border-color: var(--gallery-accent-soft);
  background: rgba(255, 251, 247, 0.9);
  box-shadow: var(--shadow);
}

.gallery-tab.is-active {
  color: #fff;
  border-color: var(--gallery-accent-soft);
  background: linear-gradient(135deg, var(--gallery-accent), var(--gallery-accent-strong));
  box-shadow: 0 18px 34px var(--gallery-accent-glow);
}

.gallery-tab.is-active small {
  color: rgba(255, 255, 255, 0.82);
}

.gallery-tab::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 10px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
}

.gallery-tab.is-active::after {
  opacity: 1;
  animation: architectureProgress 4.6s linear forwards;
}

.product-gallery-stage {
  position: relative;
}

.gallery-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--gallery-accent-soft);
  border-radius: 32px;
  background: var(--surface);
  box-shadow: 0 22px 48px var(--gallery-accent-glow);
}

.gallery-panel[hidden] {
  display: none !important;
}

.gallery-panel.is-entering {
  animation: panelSwap 360ms ease;
}

.gallery-media {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 244, 236, 0.88));
}

.gallery-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: contain;
}

.gallery-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.gallery-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.four-up {
  grid-template-columns: repeat(4, 1fr);
}

.two-up {
  grid-template-columns: repeat(2, 1fr);
}

.feature-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stats-band article,
.stacked-panel article {
  padding: 24px;
}

.check-list {
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.mini-grid,
.stacked-panel,
.contact-side {
  display: grid;
  gap: 18px;
}

.mini-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 22px;
}

.mini-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.mini-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(190, 84, 112, 0.2);
  box-shadow: var(--shadow);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--brand-deep);
  font-weight: 800;
}

.inline-link {
  color: var(--brand-deep);
  font-weight: 800;
}

.stacked-panel article {
  display: grid;
  gap: 10px;
}

.stacked-panel span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(130deg, rgba(255, 250, 246, 0.94), rgba(216, 164, 109, 0.2));
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.form-heading {
  margin-bottom: 20px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid rgba(190, 84, 112, 0.22);
  border-color: rgba(143, 49, 80, 0.32);
}

.field-error {
  color: var(--brand-deep);
  font-size: 0.88rem;
}

.form-alert {
  padding: 14px 16px;
  border: 1px solid rgba(190, 84, 112, 0.2);
  border-radius: 18px;
  background: rgba(190, 84, 112, 0.08);
  color: var(--brand-deep);
}

.form-alert-success {
  border-color: rgba(47, 109, 82, 0.2);
  background: rgba(47, 109, 82, 0.09);
  color: var(--success);
}

.metric-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 2rem;
  font-family: "Fraunces", serif;
}

.count-up {
  font-variant-numeric: tabular-nums;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.dashboard-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.table-wrap {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.data-table th,
.data-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 0.94rem;
}

.inline-admin-form {
  display: grid;
  gap: 10px;
  min-width: 220px;
}

.inline-admin-form select,
.inline-admin-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
}

.inline-admin-form textarea {
  resize: vertical;
}

.data-table th {
  color: var(--brand-deep);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.empty-state {
  padding: 18px;
  border: 1px dashed rgba(21, 32, 43, 0.18);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.5);
}

.auth-shell {
  width: min(560px, 100%);
  margin: 0 auto;
}

.auth-shell-grid {
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.auth-card {
  padding: 32px;
}

.auth-visual-panel {
  min-height: 100%;
}

.auth-visual-panel img {
  min-height: 100%;
  object-position: center;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.site-footer {
  display: block;
  margin-top: 72px;
  padding: 38px 38px 22px;
  background:
    radial-gradient(circle at top right, rgba(214, 61, 146, 0.22), transparent 30%),
    radial-gradient(circle at top left, rgba(232, 184, 79, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 255, 0.99), rgba(241, 232, 248, 0.97));
  border: 1px solid rgba(111, 45, 189, 0.12);
  border-radius: 36px;
  box-shadow: 0 28px 70px rgba(75, 43, 92, 0.12);
  overflow: hidden;
  position: relative;
}

.footer-top {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 18px;
  position: relative;
  z-index: 1;
  margin: 0;
}

.footer-top > [class*="col-"] {
  display: flex;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -36px;
  right: -18px;
  width: 220px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(111, 45, 189, 0.1), transparent 70%);
  transform: rotate(-10deg);
  pointer-events: none;
}

.footer-brand,
.footer-column {
  position: relative;
  z-index: 1;
  width: 100%;
}

.footer-brand {
  max-width: 100%;
}

.footer-brand::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, rgba(111, 45, 189, 0.22), transparent);
}

.footer-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-title {
  margin: 0 0 14px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.05;
  color: #2f2352;
}

.footer-summary {
  max-width: 46ch;
  margin: 0;
  color: #5e537f;
  line-height: 1.72;
}

.footer-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.footer-metrics article {
  min-height: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(111, 45, 189, 0.08);
}

.footer-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: #2f2352;
  font-size: 0.96rem;
}

.footer-metrics span {
  display: block;
  color: #65597f;
  font-size: 0.86rem;
  line-height: 1.55;
}

.footer-brand p,
.footer-column p,
.footer-column a {
  color: #5e537f;
}

.footer-brand p,
.footer-column p {
  margin: 0;
  line-height: 1.6;
}

.footer-column a {
  transition: color 180ms ease, transform 180ms ease;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--brand-deep);
  transform: translateX(2px);
}

.footer-column-accent {
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(249, 241, 255, 0.94));
  border: 1px solid rgba(111, 45, 189, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(111, 45, 189, 0.08);
  color: var(--brand-deep);
  font-size: 0.76rem;
  font-weight: 700;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand) 70%, #f15bb5);
  color: #fff !important;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 14px 24px rgba(111, 45, 189, 0.16);
}

.footer-cta:hover {
  color: #fff !important;
  transform: translateY(-2px);
}

.footer-secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 4px;
  color: #5e537f;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  margin-top: 22px;
  border-top: 1px solid rgba(92, 58, 154, 0.12);
  color: #70648f;
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

code {
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(21, 32, 43, 0.08);
  font-family: Consolas, monospace;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ambientDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(14px, -18px, 0) scale(1.06);
  }
}

@keyframes packFloat {
  0%, 100% {
    margin-top: 0;
  }
  50% {
    margin-top: -10px;
  }
}

@keyframes architectureProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes panelSwap {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1080px) {
  .support-social-shell,
  .support-instagram-grid,
  .saathi-promo-row,
  .saathi-benefits-grid,
  .saathi-feature-pair,
  .saathi-product-grid,
  .saathi-wide-banner,
  .saathi-vision-grid,
  .saathi-logos,
  .saathi-loyalty-banner,
  .home-hero,
  .home-promo-strip,
  .home-impact-grid,
  .home-feature-split,
  .home-shop-grid,
  .home-mission-band,
  .hero-home,
  .page-hero-grid,
  .showcase-grid,
  .contact-grid,
  .auth-shell-grid,
  .pack-stack,
  .architecture-tabs,
  .architecture-slide,
  .product-gallery,
  .trust-slider,
  .gallery-panel,
  .dashboard-layout,
  .three-up,
  .four-up,
  .two-up,
  .stats-band,
  .brochure-meta,
  .brochure-band {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-metrics {
    grid-template-columns: 1fr;
  }

  .hero-kpis,
  .mini-grid {
    grid-template-columns: 1fr 1fr;
  }

  .floating-card {
    position: static;
    max-width: none;
    margin-top: 14px;
    animation: none;
  }

  .hero-floating-panel {
    position: static;
    max-width: none;
  }

  .saathi-banner-large {
    grid-row: auto;
    min-height: 420px;
  }

  .saathi-slider-shell,
  .saathi-slider-slide,
  .saathi-slider-slide img {
    min-height: 520px;
  }

  .support-hero-visual {
    min-height: 380px;
  }

  .support-hero-copy {
    min-height: auto;
  }

  .support-hero-info-grid {
    grid-template-columns: 1fr;
  }

  .architecture-carousel-stage,
  .architecture-slide {
    min-height: auto;
  }

  .architecture-carousel {
    padding: 18px;
  }

  .architecture-pack img {
    min-height: 360px;
    max-height: 420px;
  }

  .architecture-arrow-prev {
    left: 8px;
  }

  .architecture-arrow-next {
    right: 8px;
  }

  .pack-showcase,
  .pack-stack-panel {
    min-height: auto;
  }

  .pack-showcase {
    gap: 14px;
    padding-top: 26px;
  }

  .pack-card,
  .pack-card-left,
  .pack-card-center,
  .pack-card-right {
    position: relative;
    inset: auto;
    width: min(100%, 280px);
    transform: none;
  }

  .pack-chip-featured {
    transform: none;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-final-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-head,
  .dashboard-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-marquee {
    width: 100%;
  }

  .home-hero {
    padding-top: 42px;
  }

  .saathi-slider-shell {
    margin-top: 22px;
  }

  .support-social-shell {
    padding: 22px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-footer {
    padding: 30px 24px 22px;
  }

  .site-header .navbar-collapse {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(163, 39, 95, 0.12);
  }

  .site-nav {
    align-items: flex-start;
    gap: 12px;
  }

  .site-nav .nav-link {
    width: 100%;
    padding: 12px 0;
  }

  .header-actions {
    width: 100%;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .topbar-inner,
  .site-shell {
    width: calc(100% - 24px);
  }

  .hero,
  .page-hero,
  .section {
    padding-top: 54px;
  }

  .site-header {
    padding: 16px 18px;
    width: 100%;
  }

  .site-footer {
    padding: 26px 20px 20px;
  }

  .footer-column-accent {
    padding: 20px;
  }

  .brand {
    max-width: 210px;
  }

  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .cta-actions,
  .gallery-actions {
    flex-direction: column;
  }

  .saathi-banner-copy,
  .saathi-slider-overlay,
  .saathi-feature-copy,
  .saathi-wide-banner-copy,
  .saathi-vision-copy,
  .saathi-loyalty-banner,
  .saathi-product-card {
    padding: 20px;
  }

  .saathi-banner,
  .saathi-banner-large,
  .saathi-slider-shell,
  .saathi-slider-slide,
  .saathi-slider-slide img,
  .support-hero-visual,
  .saathi-feature-media,
  .saathi-wide-banner-media,
  .saathi-vision-media {
    min-height: 280px;
    height: auto;
  }

  .saathi-slider-overlay {
    left: 18px;
    right: 18px;
    bottom: 48px;
    max-width: none;
  }

  .saathi-slider-dots {
    left: 18px;
    bottom: 18px;
  }

  .saathi-logos span {
    min-height: 72px;
  }

  .home-hero-card-primary,
  .home-hero-card-secondary,
  .home-shop-card-media {
    min-height: auto;
    height: auto;
  }

  .home-hero-card img,
  .home-visual-story img,
  .home-shop-card-media img {
    min-height: 320px;
  }

  .button,
  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .hero-kpis,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .architecture-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .architecture-pack {
    padding: 18px;
  }

  .architecture-pack img {
    min-height: 300px;
    max-height: 360px;
  }

  .architecture-arrow {
    width: 44px;
    height: 44px;
  }

  .trust-slider-controls {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  body::before,
  body::after {
    display: none;
  }

  .pack-card {
    animation: none !important;
  }
}

@media print {
  .topbar,
  .site-header,
  .mobile-menu,
  .site-footer,
  .menu-toggle,
  .nav-cta,
  .hero-actions,
  .cta-actions {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  body::before,
  body::after {
    display: none !important;
  }

  .site-shell,
  .topbar-inner {
    width: 100%;
    margin: 0;
  }

  .page-hero,
  .section {
    padding-top: 26px;
  }

  .visual-panel,
  .insight-card,
  .product-suite,
  .cta-panel,
  .brochure-table-wrap,
  .brochure-meta article,
  .brochure-band article {
    box-shadow: none !important;
    background: #fff !important;
    break-inside: avoid;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  a {
    text-decoration: none;
  }
}

.hero-kpis-wide article strong {
  font-size: 2rem;
}

.page-hero-grid-visual {
  align-items: center;
}

.media-tall img,
.media-square img,
.media-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-tall {
  min-height: 560px;
}

.media-square {
  min-height: 460px;
}

.media-gallery {
  min-height: 440px;
  overflow: hidden;
}

.icon-card {
  text-align: left;
}

.impact-icon {
  display: inline-grid;
  place-items: center;
  min-width: 52px;
  height: 52px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(111, 45, 189, 0.14), rgba(214, 61, 146, 0.16));
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--brand-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.icon-only {
  padding: 0;
}

.button-icon,
.tile-icon,
.impact-svg {
  display: inline-block;
  flex: 0 0 auto;
}

.button-icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tile-icon,
.impact-svg {
  width: 22px;
  height: 22px;
  margin-bottom: 16px;
  color: var(--brand-deep);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-icon {
  margin-bottom: 12px;
}

.product-tile,
.pricing-card,
.offer-card,
.testimonial-card,
.contact-info-card,
.script-card,
.impact-metric {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.product-tile h3,
.offer-card h3,
.testimonial-card strong,
.contact-info-card h3,
.impact-metric strong {
  color: var(--brand-deep);
}

.product-tile,
.offer-card,
.contact-info-card,
.impact-metric {
  position: relative;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.spotlight-band {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.spotlight-copy,
.trust-badge-card,
.mpesa-panel,
.mission-panel {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 250, 255, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.trust-badge-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.trust-badge-card strong {
  display: block;
  font-size: 2.2rem;
  color: var(--brand-deep);
}

.testimonials-section blockquote {
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  text-align: center;
}

.pricing-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.8rem;
  color: var(--brand-deep);
}

.pricing-qty {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.offer-card {
  position: relative;
}

.comic-book-panel {
  align-content: start;
  padding: 30px;
  border: 1px solid rgba(163, 39, 95, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(214, 61, 146, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 239, 245, 0.94));
  box-shadow: 0 22px 54px rgba(75, 43, 92, 0.1);
}

.comic-book-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comic-book-card {
  min-height: 520px;
}

.featured-offer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 239, 255, 0.94));
}

.premium-offer {
  background: linear-gradient(180deg, rgba(255, 252, 240, 0.95), rgba(255, 244, 225, 0.94));
}

.offer-price {
  display: block;
  margin: 14px 0;
  font-size: 2rem;
  color: var(--brand-deep);
}

.trusted-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand));
  color: #fff;
  font-weight: 700;
}

.mpesa-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
}

.mpesa-steps {
  display: grid;
  gap: 16px;
}

.mpesa-steps article {
  padding: 22px;
  border-radius: 22px;
  background: rgba(111, 45, 189, 0.06);
}

.contact-info-card h3,
.script-card h3 {
  margin-top: 0;
}

.single-column {
  grid-template-columns: 1fr;
}

.whatsapp-section .script-card {
  min-height: 100%;
}

.mission-panel {
  text-align: center;
}

.impact-promise-grid .section-heading {
  margin-bottom: 24px;
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .comic-book-gallery,
  .spotlight-band,
  .mpesa-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .comic-book-panel {
    padding: 24px;
  }

  .comic-book-card,
  .media-tall,
  .media-square,
  .media-gallery {
    min-height: 340px;
  }
}

@keyframes topbarMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 28px));
  }
}

@keyframes heartbeatCta {
  0%,
  18%,
  38%,
  100% {
    transform: scale(1);
  }

  9%,
  29% {
    transform: scale(1.06);
  }
}
