﻿*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    scroll-behavior: smooth;
    overflow-y: auto;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #ffffff;
    color: #050505;
    line-height: 1.6;
    padding-top: 6.5rem;
    overflow-x: hidden;
    cursor: url("../img/cursor-nutrivolta.png") 16 16, auto;
}

main {
    flex: 1;
    width: 100%;
}

img,
video {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: visible;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.promo-bar {
    background: #f5f5f5;
    color: #050505;
    text-align: center;
    padding: 0.55rem 7vw;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
}

.promo-bar span {
    font-weight: 600;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 7vw;
    padding-right: 2vw;
    border-bottom: none;
    position: fixed;
    top: 2.2rem;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    z-index: 10;
}

.logo {
    font-weight: 700;
    letter-spacing: 0.25em;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.logo span {
    background: #f5f5f5;
    color: #050505;
    padding: 0.1rem 0.3rem;
    margin-left: 0.3rem;
}

.logo img {
    height: 120px;
    width: auto;
    display: block;
}

.cart-link,
.account-link {
      margin-left: 0.55rem;
      color: #050505;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid #e5e5e5;
      background: #f7f7f7;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
      transition: background 0.18s ease, border-color 0.18s ease,
          color 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
  }
  
.cart-link svg,
.account-link svg {
      width: 18px;
      height: 18px;
  }

.cart-link {
    position: relative;
}

.cart-count-badge {
    position: absolute;
    top: -6px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: #050505;
    color: #ffffff;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}
  
.cart-link:hover,
.account-link:hover {
      background: #050505;
      border-color: #050505;
      color: #ffffff;
      transform: translateY(-1px);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  }

.site-header--shop .account-link {
    margin-left: auto;
}

.site-header--cart .account-link {
    margin-left: 0.55rem;
}

.header-shop-btn {
      margin-left: auto;
      padding: 0.3rem 0.95rem;
      border-radius: 999px;
      border: 1px solid #dedede;
      background: #f2f2f2;
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease,
        color 0.18s ease, transform 0.12s ease;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: auto;
}

.header-dashboard-btn {
    margin-right: 0.75rem;
    padding: 0.3rem 0.95rem;
    border-radius: 999px;
    border: 1px solid #050505;
    background: #050505;
    color: #ffffff;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    cursor: pointer;
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

.header-dashboard-btn:hover {
    background: #111111;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

.header-shop-btn:hover {
    background: #e3e3e3;
    border-color: #cfcfcf;
    transform: translateY(-1px);
}
.shop-page .header-actions .header-dashboard-btn,
.shop-page .header-actions .header-shop-btn {
    display: none;
}

.main-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
}

.main-nav a {
    margin: 0 1.25rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    opacity: 0.7;
    border-bottom: 1px solid transparent;
    padding-bottom: 0.25rem;
    position: relative;
}

.main-nav a:hover {
    opacity: 1;
    border-bottom-color: #d0d0d0;
}

.main-nav a.active {
    opacity: 1;
    border-bottom-color: #050505;
}

.mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid #e5e5e5;
    background: #f7f7f7;
    color: #050505;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease,
        color 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
}

.mobile-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.mobile-nav-toggle:hover {
    background: #050505;
    border-color: #050505;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.site-header.is-mobile-menu-open .mobile-nav-toggle {
    background: #050505;
    border-color: #050505;
    color: #ffffff;
}

.site-header.is-mobile-menu-open .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-header.is-mobile-menu-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-mobile-menu-open .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 7vw 5rem;
}

.hero-content {
    max-width: 780px;
    text-align: center;
    position: relative;
}

.hero-media {
    width: fit-content;
    max-width: min(100%, 680px);
    margin: 0 auto 2rem auto;
    animation: hero-float 10s ease-in-out infinite;
}

.hero-image {
    max-width: 640px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-bar {
    position: absolute;
    top: clamp(3.8rem, 10vw, 5.8rem);
    z-index: 1;
    width: clamp(150px, 24vw, 220px);
    transform-origin: center;
    opacity: 0.98;
    pointer-events: none;
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
    will-change: transform;
}

.hero-bar-left {
    left: clamp(-16rem, -18vw, -11rem);
    animation: hero-bar-left-float 4.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.hero-bar-right {
    right: clamp(-17rem, -19vw, -12rem);
    top: clamp(3.8rem, 10vw, 6rem);
    width: clamp(188px, 29vw, 280px);
    animation: hero-bar-right-float 4.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes hero-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes hero-bar-left-float {
    0%, 100% {
        transform: translate3d(0, -50%, 0) rotate(-12deg) scale(1);
    }
    25% {
        transform: translate3d(-5px, calc(-50% - 4px), 0) rotate(-8deg) scale(1.02);
    }
    60% {
        transform: translate3d(4px, calc(-50% + 5px), 0) rotate(-15deg) scale(0.99);
    }
}

@keyframes hero-bar-right-float {
    0%, 100% {
        transform: translate3d(0, -50%, 0) rotate(12deg) scale(1);
    }
    25% {
        transform: translate3d(5px, calc(-50% - 4px), 0) rotate(8deg) scale(1.02);
    }
    60% {
        transform: translate3d(-4px, calc(-50% + 5px), 0) rotate(15deg) scale(0.99);
    }
}

.product-highlight {
    margin: 2.5rem 7vw 0;
    padding: 2.3rem 2.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    border-radius: 1.5rem;
    background: #f5f5f5;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-highlight-text h2 {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.8rem;
}

.product-highlight-text p {
    max-width: 540px;
    color: #555555;
}

.product-highlight-media {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.product-highlight:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.14);
}

.product-pill {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.product-pill img {
    display: block;
    height: 170px;
    width: auto;
    border-radius: 18px;
}

.reviews-section {
    margin: 4rem 7vw 0;
    overflow: visible;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1.5rem;
}

.reviews-header h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.reviews-header p {
    font-size: 0.9rem;
    color: #777777;
}

.reviews-header-main {
    display: flex;
    flex-direction: column;
    gap: 1rem 2.5rem;
}

.reviews-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.85rem;
    color: #777777;
}

.reviews-rating-score {
    font-weight: 600;
    color: #050505;
}

.reviews-rating-provider {
    font-size: 0.8rem;
}

.reviews-rating-stars {
    font-size: 0.9rem;
    color: #ff8a00;
    letter-spacing: 0.12em;
}

.reviews-marquee {
    margin-top: 1.5rem;
    padding: 0.9rem 0;
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
}

.reviews-marquee::before,
.reviews-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 1;
}

.reviews-marquee::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}

.reviews-marquee::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

.reviews-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: reviews-scroll 32s linear infinite;
}

.review-pill {
    flex: 0 0 320px;
    border-radius: 1.3rem;
    border: 1px solid #ececec;
    background: linear-gradient(135deg, #f9fafb 0, #ffffff 60%);
    padding: 3rem 1.9rem;
    font-size: 0.95rem;
    color: #555555;
    white-space: normal;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.review-pill strong {
    font-weight: 600;
    display: block;
    margin-top: 0.35rem;
}

.review-pill::before {
    content: none;
}

.review-stars {
    font-size: 0.9rem;
    color: #ff8a00;
    letter-spacing: 0.12em;
    margin-bottom: 0.25rem;
}

.review-text {
    font-size: 0.9rem;
}

.review-author {
    font-size: 0.85rem;
    margin-top: 0.4rem;
}

.volta-stack-section {
    margin: 4rem 0 0;
    padding: 0.55rem 0;
    background: #ffffff;
    color: #111111;
    overflow: hidden;
}

.volta-mosaic {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 0.85rem;
    width: min(100%, 1380px);
    margin: 0 auto;
}

.volta-mosaic-card {
    display: block;
    position: relative;
    min-height: 340px;
    border-radius: 1.45rem;
    overflow: hidden;
    background: #0f1013;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: none;
    text-decoration: none;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.volta-mosaic-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.volta-mosaic-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 7, 10, 0.06) 0%, rgba(5, 7, 10, 0.18) 38%, rgba(5, 7, 10, 0.88) 100%),
        linear-gradient(90deg, rgba(5, 7, 10, 0.42) 0%, rgba(5, 7, 10, 0.08) 42%, rgba(5, 7, 10, 0) 75%);
    pointer-events: none;
}

.volta-mosaic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
    border-color: rgba(255, 255, 255, 0.08);
}

.volta-mosaic-card:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 4px;
}

.volta-mosaic-card:hover img {
    transform: scale(1.02);
}

.volta-mosaic-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.55rem 1.65rem 1.5rem;
}

.volta-mosaic-copy h3 {
    margin: 0;
    max-width: 16ch;
    font-size: clamp(1.55rem, 2.5vw, 2.65rem);
    line-height: 0.98;
    color: #ffffff;
    letter-spacing: -0.05em;
    font-weight: 700;
}

.volta-mosaic-copy p {
    margin: 0.9rem 0 0;
    max-width: 34rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.volta-mosaic-card--wide-left {
    grid-column: 1 / span 7;
    min-height: 355px;
}

.volta-mosaic-card--portrait-top {
    grid-column: 8 / span 5;
    min-height: 355px;
}

.volta-mosaic-card--portrait-bottom {
    grid-column: 1 / span 4;
    min-height: 325px;
}

.volta-mosaic-card--wide-right {
    grid-column: 5 / span 8;
    min-height: 325px;
}

.volta-mosaic-card--wide-left img {
    object-position: center 52%;
}

.volta-mosaic-card--portrait-top img {
    object-position: center 48%;
}

.volta-mosaic-card--portrait-bottom img {
    object-position: center 54%;
}

.volta-mosaic-card--wide-right img {
    object-position: center 52%;
}

.ia-how {
    margin: 4rem 7vw 0;
    padding: 2.6rem 2.6rem;
    border-radius: 1.5rem;
    background: #f5f5f5;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.5rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ia-how h2 {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.9rem;
}

.ia-how p {
    color: #555555;
}

.ia-how-steps {
    margin-top: 1.2rem;
    list-style: none;
}

.ia-how-steps li {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.ia-how-steps strong {
    font-weight: 600;
}

.ia-how-side {
    align-self: center;
    min-width: 0;
}

.ia-how-side-header {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.8rem;
}

.ia-how-tags {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #555555;
}

.ia-how-tags li::before {
    content: "• ";
}

.ia-how-cta-wrap {
    margin-top: 1.2rem;
}

.btn-cta-ia {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    text-align: center;
}

.ia-how:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.08);
}

.faq-section {
    margin: 4rem 7vw 0;
}

.faq-header {
    margin-bottom: 1.8rem;
}

.faq-header h2 {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.6rem;
}

.faq-header p {
    color: #555555;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.faq-item {
    border-radius: 1rem;
    border: 1px solid #e0e0e0;
    background: #f8f8f8;
    padding: 1rem 1.4rem;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease,
        box-shadow 0.18s ease;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1rem;
    color: #999999;
    flex: 0 0 auto;
}

.faq-item p {
    margin-top: 0.6rem;
    color: #555555;
    font-size: 0.95rem;
}

.faq-item[open] {
    border-color: #050505;
    background: #ffffff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.faq-cta {
    margin-top: 1.8rem;
    text-align: right;
}

.faq-item[open] summary::after {
    content: "−";
    color: #050505;
}

.shop-hero {
    margin: 3.5rem 7vw 2rem;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2.5rem;
    align-items: center;
}

.shop-hero h1 {
    font-size: 1.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.9rem;
}

.shop-hero p {
    color: #555555;
    margin-bottom: 1.2rem;
}

.shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.shop-filter-btn {
    border-radius: 999px;
    border: 1px solid #dedede;
    background: #f5f5f5;
    padding: 0.45rem 1.1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.1s ease;
}

.shop-filter-btn:hover {
    background: #050505;
    border-color: #050505;
    color: #ffffff;
    transform: translateY(-1px);
}

.shop-highlight {
    padding: 1.6rem 1.8rem;
    border-radius: 1.3rem;
    background: #f2f2f2;
    color: #050505;
    text-align: center;
}

.shop-highlight h2 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.9rem;
}

.shop-highlight p {
    font-size: 0.9rem;
    margin-bottom: 1.4rem;
    color: #555555;
}

.shop-highlight .btn {
    margin-top: 0.1rem;
}

.shop-facets {
    margin: 0 7vw 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.7rem;
}

.shop-facet {
    border: 1px solid #e8e8e8;
    border-radius: 1.2rem;
    padding: 1.6rem 1.8rem;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

.shop-facet h3 {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.9rem;
}

.shop-facet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
}

.shop-facet-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #222222;
    cursor: pointer;
}

.shop-facet-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #c7c7c7;
}

.shop-facet-option.is-hidden {
    display: none;
}

