/* Start custom CSS for html, class: .elementor-element-5fa7c8c */<style>
  * {
    box-sizing: border-box;
  }

  :root {
    --fdm-blue: #0b5ed7;
    --fdm-blue-dark: #084298;
    --fdm-navy: #0a2540;
    --fdm-green: #198754;
    --fdm-light-blue: #eaf4ff;
    --fdm-light-green: #eaf8f1;
    --fdm-light-yellow: #fff8df;
    --fdm-white: #ffffff;
    --fdm-text: #17202a;
    --fdm-muted: #586574;
    --fdm-border: #d7e0e8;
    --fdm-shadow: 0 16px 38px rgba(10, 37, 64, 0.1);
  }

  html {
    scroll-behavior: smooth;
  }

  .fdm-page {
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--fdm-text);
    background: var(--fdm-white);
  }

  .fdm-container {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
  }

  .fdm-section-heading {
    max-width: 820px;
    margin: 0 auto 46px;
    text-align: center;
  }

  .fdm-section-heading h2 {
    position: relative;
    margin: 0 0 25px;
    color: var(--fdm-navy);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
  }

  .fdm-section-heading h2::after {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 50%;
    width: 72px;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(
      90deg,
      var(--fdm-blue),
      #38a7ff,
      var(--fdm-green)
    );
    transform: translateX(-50%);
  }

  .fdm-section-heading p {
    margin: 0;
    color: var(--fdm-muted);
    font-size: 17px;
    line-height: 1.75;
  }

  /* =================================
     SCROLL ANIMATION
  ================================= */

  .fdm-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
      opacity 0.75s ease,
      transform 0.75s ease;
  }

  .fdm-reveal.fdm-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* =================================
     WHY FREEZE-DRIED MEALS
  ================================= */

  .fdm-benefits-section {
    position: relative;
    padding: 82px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    background:
      radial-gradient(
        circle at top left,
        rgba(11, 94, 215, 0.09),
        transparent 30%
      ),
      linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  }

  .fdm-benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }

  .fdm-benefit-card {
    position: relative;
    min-height: 280px;
    padding: 30px 18px;
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--fdm-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    transition:
      transform 0.35s ease,
      border-color 0.35s ease,
      box-shadow 0.35s ease;
  }

  .fdm-benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--fdm-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
  }

  .fdm-benefit-card:nth-child(2)::before,
  .fdm-benefit-card:nth-child(5)::before {
    background: var(--fdm-green);
  }

  .fdm-benefit-card:nth-child(3)::before,
  .fdm-benefit-card:nth-child(6)::before {
    background: #f0a500;
  }

  .fdm-benefit-card:hover {
    z-index: 2;
    border-color: rgba(11, 94, 215, 0.35);
    box-shadow: var(--fdm-shadow);
    transform: translateY(-10px);
  }

  .fdm-benefit-card:hover::before {
    transform: scaleX(1);
  }

  .fdm-icon,
  .fdm-process-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--fdm-blue);
    background: var(--fdm-light-blue);
    font-size: 37px;
    transition:
      transform 0.4s ease,
      background 0.4s ease,
      color 0.4s ease,
      box-shadow 0.4s ease;
  }

  .fdm-benefit-card:nth-child(2) .fdm-icon,
  .fdm-benefit-card:nth-child(5) .fdm-icon {
    color: var(--fdm-green);
    background: var(--fdm-light-green);
  }

  .fdm-benefit-card:nth-child(3) .fdm-icon,
  .fdm-benefit-card:nth-child(6) .fdm-icon {
    color: #d88900;
    background: var(--fdm-light-yellow);
  }

  .fdm-benefit-card:hover .fdm-icon {
    color: #ffffff;
    background: var(--fdm-blue);
    box-shadow: 0 12px 25px rgba(11, 94, 215, 0.25);
    transform: rotateY(360deg) scale(1.08);
  }

  .fdm-benefit-card:nth-child(2):hover .fdm-icon,
  .fdm-benefit-card:nth-child(5):hover .fdm-icon {
    background: var(--fdm-green);
  }

  .fdm-benefit-card:nth-child(3):hover .fdm-icon,
  .fdm-benefit-card:nth-child(6):hover .fdm-icon {
    background: #e59a00;
  }

  .fdm-benefit-card h3,
  .fdm-process-card h3,
  .fdm-flavour-card h3 {
    margin: 0 0 12px;
    color: var(--fdm-navy);
    font-size: 17px;
  }

  .fdm-benefit-card p,
  .fdm-process-card p {
    margin: 0;
    color: var(--fdm-muted);
    font-size: 14px;
    line-height: 1.65;
  }

  /* =================================
     HOW FREEZE-DRYING WORKS
  ================================= */

  .fdm-process-section {
    position: relative;
    padding: 82px 0 88px;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
  }

  .fdm-process-line {
    position: relative;
    width: calc(100% - 150px);
    height: 2px;
    margin: 0 auto -18px;
    background-image: linear-gradient(
      to right,
      var(--fdm-blue) 45%,
      transparent 45%
    );
    background-size: 15px 2px;
    animation: fdmMoveLine 1.5s linear infinite;
  }

  @keyframes fdmMoveLine {
    from {
      background-position: 0 0;
    }

    to {
      background-position: 30px 0;
    }
  }

  .fdm-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }

  .fdm-process-card {
    position: relative;
    padding: 0 12px;
    text-align: center;
  }

  .fdm-step-number {
    position: relative;
    z-index: 2;
    width: 38px;
    height: 38px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #dcecff;
    border-radius: 50%;
    color: #ffffff;
    background: var(--fdm-blue);
    box-shadow: 0 6px 15px rgba(11, 94, 215, 0.25);
    font-weight: 700;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }

  .fdm-process-card:hover .fdm-step-number {
    box-shadow: 0 10px 24px rgba(11, 94, 215, 0.35);
    transform: scale(1.15);
  }

  .fdm-process-icon {
    width: 72px;
    height: 72px;
    color: var(--fdm-blue);
    background: var(--fdm-light-blue);
  }

  .fdm-process-card:hover .fdm-process-icon {
    color: #ffffff;
    background: linear-gradient(
      135deg,
      var(--fdm-blue),
      var(--fdm-green)
    );
    box-shadow: 0 12px 28px rgba(11, 94, 215, 0.25);
    transform: translateY(-7px) rotate(6deg);
  }

  /* =================================
     WORLD OF FLAVOURS
  ================================= */

  .fdm-flavours-section {
    position: relative;
    padding: 82px 0;
    border-bottom: 1px solid #e5e7eb;
    background:
      linear-gradient(
        135deg,
        rgba(234, 244, 255, 0.75),
        rgba(234, 248, 241, 0.65)
      );
  }

  .fdm-flavours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .fdm-flavour-card {
    padding: 18px;
    border: 1px solid var(--fdm-border);
    border-radius: 14px;
    background: #ffffff;
    transition:
      transform 0.35s ease,
      box-shadow 0.35s ease;
  }

  .fdm-flavour-card:hover {
    box-shadow: var(--fdm-shadow);
    transform: translateY(-9px);
  }

  .fdm-flavour-card h3 {
    min-height: 42px;
    text-align: center;
  }

  .fdm-flavour-image {
    position: relative;
    height: 190px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
    background: #edf2f6;
  }

  .fdm-flavour-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      transparent 55%,
      rgba(10, 37, 64, 0.25)
    );
    pointer-events: none;
  }

  .fdm-flavour-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .fdm-flavour-card:hover .fdm-flavour-image img {
    transform: scale(1.1);
  }

  .fdm-flavour-card ul {
    min-height: 195px;
    margin: 0 0 22px;
    padding-left: 20px;
    color: #3f4852;
    font-size: 14px;
    line-height: 1.75;
  }

  .fdm-flavour-card li::marker {
    color: var(--fdm-blue);
  }

  .fdm-outline-button {
    display: inline-flex;
    min-height: 44px;
    padding: 11px 20px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--fdm-blue);
    border-radius: 7px;
    color: var(--fdm-blue);
    background: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition:
      color 0.3s ease,
      background 0.3s ease,
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }

  .fdm-outline-button:hover {
    color: #ffffff;
    background: var(--fdm-blue);
    box-shadow: 0 10px 22px rgba(11, 94, 215, 0.25);
    transform: translateY(-3px);
  }

  /* =================================
     BETTER FOR THE PLANET
  ================================= */

  .fdm-planet-section {
    position: relative;
    padding: 68px 0;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
  }

  .fdm-planet-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.35fr;
    gap: 55px;
    align-items: center;
  }

  .fdm-planet-image {
    height: 310px;
    overflow: hidden;
    border-radius: 18px;
    background: #eef5f1;
    box-shadow: var(--fdm-shadow);
  }

  .fdm-planet-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
  }

  .fdm-planet-wrapper:hover .fdm-planet-image img {
    transform: scale(1.07);
  }

  .fdm-planet-content h2 {
    margin: 0 0 16px;
    color: var(--fdm-navy);
    font-size: 38px;
  }

  .fdm-planet-content > p {
    margin: 0 0 32px;
    color: var(--fdm-muted);
    font-size: 16px;
    line-height: 1.7;
  }

  .fdm-planet-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }

  .fdm-planet-item {
    padding: 15px 8px;
    border-radius: 10px;
    text-align: center;
    transition:
      background 0.3s ease,
      transform 0.3s ease;
  }

  .fdm-planet-item:hover {
    background: var(--fdm-light-green);
    transform: translateY(-6px);
  }

  .fdm-planet-item span {
    width: 55px;
    height: 55px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--fdm-green);
    background: var(--fdm-light-green);
    font-size: 31px;
    transition:
      color 0.35s ease,
      background 0.35s ease,
      transform 0.35s ease;
  }

  .fdm-planet-item:hover span {
    color: #ffffff;
    background: var(--fdm-green);
    transform: rotate(12deg) scale(1.08);
  }

  .fdm-planet-item strong {
    color: var(--fdm-navy);
    font-size: 13px;
    line-height: 1.35;
  }

  /* =================================
     FAQ
  ================================= */

  .fdm-faq-section {
    position: relative;
    padding: 78px 0 92px;
    background:
      radial-gradient(
        circle at bottom right,
        rgba(11, 94, 215, 0.08),
        transparent 30%
      ),
      #f8fbfe;
  }

  .fdm-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .fdm-faq-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .fdm-faq-item {
    overflow: hidden;
    border: 1px solid var(--fdm-border);
    border-radius: 9px;
    background: #ffffff;
    box-shadow: 0 5px 14px rgba(10, 37, 64, 0.04);
    transition:
      border-color 0.3s ease,
      box-shadow 0.3s ease,
      transform 0.3s ease;
  }

  .fdm-faq-item:hover {
    border-color: rgba(11, 94, 215, 0.35);
    box-shadow: 0 10px 24px rgba(10, 37, 64, 0.08);
    transform: translateY(-2px);
  }

  .fdm-faq-item.active {
    border-color: var(--fdm-blue);
    box-shadow: 0 12px 28px rgba(11, 94, 215, 0.12);
  }

  .fdm-faq-question {
    width: 100%;
    padding: 17px 19px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    color: var(--fdm-navy);
    background: #ffffff;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition:
      color 0.3s ease,
      background 0.3s ease;
  }

  .fdm-faq-question:hover,
  .fdm-faq-item.active .fdm-faq-question {
    color: var(--fdm-blue);
    background: var(--fdm-light-blue);
  }

  .fdm-faq-plus {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    margin-left: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--fdm-blue);
    font-size: 21px;
    font-weight: 400;
    transition:
      transform 0.35s ease,
      background 0.35s ease;
  }

  .fdm-faq-item.active .fdm-faq-plus {
    background: var(--fdm-green);
    transform: rotate(45deg);
  }

  .fdm-faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.45s ease,
      opacity 0.35s ease;
  }

  .fdm-faq-answer p {
    margin: 0;
    padding: 0 19px 19px;
    color: var(--fdm-muted);
    font-size: 14px;
    line-height: 1.7;
  }

  .fdm-faq-item.active .fdm-faq-answer {
    max-height: 260px;
    opacity: 1;
  }

  /* =================================
     RESPONSIVE
  ================================= */

  @media (max-width: 1100px) {
    .fdm-benefits-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .fdm-flavours-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .fdm-planet-features {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 850px) {
    .fdm-process-line {
      display: none;
    }

    .fdm-process-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .fdm-planet-wrapper {
      grid-template-columns: 1fr;
    }

    .fdm-faq-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 600px) {
    .fdm-container {
      width: min(100% - 28px, 1240px);
    }

    .fdm-benefits-section,
    .fdm-process-section,
    .fdm-flavours-section,
    .fdm-faq-section {
      padding-top: 60px;
      padding-bottom: 60px;
    }

    .fdm-benefits-grid,
    .fdm-process-grid,
    .fdm-flavours-grid,
    .fdm-planet-features {
      grid-template-columns: 1fr;
    }

    .fdm-benefit-card {
      min-height: auto;
    }

    .fdm-flavour-card ul {
      min-height: auto;
    }

    .fdm-planet-image {
      height: 240px;
    }

    .fdm-planet-content h2 {
      font-size: 31px;
    }
  }

  /* Accessibility */

  @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;
    }

    .fdm-reveal {
      opacity: 1;
      transform: none;
    }
  }
