/* ==========================================================================
ABLEVI - Styles spécifiques à la page de prévente
Palette : amber/terra (identité Ablevi) sur base sombre
À charger APRÈS style.css (qui contient navbar/topbar/footer)
========================================================================== */

/* --------------------------------------------------------------------------
1. VARIABLES ABLEVI
-------------------------------------------------------------------------- */

.ablv {
    --ink:       #0c0a07;
    --ink-s:     #141209;
    --earth:     #1a150d;
    --amb:       #e8a020;
    --amb-l:     #f5c96a;
    --amb-d:     #b87a10;
    --terra:     #c4521a;
    --cr:        #f2ebd9;
    --cr-d:      rgba(242, 235, 217, 0.60);
    --ln:        rgba(232, 160, 32, 0.15);
    --ease:      cubic-bezier(0.16, 1, 0.3, 1);

    background: var(--ink);
    color: var(--cr);
    font-family: 'DM Sans', sans-serif;
}

.ablv * {
    box-sizing: border-box;
}

/* --------------------------------------------------------------------------
2. REVEAL ANIMATIONS
-------------------------------------------------------------------------- */

.ablv-r {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.ablv-r.ablv-left  { transform: translateX(-44px); }
.ablv-r.ablv-right { transform: translateX(44px); }
.ablv-r.ablv-scale { transform: scale(0.92); }

.ablv-r.on {
    opacity: 1;
    transform: none !important;
}

.ablv-d1 { transition-delay: 0.15s; }
.ablv-d2 { transition-delay: 0.30s; }
.ablv-d3 { transition-delay: 0.45s; }
.ablv-d4 { transition-delay: 0.60s; }

@media (prefers-reduced-motion: reduce) {
    .ablv-r {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* --------------------------------------------------------------------------
3. UTILITAIRES
-------------------------------------------------------------------------- */

.ablv-hidden {
    display: none !important;
}

.ablv-slbl {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--amb);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.ablv-slbl::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--amb);
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
4. BOUTONS
-------------------------------------------------------------------------- */

.ablv-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--amb);
    color: var(--ink);
    padding: 15px 32px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
    border: none;
    cursor: pointer;
    border-radius: 2px;
}

.ablv-btn-primary:hover,
.ablv-btn-primary:focus-visible {
    background: var(--amb-l);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(232, 160, 32, 0.3);
    color: var(--ink);
}

.ablv-btn-block {
    width: 100%;
    padding: 18px;
    font-size: 13px;
}

.ablv-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(232, 160, 32, 0.4);
    color: var(--amb);
    padding: 14px 30px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
    border-radius: 2px;
}

.ablv-btn-secondary:hover,
.ablv-btn-secondary:focus-visible {
    border-color: var(--amb);
    background: rgba(232, 160, 32, 0.05);
    color: var(--amb-l);
}

/* --------------------------------------------------------------------------
5. HERO
-------------------------------------------------------------------------- */

.ablv-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding: 0 6% 8vh;
}

.ablv-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../img/ABV-hero.jpg");
    background-size: cover;
    background-position: center;
    filter: brightness(0.3) saturate(0.7);
    transform: scale(1.06);
    transition: transform 14s linear;
    z-index: 0;
}

.ablv-hero-bg.loaded {
    transform: scale(1);
}

.ablv-hero-grad {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top, rgba(12, 10, 7, 1) 0%, rgba(12, 10, 7, 0.85) 22%, rgba(12, 10, 7, 0.2) 55%, rgba(12, 10, 7, 0.5) 100%),
        linear-gradient(to right, rgba(12, 10, 7, 0.92) 0%, rgba(12, 10, 7, 0.5) 45%, rgba(12, 10, 7, 0.15) 100%);
}