.shop-facet-toggle {
    margin-top: 0.9rem;
    border: none;
    background: none;
    color: #050505;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}

.shop-facet-toggle:focus-visible {
    outline: 2px solid #050505;
    outline-offset: 2px;
}

.shop-social-proof {
    margin: 0 7vw 2.8rem;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    background: #050505;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.9rem;
}

.shop-social-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.shop-social-stars {
    color: #ff8a00;
    letter-spacing: 0.12em;
    font-size: 1rem;
}

.shop-social-score {
    font-weight: 600;
}

.shop-social-text {
    opacity: 0.9;
}

.shop-social-cta {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    white-space: nowrap;
}

.shop-social-cta:hover {
    opacity: 0.85;
}

.seo-pillar-strip {
    margin: 3rem 7vw;
    padding: 2rem;
    border-radius: 1.6rem;
    background: linear-gradient(135deg, #fbf7ef, #f4f7f1);
    border: 1px solid #ece7dd;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
}

.seo-pillar-strip--blog {
    margin: 0 0 2.5rem;
    padding: 1.8rem;
}

.seo-pillar-intro {
    max-width: 760px;
    margin-bottom: 1.5rem;
}

.seo-pillar-intro h2 {
    font-size: clamp(1.35rem, 2.8vw, 1.9rem);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.8rem;
}

.seo-pillar-intro p {
    color: #4f4f4f;
    line-height: 1.7;
}

.seo-pillar-grid,
.seo-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.seo-pillar-card,
.seo-category-card {
    border-radius: 1.3rem;
    border: 1px solid #e7e2d8;
    background: rgba(255, 255, 255, 0.92);
    padding: 1.5rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.seo-category-card {
    color: inherit;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.seo-category-card:hover,
.seo-pillar-card:hover {
    transform: translateY(-3px);
    border-color: #d6d0c4;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.06);
}

.seo-pillar-kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #7d6f52;
    margin-bottom: 0.8rem;
}

.seo-pillar-card h3,
.seo-category-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.8rem;
}

.seo-pillar-card p,
.seo-category-card p {
    color: #4f4f4f;
}

.seo-pill-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 1.2rem;
    padding: 0;
}

.seo-pill-list li {
    border-radius: 999px;
    border: 1px solid #e5dfd5;
    background: #f8f5ef;
    padding: 0.35rem 0.7rem;
    font-size: 0.76rem;
    color: #3d3d3d;
}

.shop-intent-section {
    margin: 0 7vw 3rem;
}

.shop-intent-section .shop-section-header {
    margin-bottom: 1.2rem;
}

.shop-intent-section .shop-section-header p {
    color: #555555;
    max-width: 760px;
}

.seo-faq-list {
    display: grid;
    gap: 1rem;
}

.blog-article .faq-section {
    margin: 3rem 0 0;
}

.seo-category-card .blog-card-link,
.seo-pillar-card .blog-card-link {
    margin-top: auto;
}

.seo-cta-banner {
    margin: 0 0 3rem;
    padding: 1.8rem 2rem;
    border-radius: 1.4rem;
    border: 1px solid #e7ebf2;
    background: linear-gradient(135deg, #f8fbff, #f0f5ff);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
}

@media (max-width: 720px) {
    .volta-stack-section {
        padding: 0.75rem;
    }

    .volta-mosaic {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .volta-mosaic-card,
    .volta-mosaic-card--wide-left,
    .volta-mosaic-card--portrait-top,
    .volta-mosaic-card--portrait-bottom,
    .volta-mosaic-card--wide-right {
        grid-column: auto;
        position: relative;
        min-height: 260px;
    }

    .volta-mosaic-copy {
        padding: 1.15rem;
    }

    .shop-social-proof {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 1.3rem;
    }

    .shop-social-cta {
        align-self: flex-end;
    }

    .seo-pillar-strip {
        padding: 1.4rem;
    }

    .seo-cta-banner {
        padding: 1.4rem;
        flex-direction: column;
        align-items: flex-start;
    }
}

.shop-grid {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 1.3rem;
    border: 1px solid #ececec;
    background: #ffffff;
    padding: 1.6rem 1.5rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card-main {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: inherit;
    flex: 1;
}

.product-card-main:focus-visible {
    outline: 2px solid #050505;
    outline-offset: 6px;
    border-radius: 1rem;
}

.product-media {
    margin-bottom: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    background: #f5f5f5;
}

.product-media img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-tag {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid #dedede;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.75rem;
}

.product-card h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.6rem;
}

.product-desc {
    font-size: 0.95rem;
    color: #555555;
    margin-bottom: 0.5rem;
}

.product-meta {
    font-size: 0.8rem;
    color: #888888;
    margin-bottom: 1.1rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
}

.product-price {
    font-weight: 600;
}

.product-footer .btn {
    padding: 0.4rem 1.1rem;
    font-size: 0.75rem;
}

.promo-card .product-footer .btn {
    font-size: 0.7rem;
}

.shop-section {
    margin: 0 7vw 3.5rem;
}

.shop-section h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 1rem;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: #050505;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.shop-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.4rem;
}

.shop-section-header p {
    max-width: 380px;
    font-size: 0.9rem;
    color: #666666;
}

.shop-filter-btn.is-active {
    background: #050505;
    border-color: #050505;
    color: #ffffff;
}

.shop-promos {
    margin: 2.2rem 7vw 3rem;
    padding: 1.4rem 1.6rem;
    background: linear-gradient(90deg, rgba(229, 57, 53, 0.08), #ffffff 30%, #ffffff 70%, rgba(229, 57, 53, 0.08));
    border-radius: 1.6rem;
    border: 1px solid #d6d6d6;
    overflow-x: auto;
    overflow-y: visible;
    position: relative;
    scroll-snap-type: x proximity;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.shop-promos::-webkit-scrollbar {
    display: none;
}

.shop-promos.shop-promos--animated {
    overflow-x: hidden;
}

.shop-promos::before,
.shop-promos::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    pointer-events: none;
    z-index: 1;
}

.shop-promos::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}

.shop-promos::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

.shop-promos-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    width: max-content;
    will-change: transform;
}

.shop-promos-grid .product-card {
    scroll-snap-align: start;
}

.promo-card {
    border-color: #f5c2c2;
    box-shadow: 0 14px 38px rgba(229, 57, 53, 0.08);
}

.promo-card:hover {
    border-color: #e53935;
    box-shadow: 0 18px 46px rgba(229, 57, 53, 0.16);
}

.promo-tag {
    border-color: #e53935;
    color: #e53935;
    background: #fff5f5;
}

.promo-price {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.old-price {
    font-size: 0.8rem;
    color: #999999;
    text-decoration: line-through;
}

.new-price {
    font-weight: 600;
    color: #e53935;
}

@media (max-width: 900px) {
    body {
        padding-top: 8rem;
    }

    .hero-media {
        max-width: min(100%, 560px);
    }

    .hero-bar {
        width: clamp(118px, 22vw, 168px);
    }

    .hero-bar-left {
        left: clamp(-9rem, -12vw, -5rem);
    }

    .hero-bar-right {
        right: clamp(-10rem, -13vw, -5.8rem);
        top: clamp(4.1rem, 11vw, 5.4rem);
        width: clamp(150px, 27vw, 210px);
    }

    .ia-how {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .volta-stack-section {
        padding: 0.85rem;
    }

    .volta-mosaic {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .volta-mosaic-card,
    .volta-mosaic-card--wide-left,
    .volta-mosaic-card--portrait-top,
    .volta-mosaic-card--portrait-bottom,
    .volta-mosaic-card--wide-right {
        grid-column: auto;
        min-height: 300px;
    }

    .ia-how-side {
        align-self: stretch;
    }

    .promo-bar {
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 0.72rem;
        letter-spacing: 0.11em;
    }

    .site-header {
        top: 1.9rem;
        padding: 0.85rem 1rem;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .logo {
        order: 1;
    }

    .logo img {
        height: 78px;
    }

    .mobile-nav-toggle {
        display: inline-flex;
        order: 2;
        margin-left: auto;
    }

    .account-link,
    .cart-link {
        order: 3;
        margin-left: 0;
    }

    .site-header--shop .account-link,
    .site-header--cart .account-link {
        margin-left: 0;
    }

    .main-nav {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        order: 4;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        padding-top: 0;
        transition: max-height 0.24s ease, opacity 0.18s ease, padding-top 0.24s ease;
    }

    .site-header.is-mobile-menu-open .main-nav {
        max-height: 24rem;
        opacity: 1;
        pointer-events: auto;
        padding-top: 0.4rem;
    }

    .main-nav a {
        margin: 0;
        padding: 0.9rem 0;
        border-bottom: 1px solid #ececec;
    }

    .header-actions {
        order: 5;
        width: 100%;
        margin-left: 0;
        gap: 0.75rem;
        flex-wrap: wrap;
        display: none;
        padding-top: 0.5rem;
    }

    .site-header.is-mobile-menu-open .header-actions {
        display: flex;
    }

    .header-dashboard-btn {
        margin-right: 0;
    }

    .hero {
        min-height: auto;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .shop-hero {
        margin-top: 3rem;
        grid-template-columns: 1fr;
    }

    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 640px) {
    .hero-media {
        max-width: 100%;
        margin-bottom: 1.4rem;
    }

    .hero-bar {
        width: clamp(96px, 28vw, 132px);
    }

    .hero-bar-left {
        left: -3rem;
        top: 4.6rem;
    }

    .hero-bar-right {
        right: -3.4rem;
        top: 4.8rem;
        width: clamp(122px, 36vw, 168px);
    }

    .ia-how {
        margin-left: 1rem;
        margin-right: 1rem;
        padding: 1.6rem;
    }

    .volta-stack-section {
        padding: 0.7rem;
    }

    .volta-mosaic-copy {
        padding: 1rem;
    }

    .volta-mosaic-copy h3 {
        font-size: 1.1rem;
    }

    .volta-mosaic-copy p {
        font-size: 0.9rem;
    }

    .ia-how h2 {
        font-size: 1rem;
        letter-spacing: 0.12em;
    }

    .ia-how-steps li,
    .ia-how-tags li {
        font-size: 1rem;
    }

    .ia-how-cta-wrap .btn-cta-ia {
        width: 100%;
    }

    body {
        padding-top: 8.4rem;
    }

    .promo-bar {
        padding: 0.45rem 0.9rem;
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        line-height: 1.35;
    }

    .site-header {
        top: 1.8rem;
        padding: 0.7rem 0.9rem;
        gap: 0.4rem;
        border-bottom: 1px solid #efefef;
        box-shadow: 0 12px 30px rgba(5, 5, 5, 0.06);
    }

    .logo img {
        height: 56px;
    }

    .mobile-nav-toggle,
    .account-link,
    .cart-link {
        width: 42px;
        height: 42px;
        background: #ffffff;
        box-shadow: none;
    }

    .mobile-nav-toggle {
        margin-left: auto;
    }

    .site-header--shop .account-link,
    .site-header--cart .account-link {
        margin-left: 0;
    }

    .header-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .header-dashboard-btn,
    .header-shop-btn,
    .hero-cta .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero {
        padding: 3rem 1rem 3.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .cart-perk-progress-markers {
        flex-direction: column;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.review-pill:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: #ff8a00;
    box-shadow: none;
}
@keyframes reviews-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.hero h1 {
    font-size: clamp(2.6rem, 3.6vw, 3.6rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero p {
    max-width: 560px;
    margin: 0 auto 1.5rem auto;
    color: #555555;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 0.75rem;
}

.btn {
    border: 1px solid #050505;
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: transparent;
    color: #050505;
    cursor: pointer;
    border-radius: 999px;
    transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease,
        box-shadow 0.18s ease;
}

.btn-primary {
    background: #050505;
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: #050505;
}

.btn-outline:hover {
    background: #050505;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.btn-ia-main {
    padding: 1rem 2.6rem;
    font-size: 1rem;
}

.btn-ghost:hover,
.btn-primary:hover {
    transform: translateY(-1px);
    background: #050505;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.btn-cta-ia:hover {
    transform: translateY(-2px) scale(1.04);
}

.hero-subtext {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #8a8a8a;
    text-align: center;
    max-width: 560px;
    margin: 0.25rem auto 0;
}

.js-ready .reveal-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

.js-ready .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.js-ready .reveal-on-scroll.is-visible.product-highlight:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.14);
}

.section-grid {
    padding: 3.5rem 7vw 4.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

.card {
    border: 1px solid #e5e5e5;
    padding: 1.8rem 1.6rem;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    border-color: #050505;
}

.ambassadors-page {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 3.5rem 7vw 5rem;
}

.ambassadors-hero {
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    color: #050505;
    border-radius: 1.8rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 3.5rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ambassadors-hero:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 35px 90px rgba(5, 5, 5, 0.12);
}

.ambassadors-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.ambassadors-hero-eyebrow,
.ambassadors-proof-eyebrow {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.ambassadors-hero-text {
    color: #555555;
}

.ambassadors-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.ambassadors-hero-tags span {
    border: 1px solid #dadada;
    background: #f9f9f9;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
}

.ambassadors-anchor-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.ambassadors-anchor-nav a {
    color: #050505;
    background: #ffffff;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid #dedede;
}

.ambassadors-hero-visual {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.ambassadors-hero-visual img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 1.2rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.ambassadors-intro {
    background: #f5f5f5;
    border-radius: 1.6rem;
    padding: 3rem;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
    gap: 2.5rem;
    margin: 3.5rem 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ambassadors-intro:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 35px 90px rgba(5, 5, 5, 0.08);
}
.amb-intro-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #777777;
    margin-top: 1.4rem;
    margin-bottom: 0.4rem;
}

.ambassadors-values {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.ambassadors-values li {
    padding: 1.2rem 1.4rem;
    border-radius: 1.2rem;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    box-shadow: 0 16px 45px rgba(5, 5, 5, 0.08);
}

.ambassadors-values strong {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
    margin-bottom: 0.35rem;
}

.ambassador-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3.4rem;
    align-items: center;
    padding: 3.2rem 0;
    border-bottom: 1px solid #e7e7e7;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    margin: 3.5rem 0;
    background: #ffffff;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(5, 5, 5, 0.08);
}

.ambassador-section:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 45px 110px rgba(5, 5, 5, 0.14);
}

.ambassador-section--reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.ambassador-media img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 1.6rem;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease;
}

.ambassador-section--feature .ambassador-media img {
    height: 360px;
    object-position: center 35%;
}

.ambassador-media--noe {
    position: relative;
    overflow: hidden;
}

.ambassador-media--noe .media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35), transparent);
    border-radius: 1.6rem;
    pointer-events: none;
}

.ambassador-media--bw img {
    filter: grayscale(1);
}

.ambassador-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ambassador-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: #555555;
}

.ambassador-highlights {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.ambassador-highlights li {
    padding-left: 1.1rem;
    position: relative;
}

.ambassador-highlights li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #050505;
}

.ambassador-socials {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.ambassador-socials--icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.ambassador-socials--icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #dedede;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.ambassador-socials--icons img {
    height: 20px;
    width: 20px;
    filter: grayscale(1) brightness(0);
    opacity: 0.85;
}

.ambassador-socials--icons a:hover {
    border-color: #050505;
    transform: translateY(-2px);
}

.ambassador-values {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.ambassador-values li {
    background: #f7f7f7;
    border-radius: 1.2rem;
    padding: 1rem 1.2rem;
    border: 1px solid #e5e5e5;
}

.amb-value-title {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.4rem;
}

.amb-value-text {
    font-size: 0.92rem;
    color: #555555;
}

.ambassador-socials a {
    border-bottom: 1px solid #050505;
    font-weight: 600;
    font-size: 0.9rem;
}

.ambassador-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.ambassadors-proof {
    background: radial-gradient(circle at top left, rgba(5, 5, 5, 0.04), #ffffff 70%);
    border-radius: 2.6rem;
    padding: 3.5rem 4vw;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    border: 1px solid rgba(5, 5, 5, 0.04);
    position: relative;
    overflow: hidden;
    margin-top: 3.5rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ambassadors-proof::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 5, 5, 0.07), transparent 65%);
    mix-blend-mode: multiply;
    top: -200px;
    right: -120px;
    opacity: 0.15;
}

.ambassadors-proof-header {
    max-width: 760px;
}

.proof-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

.proof-stat-card {
    background: #f7f7f7;
    border-radius: 1.6rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid #ededed;
    box-shadow: 0 18px 45px rgba(5, 5, 5, 0.08);
}

.proof-stat-card .stat-value {
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.proof-stat-card .stat-text {
    font-size: 1rem;
    color: #4a4a4a;
}

.proof-logos {
    display: flex;
    justify-content: center;
}

.proof-logo-single {
    max-width: 220px;
    width: 100%;
    height: auto;
}

.proof-testimonials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.proof-testimonial {
    padding: 1.6rem 1.8rem;
    background: #fdfdfd;
    border-radius: 1.4rem;
    border: 1px solid rgba(5, 5, 5, 0.06);
    box-shadow: 0 18px 45px rgba(5, 5, 5, 0.08);
}

.proof-testimonial blockquote {
    font-size: 0.96rem;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 0.8rem 0;
}

.proof-testimonial figcaption {
    font-style: italic;
    color: #666666;
}

.proof-anim {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.ambassadors-proof.is-visible .proof-anim {
    opacity: 1;
    transform: translateY(0);
}

.proof-stats .proof-stat-card:nth-child(2) {
    transition-delay: 0.08s;
}

.proof-stats .proof-stat-card:nth-child(3) {
    transition-delay: 0.16s;
}

.proof-testimonial:nth-child(2) {
    transition-delay: 0.08s;
}

.proof-testimonial:nth-child(3) {
    transition-delay: 0.16s;
}

.ambassadors-faq {
    padding: clamp(3rem, 5vw, 5.5rem) clamp(1.5rem, 5vw, 5rem) 2.5rem;
    background: none;
    border-radius: 0;
    position: relative;
}

/* Fix: align FAQ columns and improve responsiveness */
.ambassadors-faq .faq-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    column-gap: clamp(1rem, 3vw, 2rem);
    row-gap: clamp(1.2rem, 3vw, 2rem);
    max-width: 1200px;
    margin: 0 auto;
}

.ambassadors-faq .faq-column {
    display: flex;
    flex-direction: column;
    gap: clamp(0.8rem, 2vw, 1.5rem);
}

.ambassadors-faq .faq-column-intro {
    flex: 0 0 clamp(320px, 35%, 420px);
}

.ambassadors-faq .faq-column-list {
    flex: 1;
}

.ambassadors-faq .faq-card {
    border: 1px solid rgba(5, 5, 5, 0.08);
    background: #ffffff;
    border-radius: 1.9rem;
    padding: 1.4rem clamp(1.5rem, 3vw, 2.4rem);
    margin: 0;
    box-shadow: none;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.ambassadors-faq .faq-card:not(.faq-card-intro) {
    flex: 1 1 100%;
    width: 100%;
}

.ambassadors-faq .faq-card-intro {
    grid-column: 1;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.ambassadors-faq .faq-card-intro .faq-intro-block {
    border: 1px solid #ededed;
    border-radius: 1.9rem;
    background: #ffffff;
    padding: 2.2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: inset 0 0 0 1px rgba(5, 5, 5, 0.02);
}

.ambassadors-faq .faq-intro-block p {
    color: #4a4a4a;
    line-height: 1.7;
}

.ambassadors-faq .faq-links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.ambassadors-faq .faq-links a {
    color: #050505;
    font-weight: 600;
    text-decoration: none;
}

.ambassadors-faq .faq-links a:hover,
.ambassadors-faq .faq-links a:focus {
    color: #111111;
    text-decoration: underline;
}

.ambassadors-faq .faq-card.is-open {
    border-color: #050505;
    box-shadow: 0 50px 110px rgba(5, 5, 5, 0.16);
    transform: translateY(-2px);
}

.ambassadors-faq .faq-card-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: none;
    background: transparent;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    padding: 1.6rem 2.2rem;
    cursor: pointer;
    color: inherit;
}

.ambassadors-faq .faq-card-toggle:focus-visible {
    outline: 2px solid #050505;
    outline-offset: 4px;
    border-radius: 1.4rem;
}

.ambassadors-faq .faq-question-text {
    flex: 1;
}

.ambassadors-faq .faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(5, 5, 5, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(5, 5, 5, 0.14);
    position: relative;
    flex: 0 0 auto;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.ambassadors-faq .faq-icon::before,
.ambassadors-faq .faq-icon::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: #050505;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.ambassadors-faq .faq-icon::after {
    transform: rotate(90deg);
}

.ambassadors-faq .faq-card.is-open .faq-icon {
    background: #050505;
    border-color: #050505;
}

.ambassadors-faq .faq-card.is-open .faq-icon::before,
.ambassadors-faq .faq-card.is-open .faq-icon::after {
    background: #ffffff;
}

.ambassadors-faq .faq-card.is-open .faq-icon::after {
    opacity: 0;
    transform: rotate(90deg) scaleX(0.4);
}

.ambassadors-faq .faq-card-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    padding: 0 2.2rem;
    opacity: 0;
}

.ambassadors-faq .faq-card-panel p {
    margin: 0;
    padding-bottom: 1.8rem;
    border-top: 1px solid rgba(5, 5, 5, 0.05);
    margin-top: 1.1rem;
    color: #4a4a4a;
}

.ambassadors-faq .faq-card.is-open .faq-card-panel {
    opacity: 1;
}

@media (max-width: 1100px) {
    .ambassadors-faq .faq-grid {
        flex-direction: column;
    }

    .ambassadors-faq .faq-column-intro,
    .ambassadors-faq .faq-column-list {
        flex: 1 1 100%;
    }

    .ambassadors-faq .faq-card {
        padding: 1.2rem clamp(1.2rem, 4vw, 2.2rem);
    }

    .ambassadors-faq .faq-card-panel {
        padding: 0 1.2rem;
    }
}

@media (max-width: 640px) {
    .ambassadors-faq {
        padding: 2.5rem 1.5rem;
    }

    .ambassadors-faq .faq-card-intro .faq-intro-block {
        padding: 1.6rem;
    }

    .ambassadors-faq .faq-card-toggle {
        gap: 0.8rem;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .ambassadors-faq .faq-icon {
        width: 32px;
        height: 32px;
    }
}

@keyframes faqSlideDown {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ambassadors-cta {
    background: linear-gradient(120deg, #f7f7f7 0%, #ffffff 60%, #f5f5f5 100%);
    border-radius: 1.8rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(5, 5, 5, 0.12);
    text-align: center;
    margin: 3.5rem 0;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.ambassadors-cta:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 40px 110px rgba(5, 5, 5, 0.12);
}

.ambassadors-cta::before,
.ambassadors-cta::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(5, 5, 5, 0.08), transparent 60%);
    opacity: 0.12;
}

.ambassadors-cta::before {
    top: -220px;
    left: -80px;
}

.ambassadors-cta::after {
    bottom: -260px;
    right: -120px;
}

.ambassadors-cta-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.ambassadors-cta-actions {
    display: flex;
    gap: 1.1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}

.btn-cta {
    padding: 0.95rem 2.8rem;
    border-radius: 999px;
    font-size: 0.92rem;
    box-shadow: 0 16px 40px rgba(5, 5, 5, 0.2);
}

.btn-cta-outline {
    border-width: 2px;
    padding: 0.9rem 2.6rem;
    font-size: 0.92rem;
    background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .ambassadors-hero,
    .ambassadors-intro {
        grid-template-columns: 1fr;
    }

    .ambassadors-hero-visual {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .ambassador-section,
    .ambassador-section--reverse {
        grid-template-columns: 1fr;
    }

    .ambassadors-cta {
        padding: 2.2rem;
    }

    .proof-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-testimonials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .ambassadors-hero,
    .ambassadors-intro,
    .ambassadors-proof,
    .ambassadors-cta {
        padding: 1.8rem;
    }

    .ambassadors-page {
        padding: 2.5rem 6vw 4rem;
    }

    .ambassador-media img {
        height: 240px;
    }

    .proof-stats {
        grid-template-columns: 1fr;
    }

    .proof-testimonials {
        grid-template-columns: 1fr;
    }

}

.card h2 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.9rem;
}

.card p {
    color: #555555;
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.card ul,
.card ol {
    margin-top: 0.4rem;
    padding-left: 1.1rem;
}

.card li + li {
    margin-top: 0.25rem;
}

/* Espacements spécifiques page IA */
.ia-coach-section {
    margin: 3rem 0;
}

.ia-coach-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.2rem);
}

.ia-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 20px;
    padding: clamp(2rem, 3vw, 2.6rem);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    min-height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ia-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
    border-color: rgba(92, 182, 138, 0.3);
}

.ia-card h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.4rem;
    color: #111111;
}

.ia-card p {
    color: #333333;
    margin: 0;
    line-height: 1.65;
}

.ia-card-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ia-card-list li {
    position: relative;
    padding-left: 1.5rem;
    color: #333333;
}

.ia-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5cb68a;
}

.ia-card-list--numbered {
    counter-reset: ia-steps;
}

.ia-card-list--numbered li {
    padding-left: 2rem;
}

.ia-card-list--numbered li::before {
    content: counter(ia-steps);
    counter-increment: ia-steps;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(92, 182, 138, 0.2);
    color: #111111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    top: 0.2rem;
}

.ia-card-note {
    margin-top: 0.4rem;
    font-size: 0.9rem;
    color: #555555;
}

.ia-card-cta {
    margin-top: auto;
}

.btn-ia-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border: none;
    background: #111111;
    color: #ffffff;
    padding: 0.85rem 2.4rem;
    border-radius: 999px;
    letter-spacing: 0.16em;
    font-size: 0.9rem;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-ia-cta:hover {
    background: #5cb68a;
    color: #111111;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(92, 182, 138, 0.25);
}

.ia-spec-section {
    margin: 3.5rem 0 4rem;
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 26px;
    background: linear-gradient(180deg, #fafcfb 0%, #ffffff 100%);
    border: 1px solid rgba(92, 182, 138, 0.18);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
}

.ia-spec-header {
    max-width: 900px;
    margin-bottom: 2rem;
}

.ia-spec-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 0.9rem;
    color: #111111;
}

.ia-spec-header p:last-child {
    color: #3a3a3a;
    line-height: 1.75;
}

.ia-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.ia-spec-card {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 20px;
    padding: 1.6rem 1.7rem;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.04);
}

.ia-spec-card h3 {
    margin: 0 0 0.75rem;
    font-size: 0.98rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #111111;
}

.ia-spec-card p {
    color: #333333;
    line-height: 1.7;
}

.ia-engine-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: 1.6rem 0;
}

