/* ============================================================
       DESIGN TOKENS
       ============================================================ */

:root {
    --vert: #6CB33F;
    --vert-fonce: #2E7D32;
    --vert-clair: #A5D66A;
    --orange: #F57C00;
    --rouge: #D32F2F;
    --rouge-clair: #FFEBEE;
    --blanc: #FFFFFF;
    --gris-clair: #F8F8F8;
    --noir: #333333;
    --gris: #4A4542;
    --line: #D4DFD0;
    --ombre: 0 20px 40px -16px rgba(30, 26, 23, 0.22);
    --ombre-legere: 0 8px 24px -12px rgba(30, 26, 23, 0.15);
    --font-display: 'Georgia', serif;
    --font-body: 'Arial', 'Helvetica', sans-serif;
    --radius: 20px;
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    --card-gap: 28px;
    --title-sub-gap: 16px;
    --sub-content-gap: 36px;
}


/* ============================================================
       RESET & BASE
       ============================================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--blanc);
    color: var(--noir);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 clamp(20px, 3vw, 50px);
    overflow: hidden;
}

.ic {
    width: 1em;
    height: 1em;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

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

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


/* ============================================================
       COMPONENTS
       ============================================================ */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: clamp(0.7rem, 1vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--vert-fonce);
    background: var(--vert-clair);
    padding: 6px 20px;
    border-radius: 999px;
}

.eyebrow .ic {
    width: 14px;
    height: 14px;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--sub-content-gap);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    letter-spacing: -0.01em;
    margin-bottom: var(--title-sub-gap);
    color: var(--noir);
    line-height: 1.15;
}

.section-title .accent-vert {
    color: var(--vert);
    font-style: italic;
}

.section-title .accent-rouge {
    color: var(--rouge);
    font-style: italic;
}

.section-sub {
    color: var(--gris);
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    font-weight: 400;
    line-height: 1.7;
}


/* ============================================================
       HEADER
       ============================================================ */

header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    width: 100%;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    min-height: 72px;
    width: 100%;
}

.logo {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 1.9rem);
    font-weight: 700;
    color: var(--noir);
}

.logo span {
    color: var(--vert);
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    list-style: none;
}

.nav-links a:not(.nav-cta) {
    font-weight: 500;
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--gris);
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s;
    font-family: var(--font-body);
}

.nav-links a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--rouge);
    transition: width 0.25s ease;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--noir);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    background: var(--rouge);
    color: #fff !important;
    padding: 10px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: clamp(0.8rem, 0.9vw, 0.95rem);
    box-shadow: 0 12px 28px -12px rgba(211, 47, 47, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.01em;
    font-family: var(--font-body);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px -12px rgba(211, 47, 47, 0.6);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--noir);
    width: 44px;
    height: 44px;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
}

.hamburger:hover {
    background: var(--gris-clair);
}

.hamburger .ic {
    width: 26px;
    height: 26px;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0 16px;
    border-top: 1px solid var(--line);
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    padding: 14px 4px;
    font-weight: 500;
    font-size: 1rem;
    color: var(--gris);
    border-bottom: 1px solid var(--line);
    font-family: var(--font-body);
}

.nav-mobile a.nav-cta {
    text-align: center;
    justify-content: center;
    margin-top: 8px;
    border-bottom: none;
    color: #fff !important;
}


/* ============================================================
       HERO — REFINED
       ============================================================ */

.hero-band {
    background: var(--blanc);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-blob {
    position: absolute;
    top: -15%;
    right: -5%;
    width: 780px;
    height: 780px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(165, 214, 106, 0.20) 0%, rgba(108, 179, 63, 0.05) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
    padding: clamp(2rem, 5vw, 3.5rem) 0;
    width: 100%;
}

.hero-left {
    padding-right: clamp(5px, 1.5vw, 20px);
}

.hero-left h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.6vw, 4.6rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 18px 0 20px;
}

.hero-left h1 .accent {
    color: var(--rouge);
    font-style: italic;
}

.hero-left h1 .accent-vert {
    color: var(--vert);
    font-style: italic;
}

.hero-left p {
    color: var(--gris);
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    max-width: 95%;
    margin-bottom: 24px;
    line-height: 1.8;
}

.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    font-family: var(--font-body);
}

.check-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--vert-clair);
    color: var(--vert-fonce);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-badge .ic {
    width: 14px;
    height: 14px;
    stroke-width: 3;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--rouge);
    color: #fff;
    border: none;
    padding: clamp(18px, 1.8vw, 24px) clamp(40px, 4.5vw, 60px);
    border-radius: 999px;
    font-size: clamp(1.05rem, 1.2vw, 1.25rem);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 24px 50px -16px rgba(211, 47, 47, 0.55);
    transition: transform 0.25s, box-shadow 0.25s;
    letter-spacing: 0.01em;
    width: fit-content;
    font-family: var(--font-body);
    text-align: center;
}

.btn-primary:active {
    transform: scale(0.97);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 56px -16px rgba(211, 47, 47, 0.7);
}


/* ============================================================
       ORBIT — ENHANCED FLOATING BADGES
       ============================================================ */

