/* =========================================================
   DESIGN TOKENS — clean, editorial, professional
   ========================================================= */
:root {
 --bg: #050706; /* obsidian dark base with emerald undertone */
 --bg-alt: #080c09; /* deep dark section band */
 --surface: #0e1410; /* rich dark green glass card surface */
 --surface-card: rgba(14, 22, 17, 0.75);
 --ink: #ffffff; /* pure white headings */
 --ink-soft: #94a3b8; /* silver-gray body text */
 --line: rgba(255, 255, 255, 0.08); /* subtle dark hairline */
 --accent: #00e575; /* Electric Neon Emerald */
 --accent-d: #00c865; /* hover emerald */
 --accent-soft: rgba(0, 229, 117, 0.12);
 --accent-glow: rgba(0, 229, 117, 0.22);

 --maxw: 1140px;
 --maxw-hero: 1280px;
 --measure: 720px;
 --pad: clamp(1.25rem, 5vw, 4rem);
 --gap: clamp(1.5rem, 4vw, 3rem);

 --f-head: "Syne", sans-serif;
 --f-body: "Inter", sans-serif;
 --f-bn: "Hind Siliguri", sans-serif;

 /* Hero & Glass tokens */
 --hero-glow: rgba(0, 229, 117, 0.15);
 --glass-bg: rgba(12, 18, 14, 0.85);
 --glass-border: rgba(0, 229, 117, 0.2);
 --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

[data-theme="light"] {
 --bg: #f5f8f6;
 --bg-alt: #ffffff;
 --surface: #ffffff;
 --surface-card: rgba(255, 255, 255, 0.9);
 --ink: #0b120e;
 --ink-soft: #475569;
 --line: rgba(0, 0, 0, 0.09);
 --accent: #00b85c;
 --accent-d: #00994d;
 --accent-soft: rgba(0, 184, 92, 0.1);
 --accent-glow: rgba(0, 184, 92, 0.16);
 --hero-glow: rgba(0, 184, 92, 0.12);
 --glass-bg: rgba(255, 255, 255, 0.92);
 --glass-border: rgba(0, 184, 92, 0.25);
 --glass-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .nav__cta,
[data-theme="light"] .btn--solid {
  color: #ffffff !important;
}

*,
*::before,
*::after {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
}
html {
 -webkit-text-size-adjust: 100%;
}
body {
 background: var(--bg);
 color: var(--ink);
 font-family: var(--f-body);
 font-weight: 400;
 line-height: 1.7;
 font-size: clamp(1rem, 0.95rem + 0.2vw, 1.08rem);
 -webkit-font-smoothing: antialiased;
 overflow-x: hidden;
}
img {
 max-width: 100%;
 display: block;
}
a {
 color: inherit;
 text-decoration: none;
}
ul {
 list-style: none;
}

.text-accent {
 color: var(--accent);
}

/* =========================================================
   BENTO GRID SYSTEM
   ========================================================= */
.bento-grid {
 display: grid;
 grid-template-columns: repeat(12, 1fr);
 gap: clamp(1rem, 2vw, 1.5rem);
 width: 100%;
}
.bento-card {
 position: relative;
 background: var(--surface-card);
 border: 1px solid var(--glass-border);
 backdrop-filter: blur(12px);
 border-radius: 20px;
 padding: clamp(1.5rem, 3vw, 2.25rem);
 overflow: hidden;
 transition:
  border-color 0.3s ease,
  transform 0.3s ease,
  box-shadow 0.3s ease;
}
.bento-card:hover {
 border-color: var(--accent);
 box-shadow: 0 12px 30px rgba(0, 229, 117, 0.12);
 transform: translateY(-3px);
}
.bento-card__glow {
 position: absolute;
 top: -40px;
 right: -40px;
 width: 140px;
 height: 140px;
 border-radius: 50%;
 background: var(--accent-glow);
 filter: blur(50px);
 pointer-events: none;
}
.bento-col-6 {
 grid-column: span 6;
}
.bento-col-12 {
 grid-column: span 12;
}
.bento-col-4 {
 grid-column: span 4;
}

/* =========================================================
   CONTAINERS & TYPOGRAPHY PRIMITIVES
   ========================================================= */
.container {
 max-width: var(--maxw);
 margin: 0 auto;
 padding-inline: var(--pad);
 width: 100%;
}
.container--hero {
 max-width: var(--maxw-hero);
}
.measure {
 max-width: var(--measure);
}

.section {
 padding-block: clamp(3.5rem, 9vw, 4rem);
}
.section--alt {
 background: var(--bg-alt);
}

.h1 {
 font-family: var(--f-head);
 font-weight: 800;
 font-size: clamp(2.2rem, 5vw, 3.8rem);
 line-height: 1.1;
 letter-spacing: -0.02em;
}
.h2 {
 font-family: var(--f-head);
 font-weight: 700;
 font-size: clamp(1.6rem, 4vw, 2.6rem);
 line-height: 1.15;
 letter-spacing: -0.01em;
 margin-bottom: 2.5rem;
}
.h2.bn {
 font-family: var(--f-bn);
 font-weight: 700;
}
.tag {
 display: inline-block;
 font-family: var(--f-head);
 font-size: 0.78rem;
 letter-spacing: 0.18em;
 text-transform: uppercase;
 color: var(--accent);
 margin-bottom: 1.5rem;
}

/* Bengali Body Text Utility */
.bn {
 font-family: var(--f-bn);
 line-height: 1.8;
}

/* =========================================================
   OPENING SCENE (CINEMATIC FILM INTRO)
   ========================================================= */
.opening-scene {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  pointer-events: none;
  overflow: hidden;
  transition: background 0.3s ease;
}

.opening-scene__glow {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.6);
  filter: blur(40px);
  pointer-events: none;
}

.opening-scene__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  padding: 2rem var(--pad);
}