.ia-engine-step {
    position: relative;
    padding: 1.4rem 1.35rem 1.3rem;
    border-radius: 20px;
    background: #111111;
    color: #ffffff;
    overflow: hidden;
}

.ia-engine-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.ia-engine-step h3 {
    margin: 0 0 0.55rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.ia-engine-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.65;
    font-size: 0.92rem;
}

.ia-spec-grid--detail {
    margin-top: 0.4rem;
}

@media (max-width: 1024px) {
    .ia-coach-grid {
        grid-template-columns: 1fr;
    }

    .ia-card {
        padding: clamp(2rem, 6vw, 3rem);
    }

    .ia-spec-grid,
    .ia-engine-strip {
        grid-template-columns: 1fr;
    }
}

.page-main {
    padding: 3.25rem 7vw 2.5rem;
}

.page-header {
    max-width: 720px;
    margin-bottom: 3rem;
    border-left: 3px solid #050505;
    padding-left: 1.5rem;
}

.page-header h1 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 1rem;
}

.page-header p {
    color: #555555;
}

.page-account-create .page-main {
    padding-top: 8rem;
}

.page-account-create .page-header {
    margin-top: 1.9rem;
}

.ia-hero {
    margin: 3rem 0 3rem;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.ia-hero-content {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 22px;
    padding: clamp(2rem, 4vw, 2.8rem);
    border: 1px solid rgba(92, 182, 138, 0.2);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 720px;
    opacity: 0;
    animation: iaHeroSlide 0.9s ease forwards;
}

.ia-hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
    color: #5cb68a;
}