.orbit-stage {
    position: relative;
    width: min(620px, 92vw);
    aspect-ratio: 1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-ring {
    position: absolute;
    border: 2px dashed var(--line);
    border-radius: 50%;
    pointer-events: none;
}

.ring-outer {
    inset: -4%;
    animation: spin 70s linear infinite;
}

.ring-inner {
    inset: 10%;
    animation: spin 50s linear infinite reverse;
}

.orbit-core {
    position: relative;
    width: 60%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 28%, #ffffff, var(--gris-clair) 72%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--ombre);
    z-index: 2;
    animation: coreFloat 6s ease-in-out infinite;
}

.orbit-core img {
    width: 74%;
    filter: drop-shadow(0 22px 38px rgba(30, 26, 23, 0.20));
    animation: productFloat 4s ease-in-out infinite;
}

.orbit-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid var(--line);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: clamp(0.7rem, 0.85vw, 0.9rem);
    font-weight: 600;
    box-shadow: 0 12px 30px -12px rgba(30, 26, 23, 0.25);
    white-space: nowrap;
    color: var(--noir);
    font-family: var(--font-body);
    z-index: 3;
    opacity: 0;
    animation: badgeEntrance 0.8s ease forwards, badgeFloat 5s ease-in-out infinite;
}

.orbit-node .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--vert);
    flex-shrink: 0;
}

.node-1 {
    top: 2%;
    left: 0%;
    transform: translateX(-30%);
    animation-delay: 0.2s, 0.7s;
}

.node-2 {
    bottom: 8%;
    left: -4%;
    transform: translateX(-20%);
    animation-delay: 0.4s, 1.4s;
}

.node-3 {
    top: 6%;
    right: -4%;
    transform: translateX(20%);
    animation-delay: 0.6s, 2.1s;
}

.node-cfu {
    bottom: 2%;
    right: 0%;
    transform: translateX(30%);
    background: var(--vert-fonce);
    color: #fff !important;
    border: none;
    animation-delay: 0.8s, 2.8s;
    font-weight: 700;
}


/* Keyframes */

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

@keyframes productFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes badgeFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes badgeEntrance {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* Responsive Orbit */

@media (max-width: 1100px) {
    .orbit-stage {
        width: min(480px, 80vw);
    }
    .orbit-node {
        padding: 8px 14px;
        font-size: clamp(0.6rem, 0.75vw, 0.8rem);
    }
    .node-1 {
        top: 0%;
        left: -2%;
    }
    .node-2 {
        bottom: 6%;
        left: -6%;
    }
    .node-3 {
        top: 4%;
        right: -6%;
    }
    .node-cfu {
        bottom: 0%;
        right: -2%;
    }
}

@media (max-width: 768px) {
    .orbit-stage {
        width: min(400px, 78vw);
    }
    .orbit-node {
        padding: 6px 12px;
        font-size: 0.6rem;
        gap: 4px;
    }
    .orbit-node .dot {
        width: 6px;
        height: 6px;
    }
    .node-1 {
        top: -2%;
        left: -4%;
    }
    .node-2 {
        bottom: 4%;
        left: -8%;
    }
    .node-3 {
        top: 2%;
        right: -8%;
    }
    .node-cfu {
        bottom: -2%;
        right: -4%;
    }
    .checklist{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.checklist li{
    display: flex;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 15px;
}
}

@media (max-width: 480px) {
    .orbit-stage {
        width: 85vw;
        max-width: 320px;
    }
    .orbit-node {
        padding: 4px 10px;
        font-size: 0.5rem;
        gap: 3px;
    }
    .orbit-node .dot {
        width: 4px;
        height: 4px;
    }
    .node-1 {
        top: -4%;
        left: -6%;
    }
    .node-2 {
        bottom: 2%;
        left: -12%;
    }
    .node-3 {
        top: 0%;
        right: -12%;
    }
    .node-cfu {
        bottom: -4%;
        right: -6%;
    }
}


/* ============================================================
       SHOWCASE
       ============================================================ */

.showcase-band {
    padding: var(--section-padding) 0;
    background: var(--blanc);
    position: relative;
    width: 100%;
}

.showcase-band::before {
    content: "";
    position: absolute;
    top: -30%;
    left: -10%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 179, 63, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 4vw, 50px);
    align-items: center;
    padding: 0;
    width: 100%;
}

.showcase-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 10px 20px 0;
    margin-right: -20px;
}

.showcase-visual .glow-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed var(--line);
    animation: spin 40s linear infinite;
    opacity: 0.4;
    right: 0;
}

.showcase-visual .glow-ring-2 {
    position: absolute;
    width: 82%;
    height: 82%;
    border-radius: 50%;
    border: 2px dashed var(--vert-clair);
    animation: spin 30s linear infinite reverse;
    opacity: 0.3;
    right: 0;
}

.showcase-visual .glow-ring-3 {
    position: absolute;
    width: 64%;
    height: 64%;
    border-radius: 50%;
    border: 2px dashed var(--rouge-clair);
    animation: spin 20s linear infinite;
    opacity: 0.2;
    right: 0;
}

.showcase-visual .glow-ring-4 {
    position: absolute;
    width: 46%;
    height: 46%;
    border-radius: 50%;
    border: 2px solid var(--vert);
    animation: spin 15s linear infinite reverse;
    opacity: 0.1;
    right: 0;
}

.showcase-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 320px;
    filter: drop-shadow(0 50px 100px rgba(30, 26, 23, 0.25));
    transition: transform 0.6s ease;
    margin-left: auto;
}

