/* ============================================================
   ZORIANA TEST — listing page (/test-rozklady)
   Hero, product grid, trust, newsletter
   ============================================================ */

/* ---- HERO ---- */

.z-hero {
    position: relative;
    z-index: 1;
    padding: clamp(80px, 10vw, 160px) 0 clamp(60px, 8vw, 120px);
    text-align: center;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(224,133,58,0.06) 0%, transparent 70%),
        linear-gradient(180deg, var(--z-bg-deep) 0%, var(--z-bg-primary) 100%);
}

.z-hero__moon {
    display: block;
    margin: 0 auto 2rem;
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
    color: var(--z-gold);
    filter: drop-shadow(0 0 20px rgba(224,133,58,0.3));
    animation: z-float 6s ease-in-out infinite;
}

.z-hero__moon svg {
    display: block;
    margin: 0 auto;
}

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

.z-hero__subtitle {
    font-size: var(--text-small);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--z-gold);
    margin-bottom: 1rem;
}

.z-hero__title {
    font-size: var(--text-display);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
}

.z-hero__title span {
    display: block;
    background: linear-gradient(135deg, var(--z-gold) 0%, var(--z-gold-light) 50%, var(--z-warm) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.z-hero__desc {
    max-width: 640px;
    margin: 0 auto 2.5rem;
    font-size: var(--text-body);
    color: var(--z-text-muted);
    line-height: 1.8;
}

.z-hero__ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: var(--z-gold);
    opacity: 0.4;
    font-size: 14px;
    letter-spacing: 4px;
}

.z-hero__ornament::before,
.z-hero__ornament::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--z-gold), transparent);
}

.z-hero__cta {
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #FFFFFF;
    background-color: #EC4400;
    box-shadow: 0px 10px 20px 0px rgba(255, 84, 84, 0.24);
    padding: 20px 50px;
    width: max-content;
    border: none;
    cursor: pointer;
    transition: .3s all ease-in-out;
    display: inline-block;
}

.z-hero__cta:hover,
.z-hero__cta:focus {
    background-color: #C93D03;
    color: #FFFFFF;
}

/* ---- HERO PAYMENT TRUST ---- */

.z-hero__trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.z-hero__trust-label {
    font-size: 11px;
    color: var(--z-text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.z-hero__trust-label::before {
    content: '🔒';
    font-size: 12px;
}

.z-hero__trust-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.z-hero__trust-icon {
    height: 22px;
    width: auto;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    filter: grayscale(0.3);
}

.z-hero__trust-icon:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* ---- PRODUCT GRID ---- */

.z-products {
    position: relative;
    z-index: 1;
    padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 120px);
    background:
        radial-gradient(ellipse 80% 40% at 50% 100%, rgba(224,133,58,0.03) 0%, transparent 70%),
        var(--z-bg-primary);
}

.z-products__header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 4rem);
}

.z-products__subtitle {
    display: inline-flex;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--z-gold);
    border: 1px solid var(--z-border);
    background: var(--z-gold-dim);
    width: max-content;
    margin-bottom: 1.25rem;
}

.z-products__title {
    font-size: var(--text-h1);
    font-weight: 700;
    color: #fff;
}

.z-products__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* ---- PRODUCT CARD ---- */

