    :root {
      --bg: #f7f4f7;
      --paper: #fffdfb;
      --card: rgba(255, 255, 255, 0.9);
      --white: #ffffff;
      --text: #231f24;
      --muted: #6d6670;
      --line: rgba(89, 47, 78, 0.13);
      --brand: #6c185e;
      --brand-2: #8b296f;
      --brand-dark: #34102e;
      --brand-soft: rgba(108, 24, 94, 0.08);
      --gold: #c9923f;
      --shadow: 0 24px 70px rgba(35, 18, 31, 0.14);
      --shadow-soft: 0 12px 34px rgba(35, 18, 31, 0.09);
      --radius-xl: 34px;
      --radius-lg: 26px;
      --radius-md: 18px;
      --container: 1275px;
      --nav-offset: 100px;
      --font-heading: "Cormorant Garamond", serif;
      --font-body: "Inter", sans-serif;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: var(--nav-offset);
    }

    body {
      margin: 0;
      color: var(--text);
      font-family: Inter, "Segoe UI", Arial, sans-serif;
      background:
        radial-gradient(circle at 8% 0%, rgba(108, 24, 94, 0.11), transparent 26rem),
        radial-gradient(circle at 92% 2%, rgba(201, 146, 63, 0.13), transparent 22rem),
        linear-gradient(180deg, #fffafd 0%, var(--bg) 48%, #f3eff4 100%);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      font-family: var(--font-body);
      font-size: 15.5px;
      line-height: 1.7;
      letter-spacing: -0.01em;
      color: var(--text);
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(108, 24, 94, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 24, 94, 0.035) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(180deg, #000, transparent 78%);
    }

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

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

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }


    /* Headings */
    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-heading);
      letter-spacing: -0.03em;
      line-height: 1;
    }

    /* Paragraphs */
    p {
      font-family: var(--font-body);
      font-weight: 400;
      color: var(--muted);
    }

    /* Buttons */
    .btn {
      font-family: var(--font-body);
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    /* Small labels / UI text */
    .top-sub-heading,
    span,
    small {
      font-family: var(--font-body);
      font-weight: 600;
      letter-spacing: 0.06em;
    }

    /* =========================
   CLEAN FONT OVERRIDE
   ========================= */

    /* Import clean modern fonts */
    @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

    /* Update root variables */
    :root {
      --font-heading: 'Manrope', sans-serif;
      --font-body: 'Inter', sans-serif;
    }

    /* Apply globally */
    body {
      font-family: var(--font-body) !important;
      font-size: 15.5px;
      line-height: 1.7;
      letter-spacing: -0.01em;
      color: var(--text);
    }

    /* Headings - cleaner, modern */
    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-heading) !important;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    /* Paragraphs */
    p {
      font-family: var(--font-body) !important;
      font-weight: 400;
      color: var(--muted);
    }

    /* Buttons */
    .btn {
      font-family: var(--font-heading) !important;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    /* Small UI text */
    .top-sub-heading,
    span,
    small {
      font-family: var(--font-body) !important;
      font-weight: 500;
      letter-spacing: 0.04em;
    }

    /* Fix large hero headings (remove overly fancy look) */
    .hero-copy h1,
    .aahar-copy h2,
    .performance-copy h2,
    .section-head h2 {
      font-family: var(--font-heading) !important;
      letter-spacing: -0.03em;
    }

    /* Optional: smoother rendering */
    body {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }


    :focus-visible {
      outline: 3px solid rgba(108, 24, 94, 0.28);
      outline-offset: 4px;
    }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    #navbar-placeholder {
      margin-top: 92px;
    }

    .section {
      padding: 38px 0;
    }

    .section-small {
      padding: 24px 0;
    }

    .reveal {
      opacity: 0;
      transform: translate3d(0, 30px, 0) scale(0.985);
      filter: blur(10px);
      transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
      will-change: opacity, transform, filter;
    }

    .reveal.in-view {
      opacity: 1;
      transform: none;
      filter: none;
    }

    .delay-1 {
      transition-delay: 80ms;
    }

    .delay-2 {
      transition-delay: 160ms;
    }

    .delay-3 {
      transition-delay: 240ms;
    }

    .delay-4 {
      transition-delay: 320ms;
    }

    .page-progress {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      width: 100%;
      height: 4px;
      transform: scaleX(0);
      transform-origin: left;
      background: linear-gradient(90deg, var(--brand), var(--gold), #0f766e);
      box-shadow: 0 8px 24px rgba(108, 24, 94, 0.22);
      pointer-events: none;
    }

    .top-sub-heading {
      display: inline-flex;
      align-items: center;
      /* gap: 10px; */
      width: fit-content;
      padding: 9px 13px;
      border: 1px solid rgba(108, 24, 94, 0.12);
      border-radius: 999px;
      background: var(--brand-soft);
      color: var(--brand);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      background: none;
      border: none;
      font-size: 0.8rem;
      letter-spacing: 2px;
      padding: 0;
    }

    .top-sub-heading.light {
      background: rgba(255, 255, 255, 0.13);
      border-color: rgba(255, 255, 255, 0.18);
      color: #fff;
      backdrop-filter: blur(14px);
    }

    .top-sub-heading.light::before {
      background: #f8d3ee;
      box-shadow: 0 0 0 6px rgba(248, 211, 238, 0.16);
    }

    .section-head {
      display: grid;
      justify-items: center;
      gap: 0px;
      margin-bottom: 24px;
      text-align: center;
    }

    .section-head h2,
    .feature-copy h2,
    .products-head h2,
    .recipes-head h2,
    .location-copy h2,
    .testimonial-copy h2 {
      margin: 0;
      color: var(--text);
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(2.2rem, 4vw, 4rem);
      line-height: 0.95;
      letter-spacing: -0.045em;
    }

    .section-head p,
    .feature-copy p,
    .products-head p,
    .recipes-head p,
    .location-copy p,
    .testimonial-copy p {
      margin: 0;
      max-width: 68ch;
      color: var(--muted);
      line-height: 1.78;
      font-size: 1rem;
    }

    .accent {
      color: var(--brand);
      /* font-style: italic; */
      font-weight: 800;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 13px 20px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-weight: 900;
      line-height: 1;
      white-space: nowrap;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

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

    .btn-primary {
      background: linear-gradient(135deg, var(--brand), var(--brand-dark));
      color: #fff;
      box-shadow: 0 14px 28px rgba(108, 24, 94, 0.22);
    }

    .btn-primary:hover {
      box-shadow: 0 18px 34px rgba(108, 24, 94, 0.3);
    }

    .btn-cream {
      background: #fff;
      color: var(--brand);
      box-shadow: 0 14px 26px rgba(0, 0, 0, 0.14);
    }

    .btn-soft {
      background: rgba(108, 24, 94, 0.06);
      color: var(--brand);
      border-color: rgba(108, 24, 94, 0.13);
    }

    .btn-light {
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      border-color: rgba(255, 255, 255, 0.24);
      backdrop-filter: blur(12px);
    }

    .hero-section {
      padding: 16px 0 34px;
    }

    .hero-shell {
      position: relative;
      min-height: 455px;
      overflow: hidden;
      border-radius: 38px;
      background: #1d111b;
      box-shadow: var(--shadow);
    }

    .hero-slider,
    .hero-slider::before,
    .hero-slide {
      position: absolute;
      inset: 0;
    }

    .hero-slider::before {
      content: "";
      z-index: 2;
      background: linear-gradient(90deg, rgb(22 10 20 / 15%) 0%, rgb(22 10 20 / 39%) 42%, rgba(22, 10, 20, 0.12) 100%), linear-gradient(0deg, rgba(22, 10, 20, 0.64), transparent 54%);
    }

    .hero-slide {
      opacity: 0;
      transform: scale(1.045);
      background-position: center;
      background-size: cover;
      transition: opacity 1s ease, transform 1.4s ease;
    }

    .hero-slide.active {
      opacity: 1;
      transform: scale(1);
    }

    .hero-layout {
      position: relative;
      z-index: 3;
      min-height: 650px;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr);
      gap: 26px;
      align-items: end;
      padding: clamp(28px, 5vw, 68px);
    }

    .hero-copy {
      align-self: center;
      max-width: 720px;
    }

    .hero-copy h1 {
      max-width: 11ch;
      margin: 18px 0;
      color: #fff;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(3.5rem, 8vw, 7.6rem);
      line-height: 0.84;
      letter-spacing: -0.065em;
    }

    .hero-copy h1 span {
      color: #f6d8ee;
      /* font-style: italic; */
    }

    .hero-copy p {
      max-width: 60ch;
      margin: 0;
      color: rgba(255, 255, 255, 0.86);
      line-height: 1.82;
      font-size: 1.05rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .hero-panel {
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 30px;
      padding: 18px;
      background: rgba(255, 255, 255, 0.12);
      color: #fff;
      backdrop-filter: blur(18px);
    }

    .hero-product {
      display: grid;
      grid-template-columns: 120px 1fr;
      align-items: center;
      gap: 16px;
      padding: 14px;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.13);
    }

    .hero-product img {
      width: 120px;
      height: 120px;
      object-fit: contain;
      padding: 10px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.92);
    }

    .hero-product small {
      display: block;
      margin-bottom: 6px;
      color: rgba(255, 255, 255, 0.62);
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero-product strong {
      display: block;
      font-size: 1.15rem;
      line-height: 1.25;
    }

    .hero-product span {
      display: block;
      margin-top: 8px;
      color: rgba(255, 255, 255, 0.78);
      line-height: 1.55;
      font-size: 0.92rem;
    }

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

    .hero-stat {
      padding: 14px 10px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.11);
      text-align: center;
    }

    .hero-stat strong {
      display: block;
      font-size: 1.18rem;
      line-height: 1.05;
    }

    .hero-stat span {
      display: block;
      margin-top: 6px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.75rem;
      line-height: 1.25;
    }

    .hero-controls {
      position: absolute;
      left: clamp(28px, 5vw, 68px);
      bottom: clamp(24px, 4vw, 44px);
      z-index: 5;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 12px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(14px);
      position: absolute;
      left: 50%;
      bottom: clamp(24px, 4vw, 44px);
      transform: translateX(-50%);
    }

    .icon-btn,
    .product-nav,
    .cart-btn {
      display: inline-grid;
      place-items: center;
      border: 0;
      border-radius: 999px;
      transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

    .icon-btn {
      width: 34px;
      height: 34px;
      background: rgba(255, 255, 255, 0.13);
      color: #fff;
    }

    .icon-btn:hover {
      transform: translateY(-1px);
      background: rgba(255, 255, 255, 0.23);
    }

    .hero-dots {
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .hero-dot {
      width: 8px;
      height: 8px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.42);
      transition: width 0.2s ease, background 0.2s ease;
    }

    .hero-dot.active {
      width: 28px;
      background: #fff;
    }

    .trust-strip {
      position: relative;
      z-index: 4;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: -20px;
    }

    .trust-card {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.9);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(14px);
    }

    .trust-card span {
      display: block;
      margin-bottom: 7px;
      color: var(--brand);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .trust-card strong {
      display: block;
      font-size: 1rem;
      line-height: 1.35;
    }

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

    .range-card,
    .benefit-card,
    .product-card,
    .recipe-card,
    .location-copy,
    .map-card {
      border: 1px solid var(--line);
      background: var(--card);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(12px);
    }

    .range-card {
      display: flex;
      flex-direction: column;
      min-height: 430px;
      overflow: hidden;
      border-radius: var(--radius-xl);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .range-card:hover,
    .benefit-card:hover,
    .product-card:hover,
    .recipe-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 44px rgba(35, 18, 31, 0.13);
    }

    .range-media {
      display: grid;
      place-items: center;
      min-height: 260px;
      padding: 24px;
      background:
        radial-gradient(circle at top right, rgba(108, 24, 94, 0.1), transparent 48%),
        linear-gradient(135deg, #fff, #f1edf3);
    }

    .range-media img {
      width: 100%;
      height: 220px;
      object-fit: contain;
      transition: transform 0.45s ease;
    }

    .range-card:hover .range-media img {
      transform: scale(1.045) rotate(-1deg);
    }

    .range-body {
      display: grid;
      gap: 10px;
      flex: 1;
      padding: 22px;
    }

    .range-body h3,
    .benefit-card h3,
    .product-card h3,
    .recipe-card h3 {
      margin: 0;
      color: var(--text);
      font-size: 1.15rem;
      letter-spacing: -0.03em;
    }

    .range-body p,
    .benefit-card p,
    .product-card p,
    .recipe-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.68;
      font-size: 0.95rem;
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;
      color: var(--brand);
      font-weight: 900;
    }

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

    .feature-copy {
      overflow: hidden;
      padding: clamp(24px, 4vw, 38px);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at top right, rgba(201, 146, 63, 0.14), transparent 44%),
        linear-gradient(135deg, rgba(108, 24, 94, 0.08), rgba(255, 255, 255, 0.9));
      box-shadow: var(--shadow-soft);
    }

    .feature-copy h2 {
      margin-top: 14px;
    }

    .feature-copy p {
      margin-top: 14px;
    }

    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .benefit-card {
      padding: 22px;
      border-radius: var(--radius-lg);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .benefit-icon {
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      margin-bottom: 16px;
      border-radius: 17px;
      background: var(--brand-soft);
      color: var(--brand);
      font-weight: 900;
      font-size: 1rem;
    }

    .aahar-card {
      position: relative;
      overflow: hidden;
      min-height: 560px;
      border-radius: 38px;
      background: #1b1019;
      color: #fff;
      box-shadow: var(--shadow);
    }

    .aahar-card video,
    .aahar-card::before {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .aahar-card video {
      object-fit: cover;
    }

    .aahar-card::before {
      content: "";
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(22, 10, 20, 0.84) 0%, rgba(22, 10, 20, 0.55) 52%, rgba(22, 10, 20, 0.2) 100%),
        linear-gradient(0deg, rgba(22, 10, 20, 0.48), transparent 56%);
    }

    .aahar-content {
      position: relative;
      z-index: 2;
      min-height: 560px;
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 28px;
      align-items: center;
      padding: clamp(26px, 5vw, 56px);
    }

    .aahar-copy h2 {
      margin: 16px 0 14px;
      color: #fff;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(2.5rem, 5vw, 5rem);
      line-height: 0.9;
      letter-spacing: -0.055em;
    }

    .aahar-copy h2 span {
      color: #f8d3ee;
      /* font-style: italic; */
    }

    .aahar-copy p {
      max-width: 58ch;
      margin: 0 0 24px;
      color: rgba(255, 255, 255, 0.84);
      line-height: 1.78;
    }

    .aahar-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      align-items: end;
    }

    .aahar-shot {
      position: relative;
      min-height: 290px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 28px;
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
    }

    .aahar-shot:nth-child(2) {
      transform: translateY(-28px);
    }

    .aahar-shot img {
      width: 100%;
      height: 100%;
      min-height: 290px;
      object-fit: cover;
      transition: transform 0.45s ease;
    }

    .aahar-shot:hover img {
      transform: scale(1.05);
    }

    .aahar-shot span {
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 14px;
      padding: 10px 12px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.92);
      color: var(--brand);
      font-size: 12px;
      font-weight: 900;
      text-align: center;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .products-head,
    .recipes-head {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 20px;
      text-align: center;
    }

    .btn-cover {
      margin-top: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .recipes-head>div,
    .products-head>div {
      display: flex;
      flex-direction: column;
      text-align: center;
      justify-content: center;
      align-items: center;
    }

    .product-slider {
      position: relative;
    }

    .product-frame {
      overflow: hidden;
      border-radius: var(--radius-xl);
    }

    .product-track {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(245px, 1fr);
      gap: 16px;
      overflow-x: auto;
      padding: 4px 2px 14px;
      scroll-behavior: smooth;
      scrollbar-width: none;
    }

    .product-track::-webkit-scrollbar {
      display: none;
    }

    .product-card {
      display: flex;
      flex-direction: column;
      min-width: 245px;
      padding: 16px;
      border-radius: var(--radius-lg);
      background: #fff;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .product-media {
      display: grid;
      place-items: center;
      aspect-ratio: 1 / 1;
      margin-bottom: 14px;
      padding: 14px;
      border-radius: 22px;
      background:
        radial-gradient(circle at 70% 10%, rgba(108, 24, 94, 0.1), transparent 48%),
        #f5f3f6;
    }

    .product-media img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.38s ease;
    }

    .product-card:hover .product-media img {
      transform: scale(1.04);
    }

    .product-kicker {
      display: inline-flex;
      width: fit-content;
      margin-bottom: 10px;
      padding: 7px 10px;
      border-radius: 999px;
      background: var(--brand-soft);
      color: var(--brand);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .price-row {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 12px;
      margin-top: auto;
      padding-top: 18px;
    }

    .price {
      color: var(--brand);
      font-size: 1.18rem;
      font-weight: 900;
    }

    .rating {
      margin-top: 4px;
      color: #a87327;
      font-size: 0.86rem;
      font-weight: 800;
    }

    .cart-btn {
      width: 42px;
      height: 42px;
      background: #111;
      color: #fff;
      font-size: 1.1rem;
    }

    .cart-btn:hover {
      transform: translateY(-2px);
      background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    }

    .product-nav {
      position: absolute;
      top: 50%;
      z-index: 3;
      width: 44px;
      height: 44px;
      transform: translateY(-50%);
      border: 1px solid var(--line);
      background: #fff;
      color: var(--brand);
      box-shadow: var(--shadow-soft);
      font-size: 2rem;
      line-height: 1;
    }

    .product-nav:hover {
      background: var(--brand);
      color: #fff;
    }

    .product-prev {
      left: -16px;
    }

    .product-next {
      right: -16px;
    }

    .recipes-card {
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at top right, rgba(108, 24, 94, 0.08), transparent 30rem),
        rgba(255, 255, 255, 0.9);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(12px);
    }

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

    .recipe-card {
      overflow: hidden;
      border-radius: var(--radius-xl);
      background: #fff;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .recipe-image {
      position: relative;
      min-height: 225px;
      background-position: center;
      background-size: cover;
    }

    .recipe-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent 64%);
    }

    .recipe-tag {
      position: absolute;
      z-index: 1;
      left: 16px;
      top: 16px;
      padding: 8px 11px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      color: var(--brand);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .recipe-body {
      display: grid;
      gap: 10px;
      padding: 20px;
    }

    .recipe-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .testimonial-card {
      position: relative;
      min-height: 470px;
      overflow: hidden;
      border-radius: 38px;
      background: url("Hans Testimonials Banner.png") center / cover no-repeat;
      box-shadow: var(--shadow);
    }

    .testimonial-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(22, 10, 20, 0.78) 0%, rgba(22, 10, 20, 0.52) 50%, rgba(22, 10, 20, 0.13) 100%);
    }

    .testimonial-content {
      position: relative;
      z-index: 1;
      min-height: 470px;
      display: grid;
      grid-template-columns: 0.55fr 1fr;
      gap: 24px;
      align-items: center;
      padding: clamp(28px, 5vw, 56px);
      color: #fff;
    }

    .quote-mark {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(8rem, 15vw, 14rem);
      line-height: 0.6;
      opacity: 0.78;
    }

    .testimonial-copy h2 {
      margin: 14px 0;
      color: #fff;
    }

    .testimonial-copy p {
      color: rgba(255, 255, 255, 0.86);
    }

    .testimonial-mini {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 22px;
    }

    .testimonial-mini span {
      padding: 12px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.11);
      color: rgba(255, 255, 255, 0.86);
      font-size: 0.9rem;
      font-weight: 800;
      text-align: center;
    }

    .location-grid {
      display: grid;
      grid-template-columns: 0.86fr 1.14fr;
      gap: 22px;
    }

    .location-copy {
      padding: clamp(24px, 4vw, 34px);
      border-radius: var(--radius-xl);
      background: #fff;
    }

    .location-copy h2 {
      margin-top: 14px;
    }

    .location-copy p {
      margin-top: 14px;
    }

    .store-search {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 52px;
      margin-top: 18px;
      padding: 0 14px;
      border: 1px solid var(--line);
      border-radius: 17px;
      background: #fff;
      color: var(--brand);
    }

    .store-search input {
      width: 100%;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--text);
    }

    .marketplaces {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 18px;
    }

    .marketplaces a {
      display: grid;
      place-items: center;
      min-width: 138px;
      min-height: 58px;
      padding: 12px 16px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: #fff;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .marketplaces a:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-soft);
    }

    .marketplaces img {
      max-height: 32px;
      object-fit: contain;
    }

    .map-card {
      min-height: 440px;
      overflow: hidden;
      border-radius: var(--radius-xl);
    }

    .map-card iframe {
      width: 100%;
      height: 100%;
      min-height: 440px;
      border: 0;
      filter: saturate(0.92) contrast(1.03);
    }

    .whatsapp-fab {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 9999;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      border-radius: 999px;
      background: linear-gradient(135deg, #25d366, #1fb859);
      color: #fff;
      box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
      font-weight: 800;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .whatsapp-fab:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(37, 211, 102, 0.36);
    }

    .whatsapp-fab img {
      width: 22px;
      height: 22px;
    }

    .whatsapp-fab span {
      font-size: 14px;
      white-space: nowrap;
    }

    #footer-placeholder {
      margin-top: 32px;
    }

    @media (max-width: 1100px) {

      .hero-layout,
      .feature-grid,
      .aahar-content,
      .testimonial-content,
      .location-grid {
        grid-template-columns: 1fr;
      }

      .hero-layout {
        align-items: stretch;
      }

      .hero-panel {
        max-width: 620px;
      }

      .trust-strip,
      .range-grid,
      .benefit-grid,
      .recipe-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .quote-mark {
        display: none;
      }
    }

    @media (max-width: 780px) {
      #navbar-placeholder {
        margin-top: 78px;
      }

      .container {
        width: min(var(--container), calc(100% - 22px));
      }

      .section {
        padding: 26px 0;
      }

      .hero-shell,
      .aahar-card,
      .testimonial-card {
        border-radius: 26px;
      }

      .hero-layout {
        min-height: 640px;
        padding: 24px;
        padding-bottom: 88px;
      }

      .hero-copy h1 {
        max-width: 10ch;
        font-size: clamp(3.1rem, 16vw, 4.8rem);
      }

      .hero-actions,
      .products-head,
      .recipes-head,
      .marketplaces {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        width: 100%;
      }

      .hero-product {
        grid-template-columns: 92px 1fr;
      }

      .hero-product img {
        width: 92px;
        height: 92px;
      }

      .hero-stats,
      .testimonial-mini,
      .trust-strip,
      .range-grid,
      .benefit-grid,
      .recipe-grid {
        grid-template-columns: 1fr;
      }

      .range-card {
        min-height: auto;
      }

      .range-media {
        min-height: 230px;
      }

      .aahar-content,
      .testimonial-content {
        min-height: auto;
        padding: 24px;
      }

      .aahar-card {
        min-height: auto;
      }

      .aahar-gallery {
        grid-template-columns: 1fr;
      }

      .aahar-shot,
      .aahar-shot img {
        min-height: 220px;
      }

      .aahar-shot:nth-child(2) {
        transform: none;
      }

      .product-nav {
        display: none;
      }

      .product-track {
        grid-auto-columns: minmax(236px, 84%);
        scroll-snap-type: x mandatory;
      }

      .product-card {
        scroll-snap-align: start;
      }

      .recipes-card {
        padding: 18px;
      }

      .map-card,
      .map-card iframe {
        min-height: 340px;
      }

      .whatsapp-fab {
        width: 52px;
        height: 52px;
        justify-content: center;
        padding: 0;
      }

      .whatsapp-fab span {
        display: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }

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





    /* SCROLL KITCHEN FLOW */
    .scroll-lab-section {
      display: none;
    }

    .performance-section {
      min-height: 230vh;
      padding: 26px 0 74px;
    }

    .performance-shell {
      position: sticky;
      top: 96px;
      min-height: calc(100vh - 112px);
      display: grid;
      align-items: center;
      overflow: hidden;
      border: 1px solid rgba(108, 24, 94, 0.13);
      border-radius: 40px;
      background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(250, 246, 251, 0.86) 52%, rgba(247, 238, 230, 0.9)),
        repeating-linear-gradient(90deg, rgba(108, 24, 94, 0.045) 0 1px, transparent 1px 72px);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }

    .performance-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent),
        linear-gradient(180deg, rgba(108, 24, 94, 0.04), transparent 34%, rgba(201, 146, 63, 0.06));
      transform: translateX(-55%);
      animation: flowSheen 7s ease-in-out infinite;
      pointer-events: none;
    }

    .performance-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 0.86fr) minmax(390px, 1.14fr);
      gap: clamp(24px, 5vw, 62px);
      align-items: center;
      width: min(var(--container), calc(100% - 48px));
      margin: 0 auto;
      padding: clamp(30px, 5vw, 62px) 0;
    }

    .performance-copy {
      display: grid;
      gap: 18px;
      align-content: center;
    }

    .performance-copy h2 {
      margin: 0;
      max-width: 11ch;
      color: var(--text);
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(2.8rem, 6vw, 6rem);
      line-height: 0.88;
      letter-spacing: -0.06em;
    }

    .performance-copy p {
      margin: 0;
      max-width: 58ch;
      color: var(--muted);
      line-height: 1.8;
    }

    .flow-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 4px;
    }

    .shift-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 10px;
    }

    .shift-stat {
      min-height: 88px;
      padding: 16px;
      border: 1px solid rgba(108, 24, 94, 0.11);
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.76);
      box-shadow: 0 14px 30px rgba(35, 18, 31, 0.08);
    }

    .shift-stat strong {
      display: block;
      color: var(--brand);
      font-size: 1.45rem;
      line-height: 1;
    }

    .shift-stat span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .service-board {
      position: relative;
      overflow: hidden;
      min-height: 650px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 34px;
      background:
        linear-gradient(145deg, #21111e, #32142c 50%, #161014),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 42px);
      color: #fff;
      box-shadow: 0 34px 90px rgba(35, 18, 31, 0.24);
    }

    .service-board::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.06), transparent);
      transform: translateY(-100%);
      animation: boardScan 5.5s linear infinite;
      pointer-events: none;
    }

    .board-top {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 22px 24px 0;
    }

    .board-top span {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: rgba(255, 255, 255, 0.68);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }

    .board-top span::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #42d7a5;
      box-shadow: 0 0 0 7px rgba(66, 215, 165, 0.14);
      animation: statusPulse 1.8s ease-in-out infinite;
    }

    .board-top strong {
      color: #fff;
      font-size: 0.95rem;
    }

    .board-visual {
      position: relative;
      min-height: 385px;
      margin: 14px 22px 0;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 28px;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 32%, rgba(201, 146, 63, 0.1)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    }

    .motion-rail {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 42px;
      height: 76px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 22px;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0 18px, transparent 18px 38px);
      background-size: auto, 76px 100%;
      animation: railMove 2.8s linear infinite;
    }

    .motion-rail::before,
    .motion-rail::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 46px;
      height: 4px;
      transform: translateY(-50%);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.42);
      box-shadow: 72px 0 rgba(255, 255, 255, 0.28), 144px 0 rgba(255, 255, 255, 0.2), 216px 0 rgba(255, 255, 255, 0.15);
      animation: railDots 2.4s linear infinite;
    }

    .motion-rail::before {
      left: 24px;
    }

    .motion-rail::after {
      right: 24px;
      animation-direction: reverse;
    }

    .flow-product {
      position: absolute;
      left: 50%;
      top: 46%;
      z-index: 3;
      width: min(300px, 55vw);
      transform: translate(-50%, -50%);
      filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.34));
      transition: opacity 0.22s ease, transform 0.18s linear;
    }

    .spec-chip {
      position: absolute;
      z-index: 4;
      display: grid;
      gap: 3px;
      width: 150px;
      padding: 13px 14px;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.12);
      box-shadow: 0 20px 36px rgba(0, 0, 0, 0.18);
      backdrop-filter: blur(16px);
      animation: chipFloat 4.8s ease-in-out infinite;
    }

    .spec-chip small {
      color: rgba(255, 255, 255, 0.58);
      font-size: 10px;
      font-weight: 900;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }

    .spec-chip strong {
      color: #fff;
      font-size: 0.9rem;
      line-height: 1.25;
    }

    .chip-1 {
      left: 26px;
      top: 28px;
    }

    .chip-2 {
      right: 24px;
      top: 70px;
      animation-delay: -1s;
    }

    .chip-3 {
      left: 42px;
      bottom: 134px;
      animation-delay: -2s;
    }

    .chip-4 {
      right: 42px;
      bottom: 118px;
      animation-delay: -3s;
    }

    .flow-steps {
      position: relative;
      z-index: 5;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      padding: 16px 22px 22px;
    }

    .flow-step {
      display: grid;
      gap: 9px;
      min-height: 138px;
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.66);
      transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    }

    .flow-step strong {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 13px;
      background: rgba(255, 255, 255, 0.1);
      color: #f7d99e;
      font-size: 0.8rem;
    }

    .flow-step span {
      color: #fff;
      font-weight: 900;
    }

    .flow-step p {
      margin: 0;
      font-size: 0.82rem;
      line-height: 1.55;
    }

    .flow-step.active {
      transform: translateY(-8px);
      border-color: rgba(247, 217, 158, 0.4);
      background: rgba(255, 255, 255, 0.16);
      color: rgba(255, 255, 255, 0.86);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    }

    .flow-step.active strong {
      background: #f7d99e;
      color: #32142c;
    }

    .flow-progress {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 10px;
      z-index: 6;
      height: 6px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.1);
    }

    .flow-progress span {
      display: block;
      width: 100%;
      height: 100%;
      transform: scaleX(0);
      transform-origin: left;
      border-radius: inherit;
      background: linear-gradient(90deg, #42d7a5, #f7d99e, #fff);
    }

    @keyframes flowSheen {

      0%,
      45% {
        transform: translateX(-65%);
        opacity: 0;
      }

      55% {
        opacity: 0.78;
      }

      100% {
        transform: translateX(65%);
        opacity: 0;
      }
    }

    @keyframes boardScan {
      from {
        transform: translateY(-100%);
      }

      to {
        transform: translateY(100%);
      }
    }

    @keyframes statusPulse {

      0%,
      100% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(0.76);
        opacity: 0.66;
      }
    }

    @keyframes railMove {
      from {
        background-position: 0 0, 0 0;
      }

      to {
        background-position: 0 0, 76px 0;
      }
    }

    @keyframes railDots {
      from {
        transform: translate(-80px, -50%);
      }

      to {
        transform: translate(80px, -50%);
      }
    }

    @keyframes chipFloat {

      0%,
      100% {
        translate: 0 0;
      }

      50% {
        translate: 0 -12px;
      }
    }

    @supports (animation-timeline: view()) {

      .section,
      .section-small,
      .metrics-section {
        animation: sectionViewIn both ease-out;
        animation-timeline: view();
        animation-range: entry 0% cover 32%;
      }

      .range-media img,
      .product-media img,
      .recipe-image,
      .logo-tile img {
        animation: mediaViewDrift both linear;
        animation-timeline: view();
        animation-range: entry 0% exit 100%;
      }
    }

    @keyframes sectionViewIn {
      from {
        opacity: 0.72;
        transform: translateY(28px) scale(0.985);
      }

      to {
        opacity: 1;
        transform: none;
      }
    }

    @keyframes mediaViewDrift {
      from {
        transform: translateY(14px) scale(0.98);
      }

      50% {
        transform: translateY(0) scale(1.02);
      }

      to {
        transform: translateY(-12px) scale(1);
      }
    }

    /* METRICS, PARTNERS, MARKETPLACE */
    .metrics-section {
      padding: 32px 0;
    }

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

    .metric-card {
      position: relative;
      overflow: hidden;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .metric-card::after {
      content: "";
      position: absolute;
      right: -34px;
      top: -34px;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: var(--brand-soft);
    }

    .metric-card strong {
      display: block;
      color: var(--brand);
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(2.3rem, 4vw, 4rem);
      line-height: 0.95;
      letter-spacing: -0.04em;
    }

    .metric-card span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-weight: 800;
    }

    .partners-shell {
      overflow: hidden;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: #fff;
      box-shadow: var(--shadow-soft);
    }

    .partners-head {
      display: flex;
      align-items: end;
      justify-content: center;
      text-align: center;
      gap: 22px;
      margin-bottom: 22px;
    }

    .partners-head h2 {
      margin: 10px 0 0;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(2rem, 4vw, 3.6rem);
      line-height: 0.95;
      letter-spacing: -0.045em;
    }

    .partners-head p {
      max-width: 56ch;
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
    }

    .logo-cloud {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 12px;
    }

    .logo-tile {
      display: grid;
      place-items: center;
      min-height: 112px;
      padding: 16px;
      border: 1px solid rgba(108, 24, 94, 0.09);
      border-radius: 22px;
      background: linear-gradient(135deg, #fff, #f8f5f8);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .logo-tile:hover {
      transform: translateY(-5px) rotate(-1deg);
      box-shadow: var(--shadow-soft);
    }

    .logo-tile img {
      max-width: 85%;
      max-height: 70px;
      object-fit: contain;
    }

    .market-cta {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 22px;
      align-items: center;
      padding: clamp(24px, 4vw, 38px);
      border-radius: var(--radius-xl);
      background: radial-gradient(circle at 85% 20%, rgba(201, 146, 63, 0.18), transparent 22rem), linear-gradient(135deg, var(--brand), var(--brand-dark));
      color: #fff;
      box-shadow: var(--shadow);
    }

    .market-cta h2 {
      margin: 10px 0;
      max-width: 12ch;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(2.2rem, 4vw, 4.2rem);
      line-height: 0.92;
      letter-spacing: -0.045em;
    }

    .market-cta p {
      max-width: 64ch;
      margin: 0;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.78;
    }

    .market-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    .market-logo {
      display: grid;
      place-items: center;
      min-width: 148px;
      min-height: 64px;
      padding: 14px 18px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.92);
      transition: transform 0.25s ease;
    }

    .market-logo:hover {
      transform: translateY(-4px);
    }

    .market-logo img {
      max-height: 34px;
      object-fit: contain;
    }

    @media (max-width: 1100px) {

      .performance-grid,
      .market-cta {
        grid-template-columns: 1fr;
      }

      .performance-shell {
        position: relative;
        top: auto;
      }

      .performance-section {
        min-height: auto;
      }

      .service-board {
        min-height: 620px;
      }

      .metrics-grid,
      .logo-cloud {
        grid-template-columns: repeat(2, 1fr);
      }

      .market-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 780px) {
      .performance-section {
        padding-top: 8px;
      }

      .performance-shell {
        border-radius: 26px;
      }

      .performance-grid {
        width: min(var(--container), calc(100% - 22px));
        gap: 16px;
        padding: 24px 0 58px;
      }

      .performance-copy h2 {
        max-width: none;
      }

      .shift-stats,
      .flow-steps {
        grid-template-columns: 1fr;
      }

      .service-board {
        min-height: auto;
        border-radius: 26px;
      }

      .board-top {
        display: grid;
      }

      .board-visual {
        min-height: 430px;
        margin-inline: 14px;
      }

      .flow-product {
        width: min(245px, 62vw);
      }

      .spec-chip {
        width: 128px;
        padding: 11px;
      }

      .chip-1 {
        left: 12px;
        top: 18px;
      }

      .chip-2 {
        right: 12px;
        top: 72px;
      }

      .chip-3 {
        left: 12px;
        bottom: 126px;
      }

      .chip-4 {
        right: 12px;
        bottom: 108px;
      }

      .flow-steps {
        padding: 14px 14px 24px;
      }

      .metrics-grid,
      .logo-cloud {
        grid-template-columns: 1fr;
      }

      .partners-shell {
        padding: 18px;
      }

      .partners-head {
        display: grid;
      }

      .market-logo {
        width: 100%;
      }
    }

    /* AAHAR SECTION */
    .aahar-section {
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .aahar-hero-wrap {
      position: relative;
      min-height: 80vh;
      width: 1275px;
      border-radius: 32px;
      overflow: hidden;
      margin: 0 16px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
    }

    /* VIDEO */
    .aahar-bg-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* DARK OVERLAY */
    .aahar-dark-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(0, 0, 0, .75), rgba(0, 0, 0, .2));
    }

    /* CONTENT */
    .aahar-content {
      position: relative;
      z-index: 2;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 60px 20px;
      gap: 30px;
    }

    /* LEFT TEXT */
    .aahar-main {
      max-width: 520px;
      color: #fff;
    }

    .aahar-main h2 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      line-height: 1;
      margin: 12px 0;
      letter-spacing: -0.04em;
    }

    .aahar-main p {
      color: rgba(255, 255, 255, .85);
      line-height: 1.7;
      margin-bottom: 18px;
    }

    /* TAG */
    .aahar-tag {
      display: inline-block;
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .1em;
      background: rgba(255, 255, 255, .15);
      backdrop-filter: blur(10px);
    }

    /* FLOATING CARDS */
    .aahar-float-cards {
      position: relative;
      width: 360px;
      height: 360px;
    }

    .float-card {
      position: absolute;
      width: 140px;
      padding: 10px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .95);
      box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
      text-align: center;
      transition: transform .3s ease;
      animation: aaharCardFloat 5.5s ease-in-out infinite;
    }

    .float-card img {
      width: 100%;
      height: 90px;
      object-fit: cover;
      border-radius: 12px;
    }

    .float-card h4 {
      margin: 8px 0 0;
      font-size: .9rem;
    }

    /* POSITIONS */
    .float-card:nth-child(1) {
      top: 0;
      left: 0;
      transform: rotate(-6deg);
    }

    .float-card:nth-child(2) {
      top: 60px;
      right: 0;
      transform: rotate(6deg);
      animation-delay: -1.4s;
    }

    .float-card:nth-child(3) {
      bottom: 0;
      left: 80px;
      transform: rotate(-4deg);
      animation-delay: -2.6s;
    }

    /* HOVER EFFECT */
    .float-card:hover {
      transform: scale(1.08) rotate(0deg);
      z-index: 2;
    }

    @keyframes aaharCardFloat {

      0%,
      100% {
        translate: 0 0;
      }

      50% {
        translate: 0 -12px;
      }
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .aahar-content {
        flex-direction: column;
        align-items: flex-start;
      }

      .aahar-float-cards {
        width: 100%;
        height: auto;
        display: flex;
        gap: 12px;
      }

      .float-card {
        position: static;
        width: 100%;
        transform: none !important;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .page-progress {
        display: none;
      }

      .performance-shell::before,
      .service-board::after,
      .board-top span::before,
      .motion-rail,
      .motion-rail::before,
      .motion-rail::after,
      .spec-chip,
      .float-card,
      .section,
      .section-small,
      .metrics-section,
      .range-media img,
      .product-media img,
      .recipe-image,
      .logo-tile img {
        animation: none !important;
      }

      .flow-product,
      .spec-chip {
        transform: none !important;
      }
    }


    /* === HOMEPAGE OVERRIDES & NEW SECTIONS === */
    .reveal {
      opacity: 0;
      transform: translate3d(0, 24px, 0);
      filter: none !important;
      transition: opacity 0.72s ease, transform 0.72s ease;
      will-change: opacity, transform;
    }

    .reveal.in-view {
      opacity: 1;
      transform: none;
      filter: none !important;
    }

    .workflow-section {
      padding: 18px 0 22px;
    }

    .workflow-shell {
      overflow: hidden;
      padding: clamp(20px, 3vw, 28px);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at top right, rgba(247, 217, 158, 0.12), transparent 34%),
        linear-gradient(135deg, #2d1027 0%, #5e184f 55%, #7b255f 100%);
      box-shadow: var(--shadow-soft);
    }

    .workflow-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.98fr);
      gap: 22px;
      align-items: stretch;
    }

    .workflow-copy {
      color: #fff;
      padding: clamp(10px, 1vw, 12px);
    }

    .workflow-copy h2 {
      margin: 14px 0 0;
      color: #fff;
      max-width: 12ch;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(2.25rem, 4.4vw, 4rem);
      line-height: 0.95;
      letter-spacing: -0.055em;
    }

    .workflow-copy p {
      color: rgba(255, 255, 255, .84);
      margin: 12px 0 0;
      max-width: 58ch;
      line-height: 1.78;
      font-size: 1rem;
    }

    .workflow-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

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

    .workflow-step {
      display: grid;
      gap: 8px;
      min-height: 176px;
      padding: 16px 14px;
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 20px;
      background: rgba(255, 255, 255, .08);
      color: #fff;
      text-align: left;
      transition: transform .2s ease, background .2s ease, border-color .2s ease;
    }

    .workflow-step:hover,
    .workflow-step.active {
      transform: translateY(-2px);
      background: rgba(255, 255, 255, .14);
      border-color: rgba(255, 255, 255, .28);
    }

    .workflow-step strong {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      justify-content: center;
      min-width: 34px;
      height: 34px;
      padding: 0 8px;
      border-radius: 12px;
      background: rgba(255, 255, 255, .14);
      font-size: 13px;
      letter-spacing: .04em;
    }

    .workflow-step span {
      font-size: 1rem;
      font-weight: 900;
      letter-spacing: -.02em;
    }

    .workflow-step p {
      margin: 0;
      color: rgba(255, 255, 255, .76);
      line-height: 1.55;
      font-size: .92rem;
    }

    .workflow-stage {
      position: relative;
      min-height: 560px;
      overflow: hidden;
      border-radius: 30px;
      border: 1px solid rgba(255, 255, 255, .16);
      background:
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, .18), transparent 30%),
        rgba(255, 255, 255, .08);
      box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
    }

    .workflow-stage-inner {
      position: relative;
      min-height: inherit;
      padding: 18px;
    }

    .workflow-photo {
      position: absolute;
      inset: 18px;
      opacity: 0;
      transition: opacity .55s ease;
      border-radius: 24px;
      overflow: hidden;
      background:
        radial-gradient(circle at top right, rgba(255, 255, 255, .18), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .06));
    }

    .workflow-photo.active {
      opacity: 1;
    }

    .workflow-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      background: rgba(255, 255, 255, .93);
    }

    .workflow-panel {
      position: absolute;
      right: 34px;
      bottom: 34px;
      left: 34px;
      padding: 18px 20px;
      border-radius: 24px;
      border: 1px solid rgba(255, 255, 255, .16);
      background: rgba(39, 14, 34, 0.28);
      color: #fff;
      backdrop-filter: blur(10px);
    }

    .workflow-panel h3 {
      margin: 10px 0 8px;
      color: #fff;
      font-size: 1.45rem;
      line-height: 1.08;
      letter-spacing: -.03em;
    }

    .workflow-panel p {
      margin: 0;
      max-width: 44ch;
      color: rgba(255, 255, 255, .82);
      line-height: 1.7;
      font-size: .96rem;
    }

    .workflow-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .workflow-pill {
      padding: 8px 11px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .16);
      color: rgba(255, 255, 255, .92);
      font-size: 12px;
      font-weight: 800;
    }

    .product-lab-section {
      padding: 20px 0 12px;
    }

    .product-lab-shell {
      overflow: hidden;
      padding: clamp(20px, 3vw, 28px);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background:
        radial-gradient(circle at top right, rgba(201, 146, 63, 0.12), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(247, 244, 247, .96));
      box-shadow: var(--shadow-soft);
    }

    .product-lab-grid {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
      gap: 22px;
      align-items: center;
    }

    .lab-copy h2 {
      margin: 14px 0 0;
      color: var(--text);
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(2rem, 4vw, 3.55rem);
      line-height: 0.96;
      letter-spacing: -0.05em;
      max-width: 12ch;
    }

    .lab-copy p {
      margin: 14px 0 0;
      max-width: 56ch;
      color: var(--muted);
      line-height: 1.8;
    }

    .lab-steps {
      display: grid;
      gap: 12px;
      margin-top: 20px;
    }

    .lab-step {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 12px;
      align-items: start;
      padding: 14px 16px;
      border-radius: 20px;
      background: rgba(108, 24, 94, 0.06);
      border: 1px solid rgba(108, 24, 94, 0.08);
    }

    .lab-step strong {
      display: inline-flex;
      width: 34px;
      height: 34px;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: rgba(108, 24, 94, 0.12);
      color: var(--brand);
      font-size: 12px;
      font-weight: 900;
    }

    .lab-step span {
      color: var(--text);
      line-height: 1.65;
      font-size: .96rem;
    }

    .lab-stage {
      position: relative;
      min-height: 520px;
      border-radius: 30px;
      overflow: hidden;
      border: 1px solid var(--line);
      background:
        radial-gradient(circle at 20% 12%, rgba(108, 24, 94, .08), transparent 26%),
        radial-gradient(circle at 80% 82%, rgba(201, 146, 63, .12), transparent 24%),
        linear-gradient(135deg, #f8f5f8, #ece4ed);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .4), var(--shadow-soft);
    }

    .lab-orb {
      position: absolute;
      width: 320px;
      height: 320px;
      right: -120px;
      top: -110px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(108, 24, 94, .14), transparent 70%);
      filter: blur(10px);
      opacity: .65;
      pointer-events: none;
    }

    .lab-core {
      position: absolute;
      left: 50%;
      top: 50%;
      width: min(54%, 390px);
      transform: translate(-50%, -50%);
      object-fit: contain;
      z-index: 2;
      filter: drop-shadow(0 18px 32px rgba(28, 14, 26, .16));
    }

    .lab-floating-card {
      position: absolute;
      width: 170px;
      padding: 12px;
      border-radius: 22px;
      background: rgba(255, 255, 255, .88);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      text-align: center;
      z-index: 3;
      backdrop-filter: blur(10px);
    }

    .lab-floating-card img {
      width: 100%;
      height: 112px;
      object-fit: contain;
      margin-bottom: 8px;
    }

    .lab-floating-card span {
      display: block;
      color: var(--brand);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .lab-card-1 {
      left: 18px;
      top: 38px;
    }

    .lab-card-2 {
      right: 20px;
      top: 48px;
    }

    .lab-card-3 {
      left: 34px;
      bottom: 34px;
    }

    .lab-card-4 {
      right: 30px;
      bottom: 28px;
    }

    .products-section .products-head {
      display: flex;
      justify-content: center;
      text-align: center;
      align-items: end;
      gap: 22px;
      margin-bottom: 20px;
    }


    .product-carousel {
      position: relative;
    }

    .product-carousel-shell {
      position: relative;
      padding: 0 54px;
      overflow: hidden;
    }

    .product-track {
      display: flex;
      gap: 16px;
      will-change: transform;
      transition: transform .45s ease;
      align-items: stretch;
    }

    .product-card-home {
      flex: 0 0 clamp(240px, 24vw, 284px);
      padding: 16px;
      margin: 10px;
      border-radius: 24px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
      display: flex;
      flex-direction: column;
    }

    .product-card-home a {
      display: block;
    }

    .product-card-home img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: contain;
      background: #f5f7fb;
      border-radius: 18px;
      display: block;
    }

    .product-card-home .card-content {
      text-align: center;
      margin-top: 10px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .product-card-home .card-content h3 {
      font-size: 18px;
      margin: 10px 0;
      color: var(--text);
      letter-spacing: -0.03em;
    }

    .product-card-home .price-box {
      margin: 8px 0;
    }

    .product-card-home .price-box .mrp {
      text-decoration: line-through;
      color: #888;
      font-size: 14px;
      display: block;
    }

    .product-card-home .price-box .price {
      color: #6c1b5f;
      font-weight: 800;
      font-size: 20px;
    }

    .addToCartButtonDiv {
      margin-top: auto;
    }

    .addToCartButtonDiv button {
      width: 100%;
      margin-top: 12px;
      padding: 12px;
      border: none;
      border-radius: 12px;
      background: #111;
      color: white;
      font-weight: 700;
      cursor: pointer;
      transition: background .25s ease, transform .25s ease;
    }

    .addToCartButtonDiv button:hover {
      transform: translateY(-1px);
      background: linear-gradient(135deg, #6c185e, #3a1132);
    }

    .carousel-nav {
      position: absolute;
      top: 50%;
      z-index: 3;
      display: inline-grid;
      place-items: center;
      width: 44px;
      height: 44px;
      transform: translateY(-50%);
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
      color: var(--brand);
      box-shadow: 0 12px 26px rgba(22, 8, 18, .12);
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .carousel-nav:hover {
      transform: translateY(-50%) scale(1.03);
      background: #fff7fb;
      box-shadow: 0 16px 30px rgba(22, 8, 18, .16);
    }

    .carousel-prev {
      left: 0;
    }

    .carousel-next {
      right: 0;
    }

    .testimonial-shell {
      display: grid;
      grid-template-columns: 1.06fr .94fr;
      gap: 18px;
      align-items: stretch;
    }

    .testimonial-feature {
      position: relative;
      overflow: hidden;
      min-height: 360px;
      border-radius: 34px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
      background: url("testimonials_bg.png") center / cover no-repeat;
    }

    .testimonial-feature::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(18, 10, 16, .72) 0%, rgba(18, 10, 16, .50) 42%, rgba(18, 10, 16, .14) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, .02) 0%, rgba(0, 0, 0, .16) 100%);
    }

    .testimonial-feature-inner {
      position: relative;
      z-index: 1;
      min-height: inherit;
      display: grid;
      align-items: end;
      padding: clamp(24px, 4vw, 40px);
      color: #fff;
    }

    .testimonial-feature h2 {
      margin: 12px 0 0;
      color: #fff;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(2.1rem, 4vw, 3.4rem);
      line-height: .95;
      letter-spacing: -.05em;
      max-width: 11ch;
    }

    .testimonial-feature p {
      margin: 14px 0 0;
      max-width: 46ch;
      color: rgba(255, 255, 255, .86);
      line-height: 1.78;
    }

    .testimonial-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .testimonial-badges span {
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .13);
      color: rgba(255, 255, 255, .88);
      font-size: 13px;
      font-weight: 800;
    }

    .testimonial-stack {
      display: grid;
      gap: 14px;
    }

    .testimonial-card {
      border-radius: 26px;
      padding: 18px 20px;
      background: rgba(255, 255, 255, .92);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    .testimonial-topline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }

    .testimonial-name {
      font-size: 1rem;
      font-weight: 900;
      color: var(--text);
    }

    .testimonial-role {
      color: var(--brand);
      font-size: .84rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .stars {
      color: #c08a34;
      letter-spacing: .08em;
      font-size: .86rem;
      font-weight: 900;
      white-space: nowrap;
    }

    .testimonial-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }

    .testimonial-footer {
      margin-top: 14px;
      color: var(--brand);
      font-size: .86rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .location-shell {
      padding: clamp(20px, 3vw, 28px);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: rgba(255, 255, 255, .92);
      box-shadow: var(--shadow-soft);
    }

    .location-head {
      display: grid;
      justify-items: center;
      /* gap: 12px; */
      text-align: center;
      margin-bottom: 20px;
    }

    .map-card {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 28px;
      min-height: 420px;
      box-shadow: var(--shadow-soft);
      background: #fff;
    }

    .map-card iframe {
      width: 100%;
      height: 420px;
      border: 0;
      display: block;
    }

    .location-foot {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-top: 18px;
      padding: 18px 20px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(108, 25, 95, .05), rgba(255, 255, 255, .95));
      border: 1px solid var(--line);
    }

    .location-foot strong {
      display: block;
      margin-bottom: 6px;
      font-size: 1rem;
      color: var(--text);
    }

    .location-foot p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
      max-width: 58ch;
    }

    @media (max-width: 1100px) {

      .workflow-grid,
      .product-lab-grid,
      .testimonial-shell {
        grid-template-columns: 1fr;
      }

      .workflow-stage {
        min-height: 500px;
      }

      .products-section .products-head {
        flex-direction: column;
        align-items: stretch;
      }
    }

    @media (max-width: 780px) {
      .workflow-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .workflow-captions {
        grid-template-columns: 1fr;
      }

      .workflow-stage {
        min-height: 430px;
      }

      .workflow-panel {
        left: 18px;
        right: 18px;
        bottom: 18px;
      }

      .workflow-photo {
        inset: 12px;
      }

      .product-carousel-shell {
        padding: 0 0 58px;
      }

      .carousel-nav {
        top: auto;
        bottom: 0;
        transform: none;
      }

      .carousel-nav:hover {
        transform: none;
      }

      .carousel-prev {
        left: calc(50% - 56px);
      }

      .carousel-next {
        right: calc(50% - 56px);
      }

      .lab-stage,
      .map-card,
      .map-card iframe {
        min-height: 340px;
        height: 340px;
      }

      .lab-core {
        width: min(66%, 300px);
      }

      .lab-floating-card {
        width: 122px;
        padding: 10px;
      }

      .lab-floating-card img {
        height: 74px;
      }

      .lab-card-1 {
        left: 10px;
        top: 16px;
      }

      .lab-card-2 {
        right: 10px;
        top: 16px;
      }

      .lab-card-3 {
        left: 12px;
        bottom: 14px;
      }

      .lab-card-4 {
        right: 12px;
        bottom: 14px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .reveal,
      .hero-slide,
      .workflow-photo,
      .product-track,
      .btn,
      .icon-btn,
      .carousel-nav {
        transition: none !important;
      }
    }

    /* ===== FLOW STORY PREMIUM ===== */

    .flow-story {
      padding: 70px 0;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .flow-story-wrap {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      min-height: 540px;
      border-radius: 34px;
      overflow: hidden;

      background:
        radial-gradient(circle at 90% 0%, rgba(108, 24, 94, .12), transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(201, 146, 63, .12), transparent 40%),
        linear-gradient(135deg, #ffffff, #f7f3f8);

      border: 1px solid rgba(108, 24, 94, .08);
      box-shadow: 0 28px 70px rgba(35, 18, 31, .12);
      max-width: 1275px;
    }

    /* subtle grid texture */
    .flow-story-wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(108, 24, 94, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 24, 94, .03) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(180deg, #000, transparent 80%);
      pointer-events: none;
    }

    /* LEFT */
    .flow-story-left {
      padding: clamp(40px, 5vw, 70px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 10px;
    }

    .flow-story-left h2 {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2.6rem, 4vw, 4.4rem);
      line-height: .95;
      letter-spacing: -0.04em;
      margin: 10px 0;
    }

    .flow-story-left h2 span {
      color: var(--brand);
      /* font-style: italic; */
    }

    .flow-story-left p {
      color: var(--muted);
      max-width: 520px;
      line-height: 1.75;
    }

    /* LIST */
    .flow-list {
      margin-top: 28px;
      display: grid;
      gap: 4px;
    }

    .flow-row {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;

      padding: 18px 0;
      border-bottom: 1px solid var(--line);

      cursor: pointer;
      transition: .25s;
    }

    /* animated line */
    .flow-row::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0%;
      background: linear-gradient(90deg, var(--brand), var(--gold));
      transition: width .35s ease;
    }

    .flow-row:hover::after,
    .flow-row.active::after {
      width: 100%;
    }

    .flow-row strong {
      font-size: 1.12rem;
      letter-spacing: -.02em;
    }

    .flow-row span {
      color: var(--muted);
      font-size: .92rem;
    }

    .flow-row:hover,
    .flow-row.active {
      color: var(--brand);
      transform: translateX(6px);
    }

    /* RIGHT */
    .flow-story-right {
      position: relative;
      overflow: hidden;
    }

    /* image */
    .flow-img {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity .6s ease;
    }

    .flow-img.active {
      opacity: 1;
    }

    .flow-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* overlay gradient (important for premium look) */
    .flow-story-right::after {
      content: "";
      position: absolute;
      inset: 0;

      background:
        linear-gradient(90deg, rgba(255, 255, 255, .85), rgba(255, 255, 255, 0) 40%),
        linear-gradient(0deg, rgba(0, 0, 0, .18), transparent 50%);

      pointer-events: none;
    }

    /* subtle zoom effect */
    .flow-img img {
      transform: scale(1.02);
      transition: transform 1.2s ease;
    }

    .flow-img.active img {
      transform: scale(1);
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .flow-story-wrap {
        grid-template-columns: 1fr;
      }

      .flow-story-right {
        height: 320px;
      }

      .flow-story-left {
        padding: 28px;
      }
    }

    .flow-img {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
    }

    .flow-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      /* 🔥 key change */
    }

    .metric-card {
      position: relative;
      padding: 26px;
      border-radius: 24px;

      background:
        radial-gradient(circle at top right, rgba(108, 24, 94, .08), transparent 40%),
        #fff;

      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);

      overflow: hidden;
      transition: .25s ease;
    }

    .metric-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 50px rgba(35, 18, 31, .14);
    }

    .metric-card strong {
      display: block;
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2.6rem, 4vw, 4rem);
      color: var(--brand);
      line-height: 1;
    }

    .metric-card span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-weight: 600;
    }

    /* ===== STATS STRIP ===== */

    .stats-strip {
      padding: 70px 0;
    }

    .stats-wrap {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;

      padding: 30px;
      border-radius: 30px;

      background:
        radial-gradient(circle at top right, rgba(108, 24, 94, .08), transparent 40%),
        radial-gradient(circle at bottom left, rgba(201, 146, 63, .08), transparent 40%),
        #fff;

      border: 1px solid var(--line);
      box-shadow: var(--shadow-soft);
    }

    /* ITEM */
    .stat-item {
      text-align: center;
      position: relative;
    }

    /* vertical divider */
    .stat-item:not(:last-child)::after {
      content: "";
      position: absolute;
      right: -10px;
      top: 20%;
      bottom: 20%;
      width: 1px;
      background: var(--line);
    }

    /* NUMBER */
    .stat-item strong {
      display: block;
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      color: var(--brand);
      line-height: 1;
    }

    /* LABEL */
    .stat-item span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-weight: 600;
      font-size: .95rem;
    }

    /* subtle hover */
    .stat-item:hover strong {
      transform: translateY(-3px);
      transition: .25s;
    }

    /* MOBILE */
    @media (max-width: 800px) {
      .stats-wrap {
        grid-template-columns: 1fr;
      }

      .stat-item::after {
        display: none;
      }
    }

    /* ===== NEW TESTIMONIAL STACK ===== */

    .testimonial-stack-new {
      position: relative;
      height: 270px;
      margin-top: 50px;
    }

    /* BASE CARD */
    .t-card {
      position: absolute;
      padding: 16px;
      border-radius: 20px;

      background: rgba(255, 255, 255, .9);
      backdrop-filter: blur(10px);

      border: 1px solid rgba(108, 24, 94, .08);
      box-shadow: 0 15px 35px rgba(35, 18, 31, .08);

      transition: all .3s ease;
    }

    /* MAIN CARD */
    .t-main {
      width: 340px;
      left: 50%;
      top: 20px;
      transform: translateX(-50%);
      z-index: 4;

      padding: 24px;
      border-radius: 24px;

      box-shadow: 0 30px 70px rgba(35, 18, 31, .15);
    }

    .t-main h3 {
      margin: 8px 0;
      font-size: 1.2rem;
    }

    .t-main p {
      font-size: .9rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* USER */
    .t-user {
      margin-top: 12px;
    }

    .t-user span {
      font-size: .75rem;
      color: var(--muted);
    }

    /* BACK LEFT */
    .t-back-left {
      width: 240px;
      left: 12%;
      top: 60px;

      transform: rotate(-4deg) scale(.96);
      opacity: .85;
      z-index: 2;
    }

    /* BACK RIGHT */
    .t-back-right {
      width: 240px;
      right: 12%;
      top: 50px;

      transform: rotate(4deg) scale(.96);
      opacity: .85;
      z-index: 2;
    }

    /* FLOAT */
    .t-float {
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      font-size: .75rem;
      padding: 8px 14px;
      border-radius: 999px;

      background: #fff;
      box-shadow: 0 10px 25px rgba(35, 18, 31, .08);
      z-index: 5;
    }

    /* HOVER (SUBTLE, NOT JUMPY) */
    .t-card:hover {
      transform: scale(1.04);
      box-shadow: 0 25px 60px rgba(35, 18, 31, .18);
    }

    /* KEEP MAIN CENTERED ON HOVER */
    .t-main:hover {
      transform: translateX(-50%) scale(1.04);
    }

    /* STARS */
    .stars {
      font-size: 12px;
      color: #c9923f;
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .testimonial-stack-new {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
        justify-content: center;
        align-items: center;
      }

      .t-card {
        position: static;
        transform: none !important;
        width: 100%;
      }
    }


    /* ===== FLOW STORY FINAL FIX ===== */

    .flow-story {
      padding: 40px 0;
    }

    /* MAIN WRAP */
    .flow-story-wrap {
      display: grid;
      grid-template-columns: 1fr 1.1fr;

      height: 80vh;
      /* 🔥 fixed height */
      max-height: 700px;
      /* safety for big screens */

      border-radius: 30px;
      overflow: hidden;
      /* ✅ safe now */

      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    /* LEFT SIDE */
    .flow-story-left {
      padding: 32px;

      display: flex;
      flex-direction: column;
      justify-content: center;

      overflow: hidden;
      /* no scroll needed now */
    }

    /* TEXT CONTROL */
    .flow-story-left h2 {
      font-size: clamp(2rem, 3vw, 3rem);
      line-height: 1.1;
      margin: 10px 0;
    }

    .flow-story-left p {
      font-size: .95rem;
      line-height: 1.6;
      max-width: 460px;
    }

    /* LIMIT LIST HEIGHT */
    .flow-list {
      margin-top: 18px;
      display: grid;
      gap: 8px;
    }

    /* ROW */
    .flow-row {
      padding: 10px 0;
      font-size: .9rem;
      display: grid;
      grid-template-columns: 0.2fr 1fr;
    }

    /* RIGHT SIDE */
    .flow-story-right {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;

      background: #faf7fb;
    }

    /* IMAGE */
    .flow-img {
      position: absolute;
      inset: 0;

      display: flex;
      align-items: center;
      justify-content: center;

      opacity: 0;
      transition: opacity .5s ease;
    }

    .flow-img.active {
      opacity: 1;
    }

    .flow-img img {
      max-width: 85%;
      max-height: 85%;
      object-fit: contain;
    }

    /* MOBILE (REMOVE HEIGHT LIMIT) */
    @media (max-width: 900px) {
      .flow-story-wrap {
        grid-template-columns: 1fr;
        height: auto;
        /* 🔥 remove 80vh */
      }

      .flow-story-right {
        height: 260px;
      }

      .flow-story-left {
        padding: 24px;
      }
    }




    /* ===== MARKET STACK ENHANCED ===== */

    .market-stack {
      padding: 60px 0;
      position: relative;
    }

    /* subtle background glow */
    .market-stack::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(108, 24, 94, .08), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(201, 146, 63, .06), transparent 40%);
      pointer-events: none;
    }

    /* HEAD */
    .market-head {
      text-align: center;
      max-width: 620px;
      margin: 0 auto 36px;
    }

    .market-head h2 {
      margin: 10px 0;
      font-size: clamp(2rem, 4vw, 3rem);
    }

    .market-head p {
      color: var(--muted);
    }

    /* STACK WRAP */
    .market-stack-wrap {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 18px;
    }

    /* CONNECTOR LINE */
    .market-stack-wrap::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, transparent, var(--line), transparent);
      left: 50%;
      transform: translateX(-50%);
      opacity: .6;
    }

    /* CARD */
    .market-stack-card {
      display: flex;
      align-items: center;
      gap: 14px;

      width: 440px;
      padding: 18px;
      border-radius: 22px;

      background: rgba(255, 255, 255, .9);
      backdrop-filter: blur(10px);

      border: 1px solid rgba(108, 24, 94, .08);

      box-shadow: 0 15px 35px rgba(35, 18, 31, .08);
      text-decoration: none;

      transition: all .3s ease;
      position: relative;
      z-index: 2;
    }

    /* OFFSET */
    .card-left {
      transform: translateX(-40px);
    }

    .card-right {
      transform: translateX(40px);
    }

    /* ICON */
    .market-stack-card img {
      width: 46px;
      height: 46px;
      object-fit: contain;
      transition: transform .3s ease;
    }

    /* TEXT */
    .market-stack-card strong {
      display: block;
      font-size: 1rem;
    }

    .market-stack-card span {
      font-size: .85rem;
      color: var(--muted);
    }

    /* HOVER */
    .market-stack-card:hover {
      transform: translateX(0) scale(1.04);
      box-shadow: 0 25px 60px rgba(35, 18, 31, .18);
      border-color: var(--brand);
    }

    /* icon lift */
    .market-stack-card:hover img {
      transform: scale(1.1);
    }

    /* MOBILE */
    @media (max-width: 600px) {
      .market-stack-card {
        width: 100%;
      }

      .card-left,
      .card-right {
        transform: none;
      }

      .market-stack-wrap::before {
        display: none;
      }
    }


    .product-track {
      display: flex;
      /* change from grid → flex */
      gap: 16px;
      overflow-x: auto;
      scroll-behavior: smooth;

      justify-content: center;
      /* center items */
      scroll-snap-type: x mandatory;
      /* snap scrolling */
      padding: 0 20px;
    }

    .product-card-home {
      flex: 0 0 80%;
      /* card width */
      /* max-width: 320px; */
      max-width: 250px;

      scroll-snap-align: center;
      /* THIS centers the card */
    }





    /* CARD BASE */
    .t-card {
      width: 300px;
      padding: 20px;
      border-radius: 18px;

      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.06);

      box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.04),
        0 10px 30px rgba(0, 0, 0, 0.06);

      transition: all 0.25s ease;
    }

    /* HEADER (user section) */
    .t-top {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    /* AVATAR */
    .avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, #6c185e, #8b296f);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 12px;
      font-weight: 700;
    }

    /* USER TEXT */
    .t-top strong {
      font-size: 13px;
      color: #222;
    }

    .t-top span {
      font-size: 11px;
      color: #888;
    }

    /* STARS */
    .stars {
      color: #f5b301;
      font-size: 13px;
      margin-bottom: 8px;
      letter-spacing: 1px;
    }

    /* TITLE */
    .t-card h3 {
      font-size: 16px;
      margin: 6px 0;
      color: #111;
      line-height: 1.3;
    }

    /* REVIEW TEXT */
    .t-card p {
      font-size: 13px;
      color: #666;
      line-height: 1.6;
    }

    /* ADD QUOTE STYLE FOR MAIN CARD */
    .t-main p {
      position: relative;
      padding-left: 14px;
    }

    .t-main p::before {
      content: "“";
      position: absolute;
      left: 0;
      top: -4px;
      font-size: 22px;
      color: #6c185e;
      font-weight: bold;
    }