.ia-hero-line {
    display: block;
    width: 90px;
    height: 3px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(90deg, rgba(92, 182, 138, 0.8), rgba(229, 163, 111, 0.8));
    border-radius: 999px;
}

.ia-hero-content h1 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 1rem;
}

.ia-hero-content p {
    color: #333333;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

@keyframes iaHeroSlide {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.blog-hero-card {
    margin: 2.8rem 0 3.8rem;
}

.blog-hero-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 0;
}

.blog-hero-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.75rem;
    color: #5cb68a;
    margin-bottom: 0.6rem;
}

.blog-hero-content h1 {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-bottom: 1rem;
}

.blog-hero-content p {
    color: #333333;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.blog-hero-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}
@media (prefers-reduced-motion: reduce) {
    .ia-hero-content {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.product-main {
    padding-top: 2rem;
}

.product-breadcrumbs {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    color: #999999;
}

.product-breadcrumbs a {
    color: #444444;
}

.product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2.4rem;
    margin-bottom: 3rem;
}

.product-gallery {
    background: #fafafa;
    border-radius: 1.6rem;
    border: 1px solid #ededed;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.product-gallery-main {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
}

.product-gallery-main figure {
    margin: 0;
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 1.6rem;
    min-height: 0;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
}

.product-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: rgba(255, 255, 255, 0.9);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #050505;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-gallery-nav:first-of-type {
    left: 0.9rem;
}

.product-gallery-nav:last-of-type {
    right: 0.9rem;
}

.product-gallery-thumbs {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.product-thumb {
    border: 2px solid transparent;
    border-radius: 0.8rem;
    padding: 0.2rem;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-thumb img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 0.6rem;
}

.product-thumb.is-active {
    border-color: #050505;
}

.product-info-card {
    border: 1px solid #e7e7e7;
    border-radius: 1.6rem;
    padding: 2rem;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.8rem;
    color: #999999;
    margin-bottom: 0.4rem;
}

.product-subtitle {
    color: #555555;
    margin-top: -0.4rem;
}

.product-price-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 0.8rem 0;
}

.product-price-main {
    font-size: 2rem;
    font-weight: 600;
}

.product-price-note {
    font-size: 0.8rem;
    color: #888888;
    display: block;
}

.product-rating {
    text-align: right;
    font-size: 0.85rem;
}

.product-rating span {
    color: #f5a623;
}

.product-rating a {
    color: #050505;
    font-weight: 600;
    display: block;
}

.product-quantity label {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    display: block;
}

.product-quantity-input {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dcdcdc;
    border-radius: 999px;
    padding: 0.25rem;
    width: fit-content;
}

.product-quantity-input button {
    border: none;
    background: #f5f5f5;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 1rem;
}

.product-quantity-input input {
    width: 48px;
    border: none;
    text-align: center;
    font-size: 1rem;
    background: transparent;
}

.product-add-btn {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
}


.product-shipping {
    background: #e4f9e5;
    border-radius: 0.9rem;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    color: #0b5b1c;
}

.product-badges {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
}

.product-badges li {
    border: 1px solid #eeeeee;
    border-radius: 0.8rem;
    padding: 0.75rem;
    background: #fafafa;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.product-badge-icon {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.product-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.product-secondary-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.product-secondary-cards article {
    border: 1px solid #f0f0f0;
    border-radius: 1rem;
    padding: 1rem;
    background: #ffffff;
}

.product-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 2rem;
    padding: 2.5rem 7vw;
    border-radius: 1.6rem;
    border: 1px solid #eeeeee;
    margin-bottom: 3rem;
    background: linear-gradient(120deg, #fffaf5, #ffffff);
}

.product-story-media img {
    width: 100%;
    border-radius: 1.2rem;
}

.product-accordions {
    margin-bottom: 3rem;
    display: grid;
    gap: 1rem;
}

.product-accordions details {
    position: relative;
    border: 1px solid rgba(11, 91, 28, 0.2);
    border-radius: 1rem;
    padding: 1.05rem 1.25rem;
    margin-bottom: 0;
    background: linear-gradient(135deg, #f5fff8, #ffffff);
    box-shadow: 0 14px 34px rgba(11, 91, 28, 0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-accordions details::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 20%, rgba(11, 143, 77, 0.08), transparent 45%),
        radial-gradient(circle at 92% 0%, rgba(11, 91, 28, 0.06), transparent 40%);
    pointer-events: none;
}

.product-accordions summary {
    cursor: pointer;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    letter-spacing: 0.02em;
    color: #0a0a0a;
}

.product-accordions summary::before {
    content: "";
    width: 11px;
    height: 11px;
    background: linear-gradient(120deg, #0b5b1c, #0b8f4d);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(11, 91, 28, 0.12);
}

.product-accordions summary::-webkit-details-marker {
    display: none;
}

.product-accordions summary::after {
    content: "";
    width: 11px;
    height: 11px;
    border: 2px solid #0b5b1c;
    border-left: none;
    border-bottom: none;
    transform: rotate(45deg);
    margin-left: auto;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-accordions details[open] summary::after {
    transform: rotate(135deg);
    border-color: #0b8f4d;
}

.product-accordions details:hover {
    transform: translateY(-3px);
    border-color: rgba(11, 91, 28, 0.32);
    box-shadow: 0 18px 40px rgba(11, 91, 28, 0.12);
}

.product-nutrition {
    list-style: none;
    margin: 0.8rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.product-nutrition li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #e2e2e2;
    padding-bottom: 0.2rem;
}

.product-cross-sell {
    padding: 2rem 0 1rem;
}

.product-cross-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.product-cross-grid article {
    position: relative;
    border: 1px solid rgba(11, 91, 28, 0.18);
    border-radius: 1.1rem;
    padding: 1.3rem;
    background: linear-gradient(145deg, #f5fbf7, #ffffff);
    box-shadow: 0 10px 30px rgba(11, 91, 28, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.product-cross-grid article::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(11, 143, 77, 0.08), transparent 45%),
        radial-gradient(circle at 90% 0%, rgba(11, 91, 28, 0.06), transparent 40%);
    pointer-events: none;
}

.product-cross-grid h2 {
    color: #0b5b1c;
}

.product-cross-grid .product-eyebrow {
    color: #0b5b1c;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.product-cross-grid .btn-ghost {
    color: #0b5b1c;
    border-color: #0b5b1c;
    background: rgba(11, 91, 28, 0.06);
    align-self: flex-start;
    margin-top: auto;
}

.product-cross-grid .btn-ghost:hover {
    background: #0b5b1c;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(11, 91, 28, 0.2);
}

@media (max-width: 1024px) {
    .product-hero {
        grid-template-columns: 1fr;
    }

    .product-story {
        grid-template-columns: 1fr;
    }

    .product-badges {
        grid-template-columns: 1fr;
    }

    .product-secondary-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .product-gallery-nav {
        display: none;
    }

    .product-gallery-main figure {
        padding: 1rem;
    }
}

.page-header--hover-zoom {
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    border-radius: 0.8rem;
}

.page-header--hover-zoom:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    background: #f7f7f7;
}

.cart-hero {
    margin-bottom: 2.2rem;
}

.cart-progress {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 0.9rem;
    position: relative;
    padding: 0.4rem 0;
    isolation: isolate;
}

.cart-progress::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0.5rem;
    right: 0.5rem;
    height: 2px;
    background: linear-gradient(90deg, #f0f0f0 0%, #dcdcdc 100%);
    z-index: 0;
    transform: translateY(-50%);
}

.cart-progress-step {
    border: 1px solid #e2e2e2;
    border-radius: 1.5rem;
    padding: 1.2rem 1.4rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    text-align: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(5, 5, 5, 0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease,
        transform 0.2s ease;
    position: relative;
    z-index: 1;
    min-width: 0;
}

.cart-progress-step::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(120deg, rgba(5, 5, 5, 0.05), rgba(0, 0, 0, 0))
        border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.cart-progress-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(5, 5, 5, 0.12);
    border-color: #cacaca;
}

.cart-progress-step.is-active {
    border-color: #050505;
    box-shadow: 0 24px 55px rgba(5, 5, 5, 0.16);
    background: radial-gradient(circle at top left, #fff1df, #ffffff 65%);
}

.cart-progress-index {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    background: #f4f4f4;
    color: #050505;
    padding: 0.35rem 0.6rem;
    border-radius: 0.45rem;
    min-width: 42px;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(5, 5, 5, 0.08);
    transform: translateY(4px);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cart-progress-step.is-active .cart-progress-index {
    background: #050505;
    color: #ffffff;
    box-shadow: none;
    transform: translateY(-2px);
}

.cart-progress-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.05rem;
    color: #000000;
    transition: letter-spacing 0.2s ease, color 0.2s ease;
}

.cart-progress-step.is-active .cart-progress-title {
    letter-spacing: 0.22em;
    color: #050505;
}

.cart-progress-text {
    font-size: 0.85rem;
    color: #555555;
    transition: color 0.2s ease;
    margin: 0;
}

.cart-progress-step.is-active .cart-progress-text {
    color: #111111;
}

.cart-progress-step > div {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    min-width: 0;
}

.cart-board {
    border-radius: 1.6rem;
    border: 1px solid #efefef;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.05);
    padding: 1.6rem 1.5rem;
    margin-bottom: 2.4rem;
}

.cart-board-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 1.6rem;
    align-items: flex-start;
}

.cart-board-main,
.cart-board-summary {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 0;
}

.cart-board-section {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1.8rem;
    margin-bottom: 1.8rem;
}

.cart-board-section--items {
    margin-top: -1.2rem;
    margin-bottom: 0.6rem;
}

.cart-board-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.cart-board-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.cart-board-header--subtle {
    margin-bottom: 0.6rem;
}

.cart-board-summary {
    border-left: 1px solid #f0f0f0;
    padding-left: 2rem;
    align-self: stretch;
    min-width: 0;
}

.cart-board-section--summary {
    position: sticky;
    top: 180px;
    z-index: 5;
    background: #ffffff;
    min-width: 0;
}

.cart-card-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #777777;
    margin-bottom: 0.3rem;
}

.cart-board-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.cart-card-reset {
    border: 1px solid #eeeeee;
    border-radius: 999px;
    background: #f7f7f7;
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #050505;
    cursor: pointer;
    transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease,
        box-shadow 0.16s ease;
}

.cart-card-reset:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f0f0f0;
    color: #999999;
    border-color: #e0e0e0;
    box-shadow: none;
}

.cart-card-reset:disabled:hover {
    background: #f0f0f0;
    color: #999999;
}

.cart-card-reset:hover {
    background: #050505;
    color: #ffffff;
    border-color: #050505;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.cart-board-footer {
    border-top: 1px solid #efefef;
    padding-top: 1.3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.cart-card-footer-info p {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.cart-card-footer-info span,
.cart-card-footer-info a {
    font-size: 0.85rem;
    color: #777777;
}

.cart-card-footer-info a {
    text-decoration: none;
    font-weight: 500;
}

.cart-items {
    display: none;
}

.cart-items.has-items {
    display: block;
    border-top: 1px solid #efefef;
    padding-top: 0.8rem;
}

.cart-item-row {
    display: grid;
    grid-template-columns: 70px minmax(0, 2.4fr) 80px 90px 32px;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-row:last-child {
    border-bottom: none;
}

.cart-item-media {
    width: 70px;
    height: 70px;
    border-radius: 1rem;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item-name {
    font-weight: 500;
}

.cart-item-meta {
    font-size: 0.8rem;
    color: #888888;
}

.cart-item-qty {
    text-align: center;
    font-weight: 500;
}

.cart-qty-controls {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    padding: 0.15rem 0.4rem;
    background: #ffffff;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    background: #f7f7f7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease,
        box-shadow 0.16s ease;
}

.cart-qty-btn:hover {
    background: #050505;
    color: #ffffff;
    border-color: #050505;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.cart-qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f0f0f0;
    border-color: #e5e5e5;
    color: #999999;
    box-shadow: none;
}

.cart-qty-value {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
}

.cart-item-price {
    text-align: right;
    font-weight: 600;
}

.cart-item-remove {
    border: none;
    background: transparent;
    color: #bbbbbb;
    font-size: 1.1rem;
    cursor: pointer;
    transition: color 0.16s ease, transform 0.16s ease;
}

.cart-item-remove:hover {
    color: #050505;
    transform: translateY(-1px);
}

.cart-empty-card {
    border-radius: 1.2rem;
    border: 1px dashed #dddddd;
    padding: 2rem 2.1rem;
    background: #fdfdfd;
    margin-top: 0.6rem;
}

.cart-upsell-section {
    margin: 3rem auto 0;
    padding: 0 1.5rem 3rem;
}

.cart-upsell-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.cart-upsell-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.cart-upsell-header .cart-card-kicker {
    display: block;
    margin-bottom: 0.4rem;
}

.cart-upsell-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
    justify-items: stretch;
    min-width: 0;
}

.cart-upsell-card {
    border: 1px solid #ececec;
    border-radius: 1.6rem;
    padding: 1.8rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.08);
    max-width: 360px;
    width: 100%;
    min-height: 520px;
    min-width: 0;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cart-upsell-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.1);
}

.cart-upsell-media {
    width: 100%;
    height: 240px;
    border-radius: 1.2rem;
    overflow: hidden;
    background: #f6f6f6;
}

.cart-upsell-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-upsell-card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.cart-upsell-card p {
    margin: 0;
    font-size: 0.95rem;
    color: #555555;
}

.cart-upsell-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
}

.cart-upsell-rating {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    align-items: center;
}

.cart-upsell-stars {
    font-size: 1.1rem;
    letter-spacing: 0.2rem;
    color: #ffb347;
}

.cart-upsell-rating-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #050505;
    font-weight: 600;
}

.cart-social-proof {
    margin: 3.8rem auto 0;
    padding: 0 1.2rem 3.6rem;
}

.cart-social-proof-wrapper {
    max-width: 1160px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 2.75rem);
    border-radius: 2rem;
    border: 1px solid rgba(11, 91, 28, 0.12);
    background:
        radial-gradient(circle at top left, rgba(92, 182, 138, 0.14), transparent 28%),
        linear-gradient(180deg, #fbfdfb 0%, #ffffff 58%, #f7fbf8 100%);
    box-shadow: 0 22px 60px rgba(11, 91, 28, 0.08);
    position: relative;
    overflow: hidden;
}

.cart-social-proof-wrapper::before {
    content: "";
    position: absolute;
    inset: 1rem;
    border-radius: 1.5rem;
    border: 1px dashed rgba(92, 182, 138, 0.18);
    pointer-events: none;
    box-shadow: inset 0 0 34px rgba(11, 91, 28, 0.03);
}

.cart-social-proof-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.4rem;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 1;
}

