/* Minimal CSS reset - modern-normalize approach */
@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
  }

  body {
    margin: 0;
    height: 100%;
  }

  button:focus-visible {
    outline: 2px solid oklch(55% 0.2 250);
    outline-offset: 2px;
  }

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

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

  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
/* CSS Custom Properties - Design Tokens */
@layer base {
  :root {
    /* Colors - using oklch() for wider gamut */
    --color-primary: oklch(55% 0.2 250);
    --color-surface: oklch(99% 0 0);
    --color-text: oklch(15% 0 0);
    --color-text-muted: oklch(40% 0 0);
    --color-border: oklch(85% 0 0);
    --color-white: oklch(100% 0 0);
    --color-black: oklch(0% 0 0);
    --color-grey-light: oklch(91% 0 0);
    --color-grey-dark: oklch(20% 0 0);

    /* Typography - fluid scale with clamp() */
    --font-family-primary: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-family-secondary: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.35rem);
    --text-xl: clamp(1.25rem, 1rem + 1.2vw, 1.75rem);
    --text-2xl: clamp(1.5rem, 1rem + 2vw, 2.5rem);
    --text-3xl: clamp(2rem, 1.2rem + 3vw, 3.5rem);
    --text-4xl: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
    --text-5xl: clamp(3rem, 2rem + 5vw, 6rem);

    /* Spacing - fluid */
    --space-xs: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
    --space-sm: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
    --space-md: clamp(1rem, 0.8rem + 1vw, 1.5rem);
    --space-lg: clamp(1.5rem, 1rem + 2vw, 3rem);
    --space-xl: clamp(2rem, 1.5rem + 3vw, 5rem);
    --space-2xl: clamp(3rem, 2rem + 5vw, 8rem);

    /* Layout */
    --max-width: 75rem; /* 1200px */
    --max-width-hero: 1440px;
    --max-width-wide: 125rem; /* 2000px */
    --gutter: var(--space-md);

    /* Borders & Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px oklch(0% 0 0 / 0.05);
    --shadow-md: 0 4px 6px oklch(0% 0 0 / 0.07);
    --shadow-lg: 0 10px 25px oklch(0% 0 0 / 0.1);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration-fast: 150ms;
    --duration-base: 250ms;
    --duration-slow: 350ms;
  }

  /* Dark mode via system preference */
  @media (prefers-color-scheme: dark) {
    :root {
      --color-primary: oklch(70% 0.18 250);
      --color-surface: oklch(12% 0 0);
      --color-text: oklch(90% 0 0);
      --color-text-muted: oklch(65% 0 0);
      --color-border: oklch(25% 0 0);
      --shadow-sm: 0 1px 2px oklch(0% 0 0 / 0.2);
      --shadow-md: 0 4px 6px oklch(0% 0 0 / 0.3);
      --shadow-lg: 0 10px 25px oklch(0% 0 0 / 0.4);
    }
  }

  /* Respect prefers-reduced-motion */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
}
/* Typography and global base styles */
@layer base {
  html {
    font-family: var(--font-family-primary);
    color: var(--color-text);
    background-color: var(--color-surface);
  }

  body {
    font-size: var(--text-base);
    line-height: 1.5;
    overflow-x: hidden;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
  }

  h1 {
    font-size: var(--text-5xl);
  }

  h2 {
    font-size: var(--text-4xl);
  }

  h3 {
    font-size: var(--text-3xl);
  }

  h4 {
    font-size: var(--text-2xl);
  }

  h5 {
    font-size: var(--text-xl);
  }

  h6 {
    font-size: var(--text-lg);
  }

  p {
    margin: 0;
  }

  /* Skip link for accessibility */
  .skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: var(--space-sm) var(--space-md);
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-md);
    text-decoration: none;
  }

  .skip-link:focus {
    top: var(--space-sm);
  }

  /* Screen reader only */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
  }

  /* Focus visible */
  :focus-visible {
    outline: 3px solid var(--color-primary);
    outline-offset: 2px;
  }
}
/* Grid/flex layout utilities */
@layer layout {
  .container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--gutter);
  }

  .container-wide {
    width: 100%;
    max-width: var(--max-width-wide);
    margin-inline: auto;
    padding-inline: var(--gutter);
  }

  /* Fluid grids - no fixed breakpoints when possible */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: var(--space-md);
  }

  /* Flex utilities */
  .flex {
    display: flex;
  }

  .flex-col {
    flex-direction: column;
  }

  .items-center {
    align-items: center;
  }

  .justify-between {
    justify-content: space-between;
  }

  .gap-sm {
    gap: var(--space-sm);
  }

  .gap-md {
    gap: var(--space-md);
  }

  .gap-lg {
    gap: var(--space-lg);
  }
}
/* High-impact motion animations - CSS only */
@layer components {
  /* Page load staggered reveals */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(2rem);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-2rem);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(2rem);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Staggered reveal on page load */
  .home .header {
    animation: fadeInUp 0.6s var(--ease-out) 0.1s both;
  }

  .home .section--hero {
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
  }

  .home .section--hero .hero-wrap {
    animation: fadeInUp 0.8s var(--ease-out) 0.5s both;
  }

  .home .hero-title {
    animation: fadeInUp 0.8s var(--ease-out) 0.7s both;
  }

  .home .hero-subtitle {
    animation: fadeInUp 0.8s var(--ease-out) 0.9s both;
  }

  .home .hero-badges {
    animation: scaleIn 0.6s var(--ease-out) 1s both;
  }
  
  /* On desktop, combine scale animation with translateY */
  @media (min-width: 1024px) {
    @keyframes scaleInTranslateDown {
      from {
        opacity: 0;
        transform: translateY(60px) scale(0.95);
      }
      to {
        opacity: 1;
        transform: translateY(60px) scale(1);
      }
    }
    
    .home .hero-badges {
      animation: scaleInTranslateDown 0.6s var(--ease-out) 1s both;
    }
  }

  .home .section--hero .row {
    animation: fadeInUp 0.8s var(--ease-out) 1.1s both;
  }

  /* Scroll-triggered animations */
  .home [data-animate] {
    opacity: 0;
    transform: translateY(2rem);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  }

  .home [data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Staggered animation delays for scroll-triggered elements */
  .home [data-animate-delay="100"] {
    transition-delay: 0.1s;
  }

  .home [data-animate-delay="200"] {
    transition-delay: 0.2s;
  }

  .home [data-animate-delay="300"] {
    transition-delay: 0.3s;
  }

  .home [data-animate-delay="400"] {
    transition-delay: 0.4s;
  }

  /* Card hover effects - subtle lift */
  .home .card-wrap {
    transition: transform 0.4s var(--ease-out);
  }

  .home .card-wrap:hover {
    transform: translateY(-0.25rem)!important;
  }

  .home .card-wrap .card {
    transition: transform 0.3s var(--ease-out);
  }

  /* Button hover effects - subtle opacity change only */
  .home .btn {
    position: relative;
    transition: opacity 0.2s var(--ease-out);
  }

  .home .btn:hover {
    opacity: 0.85;
  }

  /* Image hover effects */
  .home img {
    transition: transform 0.5s var(--ease-out), opacity 0.3s var(--ease-out);
  }

  .home .card-wrap:hover img {
    transform: scale(1.05);
  }

  /* Navigation link hover effects */
  .home .nav__list .nav-link {
    position: relative;
    transition: color 0.3s var(--ease-out);
  }

  .home .nav__list .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s var(--ease-out);
  }

  .home .nav__list .nav-link:hover::after {
    width: 100%;
  }


  /* FAQ accordion icon rotation */
  .home .faq-item summary {
    transition: transform 0.2s var(--ease-out);
  }

  .home .faq-item[open] summary {
    transform: translateY(-2px);
  }

  /* FAQ toggle animation handled in style.css with SVG */

  /* Hero section parallax-like effect on scroll */
  .home .section--hero .hero-overlay {
    transition: transform 0.3s var(--ease-out);
  }

  /* Product card reveal animation */
  .home .card-wrap {
    opacity: 0;
    animation: fadeInUp 0.6s var(--ease-out) both;
  }

  .home .card-wrap:nth-child(1) {
    animation-delay: 0.1s;
  }

  .home .card-wrap:nth-child(2) {
    animation-delay: 0.2s;
  }

  .home .card-wrap:nth-child(3) {
    animation-delay: 0.3s;
  }

  .home .card-wrap:nth-child(4) {
    animation-delay: 0.4s;
  }

  /* Section fade-in on scroll */
  .home section {
    opacity: 0;
    transform: translateY(3rem);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  }

  .home section.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Testimonial cards hover */
  .home .testimonial-card {
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  }

  .home .testimonial-card:hover {
    transform: translateY(-0.75rem) scale(1.03);
    box-shadow: var(--shadow-lg);
  }

  /* Video play button hover and click effects - subtle */
  .home .play-btn {
    transition: transform 0.3s var(--ease-out),
                background-color 0.3s var(--ease-out),
                box-shadow 0.3s var(--ease-out);
  }

  .home .play-btn:hover {
    transform: scale(1.1);
    background-color: rgba(12, 94, 202, 0.5);
    box-shadow: 0 8px 24px rgba(12, 94, 202, 0.3);
  }

  .home .play-btn:active {
    transform: scale(1.05);
    transition: transform 0.1s var(--ease-out);
  }

  /* Inner play icon animation */
  .home .play-btn .play-btn__icon {
    transition: transform 0.3s var(--ease-out);
  }

  .home .play-btn:hover .play-btn__icon {
    transform: scale(1.15);
  }

  /* Play button small (testimonials) hover effects */
  .home .play-btn--sm {
    transition: transform 0.3s var(--ease-out),
                background-color 0.3s var(--ease-out),
                box-shadow 0.3s var(--ease-out);
  }

  .home .play-btn--sm:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: rgba(12, 94, 202, 0.5);
    box-shadow: 0 8px 24px rgba(12, 94, 202, 0.3);
  }

  .home .play-btn--sm:active {
    transform: translate(-50%, -50%) scale(1.05);
    transition: transform 0.1s var(--ease-out);
  }

  .home .play-btn--sm .play-btn__icon {
    transition: transform 0.3s var(--ease-out);
  }

  .home .play-btn--sm:hover .play-btn__icon {
    transform: scale(1.15);
  }

  /* Smooth scroll behavior */
  html {
    scroll-behavior: smooth;
  }

  /* Respect prefers-reduced-motion */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }

    .home [data-animate],
    .home section {
      opacity: 1;
      transform: none;
    }
  }
}
/* Global styles - reset is handled in reset.css */
/* Fonts will be self-hosted - see base.css for font-family definitions */
:root {
  --title-cover-font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --title-cover-font-weight: 700;
  --title-cover-font-size: 145px;
  --title-cover-letter-spacing: 0px;
  --title-cover-line-height: normal;
  --title-cover-font-style: normal;
  --cover-tag-font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --cover-tag-font-weight: 500;
  --cover-tag-font-size: 18px;
  --cover-tag-letter-spacing: 0px;
  --cover-tag-line-height: normal;
  --cover-tag-font-style: normal;
  --page-antent-font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --page-antent-font-weight: 400;
  --page-antent-font-size: 14px;
  --page-antent-letter-spacing: 0px;
  --page-antent-line-height: normal;
  --page-antent-font-style: normal;
  --title-between-font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --title-between-font-weight: 700;
  --title-between-font-size: 123px;
  --title-between-letter-spacing: 0px;
  --title-between-line-height: normal;
  --title-between-font-style: normal;
  --lafantana-ro-semantic-link-font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --lafantana-ro-semantic-link-font-weight: 400;
  --lafantana-ro-semantic-link-font-size: 18px;
  --lafantana-ro-semantic-link-letter-spacing: 0px;
  --lafantana-ro-semantic-link-line-height: 22px;
  --lafantana-ro-semantic-link-font-style: normal;
  --lafantana-ro-lato-regular-font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --lafantana-ro-lato-regular-font-weight: 400;
  --lafantana-ro-lato-regular-font-size: 16px;
  --lafantana-ro-lato-regular-letter-spacing: 0px;
  --lafantana-ro-lato-regular-line-height: 22.860000610351562px;
  --lafantana-ro-lato-regular-font-style: normal;
  --lafantana-ro-lato-bold-font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --lafantana-ro-lato-bold-font-weight: 700;
  --lafantana-ro-lato-bold-font-size: 18px;
  --lafantana-ro-lato-bold-letter-spacing: 0px;
  --lafantana-ro-lato-bold-line-height: 34px;
  --lafantana-ro-lato-bold-font-style: normal;
  --lafantana-ro-color-black-solid: rgba(0, 0, 0, 1);
  --lafantana-ro-font-weight-400: 400px;
  --lafantana-ro-font-size-10: 10px;
  --lafantana-ro-line-height-20: 20px;
  --lafantana-ro-width-322: 322px;
  --lafantana-ro-font-size-24: 24px;
  --lafantana-ro-color-grey-91: rgba(233, 233, 233, 1);
  --lafantana-ro-width-160: 160px;
  --lafantana-ro-width-140: 140px;
  --lafantana-ro-item-spacing-xxs: 4px;
  --lafantana-ro-color-white-20: rgba(255, 255, 255, 0.2);
  --lafantana-ro-item-spacing-12: 12px;
  --lafantana-ro-height-72: 72px;
  --lafantana-ro-item-spacing-36: 36px;
  --lafantana-ro-width-2000: 2000px;
  --html-to-design-color-white-solid: rgba(255, 255, 255, 1);
  --kanva-template-framer-website-color-grey-10: rgba(26, 28, 24, 1);
  --kanva-template-framer-website-color-white-solid-duplicate: rgba(
    255,
    255,
    255,
    1
  );
}
/* Component styles - reusable class system */
@layer components {

/* ========================================
   PAGE WRAPPER
   ======================================== */
.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-color: #ffffff;
  width: 100%;
  max-width: 100vw;
}

/* ========================================
   HEADER
   ======================================== */
.home .header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  z-index: 10;
}

.home .header__inner {
  display: flex;
  max-width: 1440px;
  width: 100%;
  height: auto;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  padding: 0px 1rem;
  position: relative;
  box-sizing: border-box;
}

.home .logo-link {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
}

.home .logo {
  position: relative;
  max-width: 150px;
  width: 150px;
  align-self: stretch;
  transition: width 0.3s ease, max-width 0.3s ease;
}

.home .nav-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Hamburger button */
.home .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.home .hamburger__line {
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.home .hamburger.is-active .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 4px);
}

.home .hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.home .hamburger.is-active .hamburger__line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -4px);
}

.home .nav {
  display: flex;
  width: 100%;
  max-width: 469px;
  align-items: center;
  gap: 4px;
  position: relative;
  flex-wrap: wrap;
}

/* Desktop: ensure nav-wrap is visible */
@media (min-width: 1024px) {
  .home .nav-wrap {
    display: inline-flex !important;
  }
  
  .home .hamburger {
    display: none !important;
  }
}

.home .nav__list {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
  margin-right: 0;
  flex-wrap: wrap;
}

.home .nav__item {
  display: inline-flex;
  flex-direction: column;
  height: 36px;
  align-items: flex-start;
  padding: 0px 8px;
  position: relative;
  flex: 0 0 auto;
}

.home .nav__item-inner {
  display: inline-flex;
  flex-direction: column;
  height: 36px;
  align-items: flex-start;
  justify-content: center;
  padding: 0px 18px 0px 0px;
  position: relative;
}