.ablv-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.ablv-p1 { width: 3px; height: 3px; background: var(--amb); top: 22%; left: 14%; animation: ablvPf1 6s ease-in-out infinite; }
.ablv-p2 { width: 2px; height: 2px; background: var(--amb); top: 47%; left: 62%; animation: ablvPf2 8s ease-in-out infinite; }
.ablv-p3 { width: 4px; height: 4px; background: rgba(232, 160, 32, 0.4); top: 68%; left: 28%; animation: ablvPf1 7s ease-in-out infinite 1s; }
.ablv-p4 { width: 2px; height: 2px; background: var(--amb); top: 33%; left: 82%; animation: ablvPf2 9s ease-in-out infinite 0.5s; }
.ablv-p5 { width: 3px; height: 3px; background: rgba(196, 82, 26, 0.6); top: 58%; left: 74%; animation: ablvPf1 5s ease-in-out infinite 2s; }

@keyframes ablvPf1 {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50%      { transform: translateY(-20px) scale(1.4); opacity: 1; }
}
@keyframes ablvPf2 {
    0%, 100% { transform: translateY(0); opacity: 0.35; }
    50%      { transform: translateY(-14px); opacity: 0.9; }
}

.ablv-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-end;
}

.ablv-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.ablv-hero-eyebrow-line {
    width: 36px;
    height: 1px;
    background: var(--amb);
    flex-shrink: 0;
}

.ablv-hero-eyebrow span {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--amb);
    font-weight: 700;
}

.ablv-hero-h {
    font-family: 'Fraunces', serif;
    font-size: clamp(3.5rem, 7.5vw, 8rem);
    font-weight: 900;
    line-height: 0.88;
    margin-bottom: 24px;
    color: #ffffff;
}

.ablv-hero-h em {
    font-style: italic;
    font-weight: 300;
    color: var(--amb);
}

.ablv-hero-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.2rem);
    color: var(--cr-d);
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

.ablv-hero-sub strong {
    color: var(--cr);
    font-weight: 500;
}

.ablv-hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ablv-price-pill {
    border: 1px solid rgba(232, 160, 32, 0.5);
    padding: 12px 20px;
    text-align: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.ablv-price-pill__amount {
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--amb);
    line-height: 1;
}

.ablv-price-pill__unit {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cr-d);
    margin-top: 3px;
}

/* Hero collage */

.ablv-hero-right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 20px;
}

.ablv-collage {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 480px;
}

.ablv-col-main {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 320px;
    border: 2px solid rgba(232, 160, 32, 0.45);
    z-index: 3;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.75);
    overflow: hidden;
    animation: ablvColFloat 6s ease-in-out infinite;
}

.ablv-col-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ablv-col-a {
    position: absolute;
    top: 0;
    right: 0;
    width: 170px;
    height: 210px;
    border: 1px solid rgba(232, 160, 32, 0.3);
    transform: rotate(5deg);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65);
    overflow: hidden;
    animation: ablvColFloatA 8s ease-in-out infinite 1s;
}

.ablv-col-a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ablv-col-b {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 145px;
    height: 175px;
    border: 1px solid rgba(196, 82, 26, 0.4);
    transform: rotate(-7deg);
    z-index: 4;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65);
    overflow: hidden;
    animation: ablvColFloatB 7s ease-in-out infinite 2s;
}

.ablv-col-b img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes ablvColFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50%      { transform: translate(-50%, -50%) translateY(-10px); }
}
@keyframes ablvColFloatA {
    0%, 100% { transform: rotate(5deg) translateY(0); }
    50%      { transform: rotate(5deg) translateY(-9px); }
}
@keyframes ablvColFloatB {
    0%, 100% { transform: rotate(-7deg) translateY(0); }
    50%      { transform: rotate(-7deg) translateY(-9px); }
}

.ablv-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 4;
    animation: ablvSh 2.5s ease-in-out infinite;
}

.ablv-scroll-hint span {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--amb);
}

.ablv-sh-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--amb), transparent);
}

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

/* --------------------------------------------------------------------------
6. STATS
-------------------------------------------------------------------------- */

.ablv-stats {
    background: var(--earth);
    border-top: 1px solid var(--ln);
    border-bottom: 1px solid var(--ln);
}

