/* ===== VARIABLES ===== */
:root {
    --black: #0D0D0D;
    --black-2: #111111;
    --black-3: #161616;
    --black-card: #1a1a1a;
    --copper: #B87333;
    --copper-light: #d4914d;
    --copper-glow: rgba(184, 115, 51, 0.2);
    --white: #FFFFFF;
    --gray: #666666;
    --text: #aaaaaa;
    --gradient-copper: linear-gradient(135deg, #B87333 0%, #8f5a26 100%);
}

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

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

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; width: 100%; }
.section { padding: 90px 0; }
.center-text { text-align: center; }

/* ===== HEADER ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; padding: 16px 0;
    background: rgba(13,13,13,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(184,115,51,0.12);
    transition: all 0.3s;
}
.header.scrolled { padding: 10px 0; box-shadow: 0 4px 40px rgba(0,0,0,0.6); }
.header .container { display: flex; justify-content: space-between; align-items: center; }

/* ===== LOGO ===== */
.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.02em;
}
.logo em { color: var(--copper); font-style: italic; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-block; padding: 11px 26px;
    border-radius: 4px; font-weight: 500;
    font-size: 0.9rem; cursor: pointer; border: none;
    text-decoration: none; transition: all 0.25s;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.04em;
}
.btn-primary {
    background: var(--gradient-copper);
    color: #fff;
    box-shadow: 0 4px 20px var(--copper-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--copper-glow); }
.btn-outline { background: transparent; border: 1px solid var(--copper); color: var(--copper); }
.btn-outline:hover { background: var(--copper); color: #fff; }
.btn-large { padding: 15px 34px; font-size: 1rem; }
.btn-full { width: 100%; display: block; text-align: center; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ===== HERO ===== */
.hero {
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-noise {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 50% 60% at 75% 40%, rgba(184,115,51,0.05) 0%, transparent 65%),
        radial-gradient(ellipse 30% 40% at 15% 70%, rgba(184,115,51,0.03) 0%, transparent 60%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: center;
}
.eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 20px;
    font-weight: 500;
}
.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}
.hero h1 em { color: var(--copper); font-style: italic; }
.hero-desc { font-size: 1rem; color: var(--gray); line-height: 1.75; margin-bottom: 36px; max-width: 500px; }
.hero-numbers {
    display: flex; gap: 0;
    margin-bottom: 36px;
    border: 1px solid rgba(184,115,51,0.18);
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}
.hero-num { padding: 18px 28px; border-right: 1px solid rgba(184,115,51,0.18); }
.hero-num:last-child { border-right: none; }
.hero-num strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--copper);
    line-height: 1;
    margin-bottom: 4px;
}
.hero-num span { font-size: 0.72rem; color: var(--gray); letter-spacing: 0.04em; }
.hero-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta-note { font-size: 0.78rem; color: var(--gray); }

