/* ===== VARIABLES ===== */
:root {
    --navy: #0B1426;
    --navy-light: #0f1e3d;
    --navy-card: #131f3a;
    --gold: #C9A84C;
    --gold-light: #e2c06a;
    --gold-glow: rgba(201, 168, 76, 0.25);
    --white: #FFFFFF;
    --gray: #7a90b0;
    --text: #c8d6e8;
    --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #a8863a 100%);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--navy);
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section { padding: 90px 0; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(11, 20, 38, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    transition: all 0.3s;
}
.header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO ===== */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo em { color: var(--gold); font-style: italic; }
.logo-icon { color: var(--gold); font-size: 1rem; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.25s;
    font-family: 'DM Sans', sans-serif;
    letter-spacing: 0.02em;
}
.btn-primary {
    background: var(--gradient-gold);
    color: #0B1426;
    box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--gold-glow);
}
.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: #0B1426;
}
.btn-large { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; text-align: center; display: block; }

/* ===== BADGE ===== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.35);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.badge-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.6); }
}

/* ===== SECTION LABELS ===== */
.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 50px;
    line-height: 1.2;
}

/* ===== HERO ===== */
.hero {
    padding: 150px 0 90px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 40%, rgba(201,168,76,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(201,168,76,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
}
.hero h1 em {
    color: var(--gold);
    font-style: italic;
}
.hero-sub {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}
.hero-metrics {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 36px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 10px;
    padding: 20px 24px;
    width: fit-content;
}
.metric { text-align: center; padding: 0 24px; }
.metric-val {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}
.metric-lbl { font-size: 0.78rem; color: var(--gray); margin-top: 4px; display: block; }
.metric-divider { width: 1px; height: 40px; background: rgba(201,168,76,0.2); }
.trust-note { margin-top: 16px; font-size: 0.82rem; color: var(--gray); }

/* ===== HERO CARD ===== */
.hero-card {
    background: var(--navy-card);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 0 60px rgba(201,168,76,0.1);
    animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--gray);
}
.live-dot {
    width: 6px; height: 6px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.card-badge {
    background: rgba(34,197,94,0.12);
    color: #22c55e;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}
.portfolio-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.portfolio-value span { font-size: 1.4rem; color: var(--gray); }
.portfolio-change { color: #22c55e; font-size: 0.85rem; margin-bottom: 20px; font-weight: 500; }
.trade-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.trade-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    font-size: 0.88rem;
}
.trade-name { color: var(--text); }
.trade-result { font-weight: 600; }
.trade-result.win { color: #22c55e; }
.trade-result.loss { color: #ef4444; }
.card-footer { font-size: 0.75rem; color: var(--gray); text-align: center; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 14px; }

/* ===== TRUST STRIP ===== */
.trust-strip {
    background: rgba(201,168,76,0.05);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 14px 0;
    overflow: hidden;
}
.trust-track { display: flex; width: max-content; }
.trust-items {
    display: flex;
    gap: 60px;
    animation: scrollTrust 25s linear infinite;
}
.trust-items span {
    white-space: nowrap;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    font-weight: 500;
}
@keyframes scrollTrust {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== WHY CARDS ===== */
.why-section { background: var(--navy-light); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 32px 28px;
    transition: all 0.3s;
}
.why-card:hover {
    border-color: rgba(201,168,76,0.4);
    box-shadow: 0 0 30px var(--gold-glow);
    transform: translateY(-4px);
}
.why-icon { font-size: 2.2rem; margin-bottom: 16px; }
.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 10px;
}
.why-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.7; }

/* ===== TIMELINE ===== */
.how-section { background: var(--navy); }
.timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 50px;
}
.timeline-item { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.timeline-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
}
.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}
.timeline-content p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; max-width: 220px; margin: 0 auto; }
.timeline-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin-top: 22px;
    flex-shrink: 0;
}
.center-btn { text-align: center; }