.ablv-stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.ablv-stat {
    padding: 52px 20px;
    border-right: 1px solid var(--ln);
    text-align: center;
    transition: background 0.4s;
}

.ablv-stat:hover {
    background: rgba(232, 160, 32, 0.04);
}

.ablv-stat:last-child {
    border-right: none;
}

.ablv-stat-n {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--amb);
    line-height: 1;
    margin-bottom: 8px;
}

.ablv-stat-l {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cr-d);
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
7. MANIFESTE
-------------------------------------------------------------------------- */

.ablv-manifesto {
    padding: 110px 6%;
    background: var(--ink-s);
    border-top: 1px solid var(--ln);
    position: relative;
    overflow: hidden;
}

.ablv-manifesto::after {
    content: 'ABLEVI';
    position: absolute;
    top: -30px;
    right: -40px;
    font-family: 'Fraunces', serif;
    font-size: clamp(100px, 18vw, 190px);
    font-weight: 900;
    color: rgba(232, 160, 32, 0.025);
    pointer-events: none;
    line-height: 1;
}

.ablv-m-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.ablv-m-img-block {
    position: relative;
}

.ablv-m-img-main {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
}

.ablv-m-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8);
    transition: transform 1.5s var(--ease), filter 1.5s;
}

.ablv-m-img-main:hover img {
    transform: scale(1.05);
    filter: saturate(1);
}

.ablv-m-img-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 24px 22px;
    background: linear-gradient(transparent, rgba(12, 10, 7, 0.97));
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--amb);
}

.ablv-m-img-cap em {
    font-weight: 700;
}

.ablv-m-img-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 110px;
    height: 110px;
    border: 1px solid rgba(232, 160, 32, 0.2);
    background: var(--earth);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.ablv-m-img-accent .ablv-big {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--amb);
    line-height: 1;
}

.ablv-m-img-accent .ablv-sm {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cr-d);
    text-align: center;
}

.ablv-m-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 28px;
    color: #ffffff;
}

.ablv-m-title span {
    color: var(--amb);
    font-style: italic;
    font-weight: 300;
}

.ablv-pull {
    border-left: 2px solid var(--amb);
    padding: 14px 20px;
    margin: 24px 0;
    background: rgba(232, 160, 32, 0.04);
}

.ablv-pull p {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--cr);
    font-weight: 300;
    line-height: 1.55;
}

.ablv-m-p {
    font-size: 0.92rem;
    line-height: 1.9;
    color: var(--cr-d);
    margin-bottom: 16px;
    font-weight: 300;
}

.ablv-m-p strong {
    color: var(--cr);
    font-weight: 500;
}

.ablv-m-quote {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--amb);
    font-weight: 300;
    line-height: 1.7;
    margin-top: 20px;
}

.ablv-m-quote strong {
    font-style: normal;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
8. IMAGE STRIP
-------------------------------------------------------------------------- */

.ablv-img-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    height: 380px;
}

.ablv-strip-item {
    position: relative;
    overflow: hidden;
}

.ablv-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.65) brightness(0.75);
    transition: 1.2s var(--ease);
    display: block;
}

.ablv-strip-item:hover img {
    filter: saturate(1) brightness(1);
    transform: scale(1.07);
}

.ablv-strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 10, 7, 0.88) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.ablv-strip-title {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cr);
}

.ablv-strip-sub {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--amb);
    margin-top: 4px;
}

/* --------------------------------------------------------------------------
9. SECTION HEADER COMMUN
-------------------------------------------------------------------------- */