.cart-social-proof-copy {
    max-width: 640px;
}

.cart-social-proof-copy h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.03;
    letter-spacing: -0.05em;
    margin-bottom: 0.7rem;
}

.cart-social-proof-copy p:last-child {
    color: #525252;
    max-width: 54ch;
}

.cart-social-proof-link {
    flex-shrink: 0;
}

.cart-social-proof-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.35rem;
    position: relative;
    z-index: 1;
}

.cart-social-proof-stars {
    letter-spacing: 0.14em;
    color: #f1a73b;
    font-size: 1rem;
}

.cart-social-stat {
    min-height: 124px;
    padding: 1.15rem 1.1rem;
    border-radius: 1.2rem;
    border: 1px solid rgba(11, 91, 28, 0.1);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 12px 28px rgba(11, 91, 28, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.7rem;
}

.cart-social-stat-value {
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 700;
    color: #0b5b1c;
}

.cart-social-stat-label {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #5a5a5a;
}

.cart-social-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.cart-social-proof-card {
    display: block;
    border-radius: 1.5rem;
    border: 1px solid rgba(11, 91, 28, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #f9fcfa 100%);
    padding: 1.45rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 100%;
    box-shadow: 0 14px 34px rgba(11, 91, 28, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.cart-social-proof-card::after {
    content: "“";
    position: absolute;
    top: 1rem;
    right: 1.1rem;
    font-size: 3rem;
    color: rgba(5, 5, 5, 0.06);
    font-family: "Georgia", serif;
    line-height: 1;
    z-index: 0;
}

.cart-social-proof-card > * {
    position: relative;
    z-index: 1;
}

.cart-social-proof-card-head {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.cart-social-proof-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: #ffffff;
    border: 1px solid rgba(25, 179, 107, 0.45);
    color: #137d4a;
    font-size: 0.85rem;
}

.cart-social-proof-card-head strong {
    display: block;
    font-size: 1rem;
    color: inherit;
}

.cart-social-proof-card-head > div {
    flex: 1;
}

.cart-social-proof-card-head > div span {
    display: block;
    font-size: 0.85rem;
    color: #777777;
    line-height: 1.35;
}

.cart-social-proof-card-head .cart-social-proof-stars {
    flex-shrink: 0;
    letter-spacing: 0.08em;
    font-size: 0.88rem;
}

.cart-social-proof-quote {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2d2d2d;
}

.cart-social-proof-meta {
    margin-top: auto;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #1b6c44;
}

.cart-social-proof-card:hover,
.cart-social-proof-card:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(11, 91, 28, 0.1);
    border-color: rgba(11, 91, 28, 0.2);
    outline: none;
}

.reviews-hub {
    padding-bottom: 3rem;
}

.reviews-page-summary {
    margin: 0 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.reviews-page-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.reviews-page-cta {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.4rem;
}

.reviews-form-shell {
    margin-bottom: 1.4rem;
}

.reviews-form {
    display: grid;
    gap: 1rem;
}

.reviews-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.reviews-form-field {
    display: grid;
    gap: 0.45rem;
}

.reviews-form-field span,
.reviews-form-rating legend {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111111;
}

.reviews-form-field input,
.reviews-form-field textarea {
    width: 100%;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 14px;
    background: #ffffff;
    padding: 0.9rem 1rem;
    font: inherit;
    color: #111111;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.reviews-form-field textarea {
    resize: vertical;
    min-height: 140px;
}

.reviews-form-field input:focus,
.reviews-form-field textarea:focus {
    outline: 2px solid rgba(92, 182, 138, 0.22);
    border-color: rgba(92, 182, 138, 0.5);
}

.reviews-form-rating {
    border: 0;
    padding: 0;
    margin: 0;
}

.reviews-form-stars {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 0.7rem;
}

.reviews-form-stars label {
    position: relative;
    cursor: pointer;
}

.reviews-form-stars input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.reviews-form-stars span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    padding: 0.75rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    background: #ffffff;
    color: #222222;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.reviews-form-stars input:checked + span,
.reviews-form-stars label:hover span {
    border-color: rgba(92, 182, 138, 0.42);
    background: rgba(92, 182, 138, 0.12);
    box-shadow: 0 10px 24px rgba(11, 91, 28, 0.08);
    transform: translateY(-1px);
}

.reviews-form-feedback {
    min-height: 1.4rem;
    font-size: 0.92rem;
    color: #4f4f4f;
}

.reviews-form-feedback.is-error {
    color: #b42318;
}

.reviews-form-feedback.is-success {
    color: #137d4a;
}

.reviews-page-grid .cart-social-proof-card {
    min-height: 240px;
}

.reviews-page-note {
    margin-top: 1.5rem;
    color: #666666;
    font-size: 0.92rem;
}

@media (max-width: 720px) {
    .cart-social-proof-wrapper {
        padding: 1.8rem;
    }

    .cart-social-proof-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .cart-social-proof-stats,
    .cart-social-proof-grid,
    .reviews-page-summary,
    .reviews-page-grid,
    .reviews-form-grid {
        grid-template-columns: 1fr;
    }

    .cart-social-proof-card::after {
        display: none;
    }
}

.delivery-popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 999;
}

.delivery-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.delivery-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.5);
    backdrop-filter: blur(6px);
}

.delivery-popup-card {
    position: relative;
    width: min(620px, 92vw);
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 1.6rem;
    padding: 2.4rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1;
    scrollbar-width: none;
}

.delivery-popup-card::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.delivery-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    cursor: pointer;
}

.delivery-popup-kicker {
    font-size: 0.85rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #8a8a8a;
    margin: 0;
}

.delivery-popup-card h2 {
    margin: 0;
    font-size: 1.45rem;
}

.delivery-popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.delivery-popup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.9rem;
}

.delivery-popup-field {
    display: flex;
    flex-direction: column;
    gap: 1rem 2.5rem;
}

.delivery-popup-field label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.delivery-popup-field input {
    border: 1px solid #dddddd;
    border-radius: 0.8rem;
    padding: 0.7rem 0.9rem;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #ffffff;
    color: #050505;
}

.delivery-popup-field input:focus {
    border-color: #050505;
    box-shadow: 0 0 0 3px rgba(5, 5, 5, 0.08);
    outline: none;
}

.delivery-popup-field.has-error input {
    border-color: #e53935;
    background: #fff7f7;
}

.delivery-popup-error {
    font-size: 0.78rem;
    color: #e53935;
    min-height: 1em;
}

.delivery-popup-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.delivery-popup-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 640px) {
    .delivery-popup-card {
        padding: 1.6rem;
    }

    .delivery-popup-actions {
        flex-direction: column;
    }
}

.cart-upsell-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.cart-upsell-price {
    font-size: 1.1rem;
    font-weight: 600;
}

.cart-empty-card h2 {
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.9rem;
}

.cart-empty-card p {
    color: #555555;
    margin-bottom: 1.3rem;
}

.cart-empty-card .btn {
    margin-right: 0;
}

.cart-empty-secondary {
    margin-top: 0.4rem;
}

.cart-empty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.cart-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.cart-highlight-item {
    border-radius: 1.1rem;
    padding: 1.1rem 1.2rem;
    background: #f5f5f5;
}

.cart-highlight-item h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.4rem;
}

.cart-highlight-item p {
    font-size: 0.85rem;
    color: #666666;
}


.cart-board-section--summary h2 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.cart-summary-line,
.cart-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.7rem;
}

.cart-summary-line--discount span:last-child {
    color: #0a8a4b;
    font-weight: 600;
}

.cart-summary-line--discount[hidden] {
    display: none;
}

.cart-summary-promo {
    margin: 1rem 0 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.1rem;
    border: 1px solid #efefef;
    border-radius: 1.1rem;
    background: #fafafa;
    min-width: 0;
}

.cart-summary-promo label {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #555555;
}

.cart-summary-promo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    align-items: center;
    min-width: 0;
}

.cart-summary-promo-row input {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px #dddddd;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.cart-summary-promo-row input:focus {
    border-color: #050505;
    box-shadow: inset 0 0 0 1px #050505;
    outline: none;
}

.cart-summary-promo-row .cart-promo-apply {
    border: none;
    border-radius: 999px;
    padding: 0.85rem 1.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    font-weight: 600;
    background: #e0e0e0;
    color: #050505;
    box-shadow: none;
    flex-shrink: 0;
    max-width: 100%;
}

.cart-summary-promo-row .cart-promo-apply:hover {
    background: #050505;
    color: #ffffff;
}

.cart-summary-promo-feedback {
    font-size: 0.8rem;
    min-height: 1rem;
    color: #0a8a4b;
}

.cart-summary-promo-feedback.is-error {
    color: #e53935;
}

.cart-promo-reset {
    align-self: flex-start;
    border: none;
    background: transparent;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    color: #777777;
}

.cart-promo-reset[hidden] {
    display: none;
}

.cart-summary-emotion {
    margin: 1rem 0 0.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #050505;
    text-align: center;
    overflow-wrap: anywhere;
}

.cart-summary-trust {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #777777;
    margin: 0 0 1rem;
    text-align: center;
}


.cart-summary-line--muted span:last-child {
    font-size: 0.8rem;
    color: #888888;
}

.cart-summary-total {
    margin-top: 0.6rem;
    padding-top: 0.7rem;
    border-top: 1px solid #eeeeee;
    font-weight: 600;
}

.cart-summary-btn {
    margin-top: 1.2rem;
    width: 100%;
    border-radius: 999px;
    padding: 0.95rem 1.2rem;
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.cart-summary-note {
    font-size: 0.85rem;
    color: #777777;
    margin-top: 0.8rem;
}

.cart-summary-shipping {
    margin: 1rem 0;
    padding: 0.9rem 1rem;
    border: 1px dashed #e5e5e5;
    border-radius: 0.9rem;
    background: #fafafa;
    font-size: 0.85rem;
    color: #555555;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.cart-summary-checklist {
    margin-top: 1.6rem;
    padding-top: 1.1rem;
    border-top: 1px solid #efefef;
}

.cart-summary-back {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.6rem;
    border-width: 1px;
    padding: 0.6rem 1.4rem;
    border-radius: 1rem;
    background: transparent;
    color: rgba(5, 5, 5, 0.6);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
}

.cart-summary-back:hover {
    background: rgba(5, 5, 5, 0.08);
    color: #050505;
}

.cart-payment-logos {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin: 0.9rem 0 0.4rem;
    align-items: center;
}

.cart-payment-logos img {
    height: 22px;
    width: auto;
    filter: saturate(0.9);
}

.cart-checklist-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.9rem;
}

.cart-summary-checklist ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #444444;
}

.cart-summary-checklist li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 0.4rem;
    align-items: flex-start;
}