.opening-scene__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  opacity: 0;
  transform: scale(0.92);
  filter: blur(14px);
  will-change: transform, opacity, filter;
}

.opening-scene__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid var(--glass-border);
  color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
}

.opening-scene__svg {
  width: 24px;
  height: 24px;
}

.opening-scene__logo-text {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: 0.04em;
  color: var(--ink);
}

.opening-scene__tagline {
  font-family: var(--f-head);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 600;
  color: var(--ink-soft);
  min-height: 2em;
  letter-spacing: 0.03em;
}

.opening-scene__phrase {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  filter: blur(8px);
}

.opening-scene__phrase.active {
  display: inline-block;
}

.opening-scene__phrase--welcome {
  color: var(--accent);
  font-weight: 700;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 z-index: 100;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
 padding: 0.9rem var(--pad);
 background: var(--glass-bg);
 backdrop-filter: blur(16px) saturate(180%);
 -webkit-backdrop-filter: blur(16px) saturate(180%);
 border-bottom: 1px solid transparent;
 transition:
  border-color 0.3s ease,
  background 0.3s ease,
  box-shadow 0.3s ease;
}
.nav.scrolled {
 border-color: var(--line);
 box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.nav__logo {
 display: inline-flex;
 align-items: center;
 gap: 0.6rem;
 font-family: var(--f-head);
 font-weight: 800;
 font-size: clamp(1rem, 2.5vw, 1.25rem);
 letter-spacing: 0.04em;
 white-space: nowrap;
 color: var(--ink);
 flex-shrink: 0;
 transition:
  transform 0.25s ease,
  opacity 0.25s ease;
}
.nav__logo:hover {
 transform: translateY(-1px);
}
.nav__logo-mark {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 34px;
 height: 34px;
 border-radius: 10px;
 background: var(--accent-soft);
 border: 1px solid var(--glass-border);
 color: var(--accent);
 transition:
  background 0.3s ease,
  border-color 0.3s ease,
  transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav__logo:hover .nav__logo-mark {
 background: var(--accent-glow);
 border-color: var(--accent);
 transform: scale(1.06);
}
.nav__logo-svg {
 width: 18px;
 height: 18px;
 transition: transform 0.4s ease;
}
.nav__logo:hover .nav__logo-svg {
 transform: rotate(15deg);
}
.nav__logo-text {
 color: var(--ink);
}

.nav__links {
 display: flex;
 align-items: center;
 gap: clamp(1rem, 1.8vw, 1.8rem);
}
.nav__links a:not(.nav__cta) {
 position: relative;
 font-size: 0.88rem;
 font-weight: 500;
 color: var(--ink-soft);
 white-space: nowrap;
 padding: 0.35rem 0.75rem;
 border-radius: 8px;
 transition:
  color 0.25s ease,
  background 0.25s ease;
}
.nav__links a:not(.nav__cta):hover {
 color: var(--ink);
 background: var(--accent-soft);
}

.nav__actions {
 display: flex;
 align-items: center;
 gap: 0.75rem;
 flex-shrink: 0;
}

.nav__cta {
 color: #000000 !important;
 background: var(--accent);
 border: 1px solid var(--accent);
 padding: 0.45rem 1.35rem;
 border-radius: 100px;
 font-weight: 700;
 font-size: 0.88rem;
 white-space: nowrap;
 box-shadow: 0 4px 14px var(--accent-glow);
 transition:
  background 0.25s ease,
  border-color 0.25s ease,
  transform 0.25s ease,
  box-shadow 0.25s ease;
}
.nav__cta:hover {
 background: var(--accent-d);
 border-color: var(--accent-d);
 transform: translateY(-2px);
 box-shadow: 0 6px 20px var(--accent-glow);
}
.nav__cta--mobile {
  display: none;
}

/* Theme Toggle Switch */
.theme-toggle {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 38px;
 height: 38px;
 border-radius: 50%;
 background: var(--accent-soft);
 border: 1px solid var(--glass-border);
 color: var(--accent);
 cursor: pointer;
 transition:
  transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
  background 0.25s ease,
  border-color 0.25s ease,
  box-shadow 0.25s ease;
 flex-shrink: 0;
}
.theme-toggle:hover {
 transform: scale(1.08) rotate(18deg);
 border-color: var(--accent);
 background: var(--accent-glow);
 box-shadow: 0 0 15px var(--accent-glow);
}
.theme-toggle__icon {
 width: 18px;
 height: 18px;
 fill: none;
 stroke: currentColor;
 stroke-width: 2;
 stroke-linecap: round;
 stroke-linejoin: round;
 transition:
  transform 0.4s ease,
  opacity 0.3s ease;
}
.theme-toggle__icon--sun {
 display: none;
}
.theme-toggle__icon--moon {
 display: block;
}

[data-theme="light"] .theme-toggle__icon--sun {
 display: block;
}
[data-theme="light"] .theme-toggle__icon--moon {
 display: none;
}

/* Hamburger Toggle Button */
.nav__toggle {
 display: none;
 flex-direction: column;
 justify-content: center;
 gap: 5px;
 width: 38px;
 height: 38px;
 padding: 8px;
 border-radius: 10px;
 background: var(--accent-soft);
 border: 1px solid var(--glass-border);
 cursor: pointer;
 z-index: 101;
 transition:
  background 0.25s ease,
  border-color 0.25s ease;
}
.nav__toggle:hover {
 border-color: var(--accent);
 background: var(--accent-glow);
}
.nav__toggle span {
 display: block;
 width: 100%;
 height: 2px;
 background: var(--ink);
 border-radius: 2px;
 transition:
  transform 0.3s ease,
  opacity 0.3s ease;
 transform-origin: center;
}
.nav__toggle.open span:nth-child(1) {
 transform: translateY(7px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) {
 opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
 transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 0.6rem;
 padding: 0.85rem 1.6rem;
 border-radius: 100px;
 font-weight: 700;
 font-size: 0.95rem;
 border: 1px solid var(--accent);
 transition:
  transform 0.2s ease,
  background 0.2s,
  color 0.2s,
  border-color 0.2s;
}
.btn:hover {
 transform: translateY(-2px);
}
.btn__arrow {
 width: 16px;
 height: 16px;
 fill: none;
 stroke: currentColor;
 stroke-width: 2.5;
 stroke-linecap: round;
 stroke-linejoin: round;
 transition: transform 0.25s ease;
}
.btn:hover .btn__arrow {
 transform: translateX(4px);
}
.btn--solid {
 background: var(--accent);
 color: #000000;
}
.btn--solid:hover {
 background: var(--accent-d);
 border-color: var(--accent-d);
}
.btn--line {
 background: rgba(255, 255, 255, 0.03);
 color: var(--ink);
 border-color: var(--line);
}
.btn--line:hover {
 border-color: var(--accent);
 color: var(--accent);
 background: var(--accent-soft);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
 min-height: calc(90vh - 80px);
 display: flex;
 flex-direction: column;
 justify-content: center;
 padding-block: 8.5rem 4rem;
 border-bottom: 1px solid var(--line);
 position: relative;
 overflow: hidden;
}
.hero__grid {
 display: grid;
 grid-template-columns: 1.15fr 0.85fr;
 gap: clamp(2.5rem, 4vw, 4.5rem);
 align-items: center;
 width: 100%;
}

.hero__eyebrow {
 display: inline-flex;
 align-items: center;
 gap: 0.6rem;
 padding: 0.4rem 0.95rem;
 border-radius: 100px;
 background: rgba(223, 186, 107, 0.08);
 border: 1px solid var(--glass-border);
 font-family: var(--f-head);
 font-size: 0.78rem;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: var(--accent);
 margin-bottom: 1.3rem;
 backdrop-filter: blur(8px);
}
.hero__eyebrow-dot {
 width: 6px;
 height: 6px;
 border-radius: 50%;
 background: var(--accent);
 box-shadow: 0 0 8px var(--accent);
}

.hero__title {
 font-family: var(--f-head);
 font-weight: 800;
 font-size: clamp(1.85rem, 3.2vw, 2.75rem);
 line-height: 1.15;
 letter-spacing: -0.02em;
 margin-bottom: 1.2rem;
}
.hero__lead {
 font-size: clamp(0.95rem, 1.2vw, 1.12rem);
 color: var(--ink-soft);
 line-height: 1.6;
 margin-bottom: 1.1rem;
}
.hero__lead strong {
 color: var(--accent);
 font-weight: 700;
}
.hero__desc-bn {
 color: var(--ink-soft);
 margin-bottom: 1.8rem;
 font-size: clamp(0.9rem, 1.1vw, 1rem);
 line-height: 1.8;
}
.hero__actions {
 display: flex;
 flex-wrap: wrap;
 gap: 0.9rem;
}
.hero__proof-strip {
 display: flex;
 align-items: center;
 gap: 0.75rem;
 margin-top: 1.8rem;
 padding-top: 1.2rem;
 border-top: 1px solid var(--line);
}
.hero__stars {
 color: var(--accent);
 letter-spacing: 0.1em;
 font-size: 0.95rem;
}
.hero__proof-text {
 font-size: 0.85rem;
 color: var(--ink-soft);
}
.hero__proof-text strong {
 color: var(--ink);
}

/* Hero Visual Centerpiece */
.hero__visual {
 position: relative;
 display: flex;
 align-items: center;
 justify-content: center;
 width: 100%;
 max-width: 450px;
 margin-inline: auto;
}
.hero__glow {
 position: absolute;
 width: 140%;
 height: 140%;
 background: radial-gradient(
  circle,
  rgba(0, 229, 117, 0.3) 0%,
  rgba(0, 229, 117, 0.12) 45%,
  transparent 70%
 );
 top: -20%;
 left: -20%;
 pointer-events: none;
 z-index: 0;
 filter: blur(40px);
}
.hero__orbit-ring {
 position: absolute;
 inset: -16px;
 width: calc(100% + 32px);
 height: calc(100% + 32px);
 border-radius: 28px;
 border: 1.5px dashed rgba(0, 229, 117, 0.45);
 box-shadow: 0 0 15px rgba(0, 229, 117, 0.15);
 pointer-events: none;
 z-index: 1;
 opacity: 0.85;
 animation: heroOrbitRotate 35s linear infinite;
}
@keyframes heroOrbitRotate {
 from {
  transform: rotate(0deg);
 }
 to {
  transform: rotate(360deg);
 }
}

.hero__img-wrapper {
 position: relative;
 z-index: 2;
 width: 100%;
 max-width: 420px;
 aspect-ratio: 1 / 1;
 border-radius: 20px;
 overflow: hidden;
 border: 1px solid var(--glass-border);
 box-shadow: var(--glass-shadow);
 background: var(--surface);
}
.hero__img-wrapper::after {
 content: "";
 position: absolute;
 inset: 0;
 background: linear-gradient(
  to top,
  rgba(5, 5, 5, 0.65) 0%,
  rgba(5, 5, 5, 0) 40%
 );
 pointer-events: none;
}
.hero__img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: top center;
 filter: contrast(104%);
 transform: scale(1.14);
 transition: transform 0.5s ease;
}
.hero__img-wrapper:hover .hero__img {
 transform: scale(1.18);
}

/* Tasteful Glass Stat Badges (Clean SVG icons) */
.hero__badge {
 position: absolute;
 z-index: 3;
 display: flex;
 align-items: center;
 gap: 0.65rem;
 padding: 0.55rem 1rem;
 background: var(--glass-bg);
 border: 1px solid var(--glass-border);
 backdrop-filter: blur(12px);
 border-radius: 100px;
 box-shadow: var(--glass-shadow);
 white-space: nowrap;
 font-size: 0.82rem;
 font-weight: 600;
 color: var(--ink);
 transition:
  border-color 0.25s,
  transform 0.25s;
}
.hero__badge:hover {
 border-color: var(--accent);
 transform: translateY(-2px);
}
.hero__badge--top {
 top: 4%;
 right: -4%;
 animation: floatTop 4.2s ease-in-out infinite alternate;
}
.hero__badge--bottom {
 bottom: 4%;
 left: -4%;
 animation: floatBottom 4.8s ease-in-out infinite alternate;
}

@keyframes floatTop {
 0% {
  transform: translateY(0px) rotate(0deg);
 }
 50% {
  transform: translateY(-7px) rotate(0.8deg);
 }
 100% {
  transform: translateY(-2px) rotate(-0.5deg);
 }
}

@keyframes floatBottom {
 0% {
  transform: translateY(0px) rotate(0deg);
 }
 50% {
  transform: translateY(7px) rotate(-0.8deg);
 }
 100% {
  transform: translateY(2px) rotate(0.5deg);
 }
}
.hero__badge-icon {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 28px;
 height: 28px;
 border-radius: 50%;
 background: rgba(223, 186, 107, 0.15);
 color: var(--accent);
 flex-shrink: 0;
}
.hero__badge-icon svg {
 width: 14px;
 height: 14px;
 fill: currentColor;
}

/* Business Ventures Strip */
.hero__ventures {
 margin-top: 3.5rem;
 padding-top: 2rem;
 border-top: 1px solid var(--line);
 display: flex;
 flex-direction: column;
 gap: 1rem;
 align-items: center;
 width: 100%;
}
.hero__ventures-title {
 font-family: var(--f-head);
 font-size: 0.75rem;
 letter-spacing: 0.16em;
 text-transform: uppercase;
 color: var(--ink-soft);
 opacity: 0.85;
}
.hero__ventures-grid {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: center;
 gap: 0.9rem 1.8rem;
}
.hero__venture-chip {
 display: flex;
 align-items: center;
 gap: 0.75rem;
 padding: 0.5rem 1.25rem;
 border-radius: 100px;
 background: var(--surface-card);
 border: 1px solid var(--glass-border);
 color: var(--ink-soft);
 font-family: var(--f-head);
 font-size: 0.85rem;
 font-weight: 600;
 backdrop-filter: blur(12px);
 transition:
  border-color 0.25s,
  color 0.25s,
  background 0.25s,
  transform 0.25s;
}
.hero__venture-chip--n2b {
 background-color: #fff;
}
.hero__venture-chip:hover {
 border-color: var(--glass-border);
 color: var(--ink);
 background: var(--surface);
 transform: translateY(-2px);
}
.hero__venture-chip--n2b:hover {
 background-color: #fff;
}
.hero__venture-logo {
 height: 26px;
 width: auto;
 max-width: 90px;
 object-fit: contain;
 filter: brightness(0.95) contrast(1.05);
 transition:
  filter 0.25s,
  transform 0.25s;
}
.hero__venture-chip:hover .hero__venture-logo {
 filter: brightness(1.1) contrast(1.1);
 transform: scale(1.05);
}

/* =========================================================
   CONVERSION UTILITIES & SECTIONS
   ========================================================= */
.text-center {
 text-align: center;
}
.center-measure {
 margin-inline: auto;
}
.section-intro,
.section__intro,
.section--intro {
 margin-bottom: 2.5rem;
}
.section__intro .h2,
.section--intro .h2 {
 margin-bottom: 0.8rem;
}
.section__intro .tag,
.section--intro .tag {
 margin-bottom: 0.8rem;
}
.section__intro.text-center,
.section--intro.text-center {
 text-align: center;
}
.h2--hero-size {
 font-size: clamp(2rem, 4.5vw, 3.2rem);
 line-height: 1.15;
 letter-spacing: -0.02em;
}

/* Section 02: Business Challenges Grid */
.challenges-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
 gap: clamp(1rem, 2vw, 1.5rem);
}
.challenge-card {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
}
.challenge-card__icon {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 44px;
 height: 44px;
 border-radius: 12px;
 background: var(--accent-soft);
 border: 1px solid var(--glass-border);
 color: var(--accent);
 margin-bottom: 1.2rem;
}
.challenge-card__icon svg {
 width: 22px;
 height: 22px;
 fill: none;
 stroke: currentColor;
 stroke-width: 2;
 stroke-linecap: round;
 stroke-linejoin: round;
}
.challenge-card h3 {
 font-family: var(--f-head);
 font-size: 1.15rem;
 font-weight: 700;
 margin-bottom: 0.6rem;
 color: var(--ink);
}

/* Section 03: Who I Help Pills */
.who-pills {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: center;
 gap: 0.85rem 1.2rem;
 margin-top: 1.8rem;
}
.who-pill {
 display: inline-flex;
 align-items: center;
 padding: 0.6rem 1.4rem;
 border-radius: 100px;
 background: var(--surface-card);
 border: 1px solid var(--glass-border);
 color: var(--accent);
 font-family: var(--f-head);
 font-size: 0.92rem;
 font-weight: 700;
 letter-spacing: 0.04em;
 backdrop-filter: blur(12px);
 transition:
  transform 0.25s ease,
  border-color 0.25s ease,
  background 0.25s ease;
}
.who-pill:hover {
 transform: translateY(-2px);
 border-color: var(--accent);
 background: var(--accent-soft);
}

/* Section 04: Belief Flow */
.belief-flow {
 display: flex;
 flex-wrap: wrap;
 align-items: center;
 justify-content: space-between;
 gap: 1rem;
 margin-top: 2.5rem;
 padding: 1.6rem 2rem;
 background: var(--surface-card);
 border: 1px solid var(--glass-border);
 border-radius: 20px;
}
.belief-step {
 display: flex;
 align-items: center;
 gap: 0.6rem;
 font-family: var(--f-head);
 font-size: 0.95rem;
 color: var(--ink);
}
.belief-step span {
 color: var(--accent);
 font-weight: 800;
 font-size: 0.85rem;
}
.belief-arrow {
 color: var(--accent);
 font-weight: 700;
 opacity: 0.6;
}

/* Section 08: How I Work Grid */
.how-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
 gap: clamp(1rem, 2vw, 1.5rem);
}
.how-card {
 display: flex;
 flex-direction: column;
}
.how-card__step {
 font-family: var(--f-head);
 font-size: 0.85rem;
 font-weight: 800;
 color: var(--accent);
 letter-spacing: 0.1em;
 margin-bottom: 0.8rem;
}
.how-card h3 {
 font-family: var(--f-head);
 font-size: 1.15rem;
 font-weight: 700;
 margin-bottom: 0.6rem;
 color: var(--ink);
}