.ablv-sec-hdr {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.ablv-sec-hdr-sub {
    max-width: 300px;
    font-size: 0.85rem;
    color: var(--cr-d);
    font-weight: 300;
    line-height: 1.8;
    flex-shrink: 0;
}

.ablv-sec-t {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    margin: 0;
}

.ablv-sec-t em {
    color: var(--amb);
    font-style: italic;
    font-weight: 300;
}

/* --------------------------------------------------------------------------
10. PACKS
-------------------------------------------------------------------------- */

.ablv-packs {
    padding: 110px 6%;
    background: var(--ink);
}

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

.ablv-pack-card {
    background: var(--earth);
    padding: 44px 32px;
    border-top: 2px solid transparent;
    transition: border-color 0.4s, background 0.4s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ablv-pack-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(232, 160, 32, 0.06) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.5s;
}

.ablv-pack-card:hover {
    border-color: var(--amb);
    background: #1a1408;
}

.ablv-pack-card:hover .ablv-pack-glow {
    opacity: 1;
}

.ablv-pack-card--featured {
    border-color: var(--amb);
    background: #1a1408;
}

.ablv-pack-card--featured .ablv-pack-glow {
    opacity: 1;
}

.ablv-pack-badge {
    display: inline-block;
    font-family: 'Syne', sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 12px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.ablv-pack-badge--popular  { background: var(--amb); color: var(--ink); }
.ablv-pack-badge--standard { border: 1px solid rgba(242, 235, 217, 0.25); color: var(--cr-d); }
.ablv-pack-badge--vip      { border: 1px solid var(--terra); color: var(--terra); }

.ablv-pack-name {
    font-family: 'Fraunces', serif;
    font-size: 1.7rem;
    font-weight: 900;
    margin: 0 0 6px;
    color: #ffffff;
}

.ablv-pack-target {
    font-size: 12px;
    color: var(--cr-d);
    margin-bottom: 24px;
    font-weight: 300;
    line-height: 1.5;
}

.ablv-pack-price {
    font-family: 'Fraunces', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--amb);
    line-height: 1;
    margin-bottom: 3px;
}

.ablv-pack-unit {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cr-d);
    margin-bottom: 28px;
}

.ablv-pack-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex-grow: 1;
}

.ablv-pack-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(242, 235, 217, 0.05);
    font-size: 13px;
    color: var(--cr-d);
    font-weight: 300;
}

.ablv-pack-features li:last-child {
    border: none;
}

.ablv-pack-features li::before {
    content: '-';
    color: var(--amb);
    flex-shrink: 0;
}

.ablv-pack-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 14px;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    width: 100%;
}

.ablv-pack-cta--outline {
    border: 1px solid rgba(232, 160, 32, 0.35);
    color: var(--amb);
    background: transparent;
}

.ablv-pack-cta--outline:hover,
.ablv-pack-cta--outline:focus-visible {
    background: rgba(232, 160, 32, 0.07);
    border-color: var(--amb);
    color: var(--amb-l);
}

.ablv-pack-cta--solid {
    background: var(--amb);
    color: var(--ink);
}

.ablv-pack-cta--solid:hover,
.ablv-pack-cta--solid:focus-visible {
    background: var(--amb-l);
}

/* --------------------------------------------------------------------------
11. ORDER FORM (paiement)
-------------------------------------------------------------------------- */

.ablv-order {
    padding: 110px 6%;
    background: var(--ink-s);
    border-top: 1px solid var(--ln);
    border-bottom: 1px solid var(--ln);
}

.ablv-order-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ablv-order-header {
    text-align: center;
    margin-bottom: 60px;
}

.ablv-order-header .ablv-slbl {
    justify-content: center;
}

.ablv-order-intro {
    font-size: 0.95rem;
    color: var(--cr-d);
    max-width: 600px;
    margin: 18px auto 0;
    line-height: 1.7;
}

.ablv-order-intro strong {
    color: var(--cr);
}

.ablv-order-layout {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: start;
}

.ablv-order-form {
    background: var(--earth);
    border: 1px solid var(--ln);
    padding: 44px 40px;
}

/* Steps */

.ablv-step {
    border: none;
    padding: 0 0 36px;
    margin: 0 0 36px;
    border-bottom: 1px solid rgba(232, 160, 32, 0.08);
}

.ablv-step:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.ablv-step-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--cr);
    margin-bottom: 22px;
    padding: 0;
}

.ablv-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--amb);
    color: var(--ink);
    border-radius: 50%;
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
}