.showcase-visual:hover .showcase-img {
    transform: translateY(-12px) scale(1.03);
}

.showcase-copy {
    text-align: left;
    padding: 10px 0 10px 10px;
}

.showcase-copy .section-title {
    font-size: clamp(2.8rem, 5.5vw, 4.6rem);
    text-align: left;
    margin-bottom: var(--title-sub-gap);
    line-height: 1.08;
}

.showcase-copy .section-sub {
    text-align: left;
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    max-width: 95%;
    line-height: 2;
    color: var(--gris);
}

.showcase-stats {
    display: flex;
    gap: clamp(24px, 3.5vw, 50px);
    margin-top: 44px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 140px;
    max-width: 260px;
    background: var(--gris-clair);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid var(--line);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ombre-legere);
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
    font-weight: 700;
    color: var(--vert);
}

.stat-label {
    display: block;
    font-size: clamp(0.7rem, 0.8vw, 0.85rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gris);
    margin-top: 4px;
    font-weight: 600;
}

.stat-card .stat-icon {
    display: inline-block;
    color: var(--vert);
    margin-bottom: 10px;
}

.stat-card .stat-icon .ic {
    width: 34px;
    height: 34px;
}


/* ============================================================
       TRANSFORM
       ============================================================ */

.transform-band {
    background: var(--gris-clair);
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.transform-band::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -5%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(165, 214, 106, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.transform-wrapper {
    position: relative;
    z-index: 1;
    padding-left: clamp(10px, 2vw, 30px);
    width: 100%;
}

.transform-header {
    text-align: center;
    margin-bottom: var(--sub-content-gap);
    padding-left: clamp(10px, 2vw, 30px);
}

.transform-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 700;
    color: var(--noir);
    margin-bottom: var(--title-sub-gap);
}

.transform-header h2 span {
    color: var(--vert);
    font-style: italic;
}

.transform-header p {
    color: var(--gris);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    max-width: 600px;
    margin: 0 auto;
}

.transform-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(20px, 3vw, 36px);
    align-items: center;
    max-width: 1060px;
    margin: 0 auto;
    padding-left: clamp(10px, 2vw, 30px);
}

.transform-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.transform-column .col-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(0.8rem, 1vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gris);
    margin-bottom: 4px;
}

.transform-column .col-title .line {
    flex: 1;
    height: 2px;
    background: var(--line);
}

.transform-column.bad .col-title .ic {
    color: var(--rouge);
}

.transform-column.good .col-title .ic {
    color: var(--vert);
}

.transform-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

.transform-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--ombre-legere);
}

.transform-item .icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transform-item .icon-box .ic {
    width: 20px;
    height: 20px;
}

.transform-column.bad .transform-item .icon-box {
    background: var(--rouge-clair);
    color: var(--rouge);
}

.transform-column.good .transform-item .icon-box {
    background: var(--vert-clair);
    color: var(--vert-fonce);
}

.transform-item .item-text {
    font-weight: 500;
    font-size: clamp(0.9rem, 1vw, 1rem);
    color: var(--noir);
}

.transform-item .item-text small {
    display: block;
    font-weight: 400;
    font-size: clamp(0.7rem, 0.8vw, 0.8rem);
    color: var(--gris);
    margin-top: 2px;
}

.transform-column.bad .transform-item {
    border-left: 4px solid var(--rouge);
}

.transform-column.good .transform-item {
    border-right: 4px solid var(--vert);
}

.transform-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    position: relative;
}

.transform-center .center-img {
    width: clamp(180px, 26vw, 320px);
    animation: bob 3.4s ease-in-out infinite;
    filter: drop-shadow(0 22px 40px rgba(30, 26, 23, 0.15));
}

.transform-center .spine {
    position: absolute;
    top: -20px;
    bottom: -20px;
    left: 50%;
    width: 0;
    border-left: 2px dashed var(--line);
    transform: translateX(-50%);
    z-index: 0;
}

@keyframes bob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}


/* ============================================================
       BENEFITS
       ============================================================ */

.benefits-band {
    padding: var(--section-padding) 0;
    width: 100%;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--card-gap);
    max-width: 1260px;
    margin: 0 auto;
}

.benefit-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px 32px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ombre-legere);
}

.card-tag {
    font-size: clamp(0.6rem, 0.7vw, 0.75rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--vert-fonce);
    position: absolute;
    top: 18px;
    right: 22px;
    background: var(--vert-clair);
    padding: 4px 14px;
    border-radius: 999px;
}

.benefit-card .icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--vert-clair);
    color: var(--vert-fonce);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.benefit-card .icon-wrap .ic {
    width: 30px;
    height: 30px;
}

.benefit-card h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.1rem, 1.3vw, 1.3rem);
    margin-bottom: 10px;
    color: var(--noir);
}

.benefit-card p {
    color: var(--gris);
    font-size: clamp(0.9rem, 1vw, 1rem);
    line-height: 1.7;
    margin: 0;
}


/* ============================================================
       INGREDIENTS
       ============================================================ */

.ingredients-band {
    background: var(--gris-clair);
    padding: var(--section-padding) 0;
    width: 100%;
}

.formula-chain {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(24px, 3.5vw, 45px);
    padding-top: 10px;
    width: 100%;
}

.formula-chain::before {
    content: "";
    position: absolute;
    top: 70px;
    left: 6%;
    right: 6%;
    height: 2px;
    background-image: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 18px);
    z-index: 0;
}

