:root {
    --gold: #C9983A;
    --gold-light: #E8B84B;
    --gold-dim: #8B6520;
    --black: #050505;
    --dark: #0a0a0a;
    --dark2: #111111;
    --dark3: #181818;
    --card: #141210;
    --card-border: #2a2318;
    --white: #ffffff;
    --gray: #8a8a8a;
    --gray2: #555555;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    cursor: default;
}

/* CUSTOM CURSOR */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 152, 58, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transition: all 0.15s ease;
}

/* ===================== NAVBAR ===================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 152, 58, 0.12);
    padding: 12px 40px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 780px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.nav-logo img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* ===================== HERO ===================== */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 40px 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201, 152, 58, 0.10) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 80% 80%, rgba(201, 152, 58, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 30% 30% at 20% 70%, rgba(201, 152, 58, 0.04) 0%, transparent 60%);
}

/* Diagonal light rays */
.hero-rays {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-rays::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 120%;
    background: linear-gradient(135deg, rgba(201, 152, 58, 0.06) 0%, transparent 60%);
    transform: rotate(-15deg);
    animation: rayPulse 8s ease-in-out infinite;
}

.hero-rays::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 120%;
    background: linear-gradient(225deg, rgba(201, 152, 58, 0.04) 0%, transparent 60%);
    transform: rotate(15deg);
    animation: rayPulse 8s ease-in-out infinite reverse;
}

@keyframes rayPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* Grid pattern */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 152, 58, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 152, 58, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at center, black 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201, 152, 58, 0.08);
    border: 1px solid rgba(201, 152, 58, 0.25);
    border-radius: 100px;
    padding: 8px 20px;
    margin-bottom: 32px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    animation: fadeDown 0.8s ease both;
}

.hero-badge-avatars {
    display: flex;
}

.hero-badge-avatars span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--black);
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    display: inline-block;
    margin-right: -6px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--black);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

h1.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero-title span {
    background: linear-gradient(135deg, #fff 30%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 40px;
    animation: fadeUp 0.8s ease 0.35s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeUp 0.8s ease 0.5s both;
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(201, 152, 58, 0.4);
    background: rgba(201, 152, 58, 0.08);
    color: var(--white);
}

.btn-store:hover {
    background: rgba(201, 152, 58, 0.18);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 152, 58, 0.15);
}

.btn-store-icon {
    font-size: 22px;
}

/* VIDEO FRAME */
.hero-video-frame {
    position: relative;
    width: 100%;
    max-width: 780px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(201, 152, 58, 0.2);
    background: #0d0b08;
    animation: fadeUp 0.9s ease 0.6s both;
    box-shadow:
        0 0 60px rgba(201, 152, 58, 0.08),
        0 40px 80px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(201, 152, 58, 0.1);
}

.hero-video-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(201, 152, 58, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-video-frame iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}

.video-overlay-logo {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 13px;
    color: var(--black);
    box-shadow: 0 4px 16px rgba(201, 152, 58, 0.4);
}

/* TAGLINE */
.hero-taglines {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 80px;
    text-align: center;
    padding: 60px 40px;
}

.tagline-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(22px, 3.5vw, 42px);
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.tagline-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.tagline-text:nth-child(2) {
    transition-delay: 0.15s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================== SECTION COMMONS ===================== */
section {
    position: relative;
}

.section-label {
    display: inline-block;
    border: 1px solid rgba(201, 152, 58, 0.35);
    border-radius: 100px;
    padding: 5px 18px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(201, 152, 58, 0.9);
    margin-bottom: 20px;
    background: rgba(201, 152, 58, 0.06);
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.section-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    max-width: 500px;
    line-height: 1.7;
}

/* ===================== CHARACTERISTICS ===================== */
#benefits {
    padding: 100px 60px;
    background: linear-gradient(180deg, var(--black) 0%, rgba(201, 152, 58, 0.025) 50%, var(--black) 100%);
}

.benefits-header {
    text-align: center;
    margin-bottom: 70px;
}

.benefits-header .section-sub {
    margin: 0 auto;
    max-width: 560px;
}

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