/* Pack radios */

.ablv-pack-radios {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ablv-pack-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.ablv-pack-radio__box {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px;
    border: 1px solid rgba(232, 160, 32, 0.2);
    background: rgba(232, 160, 32, 0.02);
    cursor: pointer;
    transition: all 0.25s;
}

.ablv-pack-radio__box strong {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    color: var(--cr);
    font-weight: 700;
}

.ablv-pack-radio__price {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--amb);
    font-weight: 700;
}

.ablv-pack-radio:hover .ablv-pack-radio__box {
    border-color: var(--amb);
}

.ablv-pack-radio input:checked + .ablv-pack-radio__box {
    border-color: var(--amb);
    background: rgba(232, 160, 32, 0.08);
    box-shadow: inset 0 0 0 1px var(--amb);
}

.ablv-pack-radio input:focus-visible + .ablv-pack-radio__box {
    outline: 2px solid var(--amb);
    outline-offset: 2px;
}

/* Quantity */

.ablv-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(232, 160, 32, 0.25);
    overflow: hidden;
}

.ablv-qty__btn {
    width: 44px;
    height: 48px;
    background: rgba(232, 160, 32, 0.05);
    border: none;
    color: var(--amb);
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s;
}

.ablv-qty__btn:hover,
.ablv-qty__btn:focus-visible {
    background: rgba(232, 160, 32, 0.15);
}

.ablv-qty__input {
    width: 70px;
    height: 48px;
    text-align: center;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(232, 160, 32, 0.2);
    border-right: 1px solid rgba(232, 160, 32, 0.2);
    color: var(--cr);
    font-family: 'Syne', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    outline: none;
    -moz-appearance: textfield;
}

.ablv-qty__input::-webkit-outer-spin-button,
.ablv-qty__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.ablv-kyc-notice {
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--cr-d);
    background: rgba(232, 160, 32, 0.04);
    border-left: 2px solid var(--amb);
    padding: 10px 14px;
    line-height: 1.6;
}

.ablv-kyc-notice i {
    color: var(--amb);
    margin-right: 6px;
}

.ablv-kyc-notice a {
    color: var(--amb);
    font-weight: 700;
}

.ablv-kyc-notice strong {
    color: var(--cr);
}

/* Form fields */

.ablv-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.ablv-field {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
}

.ablv-field label {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--amb);
    font-weight: 700;
    margin-bottom: 8px;
}

.ablv-field input,
.ablv-field select {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(232, 160, 32, 0.18);
    color: var(--cr);
    padding: 14px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.25s;
    border-radius: 0;
}

.ablv-field input:focus,
.ablv-field select:focus {
    border-color: var(--amb);
}

.ablv-field input.ablv-error,
.ablv-field select.ablv-error {
    border-color: #ef4444;
}

.ablv-field-msg {
    font-size: 0.78rem;
    color: #fca5a5;
    margin-top: 6px;
}

/* Payment tabs */

.ablv-pay-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.ablv-pay-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 12px;
    background: transparent;
    border: 1px solid rgba(232, 160, 32, 0.18);
    color: var(--cr-d);
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}

.ablv-pay-tab:hover {
    border-color: rgba(232, 160, 32, 0.5);
    color: var(--cr);
}

.ablv-pay-tab.active {
    border-color: var(--amb);
    background: rgba(232, 160, 32, 0.06);
    color: var(--cr);
    box-shadow: inset 0 0 0 1px var(--amb);
}

.ablv-pay-tab__brand {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffffff;
}