/* Section 12: Final CTA helpers */
.cta-lead {
 color: var(--ink);
 font-weight: 600;
 margin-bottom: 0.8rem;
}
.cta-subtext {
 margin-bottom: 2rem;
}
.cta-actions {
 justify-content: center;
 margin-bottom: 2.5rem;
}

.journey__action {
 margin-top: 3rem;
 text-align: center;
}

/* =========================================================
   IMPACT METRICS BENTO STRIP
   ========================================================= */
.section--impact {
 background: var(--bg-alt);
 border-bottom: 1px solid var(--line);
}
.impact__header {
 text-align: center;
 margin-bottom: 2.5rem;
}
.impact__grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
 gap: 1.5rem;
}
.impact__card {
 text-align: center;
 padding: 2.2rem 1.5rem;
 background: var(--surface-card);
 border: 1px solid var(--glass-border);
 border-radius: 20px;
}
.impact__num {
 display: block;
 font-family: var(--f-head);
 font-size: clamp(2.4rem, 4.2vw, 3.4rem);
 font-weight: 800;
 color: var(--accent);
 line-height: 1;
 margin-bottom: 0.6rem;
 letter-spacing: -0.02em;
}
.impact__label {
 font-size: 0.92rem;
 color: var(--ink-soft);
 font-weight: 500;
}

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline {
 display: grid;
 gap: 0;
}
.tl {
 display: grid;
 grid-template-columns: 230px 1fr;
 gap: clamp(1rem, 3vw, 2.5rem);
 padding: 1.8rem 0;
 border-top: 1px solid var(--line);
}
.tl:last-child {
 border-bottom: 1px solid var(--line);
}
.tl__year {
 font-family: var(--f-head);
 font-size: 0.85rem;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 color: var(--accent);
 padding-top: 0.2rem;
}
.tl__body h3 {
 font-family: var(--f-head);
 font-weight: 600;
 font-size: clamp(1.15rem, 2.5vw, 1.4rem);
 margin-bottom: 0.5rem;
}
.tl__body p,
.tl__body .list {
 color: var(--ink-soft);
}

