:root {
    --bg: #030303;
    --bg-soft: #0a0a0a;
    --card: #0f0f0f;
    --card-hover: #141414;
    --gold: #c9a227;
    --gold-light: #f5d77b;
    --gold-dark: #8a6418;
    --text: #f4efe4;
    --muted: #a89f92;
    --line: rgba(201, 162, 39, 0.22);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
    --radius: 12px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', Arial, sans-serif;
    --nav-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
    width: min(1200px, 92%);
    margin-inline: auto;
}

.gold { color: var(--gold-light); }

/* ── Navigation ── */
.nav-wrap {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(3, 3, 3, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    transition: background 0.3s, box-shadow 0.3s;
}

.nav-wrap.scrolled {
    background: rgba(3, 3, 3, 0.96);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo { width: 148px; height: auto; }

.navlinks {
    display: flex;
    gap: 28px;
    margin-left: auto;
}

.navlinks a {
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ccc;
    transition: color 0.25s;
    position: relative;
}

.navlinks a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: width 0.25s;
}

.navlinks a:hover { color: var(--gold-light); }
.navlinks a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    margin-left: auto;
    background: none;
    border: 1px solid var(--line);
    color: var(--gold-light);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid #ffe39a;
    background: linear-gradient(135deg, #f5d77b 0%, #b97c18 100%);
    color: #080808;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(201, 162, 39, 0.25);
}

.btn.dark {
    background: transparent;
    color: var(--gold-light);
    border-color: var(--gold-dark);
    box-shadow: none;
}

.btn-wa {
    background: #25d366;
    color: #fff;
    border-color: #1ebe57;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
}

.btn-wa:hover {
    background: #1fb855;
    color: #fff;
    box-shadow: 0 14px 36px rgba(37, 211, 102, 0.35);
}

.btn-wa i {
    font-size: 18px;
}

.btn.full { width: 100%; }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding-top: var(--nav-h);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 75% 40%, rgba(120, 72, 18, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-copy {
    padding: 60px 0;
    position: relative;
    z-index: 1;
}

.hero-block {
    display: inline-grid;
    justify-items: start;
    max-width: 100%;
}

.hero-logo-wrap {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    padding: 0;
}

.hero-logo {
    width: clamp(260px, 42vw, 440px);
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

.kicker {
    display: inline-block;
    letter-spacing: 0.35em;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 20px;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; }

.hero h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.95;
    color: var(--gold-light);
    margin: 0 0 24px;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.75;
    color: #ccc;
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.badge-item {
    text-align: center;
    min-width: 80px;
}

.badge-item .icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin: 0 auto 8px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 18px;
}

.feature .ico,
.badge-item .icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.06);
    color: var(--gold-light);
    font-size: 22px;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.feature:hover .ico {
    background: rgba(201, 162, 39, 0.14);
    border-color: rgba(201, 162, 39, 0.45);
    transform: scale(1.06);
}

.badge-item .icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 8px;
    font-size: 17px;
}

.quote-mark {
    font-size: 48px;
    color: var(--gold-dark);
    opacity: 0.6;
}

.quote-mark i {
    font-size: inherit;
}

.quote-icon {
    margin-left: auto;
    opacity: 0.35;
    color: var(--gold-light);
    font-size: 24px;
}

.stars {
    color: var(--gold-light);
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 14px;
}

.stars i {
    font-size: 13px;
}

.verified i {
    margin-right: 4px;
}

.faq-q .arrow {
    font-size: 12px;
    transition: transform 0.3s;
    color: var(--gold);
}

.nav-toggle {
    font-size: 18px;
}

.badge-item span {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-visual {
    position: relative;
    height: calc(100vh - var(--nav-h));
    min-height: 520px;
}

.hero-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(245, 215, 123, 0.4);
    background: rgba(3, 3, 3, 0.55);
    color: var(--gold-light);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s, border-color 0.2s;
}

.slider-btn:hover {
    background: rgba(3, 3, 3, 0.8);
    border-color: var(--gold-light);
}

.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--gold-light);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--gold-light);
    transform: scale(1.15);
}

.hero-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg) 0%, transparent 30%, transparent 70%, rgba(3,3,3,0.4) 100%);
    pointer-events: none;
}

/* ── Sections ── */
section {
    padding: 96px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.eyebrow {
    letter-spacing: 0.3em;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-head h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--gold-light);
    margin: 0 0 16px;
    line-height: 1.1;
}