.ablv-pay-tab__brand--mixx  { background: linear-gradient(135deg, #ffd400 0%, #ff7a00 100%); color: #000; }
.ablv-pay-tab__brand--flooz { background: linear-gradient(135deg, #00a3e0 0%, #0066b3 100%); }
.ablv-pay-tab__brand--card  { background: linear-gradient(135deg, var(--silver-light, #e6e5e6) 0%, var(--silver-dark, #898888) 100%); color: var(--ink); }

.ablv-pay-tab__brand--card i {
    font-size: 1.2rem;
}

.ablv-pay-tab__label {
    line-height: 1.2;
}

.ablv-pay-pane {
    padding: 22px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(232, 160, 32, 0.1);
}

.ablv-pay-pane[hidden] {
    display: none;
}

.ablv-pay-pane__intro {
    font-size: 0.88rem;
    color: var(--cr-d);
    line-height: 1.7;
    margin-bottom: 16px;
}

.ablv-pay-pane__intro strong {
    color: var(--amb);
    font-weight: 700;
}

.ablv-pay-card-logos {
    display: flex;
    gap: 10px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.ablv-pay-card-logos span {
    padding: 6px 14px;
    border: 1px solid rgba(232, 160, 32, 0.2);
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--cr-d);
    text-transform: uppercase;
    font-weight: 700;
}

.ablv-pay-secure {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 14px;
    background: rgba(34, 197, 94, 0.06);
    border-left: 2px solid #22c55e;
    font-size: 0.78rem;
    color: rgba(242, 235, 217, 0.7);
}

.ablv-pay-secure i {
    color: #22c55e;
    font-size: 0.95rem;
}

/* Honeypot */

.ablv-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Consent */

.ablv-consent {
    margin: 22px 0;
}

.ablv-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
}

.ablv-checkbox input {
    margin-top: 4px;
    accent-color: var(--amb);
    flex-shrink: 0;
}

.ablv-checkbox span {
    font-size: 0.83rem;
    color: var(--cr-d);
    line-height: 1.6;
}

.ablv-checkbox a {
    color: var(--amb);
    text-decoration: underline;
}

/* Feedback */

.ablv-feedback {
    display: none;
    padding: 16px 20px;
    border-radius: 2px;
    font-size: 0.88rem;
    line-height: 1.6;
    margin-top: 18px;
}

.ablv-feedback.success {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.ablv-feedback.success strong {
    color: #ffffff;
}

.ablv-feedback.error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

/* Order summary */

.ablv-summary {
    position: sticky;
    top: 110px;
}

.ablv-summary__inner {
    background: var(--earth);
    border: 1px solid var(--ln);
    padding: 36px 30px;
}

.ablv-summary__title {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--cr);
    margin: 0 0 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(232, 160, 32, 0.15);
}

.ablv-summary__line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.88rem;
    color: var(--cr-d);
}

.ablv-summary__line strong {
    color: var(--cr);
    font-weight: 600;
    font-family: 'Syne', sans-serif;
}

.ablv-summary__divider {
    height: 1px;
    background: rgba(232, 160, 32, 0.15);
    margin: 14px 0;
}

.ablv-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0 18px;
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--amb);
    font-weight: 700;
}

.ablv-summary__total strong {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--amb);
    letter-spacing: 0;
    text-transform: none;
}

.ablv-summary__guarantees {
    list-style: none;
    padding: 18px 0 0;
    margin: 0;
    border-top: 1px solid rgba(232, 160, 32, 0.1);
}

.ablv-summary__guarantees li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.82rem;
    color: var(--cr-d);
}

.ablv-summary__guarantees i {
    color: var(--amb);
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
}

.ablv-summary__contact {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(232, 160, 32, 0.1);
    font-size: 0.83rem;
    color: var(--cr-d);
    text-align: center;
}

.ablv-summary__contact a {
    color: var(--amb);
    font-weight: 700;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
12. PHOTO FEATURE
-------------------------------------------------------------------------- */

.ablv-photo-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
}

.ablv-pf-left {
    position: relative;
    overflow: hidden;
}

.ablv-pf-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.75) brightness(0.8);
    transition: 1.5s var(--ease);
    display: block;
}

.ablv-pf-left:hover img {
    transform: scale(1.05);
    filter: saturate(1) brightness(0.9);
}

.ablv-pf-left-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(12, 10, 7, 0.55) 0%, transparent 60%);
}

.ablv-pf-right {
    background: var(--earth);
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid var(--ln);
}

