/* For-Ex Trading lead-generation website */
:root {
    --navy: #0b2454;
    --navy-2: #16376f;
    --gold: #b8932f;
    --gold-soft: #dcc57f;
    --ink: #10203b;
    --muted: #5f6b80;
    --line: #d8dfeb;
    --bg: #f5f8fc;
    --card: rgba(255, 255, 255, 0.92);
    --shadow: 0 18px 50px rgba(11, 36, 84, 0.12);
    --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(184, 147, 47, 0.12), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(11, 36, 84, 0.12), transparent 30%),
        linear-gradient(180deg, #f9fbff 0%, #eef4fb 100%);
    line-height: 1.65;
}

a { color: var(--navy); }
a:hover { color: var(--navy-2); }
img { max-width: 100%; display: block; }

.container {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(16, 32, 59, 0.08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
}

.nav-wrap img {
max-height: 80px;
max-width: 80px;
}

.brand img {
    width: clamp(140px, 18vw, 220px);
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.site-nav a {
    text-decoration: none;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(16, 32, 59, 0.12);
    border-radius: 14px;
    background: #fff;
    padding: 0;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    margin: 5px auto;
}

.hero-section {
    padding: 4rem 0 2.5rem;
}

.hero-grid,
.split-grid,
.form-wrap,
.footer-grid,
.trust-grid,
.card-grid,
.field-grid {
    display: grid;
    gap: 1.5rem;
}

.hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    min-height: calc(100vh - 140px);
}

.hero-copy h1,
.section-head h2,
.info-panel h2,
.legal-wrap h1,
.thanks-wrap h1,
.notice-card h3,
.form-copy h2 {
    margin: 0 0 1rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--navy);
}
.hero-copy h1 { font-size: clamp(2.4rem, 5vw, 4.75rem); }
.section-head h2,
.info-panel h2,
.form-copy h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
.legal-wrap h1,
.thanks-wrap h1 { font-size: clamp(2rem, 4vw, 3.4rem); }

.hero-text,
.section-head p,
.form-copy p,
.footer-copy,
.legal-wrap p,
.legal-wrap li,
.notice-card p,
.info-panel p,
.timeline-item p,
.faq-item p {
    color: var(--muted);
    margin: 0 0 1rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.82rem;
    font-weight: 800;
}
.eyebrow::before {
    content: "";
    width: 38px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.button,
button.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 52px;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(11, 36, 84, 0.18);
}
.button:hover,
button.button:hover { color: #fff; transform: translateY(-1px); }
.button-outline {
    background: #fff;
    color: var(--navy);
    border-color: rgba(11, 36, 84, 0.18);
    box-shadow: none;
}
.button-outline:hover { color: var(--navy); }
.button-sm { min-height: 44px; padding: 0.7rem 1rem; }
.button-block { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.button-row.center { justify-content: center; }

.card {
    background: var(--card);
    border: 1px solid rgba(16, 32, 59, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card {
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}
.hero-card::after {
    content: "";
    position: absolute;
    inset: auto -15% -25% 35%;
    height: 280px;
    background: radial-gradient(circle, rgba(184, 147, 47, 0.22), transparent 58%);
    pointer-events: none;
}
.hero-logo {
    width: min(460px, 100%);
    margin: 0 auto 1.5rem;
}
.signal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.signal-grid div {
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 32, 59, 0.08);
}
.signal-grid strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.35rem;
}
.signal-grid span { color: var(--muted); font-size: 0.96rem; }

.hero-actions,
.hero-points,
.check-list,
.footer-links,
.consent-stack {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.5rem 0;
}
.hero-points li,
.check-list li,
.footer-links li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
}
.hero-points li::before,
.check-list li::before,
.footer-links li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    box-shadow: 0 0 0 4px rgba(184, 147, 47, 0.14);
}

.section {
    padding: 5rem 0;
}
.section-alt {
    background: rgba(255, 255, 255, 0.54);
    border-top: 1px solid rgba(16, 32, 59, 0.06);
    border-bottom: 1px solid rgba(16, 32, 59, 0.06);
}
.section-head {
    margin-bottom: 2rem;
}
.section-head.narrow {
    max-width: 760px;
}

.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid article,
.info-panel,
.notice-card,
.form-card,
.legal-wrap,
.thanks-wrap {
    padding: 1.6rem;
}
.card-grid article h3,
.notice-card h3 {
    margin-top: 0;
    color: var(--navy);
}

.trust-strip {
    padding-bottom: 1rem;
}
.trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.trust-item {
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(16, 32, 59, 0.08);
    border-radius: 18px;
}
.trust-item strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.3rem;
}
.trust-item span { color: var(--muted); font-size: 0.94rem; }