.section-head p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Features ── */
.benefits-intro {
    max-width: 860px;
    margin: 0 auto 48px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.08) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
}

.benefits-intro p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.85;
    margin: 0;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    background: none;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.features-6 {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    padding: 24px 20px;
    background: var(--feature-frame, url('../images/frame-atharon2.png')) center / 100% 100% no-repeat;
    transition: transform 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.features.no-frame .feature-card {
    padding: 0;
    background: none;
}

.features.no-frame .feature-card:hover {
    transform: translateY(-4px);
}

.benefits-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.stat-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--gold-light);
    margin-bottom: 6px;
}

.stat-item span {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.feature {
    background: rgba(8, 8, 8, 0.88);
    padding: 32px 24px;
    text-align: center;
    transition: background 0.3s;
    min-height: 100%;
    border-radius: 2px;
}

.features.no-frame .feature {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.feature:hover { background: rgba(12, 12, 12, 0.94); }

.features.no-frame .feature:hover { background: var(--card-hover); }

.feature .ico {
    font-size: 28px;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.feature h3 {
    font-size: 20px;
    color: var(--gold-light);
    margin: 0 0 12px;
}

.feature p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ── Trust Stats (animated) ── */
.trust-stats {
    padding: 72px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(ellipse 70% 80% at 50% 50%, rgba(120, 72, 18, 0.12) 0%, transparent 70%),
        var(--bg);
}

.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.trust-stat {
    text-align: center;
    padding: 36px 24px;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.95) 0%, rgba(8, 8, 8, 0.98) 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color 0.3s, transform 0.3s;
}

.trust-stat:hover {
    border-color: rgba(201, 162, 39, 0.45);
    transform: translateY(-4px);
}

.trust-stat-ico {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--gold-light);
    font-size: 20px;
}

.trust-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 700;
}

.trust-stat span {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ── Products ── */
.products-slider {
    position: relative;
}

.products-viewport {
    overflow: visible;
}

.products-arrow {
    display: none;
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(245, 215, 123, 0.45);
    background: rgba(3, 3, 3, 0.78);
    color: var(--gold-light);
    cursor: pointer;
    place-items: center;
    transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}

.products-arrow:hover:not(:disabled) {
    background: rgba(3, 3, 3, 0.95);
    border-color: var(--gold-light);
}

.products-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

.products-arrow.prev { left: -6px; }
.products-arrow.next { right: -6px; }

.products-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.products-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--gold-light);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}

.products-dot.active,
.products-dot:hover {
    background: var(--gold-light);
    transform: scale(1.1);
}

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

.product {
    background: linear-gradient(180deg, #111 0%, #080808 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.product:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 162, 39, 0.45);
    box-shadow: var(--shadow);
}

.product-img-wrap {
    overflow: hidden;
    aspect-ratio: 3/4;
}

.product-img-btn {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
    position: relative;
    overflow: hidden;
}

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

.product:hover img { transform: scale(1.06); }

.product-zoom-icon {
    position: absolute;
    inset: auto 14px 14px auto;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(3, 3, 3, 0.72);
    border: 1px solid rgba(201, 162, 39, 0.45);
    color: var(--gold-light);
    font-size: 15px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
}

.product-img-btn:hover .product-zoom-icon,
.product-img-btn:focus-visible .product-zoom-icon {
    opacity: 1;
    transform: translateY(0);
}

.product-img-btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
}

/* ── Lightbox ── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.lightbox[hidden] {
    display: none;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(6px);
}

.lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 96vw);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxIn 0.28s ease;
}

.lightbox-img {
    width: 100%;
    max-height: calc(92vh - 56px);
    object-fit: contain;
    border-radius: var(--radius);
    border: 1px solid rgba(201, 162, 39, 0.35);
    box-shadow: var(--shadow);
    background: #0a0a0a;
}

.lightbox-caption {
    margin: 14px 0 0;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.04em;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201, 162, 39, 0.45);
    border-radius: 50%;
    background: rgba(15, 15, 15, 0.95);
    color: var(--gold-light);
    font-size: 18px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.2s, transform 0.2s;
}

.lightbox-close:hover {
    background: rgba(201, 162, 39, 0.18);
    transform: scale(1.05);
}

@keyframes lightboxIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.product-body { padding: 28px; }

.product h3 {
    font-size: 26px;
    color: var(--gold-light);
    margin: 0 0 8px;
}

.tag {
    font-size: 10px;
    letter-spacing: 0.18em;
    color: #d9c6a1;
    margin-bottom: 14px;
}

.product-desc {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    min-height: 68px;
    margin-bottom: 18px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.price small {
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
}

/* ── Product Banners (3 parfum) ── */
.duo-section { padding: 0; border-top: 0; }