</style>

<script>
  document.addEventListener("DOMContentLoaded", function () {
    /* FAQ accordion */
    const faqButtons = document.querySelectorAll(".fdm-faq-question");

    faqButtons.forEach(function (button) {
      button.setAttribute("aria-expanded", "false");

      button.addEventListener("click", function () {
        const currentItem = button.closest(".fdm-faq-item");
        const isOpen = currentItem.classList.contains("active");

        document.querySelectorAll(".fdm-faq-item").forEach(function (item) {
          item.classList.remove("active");

          const itemButton = item.querySelector(".fdm-faq-question");

          if (itemButton) {
            itemButton.setAttribute("aria-expanded", "false");
          }
        });

        if (!isOpen) {
          currentItem.classList.add("active");
          button.setAttribute("aria-expanded", "true");
        }
      });
    });

    /* Add scroll-reveal classes automatically */
    const animatedElements = document.querySelectorAll(
      ".fdm-section-heading, " +
      ".fdm-benefit-card, " +
      ".fdm-process-card, " +
      ".fdm-flavour-card, " +
      ".fdm-planet-image, " +
      ".fdm-planet-content, " +
      ".fdm-faq-item"
    );

    animatedElements.forEach(function (element, index) {
      element.classList.add("fdm-reveal");

      const delay = (index % 6) * 70;
      element.style.transitionDelay = delay + "ms";
    });

    /* Reveal content when visible */
    if ("IntersectionObserver" in window) {
      const observer = new IntersectionObserver(
        function (entries, currentObserver) {
          entries.forEach(function (entry) {
            if (entry.isIntersecting) {
              entry.target.classList.add("fdm-visible");
              currentObserver.unobserve(entry.target);
            }
          });
        },
        {
          threshold: 0.12,
          rootMargin: "0px 0px -40px 0px"
        }
      );

      animatedElements.forEach(function (element) {
        observer.observe(element);
      });
    } else {
      animatedElements.forEach(function (element) {
        element.classList.add("fdm-visible");
      });
    }
  });
</script>/* End custom CSS */