.feature-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 152, 58, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover {
    border-color: rgba(201, 152, 58, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(201, 152, 58, 0.06);
    background: #161410;
}

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

.card-icon {
    width: 44px;
    height: 44px;
    background: rgba(201, 152, 58, 0.1);
    border: 1px solid rgba(201, 152, 58, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
    line-height: 1.3;
}

.card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    font-weight: 300;
}

/* ===================== WHO USES - CENTERED HORIZONTAL MARQUEE ===================== */
#who-uses {
    padding: 80px 0 60px;
}

.who-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    padding: 0 40px;
}

.who-marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 780px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 6px 0;
}

/* fade left and right edges */
.who-marquee-wrapper::before,
.who-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.who-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--black), transparent);
}

.who-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--black), transparent);
}

.who-marquee-row {
    display: flex;
    gap: 12px;
    width: max-content;
}

.who-marquee-row.go-right {
    animation: whoRight 18s linear infinite;
}

.who-marquee-row.go-left {
    animation: whoLeft 18s linear infinite;
}

@keyframes whoRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes whoLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-tag {
    background: rgba(201, 152, 58, 0.07);
    border: 1px solid rgba(201, 152, 58, 0.2);
    border-radius: 100px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    transition: all 0.3s;
    cursor: default;
}

.marquee-tag:hover {
    background: rgba(201, 152, 58, 0.15);
    color: var(--white);
    border-color: rgba(201, 152, 58, 0.5);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===================== FOUNDER'S NOTE ===================== */
#founder {
    padding: 100px 60px;
    text-align: center;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 152, 58, 0.04) 0%, transparent 70%);
}

.carousel-wrapper {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}

.carousel-slides {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.carousel-slide {
    min-width: 100%;
    padding: 50px 50px;
}

.slide-quote {
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.slide-quote strong {
    color: var(--gold-light);
    font-weight: 600;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 152, 58, 0.3);
    background: rgba(201, 152, 58, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--gold);
    font-size: 16px;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: rgba(201, 152, 58, 0.15);
    border-color: var(--gold);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 3px;
}

/* ===================== STATS ===================== */
#stats {
    padding: 60px 60px;
    border-top: 1px solid rgba(201, 152, 58, 0.08);
    border-bottom: 1px solid rgba(201, 152, 58, 0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* ===================== COMPARISON ===================== */
#comparison {
    padding: 100px 60px;
}

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

.comparison-grid {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.comparison-col {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.comparison-col-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    font-weight: 700;
}

.col-nn .comparison-col-header {
    background: rgba(201, 152, 58, 0.08);
    border: 1px solid rgba(201, 152, 58, 0.2);
    border-bottom: none;
    border-radius: 20px 20px 0 0;
}

.col-others .comparison-col-header {
    background: rgba(80, 80, 80, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    color: rgba(255, 255, 255, 0.5);
}

.col-nn-icon {
    width: 32px;
    height: 32px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 11px;
    color: var(--black);
    flex-shrink: 0;
}

.col-others-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.comparison-list {
    list-style: none;
    border: 1px solid rgba(201, 152, 58, 0.12);
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    flex: 1;
}

.col-others .comparison-list {
    border-color: rgba(255, 255, 255, 0.06);
}

.comparison-item {
    padding: 14px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 52px;
}

.comparison-item:last-child {
    border-bottom: none;
}

.col-nn .comparison-item {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(201, 152, 58, 0.02);
}

.col-nn .comparison-item:hover {
    background: rgba(201, 152, 58, 0.05);
}

.col-others .comparison-item {
    color: rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.2);
}

.check-icon {
    color: var(--gold);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

.x-icon {
    color: rgba(255, 80, 80, 0.7);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===================== PHRASE CAROUSEL ===================== */
#phrases {
    padding: 40px 0 20px;
    overflow: hidden;
}

.phrases-marquee {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: scrollLeft 25s linear infinite;
    padding: 10px 0;
}

.phrase-item {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(201, 152, 58, 0.6);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 20px;
}

.phrase-item::after {
    content: '◆';
    font-size: 6px;
    color: rgba(201, 152, 58, 0.3);
}

/* ===================== TESTIMONIALS ===================== */
#testimonials {
    padding: 100px 0 80px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 40px;
}

.testi-carousel-outer {
    max-width: 860px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 24px;
    mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}

.testi-carousel-track {
    display: flex;
    gap: 20px;
    animation: testiScroll 18s linear infinite;
    width: max-content;
}

.testi-carousel-track:hover {
    animation-play-state: paused;
}

@keyframes testiScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px 26px;
    flex-shrink: 0;
    width: 340px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(201, 152, 58, 0.25);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 300;
}

.testimonial-text strong {
    color: var(--white);
    font-weight: 600;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 4px;
    letter-spacing: 2px;
}

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

.author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dim), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: var(--black);
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 2px;
}

