    :root {
      --bg: #f6f4ee;
      --bg-soft: #fbfaf6;
      --white: #ffffff;
      --text: #1c241f;
      --muted: #68726a;
      --green: #5e8d66;
      --green-dark: #294c35;
      --green-soft: #e7f0e8;
      --beige: #ece2cf;
      --gold: #c6a35c;
      --border: rgba(41, 76, 53, 0.12);
      --shadow: 0 24px 70px rgba(20, 32, 24, 0.08);
      --shadow-strong: 0 30px 90px rgba(20, 32, 24, 0.14);
      --radius-xl: 36px;
      --radius-lg: 26px;
      --radius-md: 18px;
      --container: 1240px;
      --header-h: 84px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Manrope", sans-serif;
      color: var(--text);
      line-height: 1.5;
      background:
        radial-gradient(circle at 8% 0%, rgba(94, 141, 102, 0.12), transparent 28%),
        radial-gradient(circle at 90% 5%, rgba(198, 163, 92, 0.10), transparent 26%),
        var(--bg);
      overflow-x: hidden;
    }

    body.menu-open {
      overflow: hidden;
    }

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

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

    button,
    input,
    textarea {
      font: inherit;
    }

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

    .section {
      padding: 88px 0;
    }

    .section-head {
      max-width: 860px;
      margin-bottom: 38px;
    }

    .kicker {
      display: inline-block;
      margin-bottom: 12px;
      color: var(--green-dark);
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    h1, h2, h3, h4 {
      letter-spacing: -0.05em;
    }

    h1 {
      font-size: clamp(42px, 6vw, 82px);
      line-height: 0.94;
      margin-bottom: 22px;
    }

    h2 {
      font-size: clamp(34px, 4vw, 58px);
      line-height: 0.98;
      margin-bottom: 16px;
    }

    .lead,
    .section-desc {
      color: var(--muted);
      font-size: 18px;
      line-height: 1.72;
    }

    .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 56px;
      padding: 0 24px;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      font-size: 15px;
      font-weight: 800;
      transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
      white-space: nowrap;
    }

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

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--green-dark), var(--green));
      box-shadow: 0 18px 40px rgba(41, 76, 53, 0.24);
    }

    .btn-secondary {
      color: var(--green-dark);
      background: rgba(255, 255, 255, 0.76);
      border-color: var(--border);
      backdrop-filter: blur(10px);
    }

    .btn-ghost {
      color: #fff;
      border-color: rgba(255,255,255,0.22);
      background: rgba(255,255,255,0.10);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 120;
      backdrop-filter: blur(18px);
      background: rgba(246, 244, 238, 0.82);
      border-bottom: 1px solid rgba(41, 76, 53, 0.08);
    }

    .nav {
      min-height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 24px;
      font-weight: 800;
      letter-spacing: -0.06em;
      z-index: 130;
    }

    .logo-mark {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: #fff;
      background: linear-gradient(135deg, var(--green-dark), var(--green));
      box-shadow: 0 14px 30px rgba(41, 76, 53, 0.24);
      font-size: 22px;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 24px;
      color: var(--muted);
      font-weight: 700;
      font-size: 15px;
    }

    .nav-menu a {
      transition: color 0.2s ease;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
      color: var(--green-dark);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .burger {
      display: none;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.8);
      color: var(--text);
      cursor: pointer;
      position: relative;
      z-index: 130;
    }

    .burger span,
    .burger::before,
    .burger::after {
      content: "";
      position: absolute;
      left: 50%;
      width: 20px;
      height: 2px;
      background: currentColor;
      border-radius: 999px;
      transform: translateX(-50%);
      transition: 0.25s ease;
    }

    .burger span { top: 23px; }
    .burger::before { top: 17px; }
    .burger::after { top: 29px; }

    .burger.is-open span { opacity: 0; }
    .burger.is-open::before { top: 23px; transform: translateX(-50%) rotate(45deg); }
    .burger.is-open::after { top: 23px; transform: translateX(-50%) rotate(-45deg); }

    .mobile-menu {
      display: none;
    }

    .hero {
      padding: 72px 0 42px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      align-items: center;
      gap: 46px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      margin-bottom: 22px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255,255,255,0.7);
      color: var(--green-dark);
      font-size: 14px;
      font-weight: 800;
      box-shadow: 0 10px 26px rgba(20, 32, 24, 0.04);
    }

    .eyebrow i {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 5px rgba(94, 141, 102, 0.14);
    }

    .hero-title span {
      color: var(--green-dark);
    }

    .hero .lead {
      max-width: 680px;
      margin-bottom: 30px;
      font-size: 20px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .hero-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.68);
      border: 1px solid rgba(41,76,53,0.10);
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .pill b {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--green-soft);
      color: var(--green-dark);
      font-size: 12px;
      flex: 0 0 auto;
    }

    .hero-stage {
      position: relative;
      min-height: 700px;
      border-radius: 42px;
      overflow: hidden;
      background:
        linear-gradient(145deg, rgba(255,255,255,0.88), rgba(231,240,232,0.84)),
        radial-gradient(circle at 35% 10%, rgba(198,163,92,0.12), transparent 32%);
      border: 1px solid rgba(255,255,255,0.82);
      box-shadow: var(--shadow-strong);
      isolation: isolate;
    }

    .hero-stage::before {
      content: "";
      position: absolute;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(94,141,102,0.12);
      right: -100px;
      top: -100px;
      z-index: 0;
    }

    .hero-stage::after {
      content: "";
      position: absolute;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: rgba(198,163,92,0.12);
      left: -120px;
      bottom: -120px;
      z-index: 0;
    }

    .hero-photo {
      position: absolute;
      inset: 24px 24px 180px 24px;
      border-radius: 34px;
      overflow: hidden;
      z-index: 1;
      background:
        linear-gradient(rgba(20,32,24,0.16), rgba(20,32,24,0.10)),
        url("./villan_hero.png") center/cover no-repeat;
    }

    .bag-main {
      position: absolute;
      z-index: 3;
      left: 50%;
      bottom: 92px;
      width: min(370px, 72%);
      aspect-ratio: 0.74;
      transform: translateX(-50%) rotate(-4deg);
      border-radius: 34px 34px 24px 24px;
      padding: 30px;
      background:
        linear-gradient(180deg, #ffffff, #f3f1e8 58%, #dce9dd),
        linear-gradient(135deg, rgba(94,141,102,0.14), transparent);
      border: 1px solid rgba(41,76,53,0.12);
      box-shadow:
        0 32px 80px rgba(20,32,24,0.18),
        inset 0 0 0 10px rgba(255,255,255,0.32);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .bag-top {
      display: flex;
      justify-content: space-between;
      color: var(--green-dark);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .bag-title {
      margin-top: 28px;
      font-size: 48px;
      line-height: 0.92;
      font-weight: 900;
      letter-spacing: -0.07em;
    }

    .bag-title span {
      color: var(--green-dark);
    }

    .bag-desc {
      margin-top: 16px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 700;
    }

    .bag-bottom {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
    }

    .kibble {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 35%, #b98b56, #7b5737 72%);
      box-shadow: 0 18px 30px rgba(123,87,55,0.22);
    }

    .weight {
      color: var(--green-dark);
      font-size: 34px;
      line-height: 1;
      font-weight: 900;
      letter-spacing: -0.06em;
    }

    .float-card {
      position: absolute;
      z-index: 4;
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(255,255,255,0.8);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 44px rgba(20,32,24,0.10);
    }

    .sale-badge {
      left: 18px;
      top: 138px;
      width: 138px;
      height: 138px;
      border-radius: 50%;
      background: var(--green-dark);
      color: #fff;
      display: grid;
      place-items: center;
      text-align: center;
      transform: rotate(-10deg);
    }

    .sale-badge strong {
      display: block;
      font-size: 24px;
      line-height: 1;
      margin-bottom: 6px;
    }

    .sale-badge span {
      font-size: 13px;
      font-weight: 700;
      opacity: 0.88;
    }

    .hero-note {
      top: 60px;
      right: 18px;
      width: 240px;
      padding: 18px;
      border-radius: 24px;
    }

    .hero-note strong {
      display: block;
      margin-bottom: 6px;
      font-size: 16px;
    }

    .hero-note span {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .hero-info {
      left: 24px;
      right: 24px;
      bottom: 24px;
      padding: 20px;
      border-radius: 28px;
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 16px;
    }

    .hero-info .icon {
      width: 64px;
      height: 64px;
      border-radius: 20px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #dcc7a7, #f7efe3);
      font-size: 28px;
    }

    .hero-info h3 {
      font-size: 18px;
      margin-bottom: 4px;
    }

    .hero-info p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

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

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

    .feature-card {
      background: rgba(255,255,255,0.76);
      border: 1px solid rgba(41,76,53,0.10);
      border-radius: 28px;
      padding: 28px;
      box-shadow: 0 14px 34px rgba(20,32,24,0.045);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 50px rgba(20,32,24,0.08);
    }

    .feature-num {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: var(--green-dark);
      color: #fff;
      font-weight: 900;
      margin-bottom: 22px;
    }

    .feature-card h3 {
      font-size: 22px;
      line-height: 1.1;
      margin-bottom: 10px;
    }

    .feature-card p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.68;
    }

    .split-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      align-items: stretch;
    }

    .statement-card {
      border-radius: var(--radius-xl);
      padding: 38px;
      box-shadow: var(--shadow);
      min-height: 100%;
    }

    .statement-card.dark {
      color: #fff;
      background: linear-gradient(145deg, var(--green-dark), #3e6649);
    }

    .statement-card.light {
      background: rgba(255,255,255,0.82);
      border: 1px solid rgba(41,76,53,0.08);
    }

    .statement-card .kicker {
      margin-bottom: 14px;
    }

    .statement-card.dark .kicker {
      color: rgba(255,255,255,0.74);
    }

    .statement-card.dark h2,
    .statement-card.dark h3 {
      color: #fff;
    }

    .statement-card.dark p,
    .statement-card.dark li {
      color: rgba(255,255,255,0.84);
    }

    .statement-card.light p,
    .statement-card.light li {
      color: var(--muted);
    }

    .statement-card p {
      font-size: 17px;
      line-height: 1.75;
    }

    .statement-list {
      display: grid;
      gap: 12px;
      margin-top: 24px;
    }

    .statement-list li {
      list-style: none;
      padding: 14px 16px;
      border-radius: 18px;
      font-weight: 700;
    }

    .statement-card.dark .statement-list li {
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.10);
    }

    .statement-card.light .statement-list li {
      background: var(--bg-soft);
      border: 1px solid rgba(41,76,53,0.08);
    }

    .highlight-box {
      margin-top: 24px;
      padding: 18px 20px;
      border-radius: 22px;
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.12);
      font-weight: 800;
      line-height: 1.55;
    }

    .quote-banner {
      background: linear-gradient(135deg, #203329, #365843);
      color: #fff;
      border-radius: var(--radius-xl);
      padding: 28px 30px;
      box-shadow: var(--shadow);
      font-size: 22px;
      line-height: 1.35;
      font-weight: 800;
      letter-spacing: -0.03em;
    }

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

    .ingredient-card {
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(41,76,53,0.10);
      border-radius: 28px;
      padding: 26px;
      box-shadow: 0 14px 34px rgba(20,32,24,0.045);
    }

    .ingredient-icon {
      width: 58px;
      height: 58px;
      margin-bottom: 18px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: var(--green-soft);
      font-size: 28px;
    }

    .ingredient-card h3 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .ingredient-card p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.68;
    }

    .slider {
      position: relative;
    }

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

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

    .slider-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.74);
      color: var(--green-dark);
      font-size: 18px;
      font-weight: 900;
      cursor: pointer;
      transition: 0.22s ease;
    }

    .slider-btn:hover {
      background: #fff;
      transform: translateY(-2px);
    }

    .slider-btn:disabled {
      opacity: 0.45;
      cursor: default;
      transform: none;
    }

    .slider-window {
      overflow: hidden;
    }

    .slider-track {
      display: flex;
      gap: 22px;
      transition: transform 0.5s cubic-bezier(.22,.61,.36,1);
      will-change: transform;
    }

    .product-card {
      min-width: calc(50% - 11px);
      background: rgba(255,255,255,0.84);
      border: 1px solid rgba(41,76,53,0.10);
      border-radius: 34px;
      padding: 28px;
      display: grid;
      grid-template-columns: 210px 1fr;
      gap: 24px;
      align-items: center;
      box-shadow: 0 18px 46px rgba(20,32,24,0.055);
    }

    .pack {
      height: 290px;
      border-radius: 28px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: linear-gradient(180deg, #fff, #f3f1e8 58%, #dceadc);
      border: 1px solid rgba(41,76,53,0.10);
      box-shadow: 0 18px 36px rgba(20,32,24,0.12);
    }

    .pack small {
      color: var(--green-dark);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.10em;
    }

    .pack strong {
      font-size: 34px;
      line-height: 0.95;
      letter-spacing: -0.06em;
    }

    .pack em {
      font-style: normal;
      color: var(--muted);
      font-weight: 700;
      font-size: 14px;
    }

    .product-content h3 {
      font-size: 30px;
      line-height: 1;
      margin-bottom: 10px;
    }

    .product-content p {
      color: var(--muted);
      margin-bottom: 16px;
      line-height: 1.7;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 20px;
    }

    .tag {
      padding: 8px 10px;
      border-radius: 999px;
      background: var(--green-soft);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 800;
    }

    .product-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .price {
      font-size: 28px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -0.05em;
    }

    .price span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0;
    }

    .compare-wrap {
      background: #fff;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(41,76,53,0.08);
      box-shadow: var(--shadow);
      overflow: auto;
    }

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

    th,
    td {
      text-align: left;
      padding: 22px 24px;
      border-bottom: 1px solid rgba(41,76,53,0.08);
      vertical-align: top;
    }

    th {
      background: var(--bg-soft);
      color: var(--green-dark);
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    td {
      color: var(--muted);
      font-weight: 700;
    }

    td:first-child {
      color: var(--text);
      font-weight: 900;
    }

    tr:last-child td {
      border-bottom: 0;
    }

    .good {
      color: var(--green-dark);
      font-weight: 900;
    }

    .faq {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      background: rgba(255,255,255,0.78);
      border: 1px solid rgba(41,76,53,0.10);
      border-radius: 24px;
      box-shadow: 0 12px 30px rgba(20,32,24,0.04);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      border: 0;
      background: transparent;
      cursor: pointer;
      padding: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      text-align: left;
      font-size: 18px;
      font-weight: 900;
      letter-spacing: -0.02em;
      color: var(--text);
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--green-soft);
      color: var(--green-dark);
      flex: 0 0 auto;
      font-weight: 900;
      transition: transform 0.22s ease;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.28s ease;
    }

    .faq-item.open .faq-answer {
      grid-template-rows: 1fr;
    }

    .faq-answer-inner {
      overflow: hidden;
    }

    .faq-answer p {
      color: var(--muted);
      padding: 0 22px 22px;
      max-width: 920px;
      line-height: 1.72;
    }

    .cta {
      padding-bottom: 100px;
    }

    .cta-box {
      position: relative;
      overflow: hidden;
      border-radius: 42px;
      padding: 54px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 30px;
      align-items: center;
      color: #fff;
      background:
        radial-gradient(circle at 84% 20%, rgba(198,163,92,0.22), transparent 28%),
        linear-gradient(135deg, var(--green-dark), var(--green));
      box-shadow: 0 30px 80px rgba(41,76,53,0.24);
    }

    .cta-box::before {
      content: "";
      position: absolute;
      left: -120px;
      bottom: -150px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
    }

    .cta-box > * {
      position: relative;
      z-index: 1;
    }

    .cta-box h2 {
      color: #fff;
      max-width: 800px;
    }

    .cta-box p {
      color: rgba(255,255,255,0.82);
      font-size: 18px;
      line-height: 1.7;
      max-width: 700px;
    }

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

    .site-footer {
      padding: 28px 0;
      border-top: 1px solid rgba(41,76,53,0.10);
      color: var(--muted);
      font-size: 14px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1100px) {
      .nav-menu,
      .nav-actions .btn {
        display: none;
      }

      .burger {
        display: inline-block;
      }

      .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 110;
        display: flex;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: 0.25s ease;
      }

      .mobile-menu.open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
      }

      .mobile-menu-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(12, 20, 16, 0.32);
        backdrop-filter: blur(4px);
      }

      .mobile-menu-panel {
        position: relative;
        margin-left: auto;
        width: min(88vw, 380px);
        height: 100%;
        padding: 96px 24px 24px;
        background: rgba(251,250,246,0.98);
        border-left: 1px solid rgba(41,76,53,0.08);
        transform: translateX(100%);
        transition: transform 0.28s ease;
        box-shadow: -20px 0 60px rgba(20,32,24,0.12);
      }

      .mobile-menu.open .mobile-menu-panel {
        transform: translateX(0);
      }

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

      .mobile-nav a {
        padding: 14px 16px;
        border-radius: 16px;
        background: #fff;
        border: 1px solid rgba(41,76,53,0.08);
        color: var(--text);
        font-weight: 800;
      }

      .mobile-menu-actions {
        display: grid;
        gap: 10px;
        margin-top: 18px;
      }

      .hero-grid,
      .split-grid,
      .cta-box {
        grid-template-columns: 1fr;
      }

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

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

      .product-card {
        min-width: 100%;
      }

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

    @media (max-width: 760px) {
      :root {
        --header-h: 74px;
      }

      .section {
        padding: 64px 0;
      }

      .hero {
        padding-top: 46px;
      }

      .lead,
      .section-desc,
      .hero .lead {
        font-size: 17px;
      }

      .hero-stage {
        min-height: 560px;
      }

      .hero-photo {
        inset: 18px 18px 172px 18px;
      }

      .sale-badge,
      .hero-note {
        display: none;
      }

      .bag-main {
        width: min(300px, 80%);
        padding: 24px;
      }

      .bag-title {
        font-size: 38px;
      }

      .hero-info {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 18px;
        grid-template-columns: 54px 1fr;
      }

      .hero-info .icon {
        width: 54px;
        height: 54px;
        border-radius: 18px;
        font-size: 24px;
      }

      .statement-card,
      .cta-box {
        padding: 30px;
        border-radius: 28px;
      }

      .grid-4,
      .grid-3,
      .ingredients-grid {
        grid-template-columns: 1fr;
      }

      .slider-top {
        align-items: flex-start;
        flex-direction: column;
      }

      .product-card {
        grid-template-columns: 1fr;
      }

      .pack {
        max-width: 230px;
      }

      .btn {
        width: 100%;
      }

      .hero-actions,
      .cta-actions,
      .mobile-menu-actions {
        width: 100%;
      }

      .quote-banner {
        font-size: 18px;
        padding: 22px;
      }
    }
  