.z-card {
    position: relative;
    background: var(--z-bg-card);
    border: 1px solid var(--z-border);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.z-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(224,133,58,0.03) 0%, transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.z-card:hover {
    border-color: rgba(224,133,58,0.3);
    transform: translateY(-4px);
    box-shadow: var(--z-glow);
}

.z-card:hover::before { opacity: 1; }

/* Recommended card highlight */
@property --_angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.z-card--recommended {
    border: 2px solid transparent;
    border-image: conic-gradient(
        from var(--_angle, 0deg),
        transparent 0%,
        #EC4400 15%,
        var(--z-gold) 30%,
        transparent 45%,
        transparent 100%
    ) 1;
    animation: z-border-spin 4s linear infinite, z-recommended-glow 3s ease-in-out infinite;
}

@keyframes z-border-spin {
    to { --_angle: 360deg; }
}

@keyframes z-recommended-glow {
    0%, 100% { box-shadow: 0 0 15px rgba(224,133,58,0.15), 0 0 40px rgba(224,133,58,0.05); }
    50%      { box-shadow: 0 0 25px rgba(224,133,58,0.3), 0 0 60px rgba(224,133,58,0.1); }
}

/* Fallback for browsers without @property (Firefox) */
@supports not (background: conic-gradient(red, blue)) {
    .z-card--recommended {
        border: 2px solid var(--z-gold);
    }
}

.z-card--recommended::after {
    content: 'Polecam';
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #21212C;
    background: linear-gradient(135deg, var(--z-gold) 0%, var(--z-gold-light) 100%);
    z-index: 3;
}

.z-card__img-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2a36 0%, #21212C 100%);
}

.z-card__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: all 0.5s ease;
}

.z-card:hover .z-card__img-wrapper img {
    opacity: 1;
    transform: scale(1.04);
}

.z-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.z-card__badge--entry {
    background: linear-gradient(135deg, var(--z-gold) 0%, #c27030 100%);
    color: #21212C;
}

.z-card__badge--best {
    background: linear-gradient(135deg, #d4846e 0%, #c06a54 100%);
    color: #fff;
}

.z-card__badge--event {
    background: rgba(224,133,58,0.15);
    color: var(--z-gold);
    border: 1px solid rgba(224,133,58,0.3);
    backdrop-filter: blur(8px);
}

.z-card__badge--premium {
    background: linear-gradient(135deg, #2a1f4e 0%, #1a1340 100%);
    color: var(--z-gold-light);
    border: 1px solid rgba(224,133,58,0.25);
}

.z-card__body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.z-card__name {
    font-size: var(--text-h3);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.z-card__desc {
    font-size: var(--text-small);
    color: var(--z-text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex: 1;
}

.z-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 13px;
    color: var(--z-text-muted);
    padding: 0;
}

.z-card__features li::before {
    content: '\2726 ';
    color: var(--z-gold);
    font-size: 10px;
}

.z-card__footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.z-card__price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.z-card__price-promo {
    font-size: 26px;
    font-weight: 700;
    color: var(--z-gold);
}

.z-card__price-old {
    font-size: 16px;
    color: var(--z-text-muted);
    text-decoration: line-through;
    opacity: 1;
}

.z-card__actions {
    display: flex;
    gap: 0.75rem;
}

.z-card__cta {
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    transition: .3s all ease-in-out;
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    flex: 1;
}

.z-card__cta--primary {
    color: #FFFFFF;
    background-color: #EC4400;
    box-shadow: 0px 10px 20px 0px rgba(255, 84, 84, 0.24);
}

.z-card__cta--primary:hover,
.z-card__cta--primary:focus {
    background-color: #C93D03;
    color: #FFFFFF;
}

.z-card__cta--secondary {
    color: var(--z-gold);
    background: transparent;
    border: 1px solid var(--z-gold);
}

.z-card__cta--secondary:hover,
.z-card__cta--secondary:focus {
    background: var(--z-gold);
    color: #21212C;
}

/* ---- HOW IT WORKS ---- */

/* ---- HOW IT WORKS (dark) ---- */

.z-howitworks {
    position: relative;
    z-index: 1;
    padding: clamp(70px, 10vw, 120px) 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,168,76,0.04) 0%, transparent 70%),
        linear-gradient(180deg, var(--z-bg-deep) 0%, var(--z-bg-primary) 100%);
    color: var(--z-text);
    overflow: hidden;
}

.z-howitworks::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, var(--z-gold) 50%, transparent 90%);
    opacity: 0.15;
}

.z-howitworks::after { display: none; }