.home .nav__item-inner--plain {
  display: inline-flex;
  flex-direction: column;
  height: 36px;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.home .nav-link {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 1;
  flex-grow: 1;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 18px;
  white-space: nowrap;
  text-decoration: none;
}

.home .nav-link .chevron-down {
  display: inline-block !important;
  width: 10px;
  height: 6px;
  margin-left: 4px;
  vertical-align: middle;
  opacity: 0.5;
  transition: transform 0.2s, opacity 0.2s;
}
.nav__item--has-dropdown:hover .chevron-down {
  transform: rotate(180deg);
  opacity: 0.8;
}

/* ========================================
   HEADER ACTIONS (search, account)
   ======================================== */
.home .header-actions {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0px 0px 0px 20px;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}

.home .header-actions__inner {
  display: inline-flex;
  align-items: center;
  gap: var(--lafantana-ro-item-spacing-36);
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.home .header-actions__phone {
  display: none;
}

.home .search {
  position: relative;
  width: 160px;
  height: 36px;
  min-width: var(--lafantana-ro-width-160);
}

.home .search__input-wrap {
  display: flex;
  flex-direction: column;
  width: 158px;
  height: 34px;
  align-items: flex-start;
  padding: 7.5px 40px 7.5px 16px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: #ffffff;
  border-radius: 23px;
  overflow: hidden;
  box-shadow: inset 0px 3px 6px #06469e33;
}

.home .search__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .search__input {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: #38414d;
  font-size: 16px;
  letter-spacing: 0;
  line-height: normal;
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
}

.home .search__input::placeholder {
  color: #38414d;
}

.home .search__btn-wrap {
  display: inline-flex;
  height: 36px;
  align-items: flex-start;
  position: absolute;
  top: 0;
  right: 12px;
}

.home .search__btn {
  display: inline-flex;
  align-items: center;
  padding: 5px 0px;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
  border-radius: 3px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.home .search__btn-icon {
  position: relative;
  width: 25px;
  height: 22px;
  overflow: hidden;
}

.home .search__btn-icon-inner {
  position: relative;
  top: -2px;
  height: 25px;
}

.home .search__btn-vector {
  position: absolute;
  width: 64.41%;
  height: 64.63%;
  top: 17.68%;
  left: 17.77%;
}

.home .header-links {
  display: inline-flex;
  max-height: var(--lafantana-ro-height-72);
  height: 72px;
  align-items: center;
  justify-content: flex-end;
  gap: var(--lafantana-ro-item-spacing-12);
  position: relative;
  flex: 0 0 auto;
  min-height: var(--lafantana-ro-height-72);
}

.home .header-links__cart {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: -4px;
  margin-left: -12px;
}

.home .header-links__cart-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(115deg, rgba(0, 62, 144, 1) 0%, rgba(13, 98, 209, 1) 100%);
  border: 1px solid #ffffff33;
  box-shadow: 0px 2px 4px #0000001f;
  text-decoration: none;
  position: relative;
}

.home .header-links__cart-link svg {
  width: 22px;
  height: 22px;
}

.home .header-links__cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid #fff;
  pointer-events: none;
}

.home .header-links__account-wrap {
  display: flex;
  width: 137px;
  height: 48px;
  align-items: flex-start;
  position: relative;
}

.home .account-link {
  width: 140px;
  align-items: center;
  gap: var(--lafantana-ro-item-spacing-xxs);
  padding: 0px 8px 0px 5px;
  align-self: stretch;
  margin-right: -3px;
  border-radius: 24px;
  border: 1px solid;
  border-color: #ffffff33;
  box-shadow: 0px 2px 4px #0000001f;
  background: linear-gradient(115deg, rgba(0, 62, 144, 1) 0%, rgba(13, 98, 209, 1) 100%);
  display: flex;
  position: relative;
}

.home .account-link__avatar {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 9999px;
}

.home .account-link__avatar-svg {
  position: relative;
  width: 18px;
  height: 18px;
}

.home .account-link__avatar-v1 {
  position: absolute;
  width: 63.01%;
  height: 65.3%;
  top: 0;
  left: 18.14%;
}

.home .account-link__avatar-v2 {
  position: absolute;
  width: 94.44%;
  height: 40.2%;
  top: 59.81%;
  left: 2.78%;
}

.home .account-link__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  border-radius: 9999px;
  opacity: 0.16;
}

.home .account-link__text-wrap {
  display: flex;
  flex-direction: column;
  width: 152px;
  align-items: flex-start;
  padding: 0px 41px 0px 0px;
  position: relative;
  margin-right: -70px;
}

.home .account-link__text-inner {
  display: flex;
  flex-direction: column;
  max-width: var(--lafantana-ro-width-140);
  width: 90px;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

.home .account-link__text {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
}

/* ========================================
   SECTIONS - base & variants
   ======================================== */
.home .section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: var(--space-xl) var(--space-md);
  box-sizing: border-box;
}


.home .section--hero {
  min-height: 700px;
  overflow: hidden;
  background-image: url(/assets/images/home-hero.webp);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0 !important;
}

.home .section--dark {
  background-color: #303842;
  gap: 6px;
  justify-content: center;
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.home .section--grey {
  gap: 30px;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

.home .faq-container {
  width: 100%;
  max-width: 1440px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
}

.home .faq-search-bar {
  width: 100%;
  max-width: 1920px;
  padding: clamp(20px, 4vw, 40px) clamp(20px, 5vw, 60px);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
}

.home .faq-search-bar__form {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 600px;
  position: relative;
}

.home .faq-search-bar__label {
  display: flex;
  align-items: center;
  flex: 1;
}

.home .faq-search-bar__input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #eaedf0;
  border-radius: 30px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #303842;
  background-color: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home .faq-search-bar__input:focus {
  outline: none;
  border-color: #0d62d1;
  box-shadow: 0 0 0 3px rgba(13, 98, 209, 0.1);
}

.home .faq-search-bar__input::placeholder {
  color: #9ca3af;
}

.home .faq-search-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background-color: #0d62d1;
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.home .faq-search-bar__btn:hover {
  background-color: #0b52b8;
  transform: scale(1.05);
}

.home .faq-search-bar__btn:active {
  transform: scale(0.95);
}

.home .faq-search-bar__btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.home .section-header .heading {
  margin-top: clamp(40px, 5vw, 80px);
}

.home .section--benefits {
  gap: var(--space-lg);
  justify-content: center;
  background-image: url(/assets/images/footer-desktop.webp);
  background-size: cover;
  background-position: 50% 50%;
}

.home .section--featured {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  background-color: #ffffff;
}

.home .section--business {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: linear-gradient(260deg, rgba(23, 24, 26, 1) 0%, rgba(48, 56, 66, 1) 100%);
}

.home .section--cta {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* ========================================
   SPLIT LAYOUT (side-by-side)
   ======================================== */
.home .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  align-self: stretch;
}

.home .split__half {
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

.home .split__half--video {
  aspect-ratio: 960 / 630;
  height: auto;
  background-image: url(/assets/images/frame-32.webp);
  background-size: cover;
  background-position: 50% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .split__half--content {
  background-image: linear-gradient(rgba(240, 240, 240, 0.96), rgba(240, 240, 240, 0.85)), url(/assets/images/frame-34.webp);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: #FFF;
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--space-md), 4vw, 60px);
  padding: clamp(20px, 5vw, 60px);
}

.home .split__half--ace {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(125deg, rgba(247, 247, 247, 0) 0%, rgba(48, 56, 66, 1) 100%);
}

.home .split__half--ace img {
  max-width: 100%;
  width: auto;
  height: auto;
  position: relative;
  aspect-ratio: 1.09;
  object-fit: cover;
}

.home .split__half--9waters {
  aspect-ratio: 960 / 630;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(319deg, #F7F7F7 69.26%, rgba(48, 56, 66, 0.00) 223.51%);
}

.home .split__half--9waters img {
  max-width: 100%;
  width: auto;
  height: auto;
  position: relative;
  z-index: 1;
  object-fit: cover;
}

.home .split__half--text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding: clamp(20px, 5vw, 60px) clamp(20px, 8vw, 100px);
  background-color: #ffffff;
}

/* ========================================
   WRAP / ROW / COL - layout helpers
   ======================================== */
.home .wrap {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  padding: var(--space-lg);
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  position: relative;
  flex: 0 0 auto;
}

.home .row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-md);
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Hero section buttons aligned left on desktop */
.home .section--hero .row {
  justify-content: flex-start;
}

.home .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(var(--space-lg), 4vw, 60px);
  position: relative;
  width: 100%;
}

.home .col--centered {
  align-items: center;
  text-align: center;
}

.home .col--gap-sm {
  gap: 32px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.home .hero-overlay {
  position: relative;
  width: 56px;
  flex: 0 0 auto;
  max-width: 100%;
  height: auto;
}

.home .hero-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: var(--max-width-hero);
  margin: 0 auto;
  align-items: flex-start;
  justify-content: center;
  padding: var(--space-md);
  box-sizing: border-box;
}

.home .hero-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  min-height: auto;
  align-items: center;
  gap: var(--space-md);
  position: relative;
  align-self: stretch;
  width: 100%;
}

.home .hero-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 630px;
  align-items: flex-start;
  text-align: left;
  gap: 0.75rem;
  position: relative;
}

.home .hero-title {
  font-size: clamp(1.75rem, 6vw, 3.25rem);
  line-height: 1.2;
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 842px;
  margin: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  color: #22282f;
  letter-spacing: -0.72px;
}

.home .hero-subtitle {
  font-size: clamp(var(--text-base), 1.6vw, 1.25rem);
  text-align: left;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 645px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  color: #4a4f57;
  letter-spacing: 0;
  line-height: 1.3;
}

.home .hero-badges {
  width: 260px;
  height: auto;
  position: relative;
  aspect-ratio: 201.66 / 221;
  margin-left: -95px;
  margin-top: 60px;
}

/* Badge positioning on desktop */
@media (min-width: 1024px) {
  .home .hero-badges {
    width: 260px;
  }
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
.home .heading {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  color: #021022;
  font-size: 37px;
  letter-spacing: 0;
  line-height: 1.2;
}

.home .heading--white {
  color: #ffffff;
}

.home .heading--left {
  justify-content: flex-start;
  text-align: left;
  min-height: auto;
  margin-top: 0;
  white-space: normal;
}

.home .heading--large {
  font-size: 37px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  max-width: none;
  justify-content: flex-start;
  text-align: left;
  white-space: normal;
}

.home .subtext {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: #4a4f57;
  font-size: clamp(1rem, 2vw, 1.125rem);
  letter-spacing: 0;
  line-height: 1.5;
}

.home .subtext--centered {
  justify-content: center;
  text-align: center;
}

.home .subtext--white {
  color: #ffffffdb;
  font-size: 18px;
  line-height: 19.8px;
}

.home .subtext--large {
  font-weight: 500;
  color: #021022b2;
  font-size: 28px;
  line-height: 30.8px;
  text-align: left;
  display: block;
  width: 100%;
}

.home .quote {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 674px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #ffffffe6;
  font-size: 22px;
  letter-spacing: 0;
  line-height: 24.2px;
}

/* ========================================
   BUTTONS
   ======================================== */
.home .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0px 24.16px 0px 24.14px;
  border-radius: 51px;
  position: relative;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0;
  line-height: 38px;
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
}

.home .btn--filled {
  width: 100%;
  max-width: 200px;
  min-height: 52px;
  padding: 14px var(--space-md);
  background-color: #303842;
  border-radius: 81px;
  box-shadow: 0px 1px 2.5px #00000040;
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  border: none;
  justify-content: center;
  text-align: center;
}

.home .btn--outline {
  min-height: 49px;
  border: 1px solid;
  border-color: #303842;
  color: #303842;
  background: #ffffff;
}

.home .btn--outline-lg {
  max-width: max-content;
  min-height: 52px;
  padding: 14px 24px;
  background-color: #ffffff;
  border-radius: 81px;
  border: 1px solid;
  border-color: #303842;
  box-shadow: 0px 1px 2.5px #00000040;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.3;
}

.home .btn--dark {
  min-height: 49px;
  background-color: #303842;
  color: #ffffff;
  border: none;
}

.home .btn--dark-wide {
  max-width: 282px;
  width: auto;
  min-height: 49px;
  background-color: #303842;
  color: #ffffff;
  border: none;
}

.home .btn--white {
  min-height: 49px;
  background-color: #ffffff;
  color: #303842;
  border: none;
}

.home .btn--blue {
  width: auto;
  min-height: 49px;
  border: 1px solid;
  border-color: #00469e;
  color: #00469e;
  background: transparent;
}

.home .btn--blue-wide {
  max-width: 216px;
  width: auto;
  min-height: 49px;
  border: 1px solid;
  border-color: #00469e;
  color: #00469e;
  background: transparent;
}

.home .btn--buy {
  width: auto;
  min-width: 130px;
  height: 40px;
  border: 1px solid;
  border-color: #303842;
  color: #303842;
  background: transparent;
  padding: 8px 20px;
  font-size: 14px;
  border-radius: 24px;
}

/* ========================================
   SVG CHEVRON
   ======================================== */
.home .chevron {
  flex-shrink: 0;
  width: 5px;
  height: 6px;
  display: block;
}

/* ========================================
   FINANCE SECTION
   ======================================== */
.home .finance-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 100%;
  height: auto;
  margin-top: -1px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 37px;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.2;
}

.home .finance-text {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 952px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: #e2e2e2;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.5;
  gap: 0;
}

.home .finance-text span {
  display: inline;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: #e2e2e2;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.5;
}

.home .finance-text a {
  display: inline;
  text-decoration: underline;
  color: #ffffff;
  font-weight: 500;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.home .section--products {
  width: 100%;
  max-width: 100vw;
  gap: 30px;
  padding: clamp(20px, 5vw, 60px) clamp(20px, 5vw, 80px);
  padding-top: clamp(20px, 5vw, 60px);
  background-color: #fbfbfc;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

.home .section-header {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
}

.home .products-grid-wrapper {
  width: 100%;
  max-width: 1440px;
  padding: 30px 0px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.home .products-grid {
  display: flex;
  align-items: stretch;
  gap: 24px;
  position: relative;
  width: max-content;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home .products-grid .card-wrap {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: calc((1440px - 72px) / 4);
}

/* Products navigation bullets */
.home .products-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: 10px;
  padding: var(--space-md) 0;
}

.home .products-nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  flex-shrink: 0;
}

.home .products-nav__btn:hover {
  background-color: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}

.home .products-nav__btn:active {
  transform: scale(0.95);
}

.home .products-nav__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.home .products-nav__btn svg {
  width: 20px;
  height: 20px;
}

.home .products-nav__bullets {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.home .products-nav__bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  padding: 0;
  flex-shrink: 0;
}

.home .products-nav__bullet:hover {
  background-color: rgba(0, 0, 0, 0.4);
  transform: scale(1.2);
}

.home .products-nav__bullet.is-active {
  background-color: #000000;
  width: 24px;
  height: 10px;
  border-radius: 5px;
}

/* ========================================
   CARDS
   ======================================== */
.home .card-wrap {
  width: 100%;
  max-width: 393px;
  align-items: flex-start;
  display: flex;
  gap: var(--space-md);
  position: relative;
}

.home .card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  position: relative;
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid;
  border-color: #eaedf0;
  container-type: inline-size;
  container-name: card;
  gap: 12px;
}

.home .card__top {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
  min-height: 32px;
}

.home .card__top--flush {
  height: auto;
  padding: 0;
  margin: 0;
}

.home .card__top--wide {
  height: auto;
  padding: 0;
}

/* Position badge and fav-btn within card__top */
.home .card__top .badge {
  grid-column: 1;
}

.home .card__top .fav-btn {
  grid-column: 3;
  justify-self: end;
}

.home .badge {
  display: flex;
  height: 32px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 6px 12px;
  position: relative;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(0, 62, 144, 1) 0%, rgba(13, 98, 209, 1) 100%);
}