/* =========================================================
   LISTS
   ========================================================= */
.list li {
 position: relative;
 padding-left: 1.4rem;
 margin: 0.45rem 0;
}
.list li::before {
 content: "";
 position: absolute;
 left: 0;
 top: 0.85em;
 width: 6px;
 height: 1px;
 background: var(--accent);
}
.list.bn li::before {
 top: 1em;
}
.list.big li {
 font-size: clamp(1.1rem, 2.5vw, 1.45rem);
 padding: 0.8rem 0 0.8rem 1.6rem;
 border-bottom: 1px solid var(--line);
 margin: 0;
}
.list.big li::before {
 top: 1.4em;
 width: 8px;
}

/* =========================================================
   STATS
   ========================================================= */
.stats {
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: clamp(1.25rem, 3vw, 2rem);
 border-top: 1px solid var(--line);
 border-bottom: 1px solid var(--line);
 padding: clamp(2rem, 4vw, 3rem) 0;
}

.stat {
 text-align: left;
}
.stat__num {
 display: block;
 font-family: var(--f-head);
 font-weight: 800;
 font-size: clamp(1.8rem, 4.5vw, 3rem);
 line-height: 1;
 letter-spacing: -0.02em;
}
.stat__label {
 display: block;
 margin-top: 0.6rem;
 font-size: 0.9rem;
 color: var(--ink-soft);
}
.proof-line {
 margin-top: 2rem;
 font-family: var(--f-head);
 font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

/* =========================================================
   STORY (long-form Bengali)
   ========================================================= */
.story-section--hidden {
 display: none;
}
.story-section--visible {
 display: block;
}
.story p {
 color: var(--ink-soft);
 margin-bottom: 1.4rem;
}
.story .pull {
 color: var(--ink);
 border-left: 3px solid var(--accent);
 font-family: var(--f-bn);
 font-size: clamp(1.25rem, 3vw, 1.7rem);
 font-weight: 500;
 line-height: 1.5;
 padding: 1.5rem 0 1.5rem 1.5rem;
 margin: 2rem 0;
}

/* =========================================================
   BRANDS / NOW CARDS
   ========================================================= */
.brands {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
 gap: clamp(1rem, 2.5vw, 1.5rem);
}
.brand {
 border: 1px solid var(--line);
 border-radius: 6px;
 padding: clamp(1.5rem, 3vw, 2.2rem);
 background: var(--surface);
 transition:
  border-color 0.25s,
  transform 0.25s;
}
.brand:hover {
 border-color: var(--accent);
 transform: translateY(-3px);
}

.brand h3 {
 font-family: var(--f-head);
 font-weight: 600;
 font-size: clamp(1.15rem, 2.5vw, 1.4rem);
 margin-bottom: 0.6rem;
}
.brand p {
 color: var(--ink-soft);
 font-size: 0.98rem;
}
.brand__logo-pill {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 height: 48px;
 min-width: 48px;
 padding: 0.4rem 0.95rem;
 border-radius: 12px;
 background: rgba(255, 255, 255, 0.03);
 border: 1px solid var(--line);
 margin-bottom: 1.25rem;
 transition:
  border-color 0.25s,
  background 0.25s,
  transform 0.25s;
}
.brand:hover .brand__logo-pill {
 border-color: var(--glass-border);
 background: rgba(223, 186, 107, 0.08);
 transform: translateY(-2px);
}
.brand__logo {
 height: 30px;
 width: auto;
 max-width: 130px;
 object-fit: contain;
 opacity: 0.85;
 filter: brightness(0.9) contrast(1.05);
 transition:
  filter 0.25s,
  opacity 0.25s,
  transform 0.25s;
}
.brand:hover .brand__logo {
 opacity: 1;
 filter: brightness(1.1) contrast(1.1);
 transform: scale(1.04);
}
.brand__logo-pill--icon {
 color: var(--accent);
 padding: 0;
 width: 48px;
}
.brand__logo-pill--icon svg {
 width: 22px;
 height: 22px;
 fill: currentColor;
}

/* =========================================================
   TWO-COLUMN BLOCKS
   ========================================================= */
.two-col {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
 gap: clamp(2rem, 5vw, 4rem);
}
.col-lead {
 font-size: 1.1rem;
 color: var(--ink);
 margin-bottom: 1.2rem;
}
.note {
 margin-top: 1.4rem;
 font-weight: 500;
 color: var(--ink);
 padding-top: 1rem;
 border-top: 1px solid var(--line);
}

/* =========================================================
   APPROACH
   ========================================================= */
.approach {
 display: grid;
 gap: 0;
}
.approach p {
 font-family: var(--f-head);
 font-weight: 600;
 font-size: clamp(1.2rem, 3vw, 1.7rem);
 color: var(--ink-soft);
 border-top: 1px solid var(--line);
 padding: 1.4rem 0;
}
.approach p:last-child {
 border-bottom: 1px solid var(--line);
}
.approach p span {
 display: block;
 color: var(--ink);
 margin-top: 0.3rem;
}
.approach p span::before {
 content: "→ ";
 color: var(--accent);
}

/* =========================================================
   CONNECT
   ========================================================= */
.connect__actions {
 display: flex;
 flex-wrap: wrap;
 gap: 0.9rem;
 margin-bottom: 2rem;
}
.socials {
 display: flex;
 flex-wrap: wrap;
 gap: 1.8rem;
}
.socials a {
 color: var(--ink-soft);
 position: relative;
 transition: color 0.2s;
}
.socials a:hover {
 color: var(--accent);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
 padding: 2.5rem var(--pad);
 text-align: center;
 border-top: 1px solid var(--line);
 color: var(--ink-soft);
 font-size: 0.88rem;
}
.footer__brand {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 0.6rem;
 margin-bottom: 0.8rem;
}
.footer__logo-text {
 font-family: var(--f-head);
 font-weight: 800;
 font-size: 1.5rem;
 letter-spacing: 0.06em;
 color: var(--ink);
 margin-bottom: 0;
}

/* =========================================================
   SCROLL REVEAL (initial hidden state)
   ========================================================= */
.reveal {
 opacity: 0;
 transform: translateY(28px);
 will-change: transform, opacity;
}
.no-js .reveal {
 opacity: 1;
 transform: none;
} /* graceful fallback */

/* Hamburger button (hidden on desktop) */
.nav__toggle {
 display: none;
 flex-direction: column;
 justify-content: center;
 gap: 5px;
 width: 42px;
 height: 42px;
 background: none;
 border: none;
 cursor: pointer;
 z-index: 60;
}
.nav__toggle span {
 display: block;
 width: 24px;
 height: 2px;
 background: var(--ink);
 margin: 0 auto;
 transition:
  transform 0.3s ease,
  opacity 0.25s ease;
}
/* Animate into an X when open */
.nav__toggle.open span:nth-child(1) {
 transform: translateY(7px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) {
 opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
 transform: translateY(-7px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
 .reveal {
  opacity: 1 !important;
  transform: none !important;
 }
}

/* =========================================================
   VIDEO, GALLERY, CMS BLOG & FLOATER COMPONENTS
   ========================================================= */
.intro-video {
 position: relative;
 width: 100%;
 max-width: 800px;
 margin: 3rem auto 0;
 border-radius: 12px;
 overflow: hidden;
 border: 1px solid var(--line);
 background: var(--surface);
 aspect-ratio: 16 / 9;
 box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
.intro-video iframe,
.intro-video video {
 width: 100%;
 height: 100%;
 border: none;
 display: block;
}

.gallery {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 1.5rem;
 margin-top: 2rem;
}
.gallery__item {
 position: relative;
 border-radius: 8px;
 overflow: hidden;
 border: 1px solid var(--line);
 aspect-ratio: 4 / 3;
 background: var(--surface);
}
.gallery__img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition:
  transform 0.4s ease,
  filter 0.4s ease;
 filter: grayscale(20%);
}
.gallery__item:hover .gallery__img {
 transform: scale(1.04);
 filter: grayscale(0%);
}
.gallery__caption {
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 padding: 1.2rem 1.5rem;
 background: linear-gradient(
  to top,
  rgba(0, 0, 0, 0.9) 0%,
  rgba(0, 0, 0, 0) 100%
 );
 color: #ffffff;
 font-family: var(--f-head);
 font-size: 0.9rem;
 font-weight: 600;
 transition: opacity 0.3s ease;
}

.blog-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 1.5rem;
 margin-top: 2.5rem;
}
.blog-card {
 background: var(--surface);
 border: 1px solid var(--line);
 border-radius: 8px;
 padding: 2rem;
 transition:
  border-color 0.3s ease,
  transform 0.3s ease;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
}
.blog-card:hover {
 border-color: var(--accent);
 transform: translateY(-4px);
}
.blog-card__tag {
 display: inline-block;
 font-size: 0.72rem;
 font-family: var(--f-head);
 text-transform: uppercase;
 color: var(--accent);
 letter-spacing: 0.15em;
 margin-bottom: 0.8rem;
}
.blog-card__title {
 font-family: var(--f-head);
 font-size: 1.3rem;
 font-weight: 700;
 line-height: 1.35;
 margin-bottom: 1rem;
 color: var(--ink);
}
.blog-card__title.bn {
 font-family: var(--f-bn);
 font-weight: 600;
}
.blog-card__excerpt {
 font-size: 0.95rem;
 color: var(--ink-soft);
 margin-bottom: 1.8rem;
}
.blog-card__link {
 font-size: 0.9rem;
 font-weight: 600;
 color: var(--accent);
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 transition: color 0.2s;
}
.blog-card__link::after {
 content: "→";
 transition: transform 0.2s ease;
}
.blog-card__link:hover {
 color: var(--ink);
}
.blog-card__link:hover::after {
 transform: translateX(4px);
}

.whatsapp-float {
 position: fixed;
 bottom: 2rem;
 right: 2rem;
 width: 60px;
 height: 60px;
 background: #25d366;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
 z-index: 100;
 transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 cursor: pointer;
}
.whatsapp-float:hover {
 transform: scale(1.1);
 box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
 width: 32px;
 height: 32px;
 fill: #ffffff;
}

.sticky-cta {
 position: fixed;
 bottom: 2rem;
 left: 2rem;
 z-index: 99;
 display: inline-flex;
 align-items: center;
 gap: 0.55rem;
 height: 42px;
 padding: 0 1.1rem;
 border-radius: 100px;
 background: var(--glass-bg);
 border: 1px solid var(--glass-border);
 backdrop-filter: blur(12px);
 box-shadow: var(--glass-shadow);
 color: var(--ink);
 font-family: var(--f-head);
 font-size: 0.76rem;
 font-weight: 700;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 text-decoration: none;
 pointer-events: none;
 opacity: 0;
 transform: translateY(20px);
 transition:
  transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
  opacity 0.4s ease,
  border-color 0.25s,
  background 0.25s;
}
.sticky-cta--visible {
 opacity: 1;
 transform: translateY(0);
 pointer-events: auto;
}
.sticky-cta:hover {
 border-color: var(--accent);
 background: rgba(223, 186, 107, 0.08);
 color: var(--accent);
}
.sticky-cta__dot {
 width: 7px;
 height: 7px;
 border-radius: 50%;
 background: var(--accent);
 box-shadow: 0 0 8px var(--accent);
 animation: ctaPulse 1.8s infinite;
}
@keyframes ctaPulse {
 0% {
  transform: scale(0.9);
  opacity: 0.6;
 }
 50% {
  transform: scale(1.15);
  opacity: 1;
  box-shadow: 0 0 12px var(--accent);
 }
 100% {
 }
}

/* ========================================================
   RESPONSIVE (MOBILE & TABLET ADAPTATIONS ONLY - DESKTOP FROZEN)
   ========================================================= */
@media (max-width: 1100px) and (min-width: 981px) {
  .nav__links {
    gap: 0.85rem;
  }
  .nav__links a:not(.nav__cta) {
    font-size: 0.84rem;
    padding: 0.3rem 0.55rem;
  }
  .nav__cta--desktop {
    padding: 0.4rem 1rem;
    font-size: 0.84rem;
  }
}

@media (max-width: 980px) {
  .nav__cta--desktop {
    display: none;
  }
  .nav__cta--mobile {
    display: inline-flex;
    align-self: center;
  }
  .nav__links a:not(.nav__cta) {
    display: block;
  }
 .hero {
  min-height: auto;
  padding-block: 4.5rem 2.75rem;
 }
 .hero__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  align-items: center;
 }
 .hero__visual {
  order: -1;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 0.75rem;
  position: relative;
 }
 .hero__img-wrapper {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
 }
 .hero__img-wrapper::after {
  display: none;
 }
 .hero__badge {
  font-size: 0.76rem;
  padding: 0.45rem 0.85rem;
  gap: 0.5rem;
 }
 .hero__badge-icon {
  width: 24px;
  height: 24px;
 }
 .hero__badge-icon svg {
  width: 12px;
  height: 12px;
 }
 .hero__badge--top {
  top: -8px;
  right: -8px;
 }
 .hero__badge--bottom {
  bottom: -8px;
  left: -8px;
 }
 .hero__eyebrow {
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.6rem;
 }
 .hero__title {
  font-size: clamp(1.45rem, 5vw, 1.85rem);
  line-height: 1.2;
  margin-bottom: 0.6rem;
 }
 .hero__lead {
  font-size: clamp(0.88rem, 3vw, 0.98rem);
  line-height: 1.45;
  margin-bottom: 0.6rem;
  max-width: 540px;
  margin-inline: auto;
 }
 .hero__desc-bn {
  font-size: clamp(0.85rem, 2.8vw, 0.92rem);
  line-height: 1.65;
  margin-bottom: 1.2rem;
  max-width: 540px;
  margin-inline: auto;
 }
 .hero__actions {
  justify-content: center;
  gap: 0.85rem;
 }
 .hero__actions .btn {
  padding: 0.75rem 1.6rem;
  font-size: 0.9rem;
 }
 .hero__proof-strip {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.4rem;
  padding-top: 1rem;
  text-align: center;
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
 }
 .hero__stars {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
 }
 .hero__proof-text {
  font-size: 0.8rem;
  line-height: 1.45;
 }
 .hero__ventures {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  gap: 0.9rem;
 }
 .hero__ventures-title {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
 }
 .hero__ventures-grid {
  gap: 0.75rem 1.25rem;
 }
 .hero__venture-chip {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
 }
 .hero__venture-logo {
  height: 26px;
  max-width: 90px;
 }

 /* Bento Grid Mobile Stack */
 .bento-col-6,
 .bento-col-4 {
  grid-column: span 12;
 }

 /* Timeline Mobile Layout */
 .timeline .tl {
  grid-template-columns: 1fr;
  gap: 0.4rem;
 }
 .tl__year {
  padding-top: 0;
 }

 /* Belief Flow Mobile Stack */
 .belief-flow {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
 }
 .belief-arrow {
  transform: rotate(90deg);
  margin-left: 0.5rem;
 }

 /* Video Mobile Aspect Ratio */
 .intro-video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
 }

 .nav__toggle {
  display: flex;
 }

 /* Slide-down full mobile menu */
 .nav__links {
  position: fixed;
  inset: 0 0 auto 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 5rem var(--pad) 2.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--line);
  transform: translateY(-110%);
  transition: transform 0.35s ease;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
 }
 .nav__links.open {
  transform: translateY(0);
 }
 .nav__links a {
  font-size: 1.15rem;
  margin-inline: auto;
 }
 .nav__links a:not(.nav__cta) {
  display: block;
 }
 .nav__cta {
  align-self: center;
 }
}