.cart-summary-checklist li span {
    font-weight: 600;
}

.cart-perks {
    margin-top: 1.4rem;
}
.cart-perks--inline {
    margin-top: 0.8rem;
}
.cart-perks--inline {
    margin-top: 0.8rem;
}

.cart-perks-wrapper {
    border: 1px solid #eeeeee;
    border-radius: 1.2rem;
    padding: 1.4rem 1.5rem;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cart-perks-wrapper:hover {
    border-color: #050505;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}
.cart-perks-message {
    font-size: 0.85rem;
    color: #444444;
    margin-bottom: 1rem;
}

.cart-perks-steps {
    margin-top: 1rem;
}

.cart-perk-progress {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.cart-perk-progress-bar {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: #e5e7ef;
    overflow: hidden;
}

.cart-perk-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #ffb347 0%, #ff5b5b 100%);
    transition: width 0.25s ease;
}

.cart-perk-progress-markers {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.cart-perk-marker {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.65rem;
    flex: 1 1 0;
    padding: 0.35rem 0.4rem;
    border-radius: 1rem;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-perk-dot {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #f0f2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #555555;
    transition: background 0.25s ease, color 0.25s ease;
}

.cart-perk-marker-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.cart-perk-main {
    font-size: 0.9rem;
}

.cart-perk-main strong {
    font-weight: 600;
}

.cart-perk-kicker {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #8a8a8a;
}

.cart-perk-marker.is-unlocked .cart-perk-dot {
    background: #0a8a4b;
    color: #ffffff;
}

.cart-perk-marker.is-next .cart-perk-dot {
    background: #050505;
    color: #ffffff;
}

.cart-perk-marker:hover {
    background: rgba(5, 5, 5, 0.06);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.cart-perks-others {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px dashed #ececec;
    font-size: 0.85rem;
    color: #777777;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

@media (max-width: 900px) {
    .cart-board-columns {
        grid-template-columns: 1fr;
    }

    .cart-board-summary {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #f0f0f0;
        padding-top: 1.8rem;
    }

    .cart-board-section--summary {
        position: static;
        z-index: auto;
    }

    .cart-progress {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 640px) {
    .page-main {
        padding: 2.25rem 4vw 2rem;
    }

    .cart-board {
        padding: 1.4rem 1rem;
    }

    .cart-progress {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .cart-progress::before {
        display: none;
    }

    .cart-progress-step {
        justify-content: flex-start;
        align-items: center;
        text-align: left;
        padding: 1rem;
    }

    .cart-progress-step > div {
        align-items: flex-start;
        flex: 1;
    }

    .cart-progress-title {
        font-size: 0.78rem;
        letter-spacing: 0.14em;
        overflow-wrap: anywhere;
    }

    .cart-progress-step.is-active .cart-progress-title {
        letter-spacing: 0.16em;
    }

    .cart-progress-text {
        font-size: 0.8rem;
        overflow-wrap: anywhere;
    }

    .cart-board-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-card-reset {
        width: 100%;
        justify-content: center;
        text-align: center;
        white-space: normal;
    }

    .cart-board-footer {
        grid-template-columns: 1fr;
    }

    .cart-board-summary,
    .cart-board-section--summary,
    .cart-summary-promo,
    .cart-summary-promo-row {
        width: 100%;
        max-width: 100%;
    }

    .cart-summary-line,
    .cart-summary-total {
        gap: 0.75rem;
    }

    .cart-summary-line span,
    .cart-summary-total span {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .cart-summary-promo-row input,
    .cart-summary-promo-row .cart-promo-apply,
    .cart-summary-btn,
    .cart-summary-back {
        width: 100%;
        max-width: 100%;
    }

    .cart-summary-promo-row .cart-promo-apply {
        flex-shrink: 1;
    }

    .cart-item-row {
        grid-template-columns: 70px minmax(0, 1fr) auto;
        gap: 0.75rem;
    }

    .cart-item-row > :nth-child(2) {
        min-width: 0;
    }

    .cart-item-qty {
        grid-column: 2 / 3;
        justify-self: start;
        text-align: left;
    }

    .cart-item-price {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
        align-self: start;
    }

    .cart-item-remove {
        grid-column: 3 / 4;
        grid-row: 2 / 3;
        justify-self: end;
        align-self: center;
    }

    .cart-upsell-section {
        margin-top: 2.4rem;
        padding: 0 4vw 2.4rem;
    }

    .cart-upsell-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .cart-upsell-card {
        max-width: none;
        min-height: 0;
        padding: 1.2rem;
    }

    .cart-upsell-media {
        height: 190px;
    }

    .cart-upsell-card h3,
    .cart-upsell-card p,
    .cart-upsell-price {
        overflow-wrap: anywhere;
    }
}

.ia-hero-header {
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    border-radius: 0.8rem;
}

.ia-hero-header:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    background: #f7f7f7;
}

.story-section h2 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.story-section p {
    color: #555555;
}

.history-page {
    padding: 0 7vw 5rem;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.history-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: #5cb68a;
    margin-bottom: 0.9rem;
}

.history-page h2 {
    margin-bottom: 1.2rem;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    position: relative;
    padding-bottom: 0.5rem;
}

.history-page h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #5cb68a, #e5a36f);
    border-radius: 999px;
}

.history-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 2vw, 2.2rem);
    padding: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    margin-top: clamp(0.4rem, 3vw, 1.2rem);
}

.history-hero::before,
.history-hero::after {
    content: none;
}


.history-hero-text,
.history-hero-media {
    position: relative;
    z-index: 1;
}

.history-hero-media {
    position: relative;
    width: 90%;
    max-width: 620px;
    margin: 0 auto;
    padding: clamp(0.6rem, 1.2vw, 1.4rem);
    background: linear-gradient(135deg, #f7fff9 0%, #ffffff 80%);
    border: 1px solid #e1f3e8;
    border-radius: 1.8rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08), 0 10px 30px rgba(92, 182, 138, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.history-hero-media:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.12), 0 14px 36px rgba(92, 182, 138, 0.12);
}

.history-hero-text {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    transition: none;
    max-width: 620px;
    margin: 0 auto clamp(0.8rem, 2vw, 1.6rem);
    text-align: center;
    align-self: center;
}

.history-hero-text:hover {
    transform: none;
    box-shadow: none;
}

.history-hero-line {
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgba(92, 182, 138, 0.7), rgba(229, 163, 111, 0.7));
    margin: 0 auto 1.2rem auto;
}

.history-hero-media img {
    width: 100%;
    border-radius: 1.4rem;
    object-fit: cover;
    box-shadow: none;
    margin-top: 0;
    transition: none;
    filter: contrast(1.03) grayscale(1);
}

.history-hud {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.history-hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1.8rem;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.25), transparent 45%);
    transition: opacity 0.3s ease;
    opacity: 0.4;
}

.history-hero-media:hover::before {
    opacity: 0.6;
}

.hud-tag {
    position: absolute;
    background: rgba(31, 34, 54, 0.5);
    color: #f4f7fb;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 0.65rem 1rem;
    font-size: 0.76rem;
    min-width: 140px;
    backdrop-filter: blur(14px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
    opacity: 0.75;
    animation: hudPulse 4s ease-in-out infinite;
}

.hud-tag:hover {
    opacity: 1;
}

.hud-tag--one {
    top: 4%;
    right: 12%;
}

.hud-tag--two {
    top: 4%;
    left: 20%;
}

.hud-title {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.62rem;
    margin-bottom: 0.2rem;
    color: rgba(255, 255, 255, 0.85);
}

.hud-text {
    margin: 0;
    font-size: 0.78rem;
}

.hud-line {
    position: absolute;
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.35);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.2));
}

.hud-tag--one .hud-line {
    top: 100%;
    left: 12px;
    right: auto;
    height: 95px;
}

.hud-tag--two .hud-line {
    top: 100%;
    right: 12px;
    left: auto;
    height: 85px;
}

[data-animate="hero-text"],
[data-animate="hero-media"] {
    opacity: 0;
}

[data-animate="hero-text"] {
    animation: heroSlideLeft 0.85s ease forwards;
}

[data-animate="hero-media"] {
    animation: heroSlideRight 0.85s ease forwards 0.1s;
}

@keyframes heroSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroSlideRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hudPulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.history-hero-media:hover .hud-tag {
    opacity: 1;
}

.history-lead {
    font-size: 1.1rem;
    color: #333333;
    max-width: 640px;
}

.history-section {
    padding: 0;
    border: none;
    background: transparent;
}

.history-section-content,
.history-section-inner {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    padding: 3rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.history-section-content:hover,
.history-section-inner:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.history-section--founders .history-section-content {
    background: #ffffff;
}

.history-section--renew .history-section-inner {
    background: #ffffff;
}

.history-section--ia .history-section-content {
    background: #e5f3eb;
    border-color: rgba(92, 182, 138, 0.4);
}

.history-section--future .history-section-content {
    background: #ffffff;
}

.history-hero p,
.history-section p {
    color: #333333;
}

.history-timeline {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.history-timeline-item {
    flex: 1 1 160px;
    border-left: 3px solid #5cb68a;
    padding-left: 1rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.history-timeline-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.history-timeline-year {
    font-weight: 700;
    color: #111111;
}

.history-highlight-card {
    background: #ffffff;
    border-radius: 1.4rem;
    padding: 2.5rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    text-align: center;
    font-size: 0.95rem;
    color: #333333;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.history-highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.history-highlight-card span {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: #5cb68a;
}

.history-ia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.history-ia-grid article {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1.2rem;
    padding: 1.2rem;
    border: 1px solid rgba(17, 17, 17, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.history-ia-grid article:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
}

.history-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.history-section--future .btn-ghost {
    border-color: #111111;
}

@media (max-width: 900px) {
    .history-hero {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .history-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 640px) {
    .history-page {
        padding: 2rem 1.5rem 4rem;
    }

    .history-hero-media img {
        margin-top: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-animate="hero-text"],
    [data-animate="hero-media"],
    .hud-tag {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .history-hero-media img {
        transition: none;
    }
}

.story-section--with-bio > p:nth-of-type(-n+2) {
    display: none;
}

.story-section--with-bio > h2:first-of-type {
    display: none !important;
}

.account-section {
    max-width: 820px;
    margin: 0 7vw;
}

.account-form {
    margin-top: 1rem;
    padding: 1.8rem 2rem;
    border-radius: 1.2rem;
    border: 1px solid #efefef;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.account-alert {
    border-radius: 1rem;
    padding: 1rem 1.4rem;
    margin-bottom: 1.2rem;
    border: 1px solid transparent;
    font-size: 0.9rem;
    line-height: 1.4;
}

.account-alert ul {
    margin: 0.4rem 0 0;
    padding-left: 1.2rem;
}

.account-alert--error {
    border-color: #f7c4c7;
    background: #fff6f6;
    color: #8c1c1c;
}

.account-alert--success {
    border-color: #a9e2c0;
    background: #f3fff8;
    color: #105833;
}

.account-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 1.2rem;
}

.account-form-row label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    color: #777777;
}

.account-input {
    width: 100%;
    border-radius: 999px;
    border: 1px solid #dddddd;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    background: #ffffff;
}

.account-input:focus {
    border-color: #050505;
    box-shadow: inset 0 0 0 1px #050505;
    outline: none;
}

.account-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: #555555;
}

.account-checkbox input {
    margin-top: 0.2rem;
}

.account-submit {
    margin-top: 0.4rem;
}

.account-forgot-hint {
    font-size: 0.8rem;
    color: #777777;
}

.account-forgot-hint a {
    color: inherit;
    text-decoration: underline;
}

.account-login-hint {
    font-size: 0.85rem;
    color: #555555;
}

.account-login-hint a {
    text-decoration: underline;
}

.verification-section {
    max-width: 620px;
    margin: 0 7vw;
    padding: 1.8rem 2rem;
    border-radius: 1.2rem;
    border: 1px solid #efefef;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.verification-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.verification-field {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #777777;
    gap: 0.3rem;
}

.verification-field input {
    border-radius: 999px;
    border: 1px solid #dddddd;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    background: #ffffff;
}

.verification-hint {
    font-size: 0.85rem;
    color: #555555;
}

.verification-submit {
    align-self: flex-start;
}

.verification-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #f8faf9;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    position: relative;
    overflow: hidden;
    padding: 2rem 1rem;
}

.verification-body::before,
.verification-body::after {
    content: "";
    position: absolute;
    top: 8%;
    bottom: 8%;
    width: 28%;
    max-width: 260px;
    border-radius: 45%;
    background: radial-gradient(circle at center, rgba(23, 156, 92, 0.22), rgba(23, 156, 92, 0));
    filter: blur(10px);
    animation: verificationGlow 6s ease-in-out infinite;
    pointer-events: none;
}

.verification-body::before {
    left: -8%;
}

.verification-body::after {
    right: -8%;
    animation-delay: 1.5s;
}

@keyframes verificationGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.55;
    }
    50% {
        transform: scale(1.08);
        opacity: 0.85;
    }
}

.verification-result {
    width: min(360px, 90vw);
    margin: 1.5rem;
    padding: 1rem 1.2rem;
    border-radius: 1rem;
    border: 1px solid #dff4e8;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    flex: 0 0 auto;
}

.verification-success {
    color: #0b5b1c;
}