.ablv-pf-quote {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.5rem, 2.5vw, 2.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cr);
    line-height: 1.3;
    margin: 0 0 20px;
}

.ablv-pf-quote em {
    color: var(--amb);
    font-weight: 700;
    font-style: normal;
}

.ablv-pf-attr {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--amb);
    font-weight: 700;
    font-style: normal;
}

.ablv-pf-body {
    font-size: 0.9rem;
    color: var(--cr-d);
    line-height: 1.8;
    margin-top: 20px;
    font-weight: 300;
    max-width: 360px;
}

/* --------------------------------------------------------------------------
13. MILESTONES
-------------------------------------------------------------------------- */

.ablv-milestones {
    padding: 110px 6%;
    background: var(--ink-s);
    border-top: 1px solid var(--ln);
}

.ablv-milestones-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ablv-milestone-list {
    margin: 60px 0 0;
    padding: 0;
    position: relative;
    list-style: none;
}

.ablv-milestone-list::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--amb), rgba(232, 160, 32, 0.07));
}

.ablv-milestone-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 32px;
    padding-bottom: 52px;
    align-items: start;
}

.ablv-milestone-item:last-child {
    padding-bottom: 0;
}

.ablv-milestone-dot {
    width: 70px;
    height: 70px;
    border: 1px solid var(--amb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--amb);
    background: var(--ink-s);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: background 0.4s;
}

.ablv-milestone-dot:hover {
    background: rgba(232, 160, 32, 0.1);
}

.ablv-milestone-number {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--amb);
    font-weight: 700;
    margin-bottom: 6px;
}

.ablv-milestone-title {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--cr);
    margin: 0 0 6px;
    line-height: 1.2;
}

.ablv-milestone-invest {
    font-size: 11px;
    color: var(--amb);
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Syne', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ablv-milestone-desc {
    font-size: 13px;
    color: var(--cr-d);
    font-weight: 300;
    line-height: 1.7;
    margin: 0;
}

/* --------------------------------------------------------------------------
14. COMPLIANCE
-------------------------------------------------------------------------- */

.ablv-compliance {
    padding: 90px 6%;
    background: var(--earth);
    border-top: 1px solid var(--ln);
}

.ablv-comp-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ablv-comp-h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    margin: 12px 0;
    line-height: 1.1;
    color: var(--cr);
}

.ablv-comp-p {
    font-size: 0.88rem;
    color: var(--cr-d);
    font-weight: 300;
    line-height: 1.8;
    margin-top: 12px;
}

.ablv-comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ablv-cc {
    background: var(--ink-s);
    border: 1px solid var(--ln);
    padding: 22px;
}

.ablv-cc .ablv-ci {
    width: 28px;
    height: 1px;
    background: var(--amb);
    margin-bottom: 12px;
}

.ablv-cc h4 {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--amb);
    letter-spacing: 1px;
    margin: 0 0 6px;
    text-transform: uppercase;
}

.ablv-cc p {
    font-size: 12px;
    color: var(--cr-d);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

/* --------------------------------------------------------------------------
15. PARTNERS
-------------------------------------------------------------------------- */

.ablv-partners {
    padding: 70px 6%;
    background: var(--ink);
    border-top: 1px solid var(--ln);
    text-align: center;
}

.ablv-partners-label {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(242, 235, 217, 0.35);
    font-weight: 700;
    margin-bottom: 36px;
}

.ablv-partners-row {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.ablv-pi {
    flex: 1;
    min-width: 180px;
    padding: 28px 24px;
    border-right: 1px solid var(--ln);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.ablv-pi:last-child {
    border-right: none;
}

.ablv-pi-role {
    font-family: 'Syne', sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--amb);
    font-weight: 700;
}

.ablv-pi-name {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cr);
    text-align: center;
    line-height: 1.2;
}

/* --------------------------------------------------------------------------
16. CTA FINAL
-------------------------------------------------------------------------- */

.ablv-cta-fin {
    padding: 130px 6%;
    background: var(--earth);
    border-top: 1px solid var(--ln);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ablv-cta-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(232, 160, 32, 0.05);
    pointer-events: none;
}

.ablv-cta-circle-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(232, 160, 32, 0.04);
    pointer-events: none;
}