.ing-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: clamp(120px, 15vw, 160px);
}

.ing-circle {
    width: clamp(100px, 13vw, 140px);
    height: clamp(100px, 13vw, 140px);
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 14px 30px -14px rgba(30, 26, 23, 0.18);
    transition: transform 0.3s;
}

.ing-item:hover .ing-circle {
    transform: translateY(-4px) scale(1.05);
}

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

.ing-item span {
    font-size: clamp(0.75rem, 0.95vw, 0.95rem);
    font-weight: 600;
    text-align: center;
    color: var(--gris);
    font-family: var(--font-body);
    line-height: 1.3;
}


/* ============================================================
       BEFORE / AFTER
       ============================================================ */

.results-band {
    padding: var(--section-padding) 0;
    width: 100%;
}

.compare-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1040px;
    margin: 0 auto;
}

.compare-pair {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: clamp(16px, 2.5vw, 30px);
    align-items: center;
}

.compare-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gris-clair);
}

.compare-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.compare-img .ba-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--noir);
    color: #fff;
    font-size: clamp(0.55rem, 0.65vw, 0.7rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    font-family: var(--font-body);
}

.compare-img.after .ba-tag {
    background: var(--vert);
    color: #fff;
}

.compare-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--vert-clair);
    color: var(--vert);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.compare-arrow .ic {
    width: 22px;
    height: 22px;
}


/* ============================================================
       REVIEWS
       ============================================================ */

.reviews-band {
    padding: var(--section-padding) 0;
    background: var(--blanc);
    width: 100%;
}

.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--card-gap);
    max-width: 1200px;
    margin: 0 auto;
}

.review {
    background: var(--gris-clair);
    padding: 32px 28px;
    border-radius: var(--radius);
    position: relative;
    box-shadow: var(--ombre-legere);
    border: 1px solid var(--line);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
}

.review:hover {
    transform: translateY(-4px);
    box-shadow: var(--ombre);
}

.review .quote-mark {
    width: 28px;
    height: 28px;
    color: var(--vert);
    opacity: 0.5;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.review .stars {
    display: flex;
    gap: 4px;
    color: var(--orange);
    margin-bottom: 14px;
}

.review .stars .ic {
    width: 18px;
    height: 18px;
    fill: currentColor;
    stroke: none;
}

.review p {
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    color: var(--noir);
    line-height: 1.7;
    font-family: var(--font-body);
    flex: 1;
    margin: 0 0 4px 0;
}

.review .footer {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.review .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--vert);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
    font-family: var(--font-body);
}

.review .footer strong {
    font-size: clamp(0.95rem, 1vw, 1.05rem);
    font-family: var(--font-body);
}


/* ============================================================
       TRUST
       ============================================================ */

.trust-band {
    background: var(--vert-fonce);
    color: #fff;
    padding: 28px 0;
    width: 100%;
}

.trust {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: clamp(14px, 2vw, 20px);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: clamp(0.8rem, 0.9vw, 0.95rem);
    letter-spacing: 0.02em;
    font-family: var(--font-body);
}

.trust-item .ic {
    color: var(--vert-clair);
    width: 20px;
    height: 20px;
}


/* ============================================================
       GUARANTEE
       ============================================================ */

.guarantee-band {
    background: var(--gris-clair);
    padding: var(--section-padding) 0;
    width: 100%;
}

.guarantee {
    background: #fff;
    border-radius: 28px;
    padding: 56px 48px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    box-shadow: var(--ombre-legere);
    border: 1px solid var(--line);
    transition: box-shadow 0.3s;
}

.guarantee:hover {
    box-shadow: var(--ombre);
}

.guarantee .num {
    background: var(--vert);
    width: 88px;
    height: 88px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.guarantee h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2vw, 2rem);
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--noir);
}

.guarantee p {
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    color: var(--gris);
    line-height: 1.8;
    font-family: var(--font-body);
    max-width: 520px;
    margin: 0 auto;
}


/* ============================================================
       FAQ
       ============================================================ */

.faq-band {
    padding: var(--section-padding) 0;
    background: var(--blanc);
    width: 100%;
}

.faq {
    max-width: 820px;
    margin: 0 auto;
}

.faq-band .section-head {
    margin-bottom: var(--sub-content-gap);
}

.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    font-weight: 600;
    font-size: clamp(1.05rem, 1.15vw, 1.15rem);
    cursor: pointer;
    padding: 6px 0;
    font-family: var(--font-body);
    color: var(--noir);
    transition: color 0.2s;
}

.faq-q:hover {
    color: var(--vert-fonce);
}

.faq-q .q-num {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--vert);
    margin-right: 14px;
}

.faq-toggle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--vert-clair);
    color: var(--vert-fonce);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-toggle .ic {
    width: 18px;
    height: 18px;
}

.faq-item.open .faq-toggle {
    transform: rotate(135deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--gris);
    font-size: clamp(0.95rem, 1vw, 1.05rem);
    line-height: 1.8;
    font-family: var(--font-body);
    padding-right: 10px;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding-top: 16px;
}


/* ============================================================
       FOOTER
       ============================================================ */

footer {
    background: var(--blanc);
    border-top: 1px solid var(--line);
    padding: 40px 0 44px;
    width: 100%;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
    text-align: center;
}