.verification-error {
    color: #a02f2f;
}

.verification-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.2rem;
}

.verification-actions a {
    color: #050505;
    text-decoration: none;
}

.verification-actions .btn-primary {
    background: #050505;
    color: #ffffff;
    border-color: #050505;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.verification-actions .btn-primary:hover {
    background: #050505;
    color: #ffffff;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.25);
}

.dashboard-main {
    margin: 0 7vw 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.dashboard-card {
    border: 1px solid #efefef;
    border-radius: 1rem;
    padding: 1.6rem;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.05);
}

.dashboard-card h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.4rem;
}

.dashboard-points {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0.4rem 0;
    color: #0b5b1c;
}

.dashboard-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.dashboard-history h2,
.dashboard-info h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.6rem;
}

.dashboard-table-wrapper {
    overflow-x: auto;
    border-radius: 1rem;
    border: 1px solid #efefef;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table th,
.dashboard-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
    font-size: 0.9rem;
}

.dashboard-table th {
    background: #fafafa;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: #777777;
}

.dashboard-hint {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    color: #555555;
}

.dashboard-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.loyalty-page {
    padding: 4rem 7vw 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.loyalty-page section {
    width: min(960px, 100%);
}

.loyalty-hero {
    text-align: center;
    background: #ffffff;
    border: 1px solid #efefef;
    border-radius: 1.8rem;
    padding: clamp(1.8rem, 4vw, 3rem);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
}

.loyalty-lead {
    color: #444444;
    max-width: 640px;
    margin: 0.8rem auto 0;
}

.loyalty-hero-actions {
    margin: 1.4rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.loyalty-hero-cards {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.loyalty-hero-cards article {
    border-radius: 1.2rem;
    border: 1px solid #e8e8e8;
    padding: 1.2rem 1rem;
    background: linear-gradient(135deg, #ffffff, #f7fbf7);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.metric-hint {
    font-size: 0.85rem;
    color: #555555;
}

.loyalty-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.75rem;
    color: #0b5b1c;
}

.loyalty-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
}

.loyalty-info-card {
    border: 1px solid #efefef;
    border-radius: 1.3rem;
    padding: 1.8rem;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.loyalty-info-card h2 {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 1rem;
}

.loyalty-info-card ul,
.loyalty-info-card ol {
    margin: 0;
    padding-left: 1.3rem;
    color: #444444;
}

.loyalty-info-card--accent {
    border-color: rgba(22, 133, 82, 0.4);
    background: linear-gradient(135deg, #f7fff9, #ffffff);
}

.loyalty-stats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem 2.5rem;
}

.loyalty-hint {
    font-size: 0.85rem;
    color: #666666;
    margin-top: 0.6rem;
}

.loyalty-dashboard {
    border: 1px solid #efefef;
    border-radius: 1.6rem;
    padding: 2.4rem clamp(1.5rem, 4vw, 2.8rem);
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.05);
}

.loyalty-dashboard header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.loyalty-dashboard-grid {
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
}

.dashboard-summary,
.dashboard-history {
    border: 1px solid #f0f0f0;
    border-radius: 1.2rem;
    background: #fafafa;
    padding: 1.6rem;
    box-shadow: inset 0 0 0 1px rgba(5, 5, 5, 0.03);
}

.summary-stats {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.summary-stats li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
}

.summary-stats span {
    color: #666666;
}

.summary-stats strong {
    font-size: 1rem;
}

.loyalty-progress {
    margin-top: 1rem;
}

.loyalty-progress-bar {
    height: 10px;
    border-radius: 999px;
    background: #e9ece7;
    overflow: hidden;
}

.loyalty-progress-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #0b5b1c, #1aaa56);
    border-radius: inherit;
}

.dashboard-history ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.dashboard-history li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.loyalty-dashboard-actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
}

@media (max-width: 768px) {
    .account-section {
        margin: 0 1.5rem;
    }

    .account-form {
        padding: 1.4rem 1.2rem;
    }

    .account-form-grid {
        grid-template-columns: 1fr;
    }
}

.story-bio-block {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.story-bio-block h2 {
    display: block;
}

.founders-bio {
    margin: 4rem 7vw 0;
    padding: 2.4rem 2.6rem;
    border-radius: 1.5rem;
    background: #f7f7f7;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.founders-bio::before {
    content: "Nous, Jérémie et Joachim Fy";
    display: block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.75rem;
}

.founders-bio h2 {
    display: none;
}

.founders-bio p {
    color: #555555;
}

.founders-bio::before {
    content: none;
    display: none;
}

.founders-bio h2 {
    display: block;
}

.founders-bio:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.10);
    background: #f0f0f0;
}

.page-ia .founders-bio {
    display: none;
}
.ia-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1.4rem, 4vw, 2.4rem);
    margin-bottom: 2.8rem;
    align-items: stretch;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
    margin-top: 2.4rem;
}

  .blog-card {
      border: 1px solid #e5e5e5;
      padding: 1.8rem 1.6rem;
      background: #ffffff;
      border-radius: 1rem;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
      transition: transform 0.16s ease, box-shadow 0.16s ease;
      display: flex;
      flex-direction: column;
  }

  .blog-card.is-hidden {
      display: none;
  }

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.blog-card h2 {
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.6rem;
}

.blog-card p {
    color: #555555;
    margin-bottom: 1rem;
}

  .blog-card .link {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      border-bottom: 1px solid #050505;
      padding-bottom: 0.1rem;
  }

  .blog-hero {
      margin-bottom: 2.5rem;
  }

  .blog-hero-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #8a8a8a;
      margin-bottom: 0.8rem;
  }

  .blog-hero-cta {
      margin-top: 1.6rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
  }

  .blog-filters {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 2rem;
  }

  .blog-filters-label {
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #8a8a8a;
  }

  .blog-filters-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
  }

  .blog-tag {
      padding: 0.35rem 0.9rem;
      border-radius: 999px;
      border: 1px solid #e0e0e0;
      background: #ffffff;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      cursor: pointer;
      transition: background 0.16s ease, color 0.16s ease,
          border-color 0.16s ease, transform 0.12s ease, box-shadow 0.16s ease;
  }

  .blog-tag.is-active,
  .blog-tag:hover {
      background: #050505;
      color: #ffffff;
      border-color: #050505;
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .blog-card-meta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem 2.5rem;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #8a8a8a;
      margin-bottom: 0.6rem;
  }

  .blog-card-tag {
      padding: 0.1rem 0.45rem;
      border-radius: 999px;
      border: 1px solid #dedede;
      font-size: 0.7rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #050505;
      background: #f5f5f5;
  }

  .blog-card-excerpt {
      color: #555555;
      margin-bottom: 1.1rem;
  }

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: auto;
}

  .blog-card-link::after {
      content: "→";
      font-size: 0.9rem;
  }

  .blog-bottom-cta {
      margin: 3.5rem 0 1rem;
      padding: 2.4rem 2.6rem;
      border-radius: 1.4rem;
      border: 1px solid #eeeeee;
      background: #f5f5f5;
      color: #050505;
      text-align: left;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
  }

  .blog-bottom-cta:hover {
      transform: translateY(-4px) scale(1.01);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  }

  .blog-bottom-kicker {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #777777;
      margin-bottom: 0.9rem;
  }

  .blog-bottom-cta h2 {
      font-size: 1.2rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-bottom: 0.9rem;
  }

  .blog-bottom-cta p {
      margin-bottom: 1.3rem;
      color: #555555;
  }

  .blog-bottom-cta-btn {
      margin-top: 0.4rem;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
      transform: translateY(0) scale(1);
      transition: transform 0.18s ease, box-shadow 0.18s ease,
          background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .blog-bottom-cta-btn:hover {
      transform: translateY(-2px) scale(1.04);
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
      background: #ffffff;
      color: #050505;
      border-color: #050505;
  }

  @media (max-width: 1024px) {
      .blog-list {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .seo-pillar-grid,
      .seo-category-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
      }
  }

  @media (max-width: 768px) {
      .blog-hero-card {
          margin: 2rem 0 2.8rem;
      }

      .blog-hero-content {
          max-width: none;
      }

      .blog-hero-content h1 {
          font-size: clamp(1.5rem, 7vw, 1.95rem);
          letter-spacing: 0.12em;
      }

      .blog-filters {
          flex-direction: column;
          align-items: flex-start;
      }

      .blog-list {
          grid-template-columns: 1fr;
          gap: 1.2rem;
          margin-top: 1.8rem;
      }

      .blog-card {
          padding: 1.4rem 1.2rem;
      }

      .blog-card h2 {
          font-size: 0.98rem;
          letter-spacing: 0.12em;
      }

      .blog-card-meta {
          gap: 0.6rem 1rem;
      }

      .blog-bottom-cta {
          margin-top: 2.4rem;
          padding: 1.6rem 1.2rem;
      }

      .blog-bottom-cta h2 {
          font-size: 1.05rem;
          letter-spacing: 0.12em;
      }

      .seo-pillar-grid,
      .seo-category-grid {
          grid-template-columns: 1fr;
      }

      .seo-pillar-intro h2 {
          letter-spacing: 0.1em;
      }
  }

  @media (max-width: 480px) {
      .blog-hero-eyebrow,
      .blog-filters-label,
      .blog-tag,
      .blog-card .link,
      .blog-card-meta,
      .blog-bottom-kicker,
      .blog-bottom-cta h2 {
          letter-spacing: 0.1em;
      }

      .blog-hero-cta {
          flex-direction: column;
          align-items: stretch;
      }

      .blog-hero-cta .btn {
          width: 100%;
          justify-content: center;
      }

      .blog-filters-tags {
          width: 100%;
      }

      .blog-tag {
          flex: 1 1 calc(50% - 0.5rem);
          text-align: center;
      }
  }

  .blog-article {
      max-width: 960px;
      margin: 2.6rem auto 4.5rem;
      padding: 2.6rem 2.8rem;
      background: #ffffff;
      border: 1px solid #e8edf2;
      border-radius: 20px;
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.06);
  }

  .blog-article-header {
      margin-bottom: 2.4rem;
  }

  .blog-article-meta {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: #6c7280;
      margin-bottom: 0.75rem;
  }

  .blog-article-meta span + span::before {
      content: "â€¢";
      margin: 0 0.35rem 0 0.15rem;
      color: #c5cad3;
  }

  .blog-article-header h1 {
      font-size: 2.1rem;
      line-height: 1.18;
      letter-spacing: -0.01em;
      text-transform: none;
      color: #0f172a;
      margin-bottom: 1rem;
  }

  .blog-article-intro {
      font-size: 1.05rem;
      line-height: 1.75;
      color: #2b303b;
  }

  .blog-article-content {
      line-height: 1.75;
      color: #2b303b;
  }

  .blog-article-content h2 {
      font-size: 1.2rem;
      font-weight: 700;
      text-transform: none;
      letter-spacing: 0.02em;
      color: #0f172a;
      margin: 2.2rem 0 1rem;
      padding-bottom: 0.55rem;
      border-bottom: 1px solid #edf0f4;
  }

  .blog-article-content p {
      margin-bottom: 1.2rem;
  }

  .blog-article-content ul {
      margin: 0 0 1.8rem 0;
      padding-left: 1.3rem;
      display: grid;
      gap: 0.55rem;
      list-style: disc;
  }

  .blog-article-content li {
      margin: 0;
      color: #1f2530;
  }

  .blog-article-cta {
      margin-top: 2.8rem;
      padding: 1.6rem 1.8rem;
      border-radius: 16px;
      border: 1px solid #dfe9f6;
      background: linear-gradient(135deg, #f8fbff, #f3f7ff);
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
      justify-content: space-between;
  }

  .blog-article-cta-text {
      font-size: 1rem;
      color: #1f2530;
      max-width: 480px;
      line-height: 1.6;
  }

  @media (max-width: 768px) {
      .blog-article {
          margin: 2rem 1rem 3.5rem;
          padding: 1.6rem 1.4rem;
      }

      .blog-article-header h1 {
          font-size: 1.75rem;
      }

      .blog-article-content h2 {
          font-size: 1.05rem;
          margin: 1.6rem 0 0.8rem;
      }

      .blog-article-cta {
          padding: 1.2rem 1.25rem;
      }
  }
.site-footer {
    padding: 3rem 7vw 2rem;
    margin-bottom: 0;
    font-size: 0.85rem;
    color: #050505;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.footer-main,
.footer-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5rem;
    margin-bottom: 3rem;
}

.footer-newsletter {
    max-width: 420px;
}

.footer-logo img {
    height: 72px;
    width: auto;
    display: block;
    margin-bottom: 1.25rem;
}

.footer-newsletter h2 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 1.1rem;
}

.footer-newsletter p {
    color: #4a4a4a;
    margin-bottom: 1rem;
}

/* compact footer layout */
.footer-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-input {
    flex: 1 1 240px;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(5, 5, 5, 0.18);
    font-size: 0.9rem;
    background: #ffffff;
    color: #050505;
}

.footer-input::placeholder {
    color: rgba(5, 5, 5, 0.5);
}

.footer-form .footer-btn {
    padding: 0.7rem 1.6rem;
}

.footer-note,
.footer-disclaimer {
    font-size: 0.78rem;
    color: rgba(5, 5, 5, 0.6);
    max-width: 380px;
}