.home .badge--hidden {
  opacity: 0;
  width: auto;
}

.home .badge--visible {
  width: auto;
}

.home .badge--wide {
  width: auto;
}

.home .badge-image {
  background: none;
  padding: 0;
  width: auto;
  height: auto;
  margin-left: 0;
}

.home .badge-image img {
  width: auto;
  height: 32px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.home .badge__text {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.home .fav-btn {
  flex-direction: column;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin: 0;
  background-color: #eaedf073;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  position: relative;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.home .fav-btn__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .fav-btn__svg {
  position: relative;
  width: 18px;
  height: 14px;
}

.home .card__img,
.home img.card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* Ensure anchor wrapping card image is block so aspect-ratio works */
.home .card > a {
  display: block;
  width: 100%;
}

.home .card__img--1 { background-image: url(/assets/images/frame-64.webp); }
.home .card__img--2 { background-image: url(/assets/images/frame-64-4.webp); }
.home .card__img--3 { background-image: url(/assets/images/frame-64-2.webp); }


.home .card__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .card__name-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  position: relative;
}

.home .card__name {
  position: relative;
  display: block;
  margin: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.home .card__rating-row {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 5px;
  position: relative;
  flex: 0 0 auto;
}

.home .rating {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  position: relative;
  flex: 0 0 auto;
}

.home .rating__star {
  position: relative;
  width: 16.9px;
  height: 15.36px;
}

.home .rating__star--sm {
  position: relative;
  width: 16.03px;
  height: 15.29px;
}

.home .card__rating-text {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  position: relative;
  flex: 0 0 auto;
}

.home .card__rating-score {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 13px;
  margin-top: -1px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  color: #000000;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 38px;
  white-space: nowrap;
}

.home .card__rating-count {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 13px;
  margin-top: -1px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  color: #555555;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 38px;
  white-space: nowrap;
}

.home .card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin-top: 0;
  padding-top: 8px;
}

/* Container query: stack button when card becomes narrow */
@container card (max-width: 200px) {
  .home .card__price {
    flex-direction: column;
    align-items: stretch;
  }
  
  .home .card__price-dual,
  .home .card__price-single {
    width: 100%;
  }
  
  .home .card__price .btn {
    width: 100%;
  }
}

.home .card__price-single {
  height: auto;
  gap: 4px;
  display: flex;
  flex-direction: column;
  width: auto;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.home .card__price-value {
  margin: 0;
  font-weight: 700;
  color: #303842;
  font-size: 18px;
  position: relative;
  display: flex;
  align-items: center;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.home .card__price-dual {
  height: auto;
  gap: 2px;
  display: flex;
  flex-direction: column;
  width: auto;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.home .card__price-old {
  height: auto;
  font-weight: 400;
  color: #687a92;
  font-size: 12px;
  text-decoration: line-through;
  white-space: nowrap;
  position: relative;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0;
  line-height: 1.3;
}

.home .card__price-sale {
  height: auto;
  font-weight: 700;
  color: #fb2f4e;
  font-size: 18px;
  white-space: nowrap;
  position: relative;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0;
  line-height: 1.2;
}

/* Card variant: image-only card */
.home .card--image {
  width: 100%;
  aspect-ratio: 393 / 499;
  background-image: url(/assets/images/card.webp);
  position: relative;
  border-radius: clamp(18px, 3vw, 36px);
  border: 3px solid;
  border-color: #eaedf0;
  background-size: cover;
  background-position: 50% 50%;
}

/* Card variant: business screenshot card */
.home .business-cards img {
  position: relative;
  width: 100%;
  height: auto;
  margin: -26px;
  aspect-ratio: 0.98;
  object-fit: cover;
  border-radius: 36px;
  border: 3px solid #eaedf0;
  aspect-ratio:819/499;
}

/* ========================================
   PLAY BUTTON
   ======================================== */
.home .play-btn {
  display: flex;
  width: 146px;
  height: 147px;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #0c5eca3b;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
}

.home .play-btn__inner {
  display: flex;
  width: 105px;
  height: 105px;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #ffffff;
  border-radius: 9999px;
}

.home .play-btn__icon {
  position: relative;
  width: 25px;
  height: 33px;
}

.home .play-btn__vector {
  position: absolute;
  width: 100%;
  height: 88.54%;
  top: 5.73%;
  left: 0;
}

/* Play button - small (testimonials) */
.home .play-btn--sm {
  width: 125px;
  height: 126px;
  background-color: #0c5eca3b;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  border: none;
  padding: 0;
  margin: 0;
}

.home .play-btn--sm .play-btn__inner {
  width: 88px;
  height: 88px;
}

.home .play-btn--sm .play-btn__icon {
  width: 21px;
  height: 28px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.home .section--testimonials {
  width: 1920px;
  max-width: 100vw;
  gap: 60px;
  padding: clamp(20px, 5vw, 60px) clamp(20px, 5vw, 200px);
  background-color: #fbfbfb;
  justify-content: center;
  align-items: center;
}

.home .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--space-md);
  width: 100%;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
  margin-left: -96.5px;
  margin-right: -96.5px;
}

.home .testimonial-card {
  position: relative;
  width: 100%;
  max-width: 531px;
  aspect-ratio: 531 / 338;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/* Different background images for each testimonial card */
.home .testimonial-card:nth-child(1) {
  background-image: url(/assets/images/video-placeholder-1.webp);
}

.home .testimonial-card:nth-child(2) {
  background-image: url(/assets/images/video-placeholder-2.webp);
}

.home .testimonial-card:nth-child(3) {
  background-image: url(/assets/images/video-placeholder-3.webp);
}

/* ========================================
   VIDEO SECTION HEADER
   ======================================== */
.home .section--video-header {
  width: 100%;
  max-width: 100%;
  padding: 60px 20px !important;
  box-sizing: border-box;
  background-color: #303842 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
}

.home .section--video-header__title {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

.home .section--video-header__subtitle {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin: 0;
  max-width: 600px;
}

.home .section--faq-header {
  width: 100%;
  max-width: 100%;
  padding: 60px 20px !important;
  box-sizing: border-box;
  background-color: #303842 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin: 0;
}

.home .section--faq-header__title {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.home .section--contact-header {
  width: 100%;
  max-width: 1920px;
  padding: clamp(40px, 5vw, 80px) clamp(20px, 5vw, 60px);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}

.home .contact-header {
  width: 100%;
  max-width: 1200px;
  text-align: center;
}

.home .contact-header__title {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  color: #303842;
  margin: 0 0 clamp(16px, 2vw, 24px) 0;
}

.home .contact-header__intro {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  color: #303842;
  margin: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.home .contact-header__link {
  color: #0d62d1;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.home .contact-header__link:hover {
  color: #0b52b8;
}

.home .section--contact-content {
  width: 100%;
  max-width: 1920px;
  padding: 0 clamp(20px, 5vw, 60px) clamp(60px, 8vw, 100px);
  box-sizing: border-box;
  background-color: #ffffff;
}

.home .contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 60px);
  max-width: 1400px;
  width:100%;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .home .contact-content {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.home .contact-form-wrapper {
  width: 100%;
}

.home .contact-form {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 28px);
}

.home .contact-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2vw, 20px);
}

@media (min-width: 768px) {
  .home .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.home .contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home .contact-form__label {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #303842;
}

.home .contact-form__input,
.home .contact-form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #eaedf0;
  border-radius: 8px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #303842;
  background-color: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home .contact-form__input:focus,
.home .contact-form__textarea:focus {
  outline: none;
  border-color: #0d62d1;
  box-shadow: 0 0 0 3px rgba(13, 98, 209, 0.1);
}

.home .contact-form__input.is-invalid,
.home .contact-form__textarea.is-invalid,
.home .contact-form__phone-select.is-invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.home .contact-form__input.is-invalid:focus,
.home .contact-form__textarea.is-invalid:focus,
.home .contact-form__phone-select.is-invalid:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.home .contact-form__error {
  display: none;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #dc2626;
  margin-top: 4px;
  line-height: 1.4;
}

.home .contact-form__error:not(:empty) {
  display: block;
}

.home .contact-form__error--checkbox {
  margin-top: 8px;
  margin-left: 32px;
}

.home .contact-form__checkbox-label input.is-invalid + .contact-form__checkbox-text {
  color: #dc2626;
}

.home .contact-form__input::placeholder,
.home .contact-form__textarea::placeholder {
  color: #9ca3af;
}

.home .contact-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.home .contact-form__phone-group {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.home .contact-form__phone-select {
  flex-shrink: 0;
  padding: 14px 16px;
  padding-right: 40px;
  border: 1px solid #eaedf0;
  border-radius: 8px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #303842;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23303842' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px 8px;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home .contact-form__phone-select:focus {
  outline: none;
  border-color: #0d62d1;
  box-shadow: 0 0 0 3px rgba(13, 98, 209, 0.1);
}

.home .contact-form__input--phone {
  flex: 1;
}

.home .contact-form__field--checkbox {
  gap: 12px;
}

.home .contact-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.home .contact-form__checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #0d62d1;
}

.home .contact-form__checkbox-text {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #303842;
}

.home .contact-form__link {
  color: #0d62d1;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.home .contact-form__link:hover {
  color: #0b52b8;
}

.home .contact-form__submit {
  width: 100%;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.home .contact-map-wrapper {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.home .contact-map {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.home .contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
}

/* ========================================
   REVIEWS TOOLBAR
   ======================================== */
.home .reviews-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 24px) clamp(20px, 5vw, 60px);
  box-sizing: border-box;
  background-color: #ffffff;
  gap: 16px;
  flex-wrap: wrap;
}

.home .reviews-toolbar__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #687a92;
}

.home .reviews-toolbar__crumb {
  color: #687a92;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.home .reviews-toolbar__crumb:hover {
  color: #0d62d1;
}

.home .reviews-toolbar__crumb--active {
  color: #303842;
  font-weight: 600;
}

.home .reviews-toolbar__sep {
  color: #c0c7cf;
  font-weight: 300;
}

.home .reviews-toolbar__search {
  display: flex;
  align-items: center;
}

.home .reviews-toolbar__search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.home .reviews-toolbar__search-label {
  display: flex;
  align-items: center;
}

.home .reviews-toolbar__search-input {
  padding: 10px 16px;
  border: 1px solid #eaedf0;
  border-radius: 20px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #303842;
  background-color: #ffffff;
  min-width: 250px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home .reviews-toolbar__search-input:focus {
  outline: none;
  border-color: #0d62d1;
  box-shadow: 0 0 0 3px rgba(13, 98, 209, 0.1);
}

.home .reviews-toolbar__search-input::placeholder {
  color: #9ca3af;
}

.home .reviews-toolbar__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background-color: #0d62d1;
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.home .reviews-toolbar__search-btn:hover {
  background-color: #0b52b8;
  transform: scale(1.05);
}

.home .reviews-toolbar__search-btn:active {
  transform: scale(0.95);
}

.home .reviews-toolbar__search-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* ========================================
   REVIEWS FILTERS BAR
   ======================================== */
.home .reviews-filters-bar {
  width: 100%;
  max-width: 1920px;
  padding: clamp(16px, 3vw, 24px) clamp(20px, 5vw, 60px);
  box-sizing: border-box;
  background-color: #ffffff;
  position: relative;
  z-index: 10;
}

.home .reviews-filters-bar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.home .reviews-filters-bar__tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}

.home .reviews-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background-color: #ffffff;
  border-radius: 8px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #1a1c18;
  border: 1px solid #D5D7DA;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.home .reviews-filter-tag:hover {
  background-color: #f3f4f6;
}

.home .reviews-filter-tag__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #1a1c18;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.home .reviews-filter-tag__remove:hover {
  opacity: 1;
}

.home .reviews-filter-tag__remove svg {
  width: 12px;
  height: 12px;
  display: block;
}

.home .reviews-filters-bar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home .reviews-filters-dropdown,
.home .reviews-sort-dropdown {
  position: relative;
}

.home .reviews-filters-dropdown__trigger,
.home .reviews-sort-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #ffffff;
  border-radius: 20px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #1a1c18;
  border: 1px solid #D5D7DA;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.home .reviews-filters-dropdown__trigger:hover,
.home .reviews-sort-dropdown__trigger:hover {
  background-color: #f3f4f6;
}

.home .reviews-filters-dropdown__icon {
  width: 16px;
  height: 12px;
  flex-shrink: 0;
}

.home .reviews-sort-dropdown__icon {
  width: 12px;
  height: 8px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.home .reviews-sort-dropdown__trigger[aria-expanded="true"] .reviews-sort-dropdown__icon {
  transform: rotate(180deg);
}

.home .reviews-filters-dropdown__menu,
.home .reviews-sort-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 100;
  max-height: 300px;
  overflow-y: auto;
}

.home .reviews-filters-dropdown__menu.is-open,
.home .reviews-sort-dropdown__menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.home .reviews-filters-dropdown__item,
.home .reviews-sort-dropdown__item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  background: none;
  border: none;
  border-radius: 6px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #1a1c18;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.home .reviews-filters-dropdown__item:hover,
.home .reviews-sort-dropdown__item:hover {
  background-color: #f3f4f6;
}

.home .reviews-filters-dropdown__item.is-selected,
.home .reviews-sort-dropdown__item.is-selected {
  background-color: #e5e7eb;
  font-weight: 500;
}

.home .reviews-filters-dropdown__item span,
.home .reviews-sort-dropdown__item span {
  flex: 1;
}

/* ========================================
   VIDEO GALLERY
   ======================================== */
.home .section--video-gallery {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(20px, 8vw, 30px) clamp(20px, 5vw, 60px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.home .video-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(20px, 3vw, 40px);
  width: 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .home .video-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .home .video-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home .video-gallery-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  animation: fadeInUp 0.6s var(--ease-out) both;
}

.home .video-gallery-item__placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: #f3f4f6;
}

.home .video-gallery-item:nth-child(1) .video-gallery-item__placeholder {
  background-image: url(/assets/images/video-placeholder-1.webp);
}

.home .video-gallery-item:nth-child(2) .video-gallery-item__placeholder {
  background-image: url(/assets/images/video-placeholder-2.webp);
}

.home .video-gallery-item:nth-child(3) .video-gallery-item__placeholder {
  background-image: url(/assets/images/video-placeholder-3.webp);
}

.home .video-gallery-item__placeholder .play-btn--sm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

.home .video-gallery-item__description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: #4a5568;
  margin: 0;
}

.home .video-gallery-item__description p {
  margin: 0;
}

.home .video-gallery-item__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: #9ca3af;
}

.home .video-gallery-item__views,
.home .video-gallery-item__label,
.home .video-gallery-item__date {
  white-space: nowrap;
}

.home .video-gallery-item__separator {
  flex-shrink: 0;
  width: 4px;
  height: 4px;
}

/* ========================================
   NEWS GALLERY (Articles)
   ======================================== */
.home .news-gallery-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 8px;
  overflow: hidden;
  animation: fadeInUp 0.6s var(--ease-out) both;
}

.home .news-gallery-item:hover {
  transform: translateY(-4px);
}

.home .news-gallery-item__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f3f4f6;
}

.home .news-gallery-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.home .news-gallery-item:hover .news-gallery-item__image img {
  transform: scale(1.05);
}

.home .news-gallery-item__description {
  margin: 0;
}

.home .news-gallery-item__title {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.4;
  color: #303842;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home .news-gallery-item__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: #9ca3af;
}

.home .news-gallery-item__label,
.home .news-gallery-item__date {
  white-space: nowrap;
}

.home .news-gallery-item__separator {
  flex-shrink: 0;
  width: 4px;
  height: 4px;
}