.z-howitworks__header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.z-howitworks__eyebrow {
    display: inline-flex;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--z-gold);
    border: 1px solid var(--z-border);
    background: var(--z-gold-dim);
    width: max-content;
    margin-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}

.z-howitworks__title {
    font-size: var(--text-h1);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    max-width: 720px;
    margin: 0 auto;
}

.z-howitworks__steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 680px;
    margin: 0 auto;
}

.z-howitworks__step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: clamp(1.25rem, 2.5vw, 2rem);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 12px;
    width: 100%;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.z-howitworks__step:hover {
    border-color: rgba(201,168,76,0.3);
    background: rgba(255,255,255,0.05);
}

.z-howitworks__step-icon {
    flex-shrink: 0;
    position: relative;
}

.z-howitworks__step-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.z-howitworks__num {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--z-gold) 0%, var(--z-warm) 100%);
    border-radius: 50%;
    box-shadow:
        0 6px 24px rgba(224,133,58,0.3),
        0 0 40px rgba(201,168,76,0.1);
}

.z-howitworks__step-body {
    flex: 1;
    min-width: 0;
}

.z-howitworks__step-title {
    font-size: var(--text-h3);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.z-howitworks__step-desc {
    font-size: var(--text-body);
    color: var(--z-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.z-howitworks__step-highlight {
    display: inline-block;
    font-size: var(--text-small);
    font-weight: 600;
    color: var(--z-gold);
    padding: 6px 14px;
    background: rgba(201,168,76,0.08);
    border-left: 3px solid var(--z-gold);
    border-radius: 0 6px 6px 0;
    letter-spacing: 0.3px;
}

.z-howitworks__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
    color: var(--z-gold);
    opacity: 0.35;
}

.z-howitworks__arrow svg {
    width: 24px;
    height: 40px;
}

.z-howitworks__trust {
    margin-top: clamp(2.5rem, 4vw, 3.5rem);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.z-howitworks__trust p {
    font-size: var(--text-small);
    color: var(--z-text-muted);
    line-height: 1.8;
    padding: 1.25rem 2rem;
    border-top: 1px solid rgba(201,168,76,0.12);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    font-style: italic;
}

/* Desktop: horizontal layout */
@media (min-width: 769px) {
    .z-howitworks__steps {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        max-width: 100%;
        gap: 0.75rem;
    }

    .z-howitworks__step {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem 2.5rem;
    }

    .z-howitworks__arrow {
        flex-shrink: 0;
        padding: 0;
        align-self: center;
    }

    .z-howitworks__arrow svg {
        width: 28px;
        height: 28px;
        transform: rotate(-90deg);
    }

    .z-howitworks__step-highlight {
        border-left: none;
        border-bottom: 2px solid var(--z-gold);
        border-radius: 6px 6px 0 0;
    }
}

/* ---- FAQ ---- */

.z-faq {
    position: relative;
    z-index: 1;
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--z-bg-light);
    color: var(--z-text-dark);
}

/* Shape divider: dark → light (top) */
.z-faq::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, var(--z-bg-primary), var(--z-bg-light));
    pointer-events: none;
}

/* Shape divider: light → dark (bottom) */
.z-faq::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, var(--z-bg-light), var(--z-bg-primary));
    pointer-events: none;
    z-index: 1;
}

.z-faq__header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.z-faq__eyebrow {
    display: inline-flex;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--z-gold);
    border: 1px solid var(--z-border);
    background: var(--z-gold-dim);
    width: max-content;
    margin-bottom: 1.25rem;
}

.z-faq__title {
    font-size: var(--text-h1);
    font-weight: 700;
    color: var(--z-text-dark);
}

.z-faq__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.z-faq__item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.z-faq__item:first-child {
    border-top: 1px solid rgba(0,0,0,0.08);
}

.z-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    font-size: var(--text-body);
    font-weight: 600;
    color: var(--z-text-dark);
    cursor: pointer;
    list-style: none;
    transition: color 0.3s ease;
}

.z-faq__question::-webkit-details-marker {
    display: none;
}

