/* ─── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg-dark: #0a0e17;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;
    --bg-elevated: #161e2e;
    --gold: #c9a44a;
    --gold-light: #e2c97e;
    --gold-dark: #a07c2e;
    --gold-glow: rgba(201, 164, 74, 0.15);
    --text-primary: #f1f3f7;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --accent: #c9a44a;
    --border: #1f2937;
    --border-light: #2d3748;
    --error: #ef4444;
    --success: #10b981;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
    --shadow-gold: 0 8px 32px rgba(201, 164, 74, 0.2);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --max-width: 1140px;
    --section-pad: 120px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; height: auto; display: block; }

h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 20px;
}

/* ─── Buttons ──────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0e17;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    border-color: var(--text-muted);
    color: var(--text-primary);
}

.btn-full { width: 100%; }

.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ─── Nav ──────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10, 14, 23, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(31, 41, 55, 0.5);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img { height: 72px; }

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--gold);
    font-size: 15px;
}

.nav-phone svg { flex-shrink: 0; }

/* ─── Hero ─────────────────────────────────────────────────────── */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 600px at 80% 30%, rgba(201,164,74,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 600px 400px at 20% 80%, rgba(17,24,39,0.8) 0%, transparent 70%),
        linear-gradient(180deg, var(--bg-dark) 0%, #0d1321 100%);
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 164, 74, 0.1);
    border: 1px solid rgba(201, 164, 74, 0.25);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 50px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-body {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-cta-group { margin-bottom: 20px; }

.hero-micro {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
    font-style: italic;
}

.hero-scarcity {
    font-size: 13px;
    color: var(--gold);
    opacity: 0.8;
    font-style: italic;
}

/* Hero video */
.video-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--border);
    transition: border-color 0.3s;
    background: #000;
}

.video-container:hover { border-color: rgba(201, 164, 74, 0.4); }
.video-container.playing { border-color: rgba(201, 164, 74, 0.2); }

.hero-video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: contain;
    background: #000;
}

/* Video overlay + play button */
.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 14, 23, 0.25);
    cursor: pointer;
    transition: opacity 0.4s, background 0.3s;
    z-index: 2;
}

.video-overlay:hover {
    background: rgba(10, 14, 23, 0.15);
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.play-btn:hover {
    transform: scale(1.1);
}

.video-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    transition: opacity 0.3s;
    pointer-events: none;
}

.video-container.playing .video-caption { opacity: 0; }

.hero-phone-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 16px;
    color: var(--gold);
}

.hero-phone-cta span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ─── Trust Credibility Bar ────────────────────────────────────── */
.trust-bar {
    padding: 44px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.trust-section-label {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.trust-names {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.trust-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: color 0.3s;
}

.trust-name:hover {
    color: var(--text-primary);
}

.trust-divider-line {
    width: 80px;
    height: 1px;
    background: var(--border);
    margin: 24px auto;
}

/* ─── Value Props ──────────────────────────────────────────────── */
.value-props {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
}

.value-props h2 { margin-bottom: 64px; }

.props-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.prop-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.prop-card:hover {
    border-color: rgba(201, 164, 74, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.prop-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.prop-card h3 {
    font-family: var(--font-display);
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--gold-light);
}

.prop-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─── Process / What Happens Next ──────────────────────────────── */
.process {
    padding: var(--section-pad) 0;
    background: var(--bg-card);
}

.process h2 { margin-bottom: 64px; }

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 24px;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--bg-dark);
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.process-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-connector {
    width: 60px;
    height: 2px;
    background: var(--border);
    margin-top: 28px;
    flex-shrink: 0;
}

/* ─── Testimonials ─────────────────────────────────────────────── */
.testimonials {
    padding: var(--section-pad) 0;
    background: var(--bg-dark);
}

.testimonials h2 { margin-bottom: 64px; }

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

.testimonial-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: border-color 0.3s;
}

.testimonial-card:hover {
    border-color: rgba(201, 164, 74, 0.2);
}

.quote-icon {
    margin-bottom: 16px;
    opacity: 0.6;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
}

/* ─── Bio Section ──────────────────────────────────────────────── */
.bio-section {
    padding: var(--section-pad) 0;
    background: var(--bg-card);
}

.bio-inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.bio-img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
}

.bio-content h2 {
    text-align: left;
    font-size: 34px;
    margin-bottom: 20px;
}

.bio-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.bio-content strong { color: var(--text-primary); }

.bio-media-logos {
    display: flex;
    gap: 20px;
    margin-top: 24px;
}

.bio-cred-section {
    margin-top: 24px;
}

.bio-cred-section + .bio-cred-section {
    margin-top: 20px;
}

.bio-cred-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 10px;
}