@media (max-width: 600px) {
 .section {
  padding-block: clamp(2.5rem, 6vw, 3.25rem);
 }
 .section__intro,
 .section--intro {
  margin-bottom: 1.75rem;
 }

 /* 1-column mobile card grids */
 .challenges-grid,
 .how-grid,
 .brands {
  grid-template-columns: 1fr;
  gap: 1rem;
 }
 .challenge-card,
 .how-card,
 .brand,
 .bento-card {
  padding: 1.25rem;
 }

 .h2 {
  font-size: clamp(1.35rem, 4.8vw, 1.75rem);
  margin-bottom: 1.2rem;
 }
 .h2--hero-size {
  font-size: clamp(1.45rem, 5.2vw, 2rem);
 }

 .who-pills {
  gap: 0.5rem;
 }
 .who-pill {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
 }

 .journey__action .btn {
  width: 100%;
 }

 /* Final CTA Mobile Stack */
 .cta-actions {
  flex-direction: column;
  width: 100%;
  gap: 0.75rem;
 }
 .cta-actions .btn {
  width: 100%;
 }

 .whatsapp-float {
  bottom: 1.25rem;
  right: 1.25rem;
  width: 52px;
  height: 52px;
 }
 .whatsapp-float svg {
  width: 28px;
  height: 28px;
 }
 .sticky-cta {
  left: 1.25rem;
  bottom: 1.25rem;
  padding: 0 0.95rem;
  height: 38px;
  font-size: 0.72rem;
 }
 .sticky-cta--visible {
  transform: translateY(0);
 }
}

@media (max-width: 480px) {
 .stats {
  grid-template-columns: 1fr;
  gap: 1.5rem;
 }
 .stat {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
 }
 .stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
 }
 .stat__num {
  font-size: 2rem;
 }
 .gallery {
  grid-template-columns: 1fr;
 }
 .hero__badge {
  transform: scale(0.9);
 }
}

@media (max-width: 430px) {
 .hero__title {
  font-size: 1.4rem;
 }
 .hero__lead {
  font-size: 0.88rem;
 }
 .hero__desc-bn {
  font-size: 0.86rem;
  line-height: 1.6;
 }
 .hero__visual {
  max-width: 240px;
 }
 .hero__img-wrapper {
  max-width: 240px;
 }
 .hero__actions {
  flex-direction: column;
  width: 100%;
 }
 .hero__actions .btn {
  width: 100%;
 }
 .sticky-cta {
  left: 0.75rem;
  bottom: 0.75rem;
  font-size: 0.7rem;
  padding: 0 0.85rem;
  height: 36px;
 }
 .whatsapp-float {
  right: 0.75rem;
  bottom: 0.75rem;
  width: 48px;
  height: 48px;
 }
}