.footer-inner .logo {
    font-size: 1.3rem;
}

.footer-disclaimer {
    max-width: 720px;
    font-size: clamp(0.7rem, 0.85vw, 0.85rem);
    color: var(--gris);
    line-height: 1.7;
    font-family: var(--font-body);
}

.footer-copy {
    font-size: clamp(0.65rem, 0.75vw, 0.8rem);
    color: var(--line);
    font-family: var(--font-body);
}


/* ============================================================
       BACK TO TOP
       ============================================================ */

.back-top {
    position: fixed;
    bottom: clamp(20px, 3vw, 30px);
    right: clamp(20px, 3vw, 30px);
    background: var(--rouge);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    transition: 0.3s ease;
    z-index: 150;
    box-shadow: 0 10px 24px -8px rgba(30, 26, 23, 0.4);
    border: none;
}

.back-top:active {
    transform: scale(0.92);
}

.back-top .ic {
    width: 22px;
    height: 22px;
}

.back-top.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================================
       REVEAL ANIMATIONS
       ============================================================ */

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

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


/* Hover and subtle interactive animations */

.benefit-card,
.stat-card,
.review,
.transform-item,
.ing-circle,
.compare-img img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary,
.nav-cta {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


/* ============================================================
       RESPONSIVE - TABLET (max-width: 1100px)
       ============================================================ */

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 2rem 0;
    }
    .hero-left {
        padding-right: 0;
    }
    .hero-left h1 {
        font-size: clamp(2.4rem, 6vw, 3.6rem);
    }
    .hero-left p {
        max-width: 100%;
        margin-inline: auto;
    }
    .checklist {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.checklist li {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
}
    .btn-primary {
        margin: 0 auto;
    }
    .showcase {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .showcase-visual {
        justify-content: center;
        margin-right: 0;
        padding: 20px;
    }
    .showcase-visual .glow-ring,
    .showcase-visual .glow-ring-2,
    .showcase-visual .glow-ring-3,
    .showcase-visual .glow-ring-4 {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .showcase-img {
        margin-left: 0;
        max-width: 220px;
    }
    .showcase-copy {
        text-align: center;
        padding: 0;
    }
    .showcase-copy .section-title {
        text-align: center;
    }
    .showcase-copy .section-sub {
        text-align: center;
        max-width: 100%;
    }
    .showcase-stats {
        justify-content: center;
    }
    .transform-wrapper {
        padding-left: 0;
    }
    .transform-header {
        padding-left: 0;
    }
    .transform-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-left: 0;
    }
    .transform-column.good {
        order: 3;
    }
    .transform-center {
        order: 2;
        flex-direction: row;
        padding: 8px 0;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .transform-center .center-img {
        width: clamp(120px, 30vw, 180px);
    }
    .transform-center .spine {
        display: none;
    }
    .transform-column.bad .transform-item {
        border-left: none;
        border-bottom: 3px solid var(--rouge);
    }
    .transform-column.good .transform-item {
        border-right: none;
        border-bottom: 3px solid var(--vert);
    }
    .benefits-cards {
        grid-template-columns: 1fr 1fr;
        gap: var(--card-gap);
    }
    .compare-pair {
        grid-template-columns: 1fr;
    }
    .compare-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }
    .reviews {
        grid-template-columns: 1fr 1fr;
        gap: var(--card-gap);
    }
    .hero-blob {
        width: 450px;
        height: 450px;
        top: -10%;
        right: -20%;
    }
    .formula-chain::before {
        display: none;
    }
    .hero-band {
        min-height: auto;
    }
}


/* ============================================================
       MOBILE RESPONSIVE (max-width: 768px)
       ============================================================ */

@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav {
        min-height: 60px;
        padding: 10px 0;
    }
    .logo {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
    }
    .nav-cta {
        padding: 8px 18px;
        font-size: clamp(0.7rem, 1.8vw, 0.85rem);
    }
    /* Section padding */
    .hero-band {
        min-height: auto;
        padding: 20px 0 10px;
    }
    .showcase-band,
    .transform-band,
    .benefits-band,
    .ingredients-band,
    .results-band,
    .reviews-band,
    .guarantee-band,
    .faq-band {
        padding: 40px 0;
    }
    /* Hero */
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 0.5rem 0 1rem;
    }
    .hero-left {
        padding-right: 0;
    }
    .hero-left h1 {
        font-size: clamp(1.8rem, 5.5vw, 2.4rem);
        margin: 10px 0 14px;
        line-height: 1.2;
    }
    .hero-left p {
        max-width: 100%;
        font-size: clamp(0.9rem, 2.8vw, 1rem);
        margin-bottom: 16px;
        line-height: 1.6;
    }
   .checklist {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.checklist li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 12px;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    text-align: left;
}
    .check-badge {
        width: 22px;
        height: 22px;
    }
    .check-badge .ic {
        width: 12px;
        height: 12px;
    }
    .btn-primary {
        margin: 0 auto;
        padding: 14px 24px;
        font-size: clamp(0.9rem, 2.8vw, 1rem);
        width: 100%;
        justify-content: center;
    }
    .hero-blob {
        width: 250px;
        height: 250px;
        top: -5%;
        right: -30%;
    }
    .eyebrow {
        font-size: clamp(0.6rem, 1.8vw, 0.75rem);
        padding: 4px 14px;
    }
    /* Orbit Stage */
    .orbit-stage {
        width: 78vw;
        max-width: 380px;
        margin: 0 auto;
    }
    /* Showcase */
    .showcase {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }
    .showcase-visual {
        justify-content: center;
        margin-right: 0;
        padding: 10px;
    }
    .showcase-visual .glow-ring,
    .showcase-visual .glow-ring-2,
    .showcase-visual .glow-ring-3,
    .showcase-visual .glow-ring-4 {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 100%;
    }
    .showcase-img {
        margin: 0 auto;
        max-width: 260px;
        width: 80%;
    }
    .showcase-copy {
        text-align: center;
        padding: 0;
    }
    .showcase-copy .section-title {
        text-align: center;
        font-size: clamp(1.6rem, 4.5vw, 2.2rem);
    }
    .showcase-copy .section-sub {
        text-align: center;
        max-width: 100%;
        font-size: clamp(0.85rem, 2.6vw, 0.95rem);
        line-height: 1.6;
    }
    .showcase-stats {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 20px;
    }
    .stat-card {
        max-width: 100%;
        width: 100%;
        padding: 16px 20px;
        min-width: unset;
    }
    .stat-num {
        font-size: clamp(1.6rem, 4.5vw, 2.2rem);
    }
    .stat-label {
        font-size: clamp(0.6rem, 1.8vw, 0.75rem);
    }
    .stat-card .stat-icon .ic {
        width: 28px;
        height: 28px;
    }
    /* Transform */
    .transform-wrapper {
        padding-left: 0;
    }
    .transform-header {
        padding-left: 0;
        margin-bottom: 20px;
    }
    .transform-header h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 10px;
    }
    .transform-header p {
        font-size: clamp(0.85rem, 2.4vw, 0.95rem);
        max-width: 100%;
    }
    .transform-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        padding-left: 0;
    }
    .transform-column.good {
        order: 3;
    }
    .transform-center {
        order: 2;
        flex-direction: row;
        padding: 4px 0;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .transform-center .center-img {
        width: clamp(80px, 22vw, 120px);
    }
    .transform-center .spine {
        display: none;
    }
    .transform-column {
        gap: 10px;
    }
    .transform-column .col-title {
        font-size: clamp(0.7rem, 2vw, 0.85rem);
        gap: 8px;
    }
    .transform-column.bad .transform-item {
        border-left: none;
        border-bottom: 3px solid var(--rouge);
    }
    .transform-column.good .transform-item {
        border-right: none;
        border-bottom: 3px solid var(--vert);
    }
    .transform-item {
        padding: 12px 16px;
        gap: 12px;
        border-radius: 12px;
    }
    .transform-item .icon-box {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    .transform-item .icon-box .ic {
        width: 16px;
        height: 16px;
    }
    .transform-item .item-text {
        font-size: clamp(0.8rem, 2.3vw, 0.9rem);
    }
    .transform-item .item-text small {
        font-size: clamp(0.6rem, 1.8vw, 0.7rem);
    }
    /* Benefits */
    .benefits-cards {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .benefit-card {
        padding: 18px 16px;
        border-radius: 14px;
    }
    .benefit-card .icon-wrap {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        margin-bottom: 12px;
    }
    .benefit-card .icon-wrap .ic {
        width: 22px;
        height: 22px;
    }
    .benefit-card h4 {
        font-size: clamp(0.95rem, 2.6vw, 1.05rem);
        margin-bottom: 6px;
    }
    .benefit-card p {
        font-size: clamp(0.8rem, 2.3vw, 0.9rem);
        line-height: 1.5;
    }
    .card-tag {
        top: 12px;
        right: 14px;
        font-size: clamp(0.5rem, 1.5vw, 0.6rem);
        padding: 2px 10px;
    }
    /* Ingredients */
    .ingredients-band {
        padding: 40px 0;
    }
    .ing-item {
        width: calc(50% - 12px);
    }
    .ing-circle {
        width: clamp(70px, 22vw, 100px);
        height: clamp(70px, 22vw, 100px);
        margin-bottom: 10px;
    }
    .ing-item span {
        font-size: clamp(0.6rem, 1.8vw, 0.75rem);
        line-height: 1.2;
    }
    .formula-chain::before {
        display: none;
    }
    .formula-chain {
        gap: 14px;
        padding-top: 4px;
    }
    .section-head {
        margin-bottom: 20px;
    }
    /* Before/After */
    .compare-pair {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .compare-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
        width: 36px;
        height: 36px;
    }
    .compare-arrow .ic {
        width: 18px;
        height: 18px;
    }
    .compare-img {
        aspect-ratio: 4/3;
        max-width: 100%;
        border-radius: 14px;
    }
    .compare-img .ba-tag {
        font-size: clamp(0.5rem, 1.5vw, 0.6rem);
        padding: 4px 10px;
        top: 10px;
        left: 10px;
    }
    .compare-grid {
        gap: 18px;
    }
    /* Reviews */
    .reviews {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .review {
        padding: 18px 16px;
        border-radius: 14px;
    }
    .review .quote-mark {
        width: 22px;
        height: 22px;
        margin-bottom: 8px;
    }
    .review .stars {
        margin-bottom: 10px;
    }
    .review .stars .ic {
        width: 16px;
        height: 16px;
    }
    .review p {
        font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        line-height: 1.5;
    }
    .review .footer {
        margin-top: 14px;
        padding-top: 12px;
        gap: 12px;
    }
    .review .avatar {
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
    }
    .review .footer strong {
        font-size: clamp(0.85rem, 2.3vw, 0.95rem);
    }
    /* Trust */
    .trust {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .trust-item {
        font-size: clamp(0.75rem, 2vw, 0.85rem);
        gap: 8px;
    }
    .trust-item .ic {
        width: 18px;
        height: 18px;
    }
    .trust-band {
        padding: 20px 0;
    }
    /* Guarantee */
    .guarantee {
        padding: 28px 20px;
        border-radius: 18px;
    }
    .guarantee .num {
        width: 64px;
        height: 64px;
        font-size: 1.8rem;
        margin-bottom: 14px;
    }
    .guarantee h3 {
        font-size: clamp(1.2rem, 3.2vw, 1.5rem);
        margin-bottom: 10px;
    }
    .guarantee p {
        font-size: clamp(0.85rem, 2.4vw, 0.95rem);
        line-height: 1.6;
        max-width: 100%;
    }
    /* FAQ */
    .faq {
        max-width: 100%;
    }
    .faq-item {
        padding: 14px 0;
    }
    .faq-q {
        font-size: clamp(0.85rem, 2.4vw, 0.95rem);
        gap: 12px;
        padding: 4px 0;
    }
    .faq-q .q-num {
        font-size: 0.7rem;
        margin-right: 8px;
    }
    .faq-toggle {
        width: 30px;
        height: 30px;
        flex-shrink: 0;
    }
    .faq-toggle .ic {
        width: 16px;
        height: 16px;
    }
    .faq-a {
        font-size: clamp(0.85rem, 2.3vw, 0.95rem);
        line-height: 1.6;
        padding-right: 4px;
    }
    .faq-item.open .faq-a {
        padding-top: 12px;
        max-height: 400px;
    }
    /* Typography */
    .section-title {
        font-size: clamp(1.5rem, 4.2vw, 2rem);
        margin-bottom: 10px;
    }
    .section-sub {
        font-size: clamp(0.85rem, 2.4vw, 0.95rem);
        line-height: 1.6;
    }
    .section-head {
        margin-bottom: 20px;
    }
    /* Container */
    .container {
        padding: 0 16px;
    }
    /* Back to top */
    .back-top {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        bottom: 16px;
        right: 16px;
    }
    .back-top .ic {
        width: 18px;
        height: 18px;
    }
    /* Footer */
    footer {
        padding: 30px 0 34px;
    }
    .footer-inner .logo {
        font-size: 1.1rem;
    }
    .footer-disclaimer {
        font-size: clamp(0.65rem, 1.8vw, 0.75rem);
        line-height: 1.5;
        padding: 0 4px;
    }
    .footer-copy {
        font-size: clamp(0.6rem, 1.6vw, 0.7rem);
    }
}


/* ============================================================
       MOBILE SMALL (max-width: 480px)
       ============================================================ */

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    .nav {
        min-height: 50px;
        padding: 8px 0;
    }
    .logo {
        font-size: clamp(1rem, 2.8vw, 1.2rem);
    }
    .nav-cta {
        padding: 6px 14px;
        font-size: clamp(0.6rem, 1.6vw, 0.7rem);
    }
    .hamburger {
        width: 38px;
        height: 38px;
    }
    .hamburger .ic {
        width: 22px;
        height: 22px;
    }
    .hero {
        padding: 0.3rem 0 0.8rem;
        gap: 14px;
    }
    .hero-left h1 {
        font-size: clamp(1.4rem, 4.5vw, 1.8rem);
        margin: 6px 0 10px;
    }
    .hero-left p {
        font-size: clamp(0.8rem, 2.4vw, 0.9rem);
        margin-bottom: 12px;
    }
    .checklist {
        gap: 5px;
        margin-bottom: 12px;
    }
    .checklist li {
        font-size: clamp(0.7rem, 2.2vw, 0.8rem);
        gap: 8px;
    }
    .check-badge {
        width: 18px;
        height: 18px;
    }
    .check-badge .ic {
        width: 10px;
        height: 10px;
    }
    .btn-primary {
        padding: 12px 18px;
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        border-radius: 50px;
    }
    .hero-blob {
        width: 180px;
        height: 180px;
        top: -10%;
        right: -40%;
    }
    .eyebrow {
        font-size: clamp(0.5rem, 1.6vw, 0.65rem);
        padding: 3px 12px;
        gap: 4px;
    }
    .eyebrow .ic {
        width: 12px;
        height: 12px;
    }
    .orbit-stage {
        width: 82vw;
        max-width: 280px;
    }
    .orbit-node {
        padding: 3px 8px;
        font-size: 0.45rem;
        gap: 3px;
        border-width: 1px;
    }
    .orbit-node .dot {
        width: 4px;
        height: 4px;
    }
    .node-1 {
        top: -2%;
        left: -4%;
    }
    .node-2 {
        bottom: 2%;
        left: -8%;
    }
    .node-3 {
        top: 0%;
        right: -8%;
    }
    .node-cfu {
        bottom: -2%;
        right: -4%;
        padding: 3px 8px;
    }
    .showcase-img {
        max-width: 180px;
        width: 75%;
    }
    .showcase-copy .section-title {
        font-size: clamp(1.3rem, 4vw, 1.6rem);
    }
    .showcase-copy .section-sub {
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    }
    .stat-card {
        padding: 12px 16px;
    }
    .stat-num {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }
    .stat-label {
        font-size: clamp(0.55rem, 1.6vw, 0.65rem);
    }
    .stat-card .stat-icon .ic {
        width: 24px;
        height: 24px;
    }
    .transform-header h2 {
        font-size: clamp(1.3rem, 3.8vw, 1.6rem);
    }
    .transform-header p {
        font-size: clamp(0.75rem, 2.2vw, 0.85rem);
    }
    .transform-center .center-img {
        width: clamp(60px, 20vw, 80px);
    }
    .transform-item {
        padding: 10px 12px;
        gap: 10px;
    }
    .transform-item .icon-box {
        width: 30px;
        height: 30px;
    }
    .transform-item .icon-box .ic {
        width: 14px;
        height: 14px;
    }
    .transform-item .item-text {
        font-size: clamp(0.7rem, 2vw, 0.8rem);
    }
    .transform-item .item-text small {
        font-size: clamp(0.55rem, 1.6vw, 0.65rem);
    }
    .benefits-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .benefit-card {
        padding: 16px 14px;
        border-radius: 12px;
    }
    .benefit-card .icon-wrap {
        width: 40px;
        height: 40px;
    }
    .benefit-card .icon-wrap .ic {
        width: 20px;
        height: 20px;
    }
    .benefit-card h4 {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    .benefit-card p {
        font-size: clamp(0.75rem, 2.2vw, 0.85rem);
    }
    .card-tag {
        top: 10px;
        right: 12px;
        font-size: clamp(0.45rem, 1.4vw, 0.55rem);
        padding: 2px 8px;
    }
    .ing-item {
        width: calc(50% - 8px);
    }
    .ing-circle {
        width: clamp(55px, 20vw, 70px);
        height: clamp(55px, 20vw, 70px);
        margin-bottom: 8px;
    }
    .ing-item span {
        font-size: clamp(0.5rem, 1.6vw, 0.65rem);
    }
    .formula-chain {
        gap: 10px;
    }
    .compare-img .ba-tag {
        font-size: clamp(0.4rem, 1.3vw, 0.5rem);
        padding: 3px 8px;
        top: 8px;
        left: 8px;
    }
    .compare-arrow {
        width: 30px;
        height: 30px;
    }
    .compare-arrow .ic {
        width: 14px;
        height: 14px;
    }
    .compare-grid {
        gap: 14px;
    }
    .compare-pair {
        gap: 8px;
    }
    .review {
        padding: 14px 12px;
        border-radius: 12px;
    }
    .review .quote-mark {
        width: 18px;
        height: 18px;
        margin-bottom: 6px;
    }
    .review .stars .ic {
        width: 14px;
        height: 14px;
    }
    .review p {
        font-size: clamp(0.8rem, 2.3vw, 0.9rem);
    }
    .review .footer {
        margin-top: 12px;
        padding-top: 10px;
        gap: 10px;
    }
    .review .avatar {
        width: 34px;
        height: 34px;
        font-size: 0.7rem;
    }
    .review .footer strong {
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    }
    .trust-item {
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
        gap: 6px;
    }
    .trust-item .ic {
        width: 16px;
        height: 16px;
    }
    .guarantee {
        padding: 24px 16px;
        border-radius: 16px;
    }
    .guarantee .num {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    .guarantee h3 {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
        margin-bottom: 8px;
    }
    .guarantee p {
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    }
    .faq-q {
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
        gap: 10px;
    }
    .faq-q .q-num {
        font-size: 0.6rem;
        margin-right: 6px;
    }
    .faq-toggle {
        width: 26px;
        height: 26px;
    }
    .faq-toggle .ic {
        width: 14px;
        height: 14px;
    }
    .faq-a {
        font-size: clamp(0.8rem, 2.1vw, 0.9rem);
    }
    .faq-item {
        padding: 12px 0;
    }
    .faq-item.open .faq-a {
        padding-top: 10px;
        max-height: 350px;
    }
    .section-title {
        font-size: clamp(1.2rem, 3.8vw, 1.5rem);
        margin-bottom: 8px;
    }
    .section-sub {
        font-size: clamp(0.8rem, 2.2vw, 0.9rem);
    }
    .section-head {
        margin-bottom: 16px;
    }
    .showcase-band,
    .transform-band,
    .benefits-band,
    .ingredients-band,
    .results-band,
    .reviews-band,
    .guarantee-band,
    .faq-band {
        padding: 30px 0;
    }
    .hero-band {
        padding: 12px 0 6px;
    }
    .back-top {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        bottom: 12px;
        right: 12px;
    }
    .back-top .ic {
        width: 16px;
        height: 16px;
    }
    footer {
        padding: 24px 0 28px;
    }
    .footer-inner .logo {
        font-size: 1rem;
    }
    .footer-disclaimer {
        font-size: clamp(0.6rem, 1.6vw, 0.7rem);
    }
    .footer-copy {
        font-size: clamp(0.55rem, 1.4vw, 0.65rem);
    }
    .footer-inner {
        gap: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

.btn-primary,
.nav-cta,
.faq-q,
.back-top,
.hamburger {
    -webkit-tap-highlight-color: transparent;
}