/* ========================================
   ARTICLE CONTENT
   ======================================== */
.home .section--article {
  width: 100%;
  max-width: 1920px;
  padding: clamp(40px, 8vw, 80px) clamp(20px, 5vw, 60px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home .article-content {
  width: 100%;
  max-width: 1026px;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 40px);
}

.home .article-content__image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-color: #f3f4f6;
}

.home .article-content__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home .article-content__header {
  width: 100%;
}

.home .article-content__title {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  color: #303842;
  margin: 0;
}

.home .article-content__body {
  padding: 0 50px;
  box-sizing: border-box;
}

.home .article-content__body p {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
  color: #4a5568;
  margin: 0 0 clamp(16px, 3vw, 24px) 0;
}

.home .article-content__body p:last-child {
  margin-bottom: 0;
}

.home .article-content__body h2 {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  color: #303842;
  margin: clamp(32px, 5vw, 48px) 0 clamp(16px, 3vw, 24px) 0;
}

.home .article-content__body h3 {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.4;
  color: #303842;
  margin: clamp(28px, 4vw, 40px) 0 clamp(12px, 2vw, 20px) 0;
}

.home .article-content__body h2:first-child,
.home .article-content__body h3:first-child {
  margin-top: 0;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.home .benefits-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  position: relative;
  width: 100%;
  max-width: 100%;
}

.home .benefits-wrap > .benefits-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}

.home .benefits-col {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 43px;
  position: relative;
  flex: 0 0 auto;
}

.home .benefit-item {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 60px;
  position: relative;
  flex: 0 0 auto;
}

.home .benefit-content {
  display: flex;
  flex-direction: column;
  width: 375px;
  align-items: center;
  gap: 50px;
  position: relative;
  flex: 0 0 auto;
}

/* Circle images for benefits */
.home .circle-img {
  display: flex;
  width: 133px;
  height: 133px;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 161px;
}

.home .circle-img__photo {
  position: relative;
  max-width: var(--lafantana-ro-width-322);
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-size: cover;
  background-position: 50% 50%;
  z-index: 2;
}

.home .circle-img__photo--1 { background-image: url(/assets/images/apa-filtrata1-png.webp); }
.home .circle-img__photo--2 { background-image: url(/assets/images/apa-filtrata1-png-1.webp); }
.home .circle-img__photo--3 { background-image: url(/assets/images/apa-filtrata1-png-2.webp); }
.home .circle-img__photo--4 { background-image: url(/assets/images/apa-filtrata1-png-3.webp); }
.home .circle-img__photo--5 { background-image: url(/assets/images/apa-filtrata1-png-5.webp); }

.home .circle-img__photo--screenshot {
  overflow: hidden;
  background-image: url(/assets/images/apa-filtrata1-png-4.webp);
  position: relative;
  max-width: var(--lafantana-ro-width-322);
  width: 113px;
  height: 113px;
  border-radius: 128.79px;
  background-size: cover;
  background-position: 50% 50%;
}

.home .circle-img__photo--screenshot img {
  position: absolute;
  top: 0;
  left: 0;
  width: 113px;
  height: 113px;
  aspect-ratio: 0.84;
  object-fit: cover;
}

.home .gradient-blur {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 161px;
  filter: blur(2.5px);
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(22, 112, 167, 0) 53%,
    rgba(57, 173, 243, 1) 53%
  );
  z-index: 1;
}

.home .benefit-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--lafantana-ro-line-height-20);
  padding: 0px 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .benefit-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: 34px;
  white-space: nowrap;
}

.home .benefit-desc {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 383px;
  margin-top: -1px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  color: #ffffffde;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
}

/* Benefits center column */
.home .benefits-center {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-md);
  position: relative;
  order: 2;
}

.home .benefits-center__header {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-start;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  z-index: 2;
}

.home .benefits-product-img {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  z-index: 1;
}

.home .benefits-product-img .polygon {
  position: absolute;
  top: 81px;
  left: 115px;
  width: 627px;
  height: 702px;
  object-fit: cover;
}

.home .benefits-product-img .polygon-2 {
  position: absolute;
  top: 46px;
  left: 85px;
  width: 689px;
  height: 772px;
}

.home .benefits-product-img .polygon-3 {
  position: absolute;
  top: 10px;
  left: 56px;
  width: 746px;
  height: 839px;
}

.home .benefits-product-img .product-photo {
  width: 100%;
  aspect-ratio: 1;
}

/* ========================================
   FEATURED PRODUCT
   ======================================== */
.home .featured-wrap {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1440px;
  gap: clamp(var(--space-lg), 4vw, 60px);
  padding: clamp(var(--space-lg), 3vw, 42px);
  margin: 0 auto;
  background-color: #303842;
  border-radius: clamp(24px, 5vw, 76px);
  box-sizing: border-box;
}

.home .featured-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  width: 100%;
  align-items: stretch;
}

/* Desktop (> 1370px): two columns - already set in base */

.home .featured-card-col {
  display: flex;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
}

.home .featured-card-col .card-wrap {
  width: 100%;
  max-width: 100%;
}

.home .featured-card-col .card {
  width: 100%;
  max-width: 393px;
  height: auto;
  aspect-ratio: 393 / 499;
}

.home .featured-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(var(--space-md), 3vw, 60px);
  width: 100%;
  min-width: 0;
}

.home .featured-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
}

.home .featured-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
  width: 100%;
  min-width: 0;
}

/* Text alignment for featured section */
.home .featured-text-col .heading {
  justify-content: flex-start;
  text-align: left;
  max-width: 100%;
}

.home .featured-text-col .subtext {
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.home .featured-text-col .quote {
  width: 100% !important;
  max-width: 100% !important;
  justify-content: flex-start;
  text-align: left;
  display: block !important;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ========================================
   FAQ
   ======================================== */
.home .faq-list {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  gap: 0;
}

@media (min-width: 1200px) {
  .home .faq-list {
    max-width: 900px;
  }
}

.home .faq-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 0px;
  position: relative;
  flex: 0 0 auto;
  border-bottom: 1px solid #e5e7eb;
  padding: 24px 0;
}

.home .faq-item:first-child {
  border-top: 1px solid #e5e7eb;
}

.home .faq-item summary {
  list-style: none;
  cursor: pointer;
}

.home .faq-item summary::-webkit-details-marker {
  display: none;
}

.home .divider {
  display: none;
}

.home .divider--hidden {
  display: none;
}

.home .divider--bottom {
  display: none;
}

.home .faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.home .faq-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: auto;
  margin: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  color: #1a1c18;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.3;
}

.home .faq-title--wide {
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
}

.home .faq-toggle {
  display: flex;
  flex-direction: column;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #f3f4f6;
  border-radius: 50%;
  aspect-ratio: 1;
  flex-shrink: 0;
}

.home .faq-toggle__icon-wrap {
  position: relative;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .faq-toggle__icon {
  width: 100%;
  height: 100%;
  color: #303842;
  transition: transform 0.3s ease;
}

.home .faq-toggle__icon line:first-child {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.home .faq-toggle__line--horizontal {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* When FAQ is open, hide vertical line (plus becomes horizontal minus) */
.home .faq-item[open] .faq-toggle__icon line:first-child {
  transform: rotate(90deg);
  opacity: 0;
}

.home .faq-answer {
  position: relative;
  align-self: stretch;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: #4a4f57;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding-top 0.4s ease-out, padding-bottom 0.4s ease-out, opacity 0.3s ease-out;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}

/* When FAQ is open, slide down the answer */
.home .faq-item[open] .faq-answer {
  max-height: 1000px;
  opacity: 1;
  padding-top: 12px;
  padding-bottom: 0;
  transition: max-height 0.5s ease-in, padding-top 0.4s ease-in, padding-bottom 0.4s ease-in, opacity 0.4s ease-in;
}

/* ========================================
   BUSINESS SECTION
   ======================================== */
.home .business-wrap {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1440px;
  gap: clamp(var(--space-lg), 4vw, 60px);
  padding: clamp(var(--space-lg), 3vw, 42px);
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  border-radius: clamp(24px, 5vw, 76px);
}

/* Desktop (≥ 1371px): two columns (50% each) */
@media (min-width: 1371px) {
  .home .business-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

.home .business-cards {
  display: flex;
  flex-direction: row;
  gap: var(--space-lg);
  width: 100%;
  align-items: stretch;
}

.home .business-card-col {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 60px;
  position: relative;
}

.home .business-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(var(--space-md), 3vw, 60px);
  width: 100%;
  min-width: 0;
}

.home .business-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
  width: 100%;
  min-width: 0;
}

/* Text alignment for business section */
.home .business-text-col .heading {
  justify-content: flex-start;
  text-align: left;
  max-width: 100%;
  text-wrap: balance;
  font-weight: 600;
}

.home .business-text-col .subtext {
  display: block;
  width: 100%;
  max-width: 100%;
  text-align: left;
}

.home .business-text-col .quote {
  width: 100% !important;
  max-width: 100% !important;
  justify-content: flex-start;
  text-align: left;
  display: block !important;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.home .business-badge-row {
  display: flex;
  width: 100%;
  max-width: 393px;
  height: 43px;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-md);
  padding: 15px 26px 15px 0px;
  position: relative;
}

/* ========================================
   CTA SECTION
   ======================================== */

.home .section--cta {
  padding: 0px;
  gap: 0;
}

.home .cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0px;
  padding-bottom: 0;
}

.home .cta-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  padding: clamp(var(--space-lg), 6vw, 100px) clamp(var(--space-lg), 4vw, 80px) clamp(var(--space-lg), 6vw, 100px) clamp(80px, 18vw, 260px);
  position: relative;
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(/assets/images/best-wather-bg.webp);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.home .cta-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 570px;
  align-items: flex-start;
  gap: clamp(var(--space-md), 4vw, 42px);
  position: relative;
  flex: 0 0 auto;
}

/* Left align elements in cta-content */
.home .cta-content .cta-text .heading {
  justify-content: flex-start;
  text-align: left;
}

.home .cta-content .row {
  justify-content: flex-start;
  width: 100%;
}

.home .cta-video-wrap {
  display: flex;
  width: 100%;
  max-width: 960px;
  align-items: flex-start;
  position: relative;
}

.home .cta-video {
  background-image: url(/assets/images/frame-34-1.webp);
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-xl) var(--space-md);
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  box-sizing: border-box;
}

/* ========================================
   HELP BAR
   ======================================== */
.home .help-bar {
  min-height: auto;
  background-image: url(/assets/images/footer-desktop.webp);
  background-size: cover;
  background-position: 50% 50%;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 40px;
  padding: var(--space-xl) var(--space-md);
  position: relative;
  box-sizing: border-box;
}

.home .help-bar__text {
  position: relative;
  width: 100%;
  max-width: 1314px;
  margin: 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 30px;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.4;
  display:flex;
  justify-content: center;
  gap:2px;
  flex-wrap: wrap;
}

.home .help-bar__text strong {
  font-weight: 700;
}

.home .help-bar__text .phone-text {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: #ffffff;
  font-size: inherit;
  letter-spacing: 0;
  line-height: inherit;
}

/* ========================================
   FOOTER
   ======================================== */
.home .footer {
  min-height: auto;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 24px;
  padding: var(--space-md) var(--space-md);
  position: relative;
  box-sizing: border-box;
}

.home .footer__top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(var(--space-lg), 4vw, 60px);
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  max-width: var(--max-width-hero);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  box-sizing: border-box;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.home .footer__brand {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  min-width: 0;
  align-items: flex-start;
  gap: var(--space-sm);
  position: relative;
}

.home .footer__logo {
  position: relative;
  width: clamp(100px, 10vw, 150px);
  height: auto;
  aspect-ratio: 227 / 116;
  filter: brightness(0) saturate(100%) invert(12%) sepia(10%) saturate(1000%) hue-rotate(170deg) brightness(95%) contrast(95%);
}

.home .footer__tagline {
  position: relative;
  width: 100%;
  max-width: 340px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: #303842;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.5;
}

.home .footer__nav-wrap {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
}

.home .footer__nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(var(--space-md), 3vw, var(--space-lg));
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

.home .footer__col {
  flex: 1 1 200px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: 0px 8px;
  position: relative;
}

.home .footer__col-title {
  align-self: stretch;
  font-weight: 700;
  color: #303842;
  font-size: 14px;
  line-height: 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  margin-top: -1px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  letter-spacing: 0;
}

.home .footer__col-title--var {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--lafantana-ro-lato-bold-font-family);
  font-weight: var(--lafantana-ro-lato-bold-font-weight);
  color: #303842;
  font-size: var(--lafantana-ro-lato-bold-font-size);
  letter-spacing: var(--lafantana-ro-lato-bold-letter-spacing);
  line-height: var(--lafantana-ro-lato-bold-line-height);
  font-style: var(--lafantana-ro-lato-bold-font-style);
}

.home .footer__list {
  position: relative;
  align-self: stretch;
  width: 100%;
}

.home .footer__list--articles { height: 217px; }
.home .footer__list--support { height: 149px; }
.home .footer__list--products { height: 153px; }

.home .footer__list-bar {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 10px;
  background-color: #303842;
  border-radius: 10px;
  opacity: 0.1;
}

.home .footer__list-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  position: absolute;
  left: 0;
}

.home .footer__list-item:nth-child(2) { top: 35px; }
.home .footer__list-item:nth-child(3) { top: 67px; }
.home .footer__list-item:nth-child(4) { top: 99px; }
.home .footer__list-item:nth-child(5) { top: 131px; }
.home .footer__list-item:nth-child(6) { top: 163px; }
.home .footer__list-item:nth-child(7) { top: 195px; }

.home .footer__link {
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: #001d3a;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.4;
  white-space: nowrap;
  display: flex;
  position: relative;
}

.home .footer__extra-item {
  display: flex;
  flex-direction: column;
  width: 408.98px;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

/* Footer bottom bar */
.home .footer__bottom {
  display: flex;
  flex-wrap: wrap;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 0px 69.27px;
  padding: 1px 0px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  border-top-width: 1px;
  border-top-style: solid;
  border-color: #e9e9e9;
}

.home .footer__bottom-left {
  display: inline-flex;
  align-items: center;
  padding: 25.07px 0px 26.09px;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}

.home .footer__copyright-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px 0px 0.84px;
  position: relative;
  flex: 0 0 auto;
  opacity: 0.5;
}

.home .footer__copyright {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: #303842;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.4;
}

.home .footer__legal-nav {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0px 0px 0px 5px;
  position: relative;
  flex: 0 0 auto;
}

.home .footer__legal-list {
  display: inline-flex;
  align-items: center;
  padding: 1px 0px 2.84px;
  position: relative;
  flex: 0 0 auto;
}

.home .footer__legal-item {
  display: inline-flex;
  align-items: flex-start;
  padding: 0.5px 5px;
  position: relative;
  flex: 0 0 auto;
}

.home .footer__legal-divider {
  position: absolute;
  top: 3px;
  left: 0;
  width: 1px;
  height: 16px;
  border-left-width: 1px;
  border-left-style: solid;
  border-color: #303842;
  opacity: 0.5;
}

.home .footer__legal-link {
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  opacity: 0.85;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  color: #303842;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.4;
  white-space: nowrap;
  display: flex;
  position: relative;
}

.home .footer__payments {
  position: relative;
  max-width: 1365px;
  flex: 0 0 auto;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 20px);
}

.home .footer__payments a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.home .footer__payments a:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.home .footer__payments svg {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

/* ========================================
   VIDEO MODAL
   ======================================== */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  margin: 0;
  padding: 0;
}

.home .video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
  margin: 0;
  padding: 0;
}