/* ===== FORM SECTION ===== */
.form-section { background: var(--navy-light); }
.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.form-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}
.benefit-list { list-style: none; margin-bottom: 32px; }
.benefit-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.check { color: var(--gold); font-size: 0.75rem; }
.form-stat-box {
    display: flex;
    gap: 24px;
    background: rgba(201,168,76,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 10px;
    padding: 18px 20px;
}
.form-stat { flex: 1; }
.fs-val {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 700;
}
.fs-lbl { font-size: 0.75rem; color: var(--gray); margin-top: 2px; display: block; }

/* ===== FORM ===== */
.form {
    background: var(--navy-card);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 16px;
    padding: 36px 32px;
}
.form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 24px;
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.8rem; color: var(--gray); margin-bottom: 6px; letter-spacing: 0.04em; }
.field input, .form input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.25s;
}
.field input:focus, .form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(201,168,76,0.04);
}
.field input::placeholder, .form input::placeholder { color: rgba(122,144,176,0.6); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.phone-wrap {
    display: flex;
    align-items: stretch;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.25s;
}
.phone-wrap:focus-within { border-color: var(--gold); }
.phone-prefix {
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: rgba(201,168,76,0.1);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    border-right: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
    user-select: none;
}
.phone-wrap input {
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    flex: 1;
    font-size: 16px !important;
}
.phone-wrap input:focus { outline: none !important; box-shadow: none !important; }
.form-note { margin-top: 12px; font-size: 0.78rem; color: var(--gray); text-align: center; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ===== TESTIMONIALS ===== */
.testi-section { background: var(--navy); }
.testi-card {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 28px;
    transition: all 0.3s;
}
.testi-card:hover, .featured-testi {
    border-color: rgba(201,168,76,0.35);
    box-shadow: 0 0 30px var(--gold-glow);
}
.testi-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.testi-avatar {
    width: 46px; height: 46px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #0B1426;
    flex-shrink: 0;
}
.testi-top h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 2px; }
.testi-top span { color: var(--gray); font-size: 0.78rem; }
.stars { margin-left: auto; color: var(--gold); font-size: 0.85rem; }
.testi-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.testi-profit { color: var(--gold); font-weight: 700; font-size: 1rem; }

/* ===== STATS ===== */
.stats-section { background: var(--navy-light); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
    background: var(--navy-card);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 14px;
    padding: 36px 20px;
    text-align: center;
    transition: all 0.3s;
}
.stat-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px var(--gold-glow);
}
.stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}
.stat-lbl { color: var(--gray); font-size: 0.82rem; }

/* ===== FAQ ===== */
.faq-section { background: var(--navy); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.faq-item {
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 26px 24px;
    transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(201,168,76,0.3); }
.faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 10px;
}
.faq-item p { color: var(--gray); font-size: 0.88rem; line-height: 1.7; }

/* ===== FORM FINAL ===== */
.form-section-final {
    background: var(--navy-light);
    border-top: 1px solid rgba(201,168,76,0.15);
}
.final-wrap {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.final-wrap h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 12px;
}
.gold { color: var(--gold); }
.final-sub { color: var(--gray); font-size: 1rem; margin-bottom: 36px; }
.form-inline { background: none; border: none; padding: 0; }
.inline-fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 16px; }
.inline-fields input {
    padding: 14px 16px;
    background: var(--navy-card);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    color: var(--white);
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    width: 100%;
}
.inline-fields input::placeholder { color: rgba(122,144,176,0.6); }
.inline-fields input:focus { outline: none; border-color: var(--gold); }
.inline-fields .phone-wrap { grid-column: span 1; }
.final-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 18px;
    color: var(--gray);
    font-size: 0.82rem;
}

/* ===== FOOTER ===== */
.footer {
    padding: 36px 0;
    text-align: center;
    border-top: 1px solid rgba(201,168,76,0.12);
}
.footer .logo { justify-content: center; margin-bottom: 10px; }
.footer p { color: var(--gray); font-size: 0.8rem; }

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 0; transform: translateY(24px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-card { max-width: 420px; }
    .hero { min-height: auto; padding: 130px 0 70px; text-align: center; }
    .hero-sub { margin: 0 auto 36px; }
    .hero-metrics { margin: 0 auto 36px; }
    .trust-note { text-align: center; }
    .hero-card { margin: 0 auto; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .header { padding: 12px 0; }
    .logo { font-size: 1.2rem; }
    .btn-outline { padding: 8px 16px; font-size: 0.82rem; }
    .hero h1 { font-size: 2rem; }
    .hero-sub { font-size: 0.95rem; }
    .hero-metrics { flex-direction: column; gap: 0; width: 100%; }
    .metric { padding: 14px 0; }
    .metric-divider { width: 100%; height: 1px; }
    .grid-3, .stats-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .form-wrapper { grid-template-columns: 1fr; gap: 32px; }
    .form { padding: 24px 18px; }
    .form-row-2 { grid-template-columns: 1fr; }
    .timeline { flex-direction: column; align-items: center; gap: 24px; }
    .timeline-line { width: 2px; height: 30px; background: linear-gradient(180deg, transparent, var(--gold), transparent); }
    .section-title { font-size: 1.7rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .inline-fields { grid-template-columns: 1fr; }
    .final-trust { flex-direction: column; gap: 8px; }
    .btn-large { width: 100%; display: block; text-align: center; padding: 15px 24px; }
    .form-stat-box { flex-direction: column; gap: 14px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 1.7rem; }
    .section-title { font-size: 1.45rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-val { font-size: 1.8rem; }
    .hero-card { padding: 20px 16px; }
    .portfolio-value { font-size: 1.9rem; }
}