/* ===== HERO PANEL ===== */
.hero-panel {
    background: var(--black-2);
    border: 1px solid rgba(184,115,51,0.22);
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 0 50px rgba(184,115,51,0.08);
}
.panel-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.75rem; color: var(--gray);
    letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 18px;
}
.pulse-dot {
    width: 6px; height: 6px;
    background: #22c55e; border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.8); }
}
.panel-ticker { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.ticker-row {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px;
    background: rgba(255,255,255,0.025);
    border-radius: 5px; font-size: 0.82rem;
}
.ticker-pair { color: var(--text); flex: 1; }
.ticker-action {
    font-size: 0.68rem; font-weight: 600;
    padding: 2px 8px; border-radius: 3px;
    letter-spacing: 0.06em;
}
.ticker-action.buy { background: rgba(34,197,94,0.12); color: #22c55e; }
.ticker-action.sell { background: rgba(239,68,68,0.12); color: #ef4444; }
.ticker-amount { font-weight: 600; color: var(--white); font-size: 0.85rem; }
.panel-total {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 12px;
}
.panel-total span { font-size: 0.75rem; color: var(--gray); }
.panel-total strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; color: #22c55e; font-weight: 700;
}
.panel-bar {
    height: 4px; background: rgba(255,255,255,0.06);
    border-radius: 2px; overflow: hidden; margin-bottom: 8px;
}
.bar-fill {
    height: 100%;
    background: var(--gradient-copper);
    width: 94%;
    border-radius: 2px;
}
.panel-footer { font-size: 0.72rem; color: var(--gray); text-align: center; }

/* ===== TICKER STRIP ===== */
.ticker-strip {
    background: var(--black-2);
    border-top: 1px solid rgba(184,115,51,0.1);
    border-bottom: 1px solid rgba(184,115,51,0.1);
    padding: 12px 0; overflow: hidden;
}
.ticker-track { display: flex; width: max-content; }
.ticker-content {
    display: flex; gap: 50px;
    animation: tickerScroll 30s linear infinite;
}
.ticker-content span { white-space: nowrap; color: var(--gray); font-size: 0.78rem; }
.ticker-content em { font-style: normal; font-weight: 500; }
.ticker-content .up { color: #22c55e; }
.ticker-content .down { color: #ef4444; }
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== DARK SECTION ===== */
.dark-section { background: var(--black-2); }
.split-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.section-eyebrow {
    font-size: 0.7rem; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--copper);
    font-weight: 500; margin-bottom: 14px;
}
.section-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.3rem; font-weight: 700;
    color: var(--white); line-height: 1.2;
    margin-bottom: 20px;
}
.split-text p { color: var(--gray); font-size: 0.92rem; line-height: 1.8; margin-bottom: 14px; }
.split-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.split-card {
    background: var(--black-3); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px; padding: 22px 18px; transition: all 0.3s;
}
.split-card:hover { border-color: rgba(184,115,51,0.35); }
.sc-icon { font-size: 1.6rem; margin-bottom: 10px; }
.split-card h3 { color: var(--white); font-size: 0.9rem; margin-bottom: 6px; font-weight: 500; }
.split-card p { color: var(--gray); font-size: 0.8rem; line-height: 1.6; }

/* ===== STEPS ===== */
.steps-section { background: var(--black); }
.steps-row {
    display: flex; align-items: center;
    gap: 0; margin-top: 40px;
}
.step-block {
    flex: 1; text-align: center; padding: 0 20px;
}
.step-no {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem; font-weight: 700;
    color: var(--copper); opacity: 0.3;
    line-height: 1; margin-bottom: 14px;
}
.step-block h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; font-weight: 500; letter-spacing: 0.04em; }
.step-block p { color: var(--gray); font-size: 0.84rem; line-height: 1.65; max-width: 200px; margin: 0 auto; }
.step-arrow { color: var(--copper); font-size: 1.4rem; opacity: 0.4; flex-shrink: 0; }

/* ===== FORM SECTION ===== */
.form-section { background: var(--black-2); }
.form-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.form-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; color: var(--white); margin-bottom: 24px; line-height: 1.2;
}
.info-stats { display: flex; gap: 20px; margin-bottom: 28px; }
.info-stat {
    flex: 1; background: var(--black-3);
    border: 1px solid rgba(184,115,51,0.18);
    border-radius: 6px; padding: 16px;
}
.is-val {
    display: block; font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem; color: var(--copper); font-weight: 700;
}
.is-lbl { font-size: 0.72rem; color: var(--gray); display: block; margin-top: 3px; }
.info-list { list-style: none; }
.info-list li {
    padding: 10px 0; color: var(--text); font-size: 0.88rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    display: flex; gap: 10px; align-items: center;
}
.info-list li::before { content: ''; }

/* ===== FORM ===== */
.form {
    background: var(--black-card);
    border: 1px solid rgba(184,115,51,0.18);
    border-radius: 10px; padding: 32px 28px;
}
.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; color: var(--white);
    margin-bottom: 22px; font-weight: 600;
}
.f-field { margin-bottom: 16px; }
.f-field label { display: block; font-size: 0.72rem; color: var(--gray); margin-bottom: 6px; letter-spacing: 0.06em; text-transform: uppercase; }
.f-field input, .form-grid input {
    width: 100%; padding: 13px 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 5px; color: var(--white);
    font-size: 0.92rem; font-family: 'Outfit', sans-serif;
    transition: border-color 0.25s;
}
.f-field input:focus, .form-grid input:focus {
    outline: none; border-color: var(--copper);
    background: rgba(184,115,51,0.03);
}
.f-field input::placeholder, .form-grid input::placeholder { color: rgba(102,102,102,0.8); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.phone-wrap {
    display: flex; align-items: stretch;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 5px; overflow: hidden;
    transition: border-color 0.25s;
}
.phone-wrap:focus-within { border-color: var(--copper); }
.phone-prefix {
    display: flex; align-items: center;
    padding: 0 13px;
    background: rgba(184,115,51,0.1);
    color: var(--copper); font-weight: 600;
    font-size: 0.88rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    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; }
.f-note { margin-top: 10px; font-size: 0.74rem; color: var(--gray); text-align: center; }

/* ===== TESTIMONIALS ===== */
.testi-section { background: var(--black); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.testi-card {
    background: var(--black-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px; padding: 28px 24px; transition: all 0.3s;
    position: relative;
}
.testi-card:hover, .testi-featured {
    border-color: rgba(184,115,51,0.3);
    box-shadow: 0 0 30px var(--copper-glow);
}
.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem; color: var(--copper);
    opacity: 0.2; line-height: 0.8;
    margin-bottom: 12px; display: block;
}
.testi-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.75; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-init {
    width: 40px; height: 40px;
    background: var(--gradient-copper);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.testi-author strong { display: block; color: var(--white); font-size: 0.88rem; }
.testi-author span { color: var(--gray); font-size: 0.74rem; }
.testi-return { margin-left: auto; color: var(--copper); font-weight: 700; font-size: 0.95rem; white-space: nowrap; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--black-2); border-top: 1px solid rgba(184,115,51,0.12); border-bottom: 1px solid rgba(184,115,51,0.12); padding: 32px 0; }
.stats-row { display: flex; align-items: center; justify-content: center; gap: 0; }
.sbar-stat { flex: 1; text-align: center; padding: 0 20px; }
.sbar-stat strong {
    display: block; font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; font-weight: 700; color: var(--copper); margin-bottom: 4px;
}
.sbar-stat span { font-size: 0.75rem; color: var(--gray); letter-spacing: 0.04em; }
.sbar-div { width: 1px; height: 50px; background: rgba(184,115,51,0.15); }

/* ===== FAQ ===== */
.faq-section { background: var(--black); }
.faq-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; }
.faq-item {
    background: var(--black-2); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px; padding: 24px 22px; transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(184,115,51,0.3); }
.faq-item h3 { color: var(--white); font-size: 0.95rem; margin-bottom: 10px; font-weight: 500; }
.faq-item p { color: var(--gray); font-size: 0.84rem; line-height: 1.7; }

/* ===== FORM FINAL ===== */
.form-final { background: var(--black-2); }
.final-box {
    max-width: 680px; margin: 0 auto;
}
.final-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem; color: var(--white);
    margin-bottom: 12px; line-height: 1.2;
}
.final-box h2 em { color: var(--copper); font-style: italic; }
.final-desc { color: var(--gray); font-size: 0.92rem; margin-bottom: 32px; }
.form-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; margin-bottom: 14px;
}
.form-grid input {
    padding: 13px 15px;
    background: var(--black-card);
    border: 1px solid rgba(184,115,51,0.18);
    border-radius: 5px; color: var(--white);
    font-size: 16px; font-family: 'Outfit', sans-serif;
    width: 100%;
}
.form-grid .phone-wrap { grid-column: span 1; }
.final-btn { grid-column: span 2; width: 100%; margin-top: 4px; }
.final-trust {
    display: flex; justify-content: center;
    gap: 28px; margin-top: 16px;
    color: var(--gray); font-size: 0.78rem;
}