.split-grid {
    grid-template-columns: 1fr 0.9fr;
}
.align-center { align-items: center; }
.timeline {
    display: grid;
    gap: 1rem;
}
.timeline-item {
    padding: 1rem 0 1rem 1.25rem;
    border-left: 2px solid rgba(184, 147, 47, 0.45);
}
.timeline-item strong { color: var(--navy); display: block; margin-bottom: 0.35rem; }

.notice-card { align-self: start; }
.compact li { margin-bottom: 0.55rem; }

.form-wrap {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
}
.alert-box {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: #fff5f5;
    color: #9c1d1d;
    border: 1px solid #f0c4c4;
}

form {
    display: grid;
    gap: 1rem;
}
label { display: grid; gap: 0.45rem; font-weight: 600; color: var(--navy); }
input,
select,
textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(16, 32, 59, 0.14);
    border-radius: 16px;
    padding: 0.95rem 1rem;
    font: inherit;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
}
textarea { min-height: 140px; resize: vertical; }
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(11, 36, 84, 0.4);
    box-shadow: 0 0 0 4px rgba(11, 36, 84, 0.08);
}

.consent-stack {
    display: grid;
    gap: 0.85rem;
}
.consent-item {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.85rem;
    font-weight: 500;
    color: var(--muted);
}
.consent-item input {
    width: 1.1rem;
    min-height: 1.1rem;
    margin-top: 0.2rem;
    padding: 0;
    border-radius: 4px;
}
.fine-print {
    margin: 0;
    color: var(--muted);
    font-size: 0.93rem;
}
.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.faq-list {
    display: grid;
    gap: 1rem;
}
.faq-item {
    padding: 1.2rem 1.4rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 32, 59, 0.08);
    border-radius: 18px;
    box-shadow: var(--shadow);
}
.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    color: var(--navy);
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 0.9rem 0 0; }

.legal-page {
    padding: 4rem 0 5rem;
}
.legal-wrap,
.thanks-wrap {
    max-width: 860px;
    margin: 0 auto;
}
.legal-wrap h2 {
    margin-top: 2rem;
    color: var(--navy);
}
.legal-wrap ul { padding-left: 1.2rem; }
.center-text { text-align: center; }

.site-footer {
    padding: 3.5rem 0 1.2rem;
    background: linear-gradient(180deg, rgba(10, 28, 61, 0.98), rgba(11, 36, 84, 1));
    color: rgba(255, 255, 255, 0.92);
}
.footer-grid {
    grid-template-columns: 1.1fr 0.8fr 1fr;
    gap: 2rem;
}
.site-footer h2 {
    color: #fff;
    font-size: 1.1rem;
    margin-top: 0;
}
.footer-logo {
    width: clamp(180px, 22vw, 250px);
    margin-bottom: 1rem;
    filter: brightness(1.1);
}
.footer-copy,
.footer-links li,
.footer-links a,
.footer-bottom {
    color: rgba(255, 255, 255, 0.78);
}
.footer-copy-tight { margin-top: 0.8rem; }
.footer-links a { text-decoration: none; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.92rem;
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .hero-grid,
    .split-grid,
    .form-wrap,
    .footer-grid,
    .trust-grid,
    .three-up,
    .two-up {
        grid-template-columns: 1fr;
    }
    .site-nav {
        position: absolute;
        top: calc(100% + 0.6rem);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(16, 32, 59, 0.08);
        border-radius: 18px;
        box-shadow: var(--shadow);
    }
    .site-nav.is-open { display: flex; }
    .
     { position: relative; }
    .nav-toggle { display: inline-block; }
    .hero-section { padding-top: 2.4rem; }
    .hero-grid { min-height: auto; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 1.2rem, 1180px); }
    .hero-copy h1 { font-size: 2.2rem; }
    .section { padding: 3.8rem 0; }
    .signal-grid { grid-template-columns: 1fr; }
    .button-row,
    .hero-actions { flex-direction: column; }
    .button,
    .button-outline { width: 100%; }
}

.page-hero {
    padding: 4rem 0 2rem;
}

.narrow-page {
    max-width: 860px;
}

.route-list li a {
    text-decoration: none;
    font-weight: 700;
}

.cta-banner {
    padding: 2rem;
}

.thanks-page {
    padding-top: 4.5rem;
}

.thanks-shell {
    max-width: 980px;
    padding: 2.2rem;
}

.thanks-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin: 1.5rem 0 1.8rem;
}

.thanks-chip {
    padding: 0.85rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 32, 59, 0.1);
    color: var(--navy);
    box-shadow: var(--shadow);
}

.thanks-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
}

.thanks-step {
    padding: 1.2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(16, 32, 59, 0.08);
}

.thanks-step strong {
    display: block;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.thanks-step span {
    color: var(--muted);
    font-size: 0.96rem;
}

@media (max-width: 980px) {
    .thanks-steps {
        grid-template-columns: 1fr;
    }
}