.author-role {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.testi-join-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 44px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.testi-join-avatars {
    display: flex;
}

.testi-join-avatars span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--black);
    background: linear-gradient(135deg, var(--gold), var(--gold-dim));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: var(--black);
    margin-right: -7px;
}

.testi-join-avatars span:last-child {
    margin-right: 0;
}

/* ===================== FAQS ===================== */
#faqs {
    padding: 100px 60px;
}

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

.faqs-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(201, 152, 58, 0.25);
}

.faq-question {
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    transition: color 0.3s;
    user-select: none;
}

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

.faq-arrow {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(201, 152, 58, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 12px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-item.open .faq-arrow {
    background: rgba(201, 152, 58, 0.1);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    font-weight: 300;
}

.faq-answer-inner p {
    margin-bottom: 10px;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

/* ===================== PRICING ===================== */
#pricing {
    padding: 100px 60px;
    background: linear-gradient(180deg, var(--black) 0%, rgba(201, 152, 58, 0.025) 50%, var(--black) 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-badge {
    display: block;
    width: fit-content;
    margin: 0 auto 50px;
    border: 1px solid rgba(201, 152, 58, 0.3);
    border-radius: 100px;
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    background: rgba(201, 152, 58, 0.05);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card.recommended {
    border-color: rgba(201, 152, 58, 0.35);
    background: linear-gradient(145deg, #161410 0%, #120f08 100%);
    box-shadow: 0 0 60px rgba(201, 152, 58, 0.08);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 100px;
}

.plan-name {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.plan-price {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.plan-price-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    margin-bottom: 20px;
}

.plan-referral {
    background: rgba(201, 152, 58, 0.08);
    border: 1px solid rgba(201, 152, 58, 0.15);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.plan-referral .discount {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin: 4px 0;
}

.plan-referral .reward {
    font-size: 16px;
    font-weight: 700;
    color: var(--gold-light);
    display: block;
    margin-top: 4px;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    margin-bottom: 24px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-plan:hover {
    background: var(--gold-light);
    box-shadow: 0 8px 24px rgba(201, 152, 58, 0.3);
    transform: translateY(-2px);
}

.plan-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.plan-benefits li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.plan-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===================== MORE CHARACTERISTICS ===================== */
#more-features {
    padding: 80px 60px;
    text-align: center;
    position: relative;
}

.more-features-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 152, 58, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.more-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
    z-index: 1;
}

/* ===================== PHRASE CAROUSEL ===================== */
#phrases {
    padding: 0;
}

.phrases-carousel-wrap {
    position: relative;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 0 60px;
    min-height: 260px;
    overflow: hidden;
}

.phrases-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(201, 152, 58, 0.12) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%;
}

.phrases-viewport {
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.phrases-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.phrases-slide {
    min-width: 100%;
    text-align: center;
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.55;
    padding: 0 20px;
    letter-spacing: -0.3px;
}

.phrases-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 36px;
    cursor: pointer;
    z-index: 3;
    padding: 10px 18px;
    line-height: 1;
    transition: color 0.3s;
    user-select: none;
}

.phrases-arrow:hover {
    color: var(--white);
}

.phrases-arrow-left {
    left: calc(50% - 340px);
}

.phrases-arrow-right {
    right: calc(50% - 340px);
}

.phrases-dots {
    display: flex;
    gap: 8px;
    margin-top: 28px;
    position: relative;
    z-index: 2;
}

.phrases-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s;
}

.phrases-dot.active {
    background: var(--white);
    width: 24px;
    border-radius: 4px;
}

/* ===================== VERTICAL MARQUEE (Privacy words) ===================== */
#privacy-words {
    padding: 30px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.privacy-words-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.privacy-word {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    padding: 0 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 0.3s;
}

.privacy-word:last-child {
    border-right: none;
}

.privacy-word:hover {
    color: rgba(201, 152, 58, 0.8);
}

.privacy-word-icon {
    font-size: 14px;
}

/* ===================== CTA ===================== */
#cta {
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 152, 58, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.cta-phones {
    position: relative;
    max-width: 700px;
    margin: 60px auto 0;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    background: linear-gradient(145deg, #C9983A, #8B6520);
    border-radius: 40px;
    position: absolute;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.5);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 28px;
}

.phone-main {
    width: 200px;
    height: 360px;
    z-index: 3;
    transform: rotate(0deg);
    background: linear-gradient(145deg, #1a1600, #0d0a00);
    border: 2px solid rgba(201, 152, 58, 0.4);
}

.phone-left {
    width: 170px;
    height: 320px;
    z-index: 2;
    left: 60px;
    transform: rotate(-8deg) translateX(-40px);
    opacity: 0.8;
}

.phone-right {
    width: 170px;
    height: 320px;
    z-index: 2;
    right: 60px;
    transform: rotate(8deg) translateX(40px);
    opacity: 0.8;
}

.phone-screen-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.phone-nn-logo {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: var(--black);
    box-shadow: 0 0 40px rgba(201, 152, 58, 0.5);
}

.phone-nn-label {
    font-size: 10px;
    font-family: 'Inter', sans-serif;
    color: rgba(201, 152, 58, 0.7);
    font-weight: 500;
    letter-spacing: 1px;
}

/* ===================== CONTACT ===================== */
#contact {
    padding: 100px 60px;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.contact-left .section-label {
    display: block;
    width: fit-content;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 36px;
}

.contact-info-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
}

.contact-info-card:hover {
    border-color: rgba(201, 152, 58, 0.2);
    background: #161410;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(201, 152, 58, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-info-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 6px;
}

.contact-info-value {
    font-size: 14px;
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-value:hover {
    color: var(--gold);
}

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

.form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
    width: 100%;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-input:focus {
    border-color: rgba(201, 152, 58, 0.4);
    background: rgba(201, 152, 58, 0.03);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    cursor: pointer;
}

.btn-submit {
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    font-size: 15px;
    padding: 16px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.btn-submit:hover {
    background: var(--gold-light);
    box-shadow: 0 8px 24px rgba(201, 152, 58, 0.3);
    transform: translateY(-2px);
}

/* ===================== FOOTER ===================== */
footer {
    border-top: 1px solid rgba(201, 152, 58, 0.08);
    padding: 60px 40px;
    background: linear-gradient(180deg, var(--black) 0%, #080600 100%);
}

.footer-inner {
    max-width: 720px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.btn-download {
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-download:hover {
    background: var(--gold-light);
    box-shadow: 0 6px 20px rgba(201, 152, 58, 0.3);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.footer-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-link-item a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link-item a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 28px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}

.footer-bottom a {
    color: rgba(201, 152, 58, 0.5);
    text-decoration: none;
    margin-left: 6px;
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* MOBILE */
@media (max-width: 900px) {
    nav {
        padding: 16px 24px;
    }

    nav.scrolled {
        padding: 12px 24px;
    }

    .nav-links {
        display: none;
    }

    #hero {
        padding: 100px 24px 60px;
    }

    #benefits,
    #comparison,
    #testimonials,
    #faqs,
    #pricing,
    #more-features,
    #contact,
    footer {
        padding: 60px 24px;
    }

    #extra-features {
        padding: 60px 24px !important;
    }

    #who-uses {
        padding: 80px 0 0;
    }

    #stats {
        padding: 50px 24px;
    }

    .cards-grid,
    .more-cards {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    #founder {
        padding: 60px 24px;
    }

    .carousel-slide {
        padding: 30px 24px;
    }

    .privacy-words-row {
        gap: 0;
    }

    .privacy-word {
        padding: 0 16px;
        font-size: 11px;
    }

    .cta-phones {
        height: 280px;
    }

    .phone-main {
        width: 140px;
        height: 250px;
    }

    .phone-left,
    .phone-right {
        width: 120px;
        height: 220px;
    }

    /* Fix: store buttons side by side on mobile */
    .hero-buttons {
        flex-direction: row !important;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 12px;
    }

    .btn-store {
        flex: 0 1 auto;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Fix: who-uses marquee same width as cards above/below */
    .who-marquee-wrapper {
        max-width: calc(100% - 48px);
        margin: 0 auto;
    }
}