/* ===== FOOTER ===== */
.footer { padding: 32px 0; text-align: center; border-top: 1px solid rgba(184,115,51,0.1); }
.footer .logo { justify-content: center; margin-bottom: 10px; }
.footer p { color: var(--gray); font-size: 0.76rem; }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero { min-height: auto; padding: 130px 0 60px; }
    .hero-panel { max-width: 400px; margin: 0 auto; }
    .hero-desc { max-width: 100%; }
    .split-layout { grid-template-columns: 1fr; gap: 40px; }
    .form-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    .section { padding: 56px 0; }
    .header { padding: 12px 0; }
    .logo { font-size: 1.15rem; }
    .btn-outline { padding: 8px 14px; font-size: 0.8rem; }
    .hero h1 { font-size: 2.1rem; }
    .hero-numbers { flex-direction: column; width: 100%; }
    .hero-num { border-right: none; border-bottom: 1px solid rgba(184,115,51,0.18); padding: 14px 20px; }
    .hero-num:last-child { border-bottom: none; }
    .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
    .hero-cta .btn-large { width: 100%; text-align: center; }
    .cta-note { text-align: center; }
    .section-h2 { font-size: 1.75rem; }
    .testi-grid, .split-cards { grid-template-columns: 1fr; }
    .stats-row { flex-wrap: wrap; gap: 20px; }
    .sbar-div { display: none; }
    .sbar-stat { min-width: 45%; }
    .faq-cols { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; }
    .form { padding: 22px 16px; }
    .form-layout { gap: 24px; }
    .form-grid { grid-template-columns: 1fr; }
    .final-btn { grid-column: span 1; }
    .steps-row { flex-direction: column; gap: 28px; }
    .step-arrow { transform: rotate(90deg); }
    .info-stats { flex-direction: column; }
    .final-trust { flex-direction: column; gap: 8px; }
    .btn-large { width: 100%; display: block; text-align: center; padding: 16px 20px; font-size: 1rem; }
    .final-box { padding: 40px 20px; }
    .phone-wrap { width: 100%; }
    .split-text p { font-size: 0.95rem; }
    .testi-card { padding: 28px 20px; }
    .hero-panel { padding: 20px; }
    .panel-ticker { gap: 10px; }
}

@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .hero { padding: 110px 0 50px; }
    .hero h1 { font-size: 1.75rem; line-height: 1.25; }
    .section-h2 { font-size: 1.45rem; }
    .sbar-stat { min-width: 100%; }
    .form { padding: 18px 14px; }
    .f-field input, .phone-wrap input { font-size: 16px; } /* prevent zoom on iOS */
    .btn-primary { font-size: 0.95rem; padding: 14px 18px; }
    .mini-cta-strip { padding: 16px; }
    .urgency-badge { font-size: 12px; padding: 5px 12px; }
    .popup-box { padding: 24px 14px; }
    .popup-box h2 { font-size: 20px; }
    .step-block { padding: 24px 20px; }
    .testi-featured { transform: none; }
}