.video-modal.is-open,
.home .video-modal.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
}

.video-modal__overlay,
.home .video-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.video-modal__content,
.home .video-modal__content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  background-color: #000;
  border-radius: 8px;
  overflow: visible;
  z-index: 10001;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal.is-open .video-modal__content,
.home .video-modal.is-open .video-modal__content {
  transform: scale(1) !important;
}

.video-modal__close,
.home .video-modal__close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10002;
  color: #303842;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.video-modal__close:hover,
.home .video-modal__close:hover {
  background-color: #ffffff;
  transform: scale(1.1);
}

.video-modal__close:active,
.home .video-modal__close:active {
  transform: scale(0.95);
}

.video-modal__close svg,
.home .video-modal__close svg {
  width: 20px;
  height: 20px;
}

.video-modal__player,
.home .video-modal__player {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.video-modal__player iframe,
.home .video-modal__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive video modal */
@media (max-width: 767px) {
  .video-modal__content,
  .home .video-modal__content {
    width: 95%;
    border-radius: 4px;
  }

  .video-modal__close,
  .home .video-modal__close {
    top: -35px;
    width: 36px;
    height: 36px;
  }

  .video-modal__close svg,
  .home .video-modal__close svg {
    width: 18px;
    height: 18px;
  }
}

/* ========================================
   GLOBAL RESETS FOR SEMANTIC HTML
   ======================================== */
.home a {
  text-decoration: none;
  color: inherit;
}

.home a:hover {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.home button:hover {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.home nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home nav li {
  list-style: none;
}

/* ========================================
   CERTIFICATIONS & BADGES SECTION
   ======================================== */
.section--certifications {
  background: #ffffff;
  padding: 40px clamp(1rem, 5vw, 150px);
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.certifications-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.certifications-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  align-items: center;
  justify-content: center;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  min-width: 120px;
}

.cert-percentage {
  font-size: 28px;
  font-weight: 700;
  color: #303842;
  line-height: 1;
}

.cert-label {
  font-size: 13px;
  font-weight: 400;
  color: #303842;
  line-height: 1.4;
  white-space: nowrap;
}

.cert-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  min-width: 80px;
}

.cert-badge img {
  max-width: 120px;
  max-height: 70px;
  height: auto;
  width: auto;
  object-fit: contain;
}

@media (min-width: 1200px) {
  .certifications-grid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .section--certifications {
    padding: 30px 1rem;
  }
  
  .certifications-grid {
    gap: 30px;
    justify-content: center;
  }
  
  .cert-item {
    min-width: 100px;
  }
  
  .cert-percentage {
    font-size: 24px;
  }
  
  .cert-label {
    font-size: 11px;
  }
  
  .cert-badge {
    height: 60px;
    min-width: 60px;
  }
  
  .cert-badge img,
  .cert-badge svg {
    max-height: 60px;
  }
}

/* ========================================
   SHOP TOOLBAR
   ======================================== */
.home .shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 20px clamp(20px, 5vw, 60px);
  box-sizing: border-box;
  position: relative;
  border-bottom: 1px solid #eaedf0;
  margin-bottom: 0;
  background-color: #FBFBFC;
}

.home .shop-toolbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
}

.home .shop-toolbar__filters {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #0d62d1;
  padding: 8px 0;
  letter-spacing: 0;
  line-height: 20px;
}

.home .shop-toolbar__filters svg {
  color: #0d62d1;
}

.home .shop-toolbar__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #687a92;
}

.home .shop-toolbar__crumb {
  color: #687a92;
  font-weight: 400;
}

.home .shop-toolbar__crumb--active {
  color: #303842;
  font-weight: 600;
}

.home .shop-toolbar__sep {
  color: #c0c7cf;
  font-weight: 300;
}

.home .shop-toolbar__sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home .shop-toolbar__sort-label {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #687a92;
  line-height: 20px;
  white-space: nowrap;
}

.home .shop-toolbar__sort-select {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0d62d1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230d62d1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 18px;
}

/* ========================================
   SHOP LAYOUT (sidebar + products)
   ======================================== */
.home .section--shop {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0 clamp(20px, 5vw, 60px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.home .shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  width: 100%;
  align-items: start;
  padding-top: 24px;
}

.home .shop-sidebar {
  background-color: #ffffff;
  border: 1px solid #eaedf0;
  border-radius: 16px;
  padding: 24px;
  box-sizing: border-box;
  position: sticky;
  top: 24px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height:fit-content;
}

.home .shop-sidebar__close {
  display: none;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: #4a5568;
  z-index: 1001;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.home .shop-sidebar__close:hover {
  background-color: #f3f4f6;
  color: #303842;
}

.home .shop-sidebar__close svg {
  width: 24px;
  height: 24px;
  display: block;
}

.home .shop-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.home .shop-sidebar__title {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #303842;
  line-height: 24px;
  margin: 0;
}

.home .shop-sidebar__clear {
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #0d62d1;
  padding: 4px 0;
  line-height: 18px;
  transition: color 0.2s ease;
}

.home .shop-sidebar__clear:hover {
  color: #003e90;
}

.home .shop-sidebar__divider {
  width: 100%;
  height: 1px;
  background-color: #eaedf0;
  margin: 16px 0;
}

.home .shop-sidebar__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home .shop-sidebar__group-title {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #303842;
  line-height: 20px;
  margin: 0;
  letter-spacing: 0.02em;
}

.home .shop-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home .shop-sidebar__item {
  display: flex;
  align-items: center;
}

.home .shop-sidebar__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  width: 100%;
  padding: 4px 0;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #303842;
  user-select: none;
}

.home .shop-sidebar__checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.home .shop-sidebar__checkmark {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid #c0c7cf;
  border-radius: 4px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  position: relative;
}

.home .shop-sidebar__checkmark::after {
  content: "";
  display: none;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -1px;
}

.home .shop-sidebar__checkbox input[type="checkbox"]:checked ~ .shop-sidebar__checkmark {
  background-color: #0d62d1;
  border-color: #0d62d1;
}

.home .shop-sidebar__checkbox input[type="checkbox"]:checked ~ .shop-sidebar__checkmark::after {
  display: block;
}

.home .shop-sidebar__checkbox:hover .shop-sidebar__checkmark {
  border-color: #0d62d1;
}

.home .shop-sidebar__label-text {
  flex: 1;
  font-weight: 400;
  color: #4a5568;
}

.home .shop-sidebar__checkbox input[type="checkbox"]:checked ~ .shop-sidebar__label-text {
  font-weight: 500;
  color: #303842;
}

.home .shop-sidebar__count {
  font-weight: 400;
  font-size: 13px;
  color: #9ca3af;
  margin-left: auto;
}

.home .shop-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.home .shop-products .card-wrap {
  width: 100%;
  max-width: 100%;
}

.home .shop-products .card {
  width: 100%;
  height: auto;
  padding-bottom: 27px;
}

.home .shop-products .card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  background-size: cover;
  background-position: center;
}

.home .shop-products .card__name-wrap {
  width: 100%;
}

/* ============ ACCOUNT PAGE ============ */
.home .section--account {
  padding: clamp(30px, 5vw, 60px) clamp(20px, 5vw, 60px);
}

.home .account-container { width: 100%; max-width: 1440px; margin: 0 auto; }

/* Auth (login/register) */
.home .account-auth { max-width: 480px; margin: 0 auto; }