.ablv-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.ablv-cta-eye {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--amb);
    font-weight: 700;
    margin-bottom: 22px;
}

.ablv-cta-h {
    font-family: 'Fraunces', serif;
    font-size: clamp(2.6rem, 5.5vw, 5rem);
    font-weight: 900;
    line-height: 0.95;
    margin: 0 0 20px;
    color: var(--cr);
}

.ablv-cta-h em {
    color: var(--amb);
    font-style: italic;
    font-weight: 300;
}

.ablv-cta-p {
    font-size: 0.9rem;
    color: var(--cr-d);
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.7;
}

.ablv-cta-p strong {
    color: var(--cr);
}

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

.ablv-hashtags {
    margin-top: 44px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.ablv-hashtag {
    font-size: 11px;
    color: rgba(232, 160, 32, 0.4);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    transition: color 0.3s;
}

.ablv-hashtag:hover {
    color: var(--amb);
}

/* --------------------------------------------------------------------------
17. RESPONSIVE
-------------------------------------------------------------------------- */

@media (max-width: 1024px) {
    .ablv-hero-inner       { grid-template-columns: 1fr; }
    .ablv-hero-right       { display: none; }
    .ablv-m-grid           { grid-template-columns: 1fr; gap: 50px; }
    .ablv-m-img-accent     { display: none; }
    .ablv-photo-feature    { grid-template-columns: 1fr; min-height: auto; }
    .ablv-pf-right         { padding: 44px 32px; }
    .ablv-comp-inner       { grid-template-columns: 1fr; }
    .ablv-sec-hdr          { flex-direction: column; gap: 16px; }
    .ablv-stats-inner      { grid-template-columns: repeat(2, 1fr); }
    .ablv-stat:nth-child(2) { border-right: none; }
    .ablv-packs-grid       { grid-template-columns: 1fr; max-width: 500px; }
    .ablv-img-strip        { grid-template-columns: 1fr 1fr; height: 280px; }
    .ablv-img-strip .ablv-strip-item:last-child { grid-column: 1 / -1; height: 200px; }

    .ablv-order-layout {
        grid-template-columns: 1fr;
    }

    .ablv-summary {
        position: static;
        order: -1;
    }
}

@media (max-width: 640px) {
    .ablv-hero            { align-items: center; padding: 100px 5% 80px; }
    .ablv-stats-inner     { grid-template-columns: repeat(2, 1fr); }
    .ablv-stat            { border-right: none !important; border-bottom: 1px solid var(--ln); padding: 32px 16px; }
    .ablv-stat:nth-child(odd) { border-right: 1px solid var(--ln) !important; }
    .ablv-packs-grid      { grid-template-columns: 1fr; }
    .ablv-img-strip       { grid-template-columns: 1fr; height: auto; }
    .ablv-strip-item      { height: 200px; }
    .ablv-img-strip .ablv-strip-item:last-child { grid-column: auto; height: 200px; }
    .ablv-comp-grid       { grid-template-columns: 1fr; }
    .ablv-milestone-item  { grid-template-columns: 56px 1fr; gap: 20px; }
    .ablv-milestone-dot   { width: 56px; height: 56px; font-size: 1rem; }
    .ablv-milestone-list::before { left: 28px; }
    .ablv-partners-row    { flex-direction: column; }
    .ablv-pi              { border-right: none; border-bottom: 1px solid var(--ln); }

    .ablv-order            { padding: 70px 5%; }
    .ablv-order-form       { padding: 28px 22px; }
    .ablv-pack-radios      { grid-template-columns: 1fr; }
    .ablv-grid-2           { grid-template-columns: 1fr; gap: 0; }
    .ablv-pay-tabs         { grid-template-columns: 1fr; }
}