.bio-cred-names {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.bio-cred-names span {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.bio-media-logo:hover { opacity: 1; }

/* ─── Form Section ─────────────────────────────────────────────── */
.form-section {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 50%, var(--bg-dark) 100%);
}

.form-wrapper {
    max-width: 580px;
    margin: 0 auto;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 56px 48px 40px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h2 { font-size: 30px; margin-bottom: 12px; }
.form-header p { color: var(--text-secondary); font-size: 15px; }

/* Progress bar */
.form-progress { margin-bottom: 36px; }

.progress-track {
    height: 3px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    width: 33.33%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
    transition: width 0.4s ease;
    box-shadow: 0 0 8px rgba(201, 164, 74, 0.4);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    padding: 4px 12px;
    border-radius: 100px;
}

.progress-label.active {
    color: var(--bg-dark);
    background: var(--gold);
    font-weight: 700;
}

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

/* Form steps */
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.3s ease; }

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

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

.form-group { margin-bottom: 20px; }

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.optional {
    font-weight: 400;
    font-size: 12px;
    color: var(--text-muted);
}

input, select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-primary);
    background: var(--bg-dark);
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius);
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 0 4px rgba(201, 164, 74, 0.2);
}

input::placeholder { color: var(--text-secondary); opacity: 0.6; }

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 8.825L.35 3.175 1.4 2.125 6 6.725l4.6-4.6 1.05 1.05z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

select option { background: var(--bg-card); color: var(--text-primary); }

.form-group.error input,
.form-group.error select { border-color: var(--error); }

.error-message {
    font-size: 12px;
    color: var(--error);
    margin-top: 4px;
    display: none;
}

.form-group.error .error-message { display: block; }

.form-btn-row {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.form-btn-row .btn { flex: 1; }
.form-btn-row .btn-ghost { flex: 0 0 auto; padding: 16px 28px; }

.form-phone-alt {
    text-align: center;
    padding: 20px 0 8px;
    border-top: 1px solid var(--border);
    margin-top: 24px;
}

.form-phone-alt p {
    font-size: 14px;
    color: var(--text-muted);
}

.form-microcopy {
    font-size: 14px;
    color: var(--gold);
    text-align: center;
    font-style: italic;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.form-disclaimer {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    margin-top: 12px;
}

/* ─── Footer CTA ───────────────────────────────────────────────── */
.footer-cta {
    padding: 80px 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.footer-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 48px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
}

.footer-cta-inner h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.footer-cta-scarcity {
    font-size: 15px;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 28px;
}

.footer-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.btn-lg { padding: 18px 48px; font-size: 17px; }

.footer-cta-phone {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-cta-phone strong { color: var(--gold); }

/* ─── Footer ───────────────────────────────────────────────────── */
.footer {
    padding: 56px 0 48px;
    border-top: 1px solid var(--border);
    background: var(--bg-dark);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
}

.footer-logo { height: 48px; margin-bottom: 16px; opacity: 0.8; }

.footer-entity {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.footer-location {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-location a { color: var(--gold); }

.footer-legal {
    text-align: right;
    max-width: 500px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.disclosure {
    font-size: 11px;
    line-height: 1.6;
    color: var(--text-muted);
    opacity: 0.7;
}

/* ─── Modals ───────────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    padding: 24px;
}

.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover { color: var(--text-primary); }

.modal-icon { font-size: 48px; margin-bottom: 16px; }

.modal h2 {
    font-size: 26px;
    margin-bottom: 16px;
}

.modal p { color: var(--text-secondary); margin-bottom: 12px; font-size: 15px; }

.modal-highlight {
    font-size: 17px !important;
    font-weight: 600;
    color: var(--gold) !important;
}

.modal-sub { font-size: 13px !important; color: var(--text-muted) !important; }

.modal .btn { margin-top: 20px; }

.exit-modal h2 { font-size: 28px; }

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
    :root { --section-pad: 100px; }
    h2 { font-size: 34px; }
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero h1 { font-size: 38px; }
    .hero h1 br { display: none; }

    .hero-media { max-width: 380px; margin: 0 auto; order: -1; }

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

    .process-steps { flex-direction: column; align-items: center; gap: 32px; }
    .process-connector { width: 2px; height: 32px; margin: 0; }

    .testimonial-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

    .bio-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }
    .bio-content h2 { text-align: center; }
    .bio-media-logos { justify-content: center; }
}

@media (max-width: 600px) {
    :root { --section-pad: 80px; }

    h2 { font-size: 28px; }

    .hero { padding: 130px 0 60px; }
    .logo-img { height: 52px; }
    .nav-inner { padding: 14px 16px; }
    .hero h1 { font-size: 30px; }
    .hero-sub { font-size: 16px; }

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

    .form-row { grid-template-columns: 1fr; }
    .form-wrapper { padding: 36px 24px 28px; border-radius: var(--radius-lg); }
    .form-header h2 { font-size: 24px; }
    .form-header h2 br { display: none; }

    .footer-inner { flex-direction: column; }
    .footer-legal { text-align: left; }

    .trust-names { gap: 20px; }
    .trust-name { font-size: 14px; }
    .bio-cred-label { text-align: center; }
    .bio-cred-names { justify-content: center; gap: 16px; }
    .bio-cred-names span { font-size: 13px; }
    .footer-cta-inner { padding: 40px 24px; }

    .bio-img { width: 200px; height: 200px; }

    .modal { padding: 32px 24px; }
}