.z-faq__question::after {
    content: '+';
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 18px;
    font-weight: 300;
    color: var(--z-warm);
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.z-faq__item[open] .z-faq__question {
    color: var(--z-warm);
}

.z-faq__item[open] .z-faq__question::after {
    content: '\2212';
    background: var(--z-warm);
    color: #fff;
    border-color: var(--z-warm);
}

.z-faq__question:hover {
    color: var(--z-warm);
}

.z-faq__answer {
    padding: 0 0 1.25rem;
    animation: z-faqOpen 0.3s ease;
}

.z-faq__answer p {
    font-size: var(--text-small);
    color: var(--z-text-dark-muted);
    line-height: 1.8;
    max-width: 640px;
}

@keyframes z-faqOpen {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- TRUST SECTION ---- */

.z-trust {
    position: relative;
    z-index: 1;
    padding: clamp(60px, 8vw, 100px) 0;
    background:
        linear-gradient(180deg, var(--z-bg-primary) 0%, #1c1c26 50%, var(--z-bg-primary) 100%);
}

.z-trust__header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.z-trust__subtitle {
    display: inline-flex;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--z-gold);
    border: 1px solid var(--z-border);
    background: var(--z-gold-dim);
    width: max-content;
    margin-bottom: 1.25rem;
}

.z-trust__title {
    font-size: var(--text-h2);
    font-weight: 700;
    color: #fff;
}

.z-trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.z-trust__card {
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: border-color 0.3s ease;
}

.z-trust__card:hover {
    border-color: var(--z-border);
}

.z-trust__icon {
    font-size: 32px;
    margin-bottom: 1rem;
    color: var(--z-gold);
    filter: drop-shadow(0 0 8px rgba(224,133,58,0.2));
}

.z-trust__icon svg {
    display: block;
    margin: 0 auto;
}

.z-trust__card-title {
    font-size: var(--text-h3);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.z-trust__card-desc {
    font-size: var(--text-small);
    color: var(--z-text-muted);
    line-height: 1.7;
}

/* Testimonials */

.z-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.z-testimonial {
    padding: 2rem;
    background: var(--z-bg-card);
    border: 1px solid var(--z-border);
}

.z-testimonial__stars {
    color: var(--z-gold);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.z-testimonial__text {
    font-size: var(--text-body);
    color: var(--z-text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.z-testimonial__author {
    font-size: var(--text-small);
    color: var(--z-gold);
    font-weight: 600;
}

/* ---- NEWSLETTER ---- */

.z-newsletter {
    position: relative;
    z-index: 1;
    padding: clamp(60px, 8vw, 100px) 0;
    background:
        radial-gradient(ellipse 60% 60% at 50% 50%, rgba(224,133,58,0.04) 0%, transparent 70%),
        var(--z-bg-deep);
    text-align: center;
}

.z-newsletter__icon {
    font-size: 40px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 12px rgba(224,133,58,0.25));
}

.z-newsletter__title {
    font-size: var(--text-h2);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.z-newsletter__desc {
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: var(--text-body);
    color: var(--z-text-muted);
    line-height: 1.7;
}

.z-newsletter__form {
    display: flex;
    max-width: 460px;
    margin: 0 auto;
    gap: 0;
}

.z-newsletter__input {
    flex: 1;
    padding: 16px 20px;
    font-family: inherit;
    font-size: 15px;
    color: var(--z-text);
    background: var(--z-bg-card);
    border: 1px solid var(--z-border);
    border-right: none;
    outline: none;
    transition: border-color 0.3s ease;
}

.z-newsletter__input::placeholder { color: var(--z-text-muted); }
.z-newsletter__input:focus { border-color: var(--z-gold); }

.z-newsletter__btn {
    padding: 16px 28px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #FFFFFF;
    background-color: #EC4400;
    border: 1px solid #EC4400;
    cursor: pointer;
    transition: .3s all ease-in-out;
    white-space: nowrap;
}

.z-newsletter__btn:hover,
.z-newsletter__btn:focus {
    background-color: #C93D03;
    border-color: #C93D03;
}

.z-newsletter__note {
    margin-top: 1rem;
    font-size: 12px;
    color: var(--z-text-muted);
    opacity: 0.6;
}

/* ---- FINAL CTA (LISTING) ---- */

.z-final-listing {
    position: relative;
    z-index: 1;
    padding: clamp(60px, 8vw, 120px) 0;
    background:
        radial-gradient(ellipse 50% 60% at 50% 40%, rgba(224,133,58,0.06) 0%, transparent 70%),
        var(--z-bg-deep);
    text-align: center;
}

.z-final-listing__wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.z-final-listing__eyebrow {
    display: inline-flex;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--z-gold);
    border: 1px solid var(--z-border);
    background: var(--z-gold-dim);
    width: max-content;
    margin-bottom: 1.25rem;
}

.z-final-listing__title {
    font-size: var(--text-h1);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
}

.z-final-listing__desc {
    font-size: var(--text-body);
    color: var(--z-text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.z-final-listing__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.z-final-listing__price-current {
    font-size: 32px;
    font-weight: 700;
    color: var(--z-gold);
}

.z-final-listing__price-old {
    font-size: 18px;
    color: var(--z-text-muted);
    text-decoration: line-through;
}

.z-final-listing__cta {
    display: inline-block;
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #fff;
    background-color: #EC4400;
    box-shadow: 0 10px 20px rgba(255,84,84,0.24);
    padding: 20px 50px;
    border: none;
    cursor: pointer;
    transition: .3s all ease-in-out;
    margin-bottom: 1.25rem;
}

.z-final-listing__cta:hover,
.z-final-listing__cta:focus {
    background-color: #C93D03;
    color: #fff;
}

.z-final-listing__secondary {
    display: block;
    margin-top: 1.25rem;
    font-size: var(--text-small);
    color: var(--z-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}

.z-final-listing__secondary:hover,
.z-final-listing__secondary:focus {
    color: var(--z-gold);
    opacity: 0.7;
}

/* ---- STICKY MOBILE CTA ---- */

.z-sticky-listing {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 12px 16px;
    background: rgba(33,33,44,0.95);
    border-top: 1px solid rgba(224,133,58,0.2);
    backdrop-filter: blur(12px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: none;
}

.z-sticky-listing.is-visible {
    transform: translateY(0);
}

.z-sticky-listing__btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: center;
    color: #fff;
    background-color: #EC4400;
    border: none;
    cursor: pointer;
    transition: .3s all ease-in-out;
}

.z-sticky-listing__btn:hover,
.z-sticky-listing__btn:focus {
    background-color: #C93D03;
    color: #fff;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 1024px) {
    .z-products__grid { grid-template-columns: repeat(2, 1fr); }
    .z-trust__grid { grid-template-columns: repeat(3, 1fr); }
    .z-testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .z-products__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .z-trust__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 3rem; }
    .z-howitworks__step { padding: 1.25rem; }
    .z-howitworks__num { width: 48px; height: 48px; font-size: 20px; }
    .z-howitworks__step-icon::before { inset: -6px; }
    .z-howitworks__step-desc { font-size: var(--text-small); }

    .z-card__footer { flex-direction: column; align-items: stretch; text-align: center; }
    .z-card__price { justify-content: center; }
    .z-card__cta { text-align: center; }

    .z-newsletter__form { flex-direction: column; }
    .z-newsletter__input { border-right: 1px solid var(--z-border); border-bottom: none; }

    .z-sticky-listing { display: block; }
    .z-final-listing { padding-bottom: calc(clamp(60px, 8vw, 120px) + 60px); }
}

@media (max-width: 480px) {
    .z-hero { padding: 60px 0 40px; }
    .z-hero__trust { width: 100%; }
    .z-card__body { padding: 1.25rem; }
}