.product-banners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.product-banner {
    display: block;
    overflow: hidden;
    position: relative;
    min-height: 360px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-banner img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.product-banner:hover {
    z-index: 1;
    box-shadow: var(--shadow);
}

.product-banner:hover img {
    transform: scale(1.04);
}

/* ── Quote ── */
.quote-section {
    padding: 80px 0;
    background: radial-gradient(ellipse at center, rgba(120, 72, 18, 0.12) 0%, transparent 70%);
}

.quote-box {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

.quote-mark {
    font-size: 56px;
    line-height: 0.5;
    color: var(--gold-dark);
    opacity: 0.5;
}

.quote-mark i {
    font-size: inherit;
}

.quote-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(24px, 3vw, 34px);
    color: var(--gold-light);
    line-height: 1.45;
    margin: 20px 0 0;
}

/* ── Testimonials ── */
.testimonial-section {
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(120, 72, 18, 0.18) 0%, transparent 60%),
        var(--bg-soft);
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.t-stat {
    text-align: center;
}

.t-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 8px;
}

.t-stat span {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.testimonial:hover {
    border-color: rgba(201, 162, 39, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5d77b, #8a6418);
    color: #080808;
    font-weight: 800;
    font-size: 14px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.testimonial-top .author {
    font-weight: 700;
    color: var(--gold-light);
    font-size: 15px;
    margin: 0;
}

.testimonial-top .role {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.quote-icon {
    margin-left: auto;
    opacity: 0.25;
    color: var(--gold-light);
}

.quote-icon svg {
    width: 28px;
    height: 28px;
}

.stars {
    color: var(--gold-light);
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 auto;
    font-style: italic;
    flex: 1;
}

.verified {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7fe39d;
}

/* ── Order Form ── */
.order-wrap {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 32px;
    align-items: stretch;
}

.order-info {
    padding: 44px;
    background: linear-gradient(145deg, #1a1208 0%, #070707 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.order-info h3 {
    font-size: 36px;
    color: var(--gold-light);
    margin: 12px 0 20px;
    line-height: 1.1;
}

.order-info p {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.order-info .highlight {
    color: var(--gold-light);
    font-weight: 600;
}

.form-box {
    padding: 40px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field { margin-bottom: 16px; }

.field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #d5c29c;
    margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    background: #050505;
    color: #fff;
    border: 1px solid rgba(201, 162, 39, 0.25);
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.field textarea {
    min-height: 100px;
    resize: vertical;
}

.alert {
    padding: 16px 18px;
    margin-bottom: 20px;
    border: 1px solid #6e4d1a;
    background: #171006;
    color: #f6db8a;
    border-radius: 6px;
    font-size: 14px;
}

.success-box {
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, #12100a 0%, #0a0a0a 100%);
    border-radius: var(--radius);
}

.success-box h3 {
    color: var(--gold-light);
    margin: 0 0 10px;
    font-size: 22px;
}

/* ── FAQ ── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--card);
}

.faq-q {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--gold-light);
    font-family: var(--font-display);
    font-size: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.2s;
}

.faq-q:hover { background: rgba(201, 162, 39, 0.05); }

.faq-q .arrow {
    font-size: 12px;
    transition: transform 0.3s;
    color: var(--gold);
}

.faq-item.open .faq-q .arrow { transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-a-inner {
    padding: 0 24px 20px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.open .faq-a { max-height: 420px; }

/* ── Guarantee ── */
.guarantee-section {
    padding: 80px 0;
    border-top: 1px solid var(--line);
    background:
        radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201, 162, 39, 0.1) 0%, transparent 70%),
        var(--bg-soft);
}

.guarantee-wrap {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.guarantee-visual img {
    width: min(220px, 60vw);
    height: auto;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.guarantee-badge {
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px solid rgba(201, 162, 39, 0.45);
    background: linear-gradient(145deg, rgba(201, 162, 39, 0.15) 0%, rgba(8, 8, 8, 0.95) 100%);
    color: var(--gold-light);
    font-size: 48px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.guarantee-wrap h2 {
    font-size: clamp(32px, 4vw, 44px);
    color: var(--gold-light);
    margin: 12px 0 20px;
}

.guarantee-wrap p {
    color: #ccc;
    font-size: 17px;
    line-height: 1.85;
    margin: 0;
}

/* ── Footer ── */
footer {
    padding: 64px 0 28px;
    border-top: 1px solid var(--line);
    background: #020202;
}

.foot {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 40px;
}

.foot h4 {
    font-family: var(--font-display);
    color: var(--gold-light);
    font-size: 18px;
    margin: 0 0 16px;
}

.foot p, .foot a {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.9;
    transition: color 0.2s;
}

.foot a:hover { color: var(--gold-light); }

.foot .logo { width: 140px; margin-bottom: 16px; }

.copy {
    border-top: 1px solid var(--line);
    margin-top: 48px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: #666;
    font-size: 12px;
}

/* ── Floating WhatsApp ── */
.wa-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 200;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: #25d366;
    color: #fff;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
    animation: wa-pulse 2.5s ease-in-out infinite;
}

.wa-float:hover {
    background: #1fb855;
    color: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

.wa-float i {
    font-size: 22px;
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 8px 36px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}

/* ── Mobile ── */
@media (max-width: 960px) {
    .navlinks, .nav .btn { display: none; }
    .nav-toggle { display: grid; place-items: center; }

    .navlinks.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: var(--nav-h) 0 0;
        background: rgba(3, 3, 3, 0.98);
        padding: 32px;
        gap: 20px;
        margin: 0;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-copy { padding: 40px 0 20px; }
    .hero-visual { height: 420px; min-height: auto; }
    .hero-visual::after {
        background: linear-gradient(180deg, transparent 50%, var(--bg) 100%);
    }

    .hero-block {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .hero-actions {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: 8px;
        width: 100%;
    }

    .hero-actions .btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 12px 6px;
        font-size: clamp(10px, 2.8vw, 12px);
        letter-spacing: 0.02em;
        line-height: 1.2;
        white-space: normal;
        text-align: center;
        min-height: 52px;
        gap: 5px;
    }

    .hero-actions .btn .fa-arrow-right {
        display: none;
    }

    .hero-actions .btn-wa {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        height: auto;
        min-height: 52px;
        padding: 12px 6px;
        border-radius: 6px;
        align-self: stretch;
        background: #25d366;
        color: #fff;
        border-color: #1ebe57;
    }

    .hero-actions .btn-wa .btn-wa-label {
        display: inline;
    }

    .hero-actions .btn-wa i {
        font-size: 17px;
        margin: 0;
        flex-shrink: 0;
    }

    .wa-float span { display: none; }

    .wa-float {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .wa-float i { font-size: 26px; }

    .features, .features-6 { grid-template-columns: 1fr 1fr; }
    .benefits-stats { grid-template-columns: 1fr 1fr; }
    .trust-stats-grid { grid-template-columns: 1fr; gap: 16px; }
    .testimonials { grid-template-columns: 1fr 1fr; }

    .products-slider .products-viewport {
        overflow: hidden;
        margin: 0 28px;
    }

    .products-slider .products {
        display: flex;
        flex-wrap: nowrap;
        gap: 16px;
        grid-template-columns: none;
        transition: transform 0.35s ease;
        will-change: transform;
    }

    .products-slider .product {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
    }

    .products-slider .product:hover {
        transform: none;
    }

    .products-slider .products-arrow {
        display: grid;
    }

    .products-slider .products-dots {
        display: flex;
    }

    .products-slider .products-arrow.prev { left: 0; }
    .products-slider .products-arrow.next { right: 0; }

    .product-banners {
        grid-template-columns: 1fr;
    }

    .product-banner,
    .product-banner img {
        min-height: 280px;
    }

    .order-wrap, .foot { grid-template-columns: 1fr; }
    .grid2 { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
    .features, .features-6, .testimonials, .benefits-stats { grid-template-columns: 1fr; }
    .testimonial-stats { gap: 28px; }
    .product-banners {
        grid-template-columns: 1fr;
    }
    .hero h1 { font-size: 40px; }
    .hero-visual { height: 340px; }
    section { padding: 72px 0; }
    .order-info, .form-box { padding: 28px; }
    .hero-logo {
        width: clamp(240px, 78vw, 360px);
    }
    .wa-float span { display: none; }
}