.footer-socials {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.75rem;
}

.footer-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(5, 5, 5, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    background: #ffffff;
    color: #050505;
    cursor: pointer;
    transition: background 0.16s ease, color 0.16s ease, transform 0.12s ease,
        box-shadow 0.16s ease, border-color 0.16s ease;
}

.footer-social-btn svg,
.footer-social-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: grayscale(1) brightness(0);
}

.footer-social-btn:hover {
    background: #f0f0f0;
    border-color: rgba(5, 5, 5, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.footer-columns {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
}

.footer-col h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.9rem;
    color: #050505;
}

.footer-col a,
.footer-col p {
    display: block;
    margin-bottom: 0.45rem;
    color: rgba(5, 5, 5, 0.75);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #efefef;
    padding-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.78rem;
    color: rgba(5, 5, 5, 0.68);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom-links a {
    color: rgba(5, 5, 5, 0.6);
    white-space: nowrap;
}

@media (max-width: 640px) {
    .footer-main,
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-newsletter {
        max-width: none;
        width: 100%;
    }

    .footer-columns {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

.home-popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 30;
}

body.has-popup-open {
    overflow: hidden;
}

body.has-mobile-menu-open {
    overflow: hidden;
}

.home-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.home-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
}

.home-popup-panel {
    position: relative;
    width: 100%;
    max-width: 960px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 45px 140px rgba(5, 5, 5, 0.25);
    overflow: hidden;
    z-index: 1;
}

.home-popup-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 420px;
}

.home-popup-visual {
    background-image: url("../img/Barre.jpg");
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
}

.home-popup-content {
    padding: 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.home-popup-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-popup-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #787878;
}

.home-popup-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(5, 5, 5, 0.1);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.home-popup-title {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 0;
}

.home-popup-text {
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.home-popup-separator {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 0.75rem 0;
}

.home-popup-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.home-popup-option {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(5, 5, 5, 0.08);
    background: #f9f9f9;
    align-items: flex-start;
}

.home-popup-option input {
    position: absolute;
    opacity: 0;
}

.home-popup-option-box {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 1px solid rgba(5, 5, 5, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.home-popup-option-text {
    line-height: 1.5;
    color: #333;
}

.home-popup-option-text strong {
    display: block;
    margin-bottom: 0.15rem;
}

.home-popup-option input:checked + .home-popup-option-box {
    background: #050505;
    border-color: #050505;
    color: #fff;
}

.home-popup-option input:checked + .home-popup-option-box::after {
    content: "\2713";
}

.home-popup-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.home-popup-label {
    width: 100%;
    max-width: 360px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b6b6b;
}

.home-popup-form .footer-input,
.home-popup-form .btn {
    width: 100%;
    max-width: 360px;
    height: 48px;
    line-height: 48px;
    border-radius: 999px;
    text-align: center;
    box-sizing: border-box;
}

.home-popup-form .footer-input {
    border: 1px solid rgba(5, 5, 5, 0.2);
    padding: 0 1.2rem;
    font-size: 0.95rem;
    background: #fff;
}

.home-popup-form .footer-input:focus {
    outline: none;
    border-color: #050505;
    box-shadow: 0 0 0 3px rgba(5, 5, 5, 0.08);
}

.home-popup-error {
    min-height: 1.2rem;
    font-size: 0.82rem;
    color: #c0392b;
}

.home-popup-form .btn {
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 900px) {
    .home-popup-panel {
        border-radius: 18px;
    }

    .home-popup-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .home-popup-visual {
        min-height: 200px;
    }
}

@media (max-width: 640px) {
    .home-popup {
        padding: 1.25rem;
    }

    .home-popup-content {
        padding: 1.8rem 1.5rem 2rem;
    }

    .home-popup-form .footer-input,
    .home-popup-form .btn,
    .home-popup-label {
        max-width: 100%;
    }
}

/* Newsletter popup ------------------------------------------------------- */
.newsletter-popup {
    --surface: #0b1020;
    --card: #ffffff;
    --ink: #0c1224;
    --muted: #4a5062;
    --primary: #0f5d37;
    --primary-dark: #0c4a2c;
    --border: rgba(12, 18, 36, 0.08);
    --newsletter-popup-padding: clamp(0.85rem, 4vw, 2.4rem);
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--newsletter-popup-padding);
    z-index: 120;
    font-family: "Space Grotesk", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    background: rgba(8, 10, 20, 0.75);
    backdrop-filter: blur(12px);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.newsletter-popup.is-visible {
    display: flex;
}

.newsletter-popup__backdrop {
    position: absolute;
    inset: 0;
    background: transparent;
}

.newsletter-popup__panel {
    position: relative;
    width: min(960px, 100%);
    max-height: calc(100dvh - (var(--newsletter-popup-padding) * 2));
    margin: auto;
    background: var(--card);
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    box-shadow: 0 30px 120px rgba(0, 0, 0, 0.26);
    transform: translateY(14px);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.newsletter-popup.is-visible .newsletter-popup__panel {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-popup__visual {
    background:
        linear-gradient(160deg, rgba(11, 17, 30, 0.55), rgba(11, 17, 30, 0.1)),
        url("../img/endurance_running_barre.png");
    background-size: cover;
    background-position: center;
    filter: grayscale(20%) contrast(1.05);
    min-height: clamp(320px, 46vw, 520px);
    height: 100%;
}

.newsletter-popup__content {
    padding: clamp(1.4rem, 3vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    justify-content: center;
    color: var(--ink);
    min-width: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.newsletter-popup__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(15, 93, 55, 0.12);
    color: var(--primary);
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0.15rem 0 0.35rem;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    align-self: flex-start;
}

.newsletter-popup__title {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--ink);
}

.newsletter-popup__subtitle {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.5;
}

.newsletter-popup__bonus {
    margin: 0.15rem 0 0.2rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #f1fff7, #e8fff1);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
        "icon badge"
        "text text";
    gap: 0.6rem;
    align-items: center;
}

.newsletter-popup__bonus::before {
    content: "";
    grid-area: icon;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background:
        linear-gradient(135deg, #0f5d37, #1fbf74),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2' d='M5.5 12.5 10 17l8.5-9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover, 60%;
    box-shadow: 0 10px 24px rgba(15, 93, 55, 0.25);
}

.newsletter-popup__bonus strong {
    grid-area: badge;
    justify-self: end;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    color: var(--ink);
    background: #fff;
    border-radius: 999px;
    padding: 0.32rem 0.65rem;
    border: 1px solid var(--border);
}

.newsletter-popup__bonus-text {
    grid-area: text;
    margin: 0;
    color: var(--muted);
    font-weight: 600;
}

.newsletter-popup__form {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 0.2rem;
}

.newsletter-popup__label {
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.newsletter-popup__input {
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 0.9rem 1rem;
    font-size: 1rem;
    background: #f7f8fc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.newsletter-popup__input:focus {
    outline: none;
    border-color: rgba(15, 93, 55, 0.55);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(15, 93, 55, 0.18), 0 12px 26px rgba(0, 0, 0, 0.06);
}

.newsletter-popup__cta {
    width: 100%;
    text-align: center;
    border-radius: 999px;
    border: none;
    background: linear-gradient(120deg, #0f5d37, #1fbf74);
    box-shadow: 0 16px 38px rgba(15, 93, 55, 0.32);
    font-weight: 800;
    color: #ffffff;
    padding: 0.95rem 1.1rem;
    letter-spacing: 0.08em;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.newsletter-popup__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 44px rgba(15, 93, 55, 0.36);
}

.newsletter-popup__cta:active {
    transform: translateY(0);
}

.newsletter-popup__ghost {
    width: 100%;
    text-align: center;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--ink);
    padding: 0.9rem 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.newsletter-popup__ghost:hover {
    border-color: rgba(15, 93, 55, 0.45);
    color: var(--primary);
    transform: translateY(-1px);
}

.newsletter-popup__spam {
    font-size: 0.84rem;
    color: var(--muted);
    margin: 0.25rem 0 0;
    text-align: center;
}

.newsletter-popup__error {
    font-size: 0.86rem;
    color: #c0392b;
    min-height: 1em;
}

.newsletter-popup__success-cta {
    display: none;
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 1rem 1.1rem;
    background: linear-gradient(120deg, #0f5d37, #1fbf74);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(15, 93, 55, 0.3);
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

.newsletter-popup__success-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 46px rgba(15, 93, 55, 0.36);
}

.newsletter-popup__success-cta:active {
    transform: translateY(0);
}

.newsletter-popup--success .newsletter-popup__form,
.newsletter-popup--success .newsletter-popup__bonus,
.newsletter-popup--success .newsletter-popup__ghost,
.newsletter-popup--success .newsletter-popup__cta {
    display: none;
}

.newsletter-popup--success .newsletter-popup__title {
    color: #0f5d37;
}

.newsletter-popup--success .newsletter-popup__success-cta {
    display: inline-flex;
}

.newsletter-popup__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    border: 1px solid rgba(12, 18, 36, 0.12);
    background: #ffffff;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 3;
    line-height: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.newsletter-popup__close:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
    background: #ffffff;
}

body.newsletter-popup-open {
    overflow: hidden;
}

.newsletter-popup .btn:focus-visible,
.newsletter-popup__cta:focus-visible,
.newsletter-popup__success-cta:focus-visible,
.newsletter-popup__ghost:focus-visible,
.newsletter-popup__input:focus-visible {
    outline: 2px solid rgba(15, 93, 55, 0.4);
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .newsletter-popup__panel {
        grid-template-columns: 1fr;
    }
    .newsletter-popup__visual {
        min-height: clamp(180px, 30vh, 260px);
    }
}

@media (max-width: 640px) {
    .newsletter-popup {
        --newsletter-popup-padding: 0.85rem;
    }
    .newsletter-popup__panel {
        border-radius: 14px;
    }
    .newsletter-popup__content {
        padding: 1.3rem 1.1rem 1.5rem;
    }
    .newsletter-popup__title {
        font-size: clamp(1.5rem, 6vw, 1.8rem);
    }
    .newsletter-popup__subtitle {
        font-size: 0.95rem;
    }
    .newsletter-popup__bonus {
        padding: 0.8rem 0.9rem;
    }
    .newsletter-popup__close {
        top: 0.6rem;
        right: 0.6rem;
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 420px) {
    .newsletter-popup__content {
        gap: 0.8rem;
    }
    .newsletter-popup__eyebrow {
        font-size: 0.72rem;
        letter-spacing: 0.1em;
        padding: 0.4rem 0.75rem;
    }
    .newsletter-popup__title {
        font-size: clamp(1.35rem, 8vw, 1.65rem);
    }
    .newsletter-popup__bonus strong {
        justify-self: start;
    }
}

@media (max-height: 820px) {
    .newsletter-popup {
        align-items: flex-start;
    }
    .newsletter-popup__visual {
        min-height: clamp(180px, 26vh, 260px);
    }
}
.history-hero-grid {
    position: relative;
    border-radius: 2.8rem;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 45px 120px rgba(15, 25, 40, 0.18);
}

/* Partners page */
.partners-page {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-bottom: 5rem;
}

.partner-hero {
    background: linear-gradient(135deg, #fff9f3, #f6fbff);
    border-radius: 1.6rem;
    padding: clamp(2rem, 5vw, 3.5rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
}

.partner-hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.partner-hero-content p {
    color: #4a4a4a;
}

.partner-hero-cta {
    margin-top: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.partner-hero-cta .btn {
    align-self: flex-start;
}

.partner-hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.stat-card {
    color: #0f0f0f;
    border-radius: 1.2rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(15, 15, 15, 0.08);
}

.stat-card--apricot {
    background: #fff1e6;
}

.stat-card--mint {
    background: #ecfbf4;
}

.stat-card--lavender {
    background: #f2f1ff;
}

.partner-hero-stats h3 {
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.partner-card {
    border-radius: 1.3rem;
    background: #ffffff;
    padding: 1.8rem;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.partner-card--apricot {
    background: #fff9f4;
}

.partner-card--mint {
    background: #f4fbf8;
}

.partner-card--lavender {
    background: #f7f6ff;
}

.partner-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #050505;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
}

.partner-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #4a4a4a;
}

.partner-card ul li::before {
    content: "• ";
}

.partner-logos {
    text-align: center;
    padding: 2.2rem 1rem;
    border-radius: 1.4rem;
    background: #f8f8f8;
}

.partner-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    justify-content: center;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.partner-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
    gap: 2rem;
    padding: 2.4rem;
    border-radius: 1.5rem;
    background: linear-gradient(120deg, #fff4ee, #fdfbff);
    color: #0f0f0f;
}

.partner-cta-content p {
    color: #0f0f0f;
}

.partner-cta-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.partner-cta-content a.btn {
    margin-top: 0.5rem;
    align-self: flex-start;
}

.partner-cta-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1.2rem;
    padding: 1.5rem;
}

.partner-cta-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.partner-cta-card ul li::before {
    content: "• ";
}

.partner-note {
    font-size: 0.85rem;
    opacity: 0.8;
}

@media (max-width: 920px) {
    .partner-hero,
    .partner-cta {
        grid-template-columns: 1fr;
    }
}

.footer-status {
    margin: 0.4rem 0 0;
    font-size: 0.9rem;
    color: #374151;
}

.footer-status--error {
    color: #b91c1c;
}