.home .account-tabs {
  display: flex; gap: 0; margin-bottom: 32px;
  border-bottom: 2px solid #e5e7eb;
}
.home .account-tab {
  flex: 1; padding: 14px 0; background: none; border: none;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; font-size: 16px; font-weight: 600;
  color: #9ca3af; cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: color 0.2s, border-color 0.2s;
}
.home .account-tab:hover { color: #303842; }
.home .account-tab--active { color: #303842; border-bottom-color: #303842; }

.home .account-form { display: flex; flex-direction: column; gap: 18px; }
.home .account-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .home .account-form__row { grid-template-columns: 1fr; } }

.home .account-form__group { display: flex; flex-direction: column; gap: 6px; }
.home .account-form__label { font-size: 14px; font-weight: 600; color: #374151; }
.home .account-form__input {
  width: 100%; padding: 12px 16px; border: 1px solid #d1d5db; border-radius: 8px;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; font-size: 15px; color: #1e293b;
  transition: border-color 0.2s; box-sizing: border-box;
}
.home .account-form__input:focus { outline: none; border-color: #303842; box-shadow: 0 0 0 3px rgba(48,56,66,0.1); }
.home .account-form__input:disabled { background: #f3f4f6; color: #6b7280; }

.home .account-form__error { font-size: 14px; color: #dc2626; min-height: 20px; }
.home .account-form__submit {
  width: 100%; min-height: 52px; font-size: 16px; font-weight: 700;
  border: none; cursor: pointer; margin-top: 8px;
}

/* Dashboard */
.home .account-dashboard {
  display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start;
}
@media (max-width: 768px) {
  .home .account-dashboard { grid-template-columns: 1fr; gap: 24px; }
}

.home .account-dashboard__sidebar {
  background: #f8fafc; border: 1px solid #e5e7eb; border-radius: 12px;
  padding: 24px; position: sticky; top: 100px;
}
@media (max-width: 768px) {
  .home .account-dashboard__sidebar { position: static; }
}

.home .account-dashboard__welcome {
  display: flex; align-items: center; gap: 14px; padding-bottom: 20px;
  margin-bottom: 20px; border-bottom: 1px solid #e5e7eb;
}
.home .account-dashboard__avatar {
  width: 48px; height: 48px; border-radius: 50%; background: #eaedf0;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.home .account-dashboard__name { font-size: 16px; font-weight: 700; color: #1e293b; }
.home .account-dashboard__email { font-size: 13px; color: #64748b; word-break: break-all; }

.home .account-dashboard__nav { display: flex; flex-direction: column; gap: 4px; }
.home .account-dashboard__nav-btn {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border: none; background: none; border-radius: 8px; cursor: pointer;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; font-size: 15px; color: #475569;
  transition: background 0.15s, color 0.15s; text-align: left; width: 100%;
}
.home .account-dashboard__nav-btn:hover { background: #eaedf0; color: #1e293b; }
.home .account-dashboard__nav-btn--active { background: #303842; color: #fff; }
.home .account-dashboard__nav-btn--active:hover { background: #303842; color: #fff; }
.home .account-dashboard__nav-btn--logout { color: #dc2626; }
.home .account-dashboard__nav-btn--logout:hover { background: #fef2f2; color: #dc2626; }

.home .account-dashboard__content { min-height: 400px; }
.home .account-dashboard__title { font-size: 22px; font-weight: 700; color: #1e293b; margin-bottom: 24px; }

.home .account-profile-form { max-width: 520px; display: flex; flex-direction: column; gap: 18px; }

/* Orders */
.home .account-orders { display: flex; flex-direction: column; gap: 12px; }
.home .account-orders__empty {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 60px 20px; text-align: center; color: #9ca3af;
}
.home .account-orders__empty p { font-size: 16px; margin: 0; }
.home .account-orders__loading { padding: 40px; text-align: center; color: #9ca3af; }

.home .account-order {
  border: 1px solid #e5e7eb; border-radius: 10px; padding: 20px;
  transition: border-color 0.2s;
}
.home .account-order:hover { border-color: #c0c7cf; }
.home .account-order__header { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.home .account-order__number { font-size: 15px; font-weight: 700; color: #1e293b; }
.home .account-order__date { font-size: 13px; color: #64748b; margin-top: 2px; }
.home .account-order__status {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 600; text-transform: capitalize;
}
.home .account-order__status--pending { background: #fef3c7; color: #92400e; }
.home .account-order__status--processing { background: #dbeafe; color: #1e40af; }
.home .account-order__status--completed { background: #d1fae5; color: #065f46; }
.home .account-order__footer { display: flex; justify-content: flex-end; margin-top: 12px; }
.home .account-order__total { font-size: 17px; font-weight: 700; color: #1e293b; }

/* ============ CART PAGE ============ */
.home .section--cart {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 60px) clamp(20px, 5vw, 60px);
}

.home .cart-container { width: 100%; }

.home .cart-empty,
.home .cart-confirmation {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 16px; padding: 80px 20px; text-align: center;
}
.home .cart-empty__title { font-size: clamp(22px, 3vw, 28px); font-weight: 700; color: #1e293b; }
.home .cart-empty__text { font-size: 16px; color: #64748b; max-width: 400px; }

.home .cart-content, .home .cart-checkout {
  display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start;
}
@media (max-width: 900px) {
  .home .cart-content, .home .cart-checkout { grid-template-columns: 1fr; }
}

.home .cart-items { display: flex; flex-direction: column; gap: 0; }

.home .cart-item {
  display: grid; grid-template-columns: 100px 1fr auto auto auto;
  gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid #e5e7eb;
}
@media (max-width: 600px) {
  .home .cart-item { grid-template-columns: 80px 1fr; gap: 12px; }
  .home .cart-item__qty, .home .cart-item__total { grid-column: 2; }
}

.home .cart-item__image {
  width: 100px; height: 100px; border-radius: 8px;
  background-size: cover; background-position: center; background-color: #f3f4f6;
}
@media (max-width: 600px) { .home .cart-item__image { width: 80px; height: 80px; } }

.home .cart-item__info { display: flex; flex-direction: column; gap: 4px; }
.home .cart-item__name { font-size: 16px; font-weight: 600; color: #1e293b;text-wrap:normal!important; }
.home .cart-item__name a { color: inherit; text-decoration: none; }
.home .cart-item__name a:hover { text-decoration: underline; }
.home .cart-item__price { font-size: 14px; color: #64748b; }

.home .cart-item__qty {
  display: flex; align-items: center; gap: 0;
  border: 1px solid #e5e7eb; border-radius: 6px; overflow: hidden;
}
.home .cart-item__qty-btn {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: none; background: #fff; cursor: pointer; font-size: 18px; color: #374151; transition: background 0.15s;
}
.home .cart-item__qty-btn:hover { background: #f3f4f6; }
.home .cart-item__qty-value { width: 40px; text-align: center; font-size: 15px; font-weight: 600; color: #1e293b; }

.home .cart-item__total { font-size: 16px; font-weight: 700; color: #1e293b; min-width: 90px; text-align: right; }

.home .cart-item__remove {
  display: flex; align-items: center; justify-content: center;
  border: none; background: transparent; cursor: pointer; color: #9ca3af; transition: color 0.15s; border-radius: 6px;
}
.home .cart-item__remove:hover { color: #ef4444; background: #fef2f2; }

.home .cart-summary__card {
  background: #f8fafc; border: 1px solid #e5e7eb; border-radius: 12px;
  padding: 28px; position: sticky; top: 100px;
}
.home .cart-summary__title { font-size: 20px; font-weight: 700; color: #1e293b; margin-bottom: 20px; }
.home .cart-summary__row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 15px; color: #475569; }
.home .cart-summary__row--total { font-size: 18px; font-weight: 700; color: #1e293b; padding: 12px 0 0; }
.home .cart-summary__divider { height: 1px; background: #e5e7eb; margin: 12px 0; }
.home .cart-summary__checkout { width: 100%; margin-top: 20px; justify-content: center; }
.home .cart-summary__continue {
  display: block; text-align: center; margin-top: 16px; font-size: 14px;
  color: #64748b; text-decoration: none; cursor: pointer; background: none; border: none; font-family: inherit;
}
.home .cart-summary__continue:hover { color: #1e293b; }
.home .cart-checkout__title { font-size: 22px; font-weight: 700; color: #1e293b; margin-bottom: 24px; }
.home .cart-checkout__form-wrap { display: flex; flex-direction: column; gap: 4px; }

/* ============ PRODUCT DETAIL PAGE ============ */
.home .section--product {
  width: 100%;
  max-width: 100%;
  padding: clamp(20px, 3vw, 40px) 0 clamp(20px, 5vw, 60px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FBFBFC;
}

.home .section--product .pdp {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  box-sizing: border-box;
}

.home .pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  width: 100%;
  padding-top: 24px;
  align-items: start;
}

.home .pdp__gallery {
  width: 100%;
}

.home .pdp__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #f5f5f5;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .pdp__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background-color: #2563eb;
  color: #fff;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 6px;
}

.home .pdp__fav {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  color: #6b7280;
}

.home .pdp__info {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 0.8vw + 12px, 22px);
}

.home .pdp__info .card__top--wide {
  margin-left: 0;
  margin-right: 0;
}

.home .pdp__info .badge {
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.home .pdp__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home .pdp__title {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.3;
  color: #303842;
  margin: 0;
}

.home .pdp__description {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home .pdp__description p {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

.home .pdp__price-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home .pdp__price-old {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #9ca3af;
  text-decoration: line-through;
}

.home .pdp__price-current {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 28px);
  color: #2563eb;
  line-height: 1.2;
}

.home .pdp__variants {
  display: none;
}

/* Thumbnail strip below main image */
.home .pdp__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
}

.home .pdp__thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}

.home .pdp__thumb:hover,
.home .pdp__thumb--active {
  border-color: #2563eb;
}

/* Product image lightbox */
.home .pdp__lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}

.home .pdp__lightbox.is-open {
  display: flex;
}

.home .pdp__lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.home .pdp__lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hide products nav on product page */
.home .section--products .products-nav {
  display: none;
}

.home .pdp__swatch {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease;
}

.home .pdp__swatch--dark {
  background-color: #303842;
}

.home .pdp__swatch--light {
  background-color: #c0c7cf;
}

.home .pdp__swatch--active {
  border-color: #2563eb;
}

.home .pdp__add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 320px;
  min-height: 68px;
  padding: 18px var(--space-md);
  background-color: #303842;
  border-radius: 81px;
  box-shadow: 0px 1px 2.5px #00000040;
  color: #ffffff;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 13px;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}

.home .pdp__add-to-cart:hover {
  opacity: 0.8;
}

.home .pdp__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
  border-top: 1px solid #eaedf0;
}

.home .pdp__meta p {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.8;
}

.home .pdp__meta-label {
  font-weight: 700;
  color: #303842;
}

.home .pdp__accordions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

} /* End components layer */
/* Responsive styles - Mobile-first approach */
@layer components {
  /* Base mobile styles are already in style.css - we enhance for larger screens */

  /* Mobile: 320px - 639px (default) */
  /* Tablet: 640px - 1023px */
  /* Desktop: 1024px+ */

  /* Header responsive */
  /* Progressive logo shrinking to make room for menu before hamburger activates */
  /* Smooth transitions between breakpoints */
  
  /* Large desktop - start shrinking */
  @media (max-width: 1500px) {
    .home .logo {
      max-width: clamp(100px, 12vw, 200px);
      width: clamp(100px, 12vw, 200px);
    }
    
    .home .header__inner {
      padding: 0 1rem;
    }
  }
  
  /* Medium desktop - more aggressive shrinking */
  @media (max-width: 1350px) {
    .home .nav-wrap {
      flex-shrink: 1;
      min-width: 0;
    }
    
    .home .nav__list {
      gap: clamp(4px, 0.5vw, 8px);
    }
  }

  @media (max-width: 1400px) {
    .home .logo {
      max-width: clamp(100px, 11vw, 180px);
      width: clamp(100px, 11vw, 180px);
    }
  }

  @media (max-width: 1300px) {
    .home .logo {
      max-width: clamp(100px, 10vw, 160px);
      width: clamp(100px, 10vw, 160px);
    }
  }

  @media (max-width: 1200px) {
    .home .logo {
      max-width: clamp(100px, 9vw, 140px);
      width: clamp(100px, 9vw, 140px);
    }
  }

  @media (max-width: 1100px) {
    .home .logo {
      max-width: clamp(100px, 8vw, 120px);
      width: clamp(100px, 8vw, 120px);
    }
  }

  @media (min-width: 1021px) and (max-width: 1194px) {
    .home .header-links__account-wrap {
      width: 48px;
      height: 48px;
      min-width: 48px;
    }
    .home .account-link__text-wrap {
      display: none !important;
    }
    .home .account-link {
      width: 48px;
      height: 48px;
      min-width: 48px;
      padding: 0;
      border-radius: 50%;
      justify-content: center;
    }
  }

  @media (max-width: 1023px) {
    .home .header__inner {
      padding: 0 1rem;
      height: auto;
      min-height: 80px;
      flex-wrap: wrap;
      gap: var(--space-sm);
    }

    .home .logo {
      max-width: clamp(90px, 7vw, 110px);
      width: clamp(90px, 7vw, 110px);
      flex-shrink: 0;
    }

    /* Show hamburger on tablet and mobile */
    .home .hamburger {
      display: flex;
      margin-left: var(--space-sm);
      flex-shrink: 0;
    }

    /* Hide nav by default on mobile/tablet */
    .home .nav-wrap {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      width: 100%;
      background-color: #ffffff;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      padding: var(--space-md);
      order: 4;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    }

    .home .nav-wrap.is-open {
      display: block;
      max-height: 100vh;
      overflow-y: auto;
    }

    .home .nav {
      width: 100%;
      max-width: 100%;
    }

    .home .nav__list {
      flex-direction: column;
      align-items: stretch;
      gap: var(--space-xs);
      width: 100%;
    }

    .home .nav__item {
      width: 100%;
      height: auto;
      padding: var(--space-sm) 0;
    }

    .home .nav-link {
      width: 100%;
      padding: var(--space-xs) 0;
    }

    .home .header-actions {
      order: 2;
      width: auto;
      padding: 0;
      flex-shrink: 0;
      margin-left: auto;
    }

    .home .header-actions__inner {
      flex-wrap: nowrap;
      gap: clamp(var(--space-xs), 1vw, var(--space-sm));
      align-items: center;
    }

    .home .search {
      width: auto;
      min-width: clamp(120px, 15vw, 160px);
      flex-shrink: 1;
    }

    .home .header-links {
      margin-top: 0;
      margin-left: var(--space-xs);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: var(--space-xs);
    }
  }

  @media (max-width: 767px) {
    .home .header__inner {
      padding: 0 clamp(0.75rem, 3vw, 1.25rem);
      padding-block: clamp(0.75rem, 2vw, var(--space-md));
      flex-direction: row;
      align-items: center;
      height: auto;
      flex-wrap: wrap;
      gap: var(--space-xs);
    }

    .home .logo-link {
      max-width: clamp(90px, 20vw, 120px);
      width: clamp(90px, 20vw, 120px);
      flex-shrink: 0;
      align-self: center;
      position: absolute;
    }

    .home .header-actions {
      width: auto;
      margin-left: auto;
      flex-shrink: 0;
      min-width: 0;
      align-self: center;
    }

    .home .header-actions__inner {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: var(--space-xs);
      width: auto;
      align-items: center;
      justify-content: flex-end;
    }

    .home .header-actions__phone {
      display: none;
    }

    .home .header-links {
      order: 1;
      margin-left: 0;
      margin-right: 0;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: var(--space-xs);
      width: auto;
    }

    .home .hamburger {
      margin-left: 0;
      order: 3;
      flex-shrink: 0;
    }

    .home .nav-wrap {
      order: 4;
      width: 100%;
    }

    .home .nav {
      animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .home .nav__list {
      width: 100%;
      flex-direction: column;
      align-items: stretch;
      gap: var(--space-xs);
    }

    .home .nav__item {
      width: 100%;
      height: auto;
      padding: var(--space-sm) 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      transition: background-color 0.2s ease;
    }

    .home .nav__item:hover {
      background-color: rgba(0, 0, 0, 0.02);
    }

    .home .nav__item:last-child {
      border-bottom: none;
    }
  }

  /* Hero section responsive */
  @media (max-width: 1023px) {
    .home .section--hero {
      padding: var(--space-xl) var(--space-md);
      min-height: auto;
    }

    .home .hero-wrap {
      flex-direction: column;
      gap: var(--space-lg);
      padding: var(--space-md);
    }

    .home .hero-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .home .hero-text {
      align-items: center;
      text-align: center;
    }

    .home .hero-title {
      font-size: clamp(2rem, 5vw, 4rem);
      line-height: 1.2;
    }

    .home .hero-subtitle {
      font-size: var(--text-lg);
    }

    .home .section--hero .row {
      flex-direction: column;
      gap: var(--space-md);
      align-items: stretch;
      width: 100%;
    }

    .home .btn--filled,
    .home .btn--outline-lg {
      width: 100%;
      max-width: 100%;
      text-align: center;
    }
  }

  @media (max-width: 767px) {
    .home .section--hero {
      padding: var(--space-xl) var(--space-lg)!important;
      min-height: 400px;
      background-image: linear-gradient(0deg, rgb(240 240 240 / 55%) 0%, rgb(240 240 240 / 92%) 84%), url(/assets/images/home-hero.webp);
      background-size: cover;
      background-position: 70% 50%;
    }

    .home .hero-wrap {
      padding: var(--space-sm);
    }

    .home .hero-title {
      font-size: clamp(2.95rem, 8vw, 2.5rem);
    }

    .home .hero-title br{
      display: none;
    }

    .home .hero-badges {
      max-width: 150px;
      width: auto;
      height: auto;
      margin-left: auto;
      margin-right: auto;
      margin-top: 0;
    }

    .home .hero-content {
      align-items: center;
      text-align: center;
    }

    .home .hero-text {
      align-items: center;
      text-align: center;
    }

    .home .hero-title {
      text-align: center;
      justify-content: center;
    }

    .home .hero-subtitle {
      text-align: center;
      justify-content: center;
    }

    .home .hero-overlay {
      display: none; /* Hide decorative overlays on mobile */
    }
  }

  /* Cards grid responsive */
  @media (max-width: 1023px) {
    .home .section--products {
      width: 100%;
      max-width: 100%;
      height: auto;
      padding: var(--space-xl) var(--space-md);
    }

    .home .products-grid-wrapper {
      width: 100%;
      overflow: hidden;
    }

    .home .products-grid {
      gap: 20px;
      width: max-content;
      padding-left: 20px;
      padding-right: 20px;
    }
    
    .home .products-nav {
      margin-top: var(--space-md);
      gap: var(--space-sm);
    }
    
    .home .products-nav__btn {
      width: 36px;
      height: 36px;
    }
    
    .home .products-nav__btn svg {
      width: 18px;
      height: 18px;
    }
  }
  
  @media (max-width: 767px) {
    .home .products-grid {
      gap: var(--space-md);
    }
    
    .home .products-nav {
      margin-top: var(--space-md);
      padding: var(--space-sm) 0;
    }
    
    .home .products-nav__btn {
      width: 32px;
      height: 32px;
    }
    
    .home .products-nav__btn svg {
      width: 16px;
      height: 16px;
    }
    
    .home .products-nav__bullet {
      width: 8px;
      height: 8px;
    }
    
    .home .products-nav__bullet.is-active {
      width: 20px;
      height: 8px;
    }
  }

  @media (max-width: 767px) {
    .home .products-grid {
      gap: 16px;
      padding-left: 16px;
      padding-right: 16px;
    }

    .home .products-grid .card-wrap {
      width: 260px;
    }

    .home .card {
      width: 100%;
    }
  }

  @media (max-width: 480px) {
    .home .products-grid .card-wrap {
      width: 240px;
    }
  }

  /* Split sections responsive */
  @media (max-width: 767px) {
    .home .split {
      grid-template-columns: 1fr;
      padding: 0;
    }

    .home .split__half--text {
      min-width: auto;
      padding: clamp(30px, 5vw, 60px) clamp(20px, 8vw, 100px);
    }

    .home .split__half--ace {
      min-width: auto;
      max-width: 100%;
    }

    .home .split__half--9waters {
      min-width: auto;
      max-width: 100%;
    }

    .home .split__half--video {
      width: 100%;
      max-width: 960px;
      aspect-ratio: 960 / 630;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .home .play-btn {
      width: clamp(100px, 20vw, 146px);
      height: clamp(100px, 20vw, 147px);
    }
  }

  /* Tablet and Desktop - keep side-by-side layout */
  @media (min-width: 768px) {
    .home .split {
      grid-template-columns: 1fr 1fr;
    }

    .home .split__half--text {
      flex: 1 1 45%;
      min-width: 300px;
      padding: clamp(30px, 5vw, 60px) clamp(20px, 8vw, 100px);
    }

    .home .split__half--ace {
      flex: 1 1 45%;
      min-width: 300px;
      max-width: 100%;
    }

    .home .split__half--9waters {
      flex: 1 1 45%;
      min-width: 300px;
      max-width: 100%;
    }

    .home .split__half--video {
      flex: 1 1 45%;
      min-width: 300px;
      max-width: 100%;
      aspect-ratio: 960 / 630;
      height: 100%;
    }

    .home .split__half--content {
      flex: 1 1 45%;
      min-width: 300px;
      max-width: 100%;
      aspect-ratio: 960 / 630;
      height: auto;
    }
  }

  /* Tablet specific adjustments */
  @media (min-width: 768px) and (max-width: 1023px) {

  }

  @media (max-width: 767px) {
    .home .split {
      padding: 0;
    }

    .home .split__half--text {
      padding: clamp(30px, 5vw, 60px) clamp(20px, 8vw, 100px);
    }

    .home .split__half--ace {
      aspect-ratio: auto;
    }

    .home .split__half--9waters {
      aspect-ratio: auto;
    }
  }

  @media (max-width: 767px) {
    .home section {
      padding: var(--space-lg) var(--space-sm);
    }

    .home h2 {
      font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .home h3 {
      font-size: clamp(1.25rem, 5vw, 1.5rem);
    }
  }

  /* Testimonials responsive */
  @media (max-width: 767px) {
    .home .testimonials-grid {
      grid-template-columns: 1fr;
    }

    .home .play-btn--sm {
      width: 87.5px;
      height: 88.2px;
    }

    .home .play-btn--sm .play-btn__inner {
      width: 61.6px;
      height: 61.6px;
    }

    .home .play-btn--sm .play-btn__icon {
      width: 14.7px;
      height: 19.6px;
    }
  }

  /* Benefits grid responsive */
  @media (max-width: 767px) {
    .home .benefits-grid {
      grid-template-columns: 1fr;
    }

    .home .benefits-col {
      grid-template-columns: 1fr;
    }
  }

  /* FAQ responsive */
  @media (max-width: 767px) {
    .home .faq-list {
      padding: var(--space-md) var(--space-sm);
    }

    .home .faq-q {
      gap: var(--space-xs);
      align-items: flex-start;
    }
  }

  /* Footer responsive */
  @media (max-width: 1023px) {
    .home .footer__top {
      flex-direction: column;
      gap: var(--space-lg);
      padding: var(--space-xl) var(--space-md);
    }

    .home .footer__nav {
      flex-direction: column;
      gap: var(--space-lg);
      width: 100%;
    }

    .home .footer__col {
      width: 100%;
      flex: 1 1 100%;
      min-width: auto;
    }

    .home .footer {
      padding: var(--space-md) var(--space-md);
    }
  }

  @media (max-width: 767px) {
    .home .footer__top {
      padding: var(--space-lg) var(--space-sm);
    }

    .home .footer__bottom-left {
      flex-direction: column;
      gap: var(--space-md);
      align-items: flex-start;
      width: 100%;
    }

    .home .footer__legal-nav {
      width: 100%;
    }

    .home .footer__legal-list {
      flex-direction: column;
      gap: var(--space-sm);
      width: 100%;
    }

    .home .footer__payments {
      max-width: 100%;
      width: 100%;
    }

    .home .footer {
      padding: var(--space-lg) var(--space-sm);
    }

    .home .help-bar {
      padding: var(--space-lg) var(--space-sm);
    }
  }

  /* Featured product section responsive */
  /* Tablet: two columns (cards 1/3, info 2/3) */
  @media (min-width: 1024px) and (max-width: 1370px) {
    .home .featured-wrap {
      grid-template-columns: 1fr 2fr;
    }
  }

  /* Desktop: two columns (50% each) */
  @media (min-width: 1371px) {
    .home .featured-wrap {
      grid-template-columns: 1fr 1fr;
    }
  }

  /* Tablet (1024px - 1370px): stack featured-cards vertically */
  @media (min-width: 1024px) and (max-width: 1370px) {
    .home .featured-cards {
      grid-template-columns: 1fr;
    }
  }

  /* Tablet small (768px - 1023px): two columns for featured-cards */
  @media (min-width: 768px) and (max-width: 1023px) {
    .home .featured-cards {
      grid-template-columns: 1fr 1fr;
    }
  }

  /* Mobile: stack vertically */
  @media (max-width: 1023px) {
    .home .featured-wrap {
      grid-template-columns: 1fr;
      gap: var(--space-xl);
    }

    .home .featured-card-col {
      width: 100%;
    }

    .home .featured-info {
      width: 100%;
      max-width: 100%;
    }

    .home .featured-text-wrap {
      width: 100%;
      max-width: 100%;
    }

    .home .featured-text-col {
      width: 100%;
      max-width: 100%;
    }
  }

  /* Mobile (< 768px): stack featured-cards vertically */
  @media (max-width: 767px) {
    .home .featured-cards {
      grid-template-columns: 1fr;
    }
  }

  /* Mobile: adjust padding and spacing */
  @media (max-width: 767px) {
    .home .featured-wrap {
      padding: var(--space-md);
      gap: var(--space-lg);
    }

    .home .featured-info {
      gap: var(--space-md);
    }

    .home .featured-text-col {
      gap: var(--space-md);
    }

    .home .featured-card-col .card-wrap {
      width: 100%;
      max-width: 100%;
    }

    .home .featured-card-col .card {
      width: 100%;
      max-width: 100%;
    }
  }

  /* Business opportunity section responsive */
  /* Tablet (1024px - 1370px): two columns (cards 1/3, info 2/3) */
  @media (min-width: 1024px) and (max-width: 1370px) {
    .home .business-wrap {
      grid-template-columns: 1fr 2fr;
    }
  }

  /* Mobile: stack vertically */
  @media (max-width: 1023px) {
    .home .business-wrap {
      grid-template-columns: 1fr;
      gap: var(--space-xl);
    }

    .home .business-card-col {
      width: 100%;
    }

    .home .business-info {
      width: 100%;
      max-width: 100%;
      min-width: auto;
    }

    .home .business-text-col {
      width: 100%;
      max-width: 100%;
    }
  }

  @media (max-width: 767px) {
    .home .business-wrap {
      padding: var(--space-md);
      gap: var(--space-lg);
    }

    .home .business-info {
      gap: var(--space-md);
    }

    .home .business-text-col {
      gap: var(--space-md);
    }
  }

  /* CTA section responsive */
  @media (max-width: 1023px) {
    .home .cta-row {
      grid-template-columns: 1fr;
      gap: 0;
      padding: var(--space-xl) var(--space-md) 0;
    }

    .home .cta-content {
      width: 100%;
      aspect-ratio: auto;
      min-height: 400px;
    }

    .home .cta-video-wrap {
      width: 100%;
      max-width: 100%;
    }

    .home .cta-video {
      width: 100%;
      aspect-ratio: auto;
      min-height: 400px;
    }
  }

  @media (max-width: 767px) {
    .home .cta-row {
      padding: 0 var(--space-sm) 0;
    }

    .home .cta-content {
      padding:var(--space-xl) var(--space-md);
      min-height: 300px;
    }

    .home .cta-video {
      padding: var(--space-md);
      min-height: 300px;
    }
  }

  /* Typography responsive adjustments */
  @media (max-width: 767px) {
    .home .finance-title {
      font-size: clamp(1.25rem, 5vw, 1.5rem);
    }

    .home .finance-text {
      font-size: var(--text-base);
    }

    .home .subtext--white {
      font-size: var(--text-base);
    }

    .home .quote {
      font-size: var(--text-base);
      padding: var(--space-md);
    }

    .home .help-bar__text .phone-text {
      font-size: clamp(var(--text-base), 3vw, 1.5rem);
    }
  }

  /* Additional responsive fixes */
  @media (max-width: 767px) {
    .home .business-card-col {
      width: 100%;
    }
  }

  /* Image responsive */
  @media (max-width: 1023px) {
    .home img {
      max-width: 100%;
      height: auto;
    }

    .home .hero-overlay {
      max-width: 100%;
      height: auto;
    }

    /* Fix button text overflow at tablet */
    .home .btn {
      white-space: normal;
      line-height: 1.3;
      max-width: 100%;
    }

    .home .btn--outline-lg {
      max-width: 100%;
    }

    /* Fix help-bar text overflow at tablet */
    .home .help-bar__text {
      font-size: clamp(1rem, 3vw, 1.75rem);
    }
  }

  @media (max-width: 767px) {
    .home img {
      max-width: 100%;
      height: auto;
    }

    .home .hero-overlay {
      display: none; /* Hide decorative overlays on mobile */
    }

    /* Ensure all images are responsive */
  }

  /* Button responsive */
  @media (max-width: 767px) {
    .home .btn {
      width: 100%;
      max-width: 100%;
      padding: var(--space-sm) var(--space-md);
      text-align: center;
      box-sizing: border-box;
      white-space: normal;
      line-height: 1.3;
    }

    .section--hero .btn{
      max-width:100%!important;
    }

    .home .btn--filled,
    .home .btn--outline-lg {
      min-width: auto;
    }
  }

  /* Search responsive */
  @media (max-width: 1023px) {
    .home .search__input-wrap {
      width: 100%;
      position: relative;
      top: auto;
      right: auto;
    }

    .home .search {
      position: relative;
    }
  }

  @media (max-width: 767px) {
    .home .search__input-wrap {
      width: 100%;
      padding: var(--space-sm) clamp(0.75rem, 3vw, 1.25rem);
    }

    .home .search__input {
      font-size: var(--text-base);
      width: 100%;
    }

    .home .search__btn-wrap {
      position: relative;
      top: auto;
      right: auto;
      margin-top: 0;
    }
  }

  /* Desktop 1340px+ - layout original cu 3 coloane */
  @media (min-width: 1340px) {
    .home .benefits-wrap {
      display: flex !important;
      flex-direction: row !important;
      align-items: start;
      justify-content: center;
      gap: clamp(20px, 4vw, 60px);
      flex-wrap: nowrap;
    }
    
    .home .benefits-wrap > .benefits-grid {
      display: flex !important;
      flex-direction: column;
      width: auto !important;
      flex: 0 0 auto !important;
      min-width: 300px;
      max-width: 400px;
      visibility: visible !important;
      opacity: 1 !important;
    }
    
    .home .benefits-wrap > .benefits-grid:first-of-type {
      order: 1;
    }
    
    .home .benefits-wrap > .benefits-grid:last-of-type {
      order: 3;
    }
    
    .home .benefits-center {
      order: 2;
      flex: 0 0 auto;
      max-width: 678px;
      width: auto;
      align-self: stretch;
      justify-content: flex-start;
    }

    .home .benefits-product-img {
      margin-top: auto;
      margin-bottom: auto;
      margin-left: auto;
      margin-right: auto;
    }
  }

  /* Benefits section responsive */
  /* Desktop sub 1340px: coloanele 1 și 3 aproape, titlul peste ambele, product photo sub titlu */
  @media (max-width: 1339px) and (min-width: 768px) {
    .home .benefits-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto 1fr;
      gap: clamp(20px, 3vw, 40px);
      align-items: start;
    }
    
    .home .benefits-wrap > .benefits-grid {
      width: 100%;
    }
    
    .home .benefits-wrap > .benefits-grid:first-of-type {
      order: 1;
      grid-column: 1;
      grid-row: 2;
    }
    
    .home .benefits-wrap > .benefits-grid:last-of-type {
      order: 3;
      grid-column: 2;
      grid-row: 2;
    }
    
    .home .benefits-center {
      order: 2;
      grid-column: 1 / -1;
      grid-row: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      margin-bottom: var(--space-md);
    }
    
    .home .benefits-center__header {
      order: 1;
      width: 100%;
      position: relative;
      z-index: 2;
    }
    
    .home .benefits-product-img {
      order: 2;
      width: 100%;
      max-width: 400px;
      margin: var(--space-md) auto 0;
      position: relative;
      z-index: 1;
    }
  }
  
  /* Mobile: Stack - titlul, product img, coloanele 1 și 3 una sub alta */
  @media (max-width: 767px) {
    .home .benefits-wrap {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
    }
    
    .home .benefits-wrap > .benefits-grid {
      width: 100%;
    }
    
    .home .benefits-wrap > .benefits-grid:first-of-type {
      order: 3;
    }
    
    .home .benefits-wrap > .benefits-grid:last-of-type {
      order: 4;
    }
    
    .home .benefits-center {
      order: 1;
      width: 100%;
    }
    
    .home .benefits-center__header {
      order: 1;
    }
    
    .home .benefits-product-img {
      order: 2;
      width: 100%;
      max-width: 100%;
      margin: var(--space-md) auto 0;
    }
  }

  /* General responsive utilities */
  @media (max-width: 767px) {
    /* Ensure no horizontal overflow */
    .home * {
      max-width: 100%;
      box-sizing: border-box;
    }

    /* Fix any remaining fixed widths */
    .home .featured-wrap,
    .home .featured-cards,
    .home .business-wrap {
      width: 100% !important;
      max-width: 100% !important;
    }
  }

  /* ========================================
     SHOP LAYOUT RESPONSIVE
     ======================================== */

  /* Tablet: sidebar becomes offcanvas, products go full width 3-col */
  @media (max-width: 1200px) {
    .home .shop-layout {
      grid-template-columns: 1fr;
    }

    /* Sidebar becomes offcanvas */
    .home .shop-sidebar {
      position: fixed;
      top: 0;
      left: -100%;
      width: 320px;
      max-width: 85vw;
      height: 100vh;
      height: 100dvh;
      z-index: 1000;
      border-radius: 0;
      border: none;
      border-right: 1px solid #eaedf0;
      overflow-y: auto;
      transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 0 0 rgba(0, 0, 0, 0);
      padding-top: 60px;
    }

    .home .shop-sidebar.is-open {
      left: 0;
      box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    }

    .home .shop-sidebar__close {
      display: flex;
    }

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

    /* Overlay for offcanvas */
    body.shop-sidebar-open .home .section--shop::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 999;
      opacity: 1;
      visibility: visible;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

  }

  /* Small tablet: 2 columns */
  @media (max-width: 768px) {
    .home .shop-products {
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .home .shop-toolbar {
      flex-wrap: wrap;
      gap: 12px;
      padding: 12px clamp(16px, 4vw, 40px);
    }

    .home .shop-toolbar__breadcrumb {
      order: -1;
      width: 100%;
      justify-content: center;
      align-items: start;
    }

    .home .shop-products .card {
      min-height: auto;
      padding: 20px;
    }

    .home .shop-products .card__img {
      width: 100%;
    }
  }

  /* Mobile: 1 column */
  @media (max-width: 480px) {
    .home .shop-products {
      grid-template-columns: 1fr;
    }

    .home .shop-products .card {
      max-width: 393px;
      margin: 0 auto;
    }
  }

  /* Product Detail Responsive */
  @media (max-width: 768px) {
    .home .pdp {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .home .pdp__add-to-cart {
      max-width: 100%;
    }
  }

  /* FAQ Section Responsive */
  @media (max-width: 1200px) {
    .home .section--grey {
      padding: clamp(40px, 8vw, 80px) clamp(20px, 4vw, 40px);
      gap: clamp(30px, 5vw, 60px);
    }

    .home .faq-list {
      width: 100%;
      gap: clamp(20px, 4vw, 40px);
    }

    .home .faq-item {
      width: 100%;
      max-width: 100%;
    }

    .home .faq-title {
      font-size: clamp(18px, 3vw, 24px);
      line-height: 1.2;
      padding-right: 50px;
    }

    .home .faq-answer {
      font-size: clamp(16px, 2.5vw, 18px);
      line-height: 1.5;
    }
  }

  @media (max-width: 768px) {
    .home .section--grey {
      padding: clamp(30px, 6vw, 60px) clamp(16px, 3vw, 24px);
      gap: clamp(24px, 4vw, 40px);
    }

    .home .faq-list {
      gap: clamp(16px, 3vw, 30px);
    }

    .home .faq-title {
      font-size: clamp(16px, 4vw, 20px);
      width: 100%;
      max-width: 100%;
      padding-right: 0;
      margin-bottom: 8px;
    }

    .home .faq-toggle {
      width: 32px;
      height: 32px;
      flex-shrink: 0;
    }

    .home .faq-toggle__icon-wrap {
      width: 18px;
      height: 18px;
    }

    .home .faq-answer {
      font-size: clamp(14px, 3vw, 16px);
      line-height: 1.6;
    }
  }

  @media (max-width: 480px) {
    .home .section--grey {
      padding: clamp(24px, 5vw, 40px) clamp(12px, 2.5vw, 20px);
      gap: clamp(20px, 4vw, 32px);
    }

    .home .faq-list {
      gap: clamp(12px, 3vw, 24px);
    }

    .home .faq-title {
      font-size: clamp(14px, 4vw, 18px);
      line-height: 1.3;
    }

    .home .faq-toggle {
      width: 28px;
      height: 28px;
    }

    .home .faq-toggle__icon-wrap {
      width: 16px;
      height: 16px;
    }

    .home .faq-answer {
      font-size: clamp(13px, 3vw, 15px);
      line-height: 1.5;
    }

    .home .faq-container {
      padding: 0 12px;
    }

    .home .faq-search-bar {
      padding: 20px 12px;
    }

    .home .faq-search-bar__form {
      max-width: 100%;
    }

    .home .faq-search-bar__input {
      padding: 12px 16px;
      font-size: 14px;
    }

    .home .faq-search-bar__btn {
      width: 44px;
      height: 44px;
    }

    .home .faq-search-bar__btn svg {
      width: 18px;
      height: 18px;
    }
  }

  /* Video Gallery Responsive */
  @media (max-width: 767px) {
    .home .video-gallery-grid {
      grid-template-columns: 1fr;
      gap: clamp(16px, 4vw, 24px);
    }

    .home .video-gallery-item__description {
      font-size: 13px;
    }

    .home .video-gallery-item__meta {
      font-size: 12px;
      gap: 6px;
    }

    .home .news-gallery-item__title {
      font-size: clamp(14px, 3vw, 16px);
    }

    .home .news-gallery-item__meta {
      font-size: 12px;
      gap: 6px;
    }
  }

  /* Reviews Toolbar Responsive */
  @media (max-width: 767px) {
    .home .reviews-toolbar {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
    }

    .home .reviews-toolbar__breadcrumb {
      justify-content: center;
      width: 100%;
    }

    .home .reviews-toolbar__search {
      width: 100%;
    }

    .home .reviews-toolbar__search-form {
      width: 100%;
    }

    .home .reviews-toolbar__search-input {
      flex: 1;
      min-width: 0;
    }
  }

  /* Reviews Filters Bar Responsive */
  @media (max-width: 767px) {
    .home .reviews-filters-bar {
      padding: clamp(12px, 3vw, 20px) clamp(16px, 4vw, 24px);
    }

    .home .reviews-filters-bar__container {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
    }

    .home .reviews-filters-bar__tags {
      width: 100%;
    }

    .home .reviews-filters-bar__actions {
      width: 100%;
      justify-content: space-between;
    }

    .home .reviews-filters-dropdown,
    .home .reviews-sort-dropdown {
      flex: 1;
    }

    .home .reviews-filters-dropdown__trigger,
    .home .reviews-sort-dropdown__trigger {
      width: 100%;
      justify-content: center;
    }

    .home .reviews-filters-dropdown__menu,
    .home .reviews-sort-dropdown__menu {
      right: auto;
      left: 0;
      width: 100%;
    }
  }

  /* Contact Page Responsive */
  @media (max-width: 991px) {
    .home .contact-content {
      grid-template-columns: 1fr;
    }

    .home .contact-map-wrapper {
      order: -1;
    }
  }

  @media (max-width: 767px) {
    .home .section--contact-header {
      padding: clamp(30px, 5vw, 50px) clamp(16px, 4vw, 24px);
    }

    .home .section--contact-content {
      padding: 0 clamp(16px, 4vw, 24px) clamp(40px, 6vw, 60px);
    }

    .home .contact-form__row {
      grid-template-columns: 1fr;
    }

    .home .contact-form__phone-group {
      flex-direction: column;
    }

    .home .contact-form__phone-select {
      width: 100%;
    }

    .home .contact-map-wrapper {
      min-height: 400px;
    }

    .home .contact-map {
      min-height: 400px;
    }

    .home .contact-map iframe {
      min-height: 400px;
    }
  }

  /* Article Content Responsive */
  @media (max-width: 767px) {
    .home .article-content__body {
      padding: 0 clamp(20px, 4vw, 30px);
    }

    .home .article-content__title {
      font-size: clamp(22px, 5vw, 28px);
    }

    .home .article-content__body h2 {
      font-size: clamp(20px, 4vw, 24px);
      margin-top: clamp(24px, 5vw, 32px);
    }

    .home .article-content__body h3 {
      font-size: clamp(18px, 3vw, 20px);
      margin-top: clamp(20px, 4vw, 28px);
    }

    .home .article-content__body p {
      font-size: clamp(15px, 2.5vw, 16px);
    }
  }
}

/* ========================================
   KILL ALL PAGE-LOAD ANIMATIONS
   ======================================== */
.home .header,
.home [data-animate],
.home [data-animate].is-visible,
.home section,
.home .section--hero .hero-wrap,
.home .section--hero .hero-content,
.home .section--hero .hero-text,
.home .section--hero .hero-title,
.home .section--hero .hero-subtitle,
.home .section--hero .hero-badges,
.home .section--hero .row,
.home .card-wrap,
.home .testimonial-card,
.home .video-gallery-item,
.home .news-gallery-item {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

/* ========================================
   HEADER ICONS RESTYLE — search, account as circles
   ======================================== */

/* Account: icon-only circle matching cart */
.home .account-link {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden;
}
.home .account-link__text-wrap {
  display: none !important;
}
.home .header-links__account-wrap {
  width: 48px !important;
  height: 48px !important;
}
.home .account-link__avatar {
  width: 48px !important;
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative;
}
.home .account-link__avatar-svg {
  width: 18px !important;
  height: 18px !important;
  position: relative !important;
  display: block !important;
}
.home .account-link__avatar-v1 {
  position: absolute !important;
  width: 63.01% !important;
  height: 65.3% !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}
.home .account-link__avatar-v2 {
  position: absolute !important;
  width: 94.44% !important;
  height: 40.2% !important;
  top: 59.81% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}
.home .account-link__overlay {
  display: none !important;
}

/* Search: circle icon that expands */
.home .search {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  border-radius: 24px !important;
  background: #ffffff;
  border: 1px solid #d1d5db;
  box-shadow: none;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  cursor: pointer;
  transition: width 0.3s ease;
}
.home .search__input-wrap {
  display: none !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 48px 0 16px !important;
  border-radius: 0 !important;
  width: 100% !important;
  align-items: center !important;
  flex-direction: row !important;
}
.home .search__input {
  font-size: 14px !important;
  color: #303842 !important;
  margin: 0 !important;
  height: 100% !important;
  line-height: 48px !important;
  padding: 0 !important;
}
.home .search__input::placeholder {
  color: #9ca3af !important;
}
.home .search__btn-wrap {
  position: absolute !important;
  top: 50% !important;
  right: 0 !important;
  transform: translateY(-50%) !important;
  height: auto !important;
  width: 48px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.home .search__btn {
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.home .search__btn-icon {
  width: 18px !important;
  height: 18px !important;
}
.home .search__btn-icon-inner {
  top: 0 !important;
  height: 18px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .search__btn-vector {
  position: relative !important;
  width: 18px !important;
  height: 18px !important;
  top: auto !important;
  left: auto !important;
  filter: none;
}

/* Search expanded state */
.home .search.is-expanded {
  width: 240px !important;
  height: 48px !important;
  border-radius: 24px !important;
  border: 1px solid #d1d5db;
  background: #ffffff;
}
.home .search.is-expanded .search__input-wrap {
  display: flex !important;
}

/* Lifetime warranty badge smaller */
.home .badge-image img {
  height: 30px !important;
}

/* Compact header actions spacing */
.home .header-actions__inner {
  gap: 10px !important;
}
.home .header-links {
  gap: 10px !important;
}
.home .header-links__cart {
  width: 48px !important;
  height: 48px !important;
  margin: 0 !important;
}

/* Search label vertical alignment fix */
.home .search__label {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Ensure video modal transitions work despite animation kill */
.home .video-modal,
.home .video-modal__content,
.home .video-modal__overlay {
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease !important;
}

/* Center headings in section-headers and centered contexts */
.home .section-header .heading,
.home .section--products .heading,
.home .testimonials-header .heading,
.home .section--testimonials > .heading,
.home .benefits-center__header .heading,
.home .section--grey > .heading {
  justify-content: center;
  text-align: center;
}

/* Ensure dark buttons always have white text and white chevrons */
.home .btn--dark .chevron path,
.home .btn--dark-wide .chevron path,
.home .btn--filled .chevron path {
  stroke: #ffffff !important;
}
.home .btn--dark,
.home .btn--dark-wide,
.home .btn--filled {
  color: #ffffff !important;
}

/* Restrict section content to 1440px - exclude benefits and CTA which need full width */
.home .section--products > *,
.home .section--testimonials > *,
.home .section--grey > *:not(.btn) {
  max-width: 1440px;
  width: 100%;
}

/* FAQ content narrower */
.home .section--grey .faq-list {
  max-width: 900px;
  margin: 0 auto;

/* ========================================
   MOBILE & TABLET — COMPREHENSIVE FIX
   Desktop NOT modified. Only max-width queries.
   ======================================== */

/* ---- TABLET ≤ 1023px ---- */
@media (max-width: 1023px) {
  .home .cta-row { grid-template-columns: 1fr; }
  .home .cta-content {
    padding: clamp(2rem, 6vw, 3.5rem) clamp(1.25rem, 5vw, 3rem);
    gap: 1.5rem;
  }
  .home .cta-video-wrap { max-width: 100%; }
  .home .cta-video { min-height: 280px; }

  .home .featured-cards { grid-template-columns: 1fr; gap: 2rem; }
  .home .featured-card-col .card { max-width: 100%; margin: 0 auto; }

  .home .section--testimonials {
    padding: clamp(1.5rem, 5vw, 3rem) clamp(1rem, 4vw, 2.5rem);
  }
  .home .testimonials-grid { margin-left: 0; }

  .home .benefit-content { width: 100%; max-width: 100%; }
  .home .benefit-desc { width: 100%; max-width: 100%; }

  .home .section--featured {
    padding: var(--space-lg) var(--space-md);
  }

  .home .footer__top {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1.25rem;
  }
  .home .footer__brand { width: 100%; max-width: 100%; }
  .home .footer__nav-wrap { width: 100%; }
  .home .footer__nav { gap: 1.5rem; }
  .home .footer__bottom {
    height: auto;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    text-align: center;
    justify-content: center;
  }
  .home .footer__bottom-left,
  .home .footer__bottom-right {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .home .reviews-toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
  }
  .home .reviews-toolbar__search { width: 100%; }
  .home .reviews-toolbar__search-form { width: 100%; }
}

/* ---- MOBILE ≤ 767px ---- */
@media (max-width: 767px) {
  /* Prevent horizontal overflow */
  .home .section,
  .home { overflow-x: hidden; }

  /* Hero */
  .home .hero-title { font-size: clamp(1.6rem, 7vw, 2.25rem); }
  .home .hero-subtitle { font-size: clamp(0.85rem, 3vw, 1rem); }
  .home .hero-badges { gap: 0.4rem; flex-wrap: wrap; justify-content: center; }

  /* Finance bar */
  .home .section--dark { padding: 0.875rem 1rem !important; }
  .home .section--dark .wrap { padding: 0.5rem; gap: 0.5rem; }
  .home .finance-title { font-size: clamp(0.85rem, 3.5vw, 1.1rem); }
  .home .finance-text { font-size: 0.8rem; line-height: 1.5; }

  /* Split content padding */
  .home .split__half--content .col {
    padding: 1.5rem 1.25rem;
  }

  /* Products carousel */
  .home .products-grid .card-wrap { width: 220px; min-width: 220px; }

  /* Testimonials */
  .home .section--testimonials {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }
  .home .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-left: 0;
  }
  .home .section-header { padding: 0 0.5rem; }
  .home .section-header .heading { font-size: clamp(1.25rem, 5.5vw, 1.75rem); }

  /* Benefits — horizontal card layout */
  .home .section--benefits { padding: 2rem 1rem; }
  .home .benefits-col { gap: 1.25rem; }
  .home .benefit-content {
    width: 100%;
    max-width: 100%;
    gap: 1rem;
    flex-direction: row;
    align-items: center;
  }
  .home .circle-img { width: 80px; height: 80px; flex-shrink: 0; }
  .home .benefit-info { align-items: flex-start; text-align: left; }
  .home .benefit-title { font-size: 0.85rem; justify-content: flex-start; }
  .home .benefit-desc {
    width: 100%;
    max-width: 100%;
    font-size: 0.85rem;
    justify-content: flex-start;
    text-align: left;
  }

  /* Featured products section */
  .home .section--featured { padding: 1.5rem 1rem; }
  .home .featured-info { gap: 1rem; }
  .home .featured-card-col .card {
    max-width: 280px;
    margin: 0 auto;
  }

  /* FAQ */
  .home .section--grey { padding: 2rem 1rem; gap: 1.25rem; }

  /* Business / New Opportunity */
  .home .section--business { padding: 0; }
  .home .business-wrap {
    padding: 1.5rem 1rem;
    gap: 1.25rem;
    border-radius: 0;
  }
  .home .business-cards img { margin: 0; border-radius: 12px; }
  .home .heading--white { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .home .subtext--white { font-size: 0.875rem; line-height: 1.6; }
  .home .quote { font-size: 0.8rem; line-height: 1.6; padding: 0.5rem 0; }

  /* CTA — Drink only best water */
  .home .section--cta { padding: 0; }
  .home .cta-content { padding: 2rem 1.25rem; gap: 1rem; }
  .home .heading--large { font-size: clamp(1.4rem, 6vw, 1.85rem); }
  .home .subtext--large { font-size: 0.9rem; }
  .home .cta-video { min-height: 220px; }

  /* Help bar */
  .home .help-bar { padding: 1.25rem 1rem; gap: 0.5rem; }
  .home .help-bar__text {
    font-size: 0.8rem;
    text-align: center;
    flex-direction: column;
    gap: 0.25rem;
  }

  /* Footer */
  .home .footer { padding: 1rem; }
  .home .footer__top { padding: 1.5rem 0.5rem; gap: 1.5rem; }
  .home .footer__brand { align-items: center; text-align: center; }
  .home .footer__logo { max-width: 120px; }
  .home .footer__tagline { font-size: 0.85rem; text-align: center; }
  .home .footer__nav { flex-direction: column; gap: 1.25rem; }
  .home .footer__nav-col { width: 100%; }

  /* Page header (Reviews, News, FAQ etc.) */
  .home .section--video-header { padding: 1.5rem 1rem !important; }
  .home .section--video-header__title { font-size: clamp(1.25rem, 5vw, 1.75rem); }
  .home .section--video-header__subtitle { font-size: 0.8rem; }

  /* Reviews / News grid */
  .home .section--video-gallery { padding: 1.5rem 1rem; }
  .home .video-gallery-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Reviews breadcrumb bar */
  .home .reviews-toolbar { padding: 0.75rem 1rem; }

  /* Contact section */
  .home .section--contact-header { padding: clamp(1.5rem, 5vw, 3rem) 1rem; }
  .home .section--contact-content { padding: 0 1rem 2rem; }

  /* General overflow prevention */
  .home .heading,
  .home .heading--left,
  .home .heading--white,
  .home .heading--large {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* ---- SMALL PHONE ≤ 480px ---- */
@media (max-width: 480px) {
  .home .hero-title { font-size: 1.4rem; }
  .home .hero-badges .badge { font-size: 0.6rem; padding: 0.2rem 0.45rem; }
  .home .products-grid .card-wrap { width: 200px; min-width: 200px; }
  .home .circle-img { width: 64px; height: 64px; }
  .home .heading--large { font-size: 1.25rem; }
  .home .featured-card-col .card { max-width: 240px; }
}
}

/* ---- FULLSCREEN MOBILE SEARCH OVERLAY ---- */
.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}
.search-overlay.active {
  display: flex;
}
.search-overlay__header {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  gap: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}
.search-overlay__input {
  flex: 1;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  border: none;
  outline: none;
  padding: 0.75rem 0;
  color: #303842;
  background: transparent;
}
.search-overlay__input::placeholder {
  color: #9ca3af;
}
.search-overlay__close {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #4a4f57;
  flex-shrink: 0;
}
.search-overlay__close:hover {
  color: #303842;
}
@media (min-width: 768px) {
  .search-overlay { display: none !important; }
}

/* Mobile business section image + heading fix */
@media (max-width: 767px) {
  .home .business-cards img {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 12px;
  }
  .home .heading--white {
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
  }
}

/* Mobile footer fixes */
@media (max-width: 767px) {
  /* Hide Tyent Articles column */
  .home .footer__nav .footer__col:first-child {
    display: none !important;
  }
  /* More padding on copyright text */
  .home .footer__bottom {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }
  .home .footer__copyright {
    padding: 0 0.5rem;
  }
  /* Remove divider bars before Terms & Cookies */
  .home .footer__legal-divider {
    display: none !important;
  }
}

/* Mobile simplified footer */
.footer__mobile-nav {
  display: none;
}
@media (max-width: 767px) {
  .footer__mobile-nav {
    display: block;
    width: 100%;
    padding: 0;
  }
  .footer__mobile-bar {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #c9a84c 0%, #e8d48b 50%, #c9a84c 100%);
    border-radius: 2px;
    margin-bottom: 1.25rem;
  }
  .footer__mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
  }
  .footer__mobile-link {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    color: #303842;
    text-decoration: none;
  }
  .footer__mobile-link:hover {
    text-decoration: underline;
  }
  .home .footer__nav-wrap {
    display: none !important;
  }
  .home .footer__brand {
    display: none !important;
  }
}
