:root {
    --bg-main: #0a0a0a;
    --bg-secondary: #141414;
    --primary-gold: #FFC107;
    --primary-orange: #FF8F00;
    --text-light: #fff;
    --text-muted: #b3b3b3;
    --gradient-gold: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
    --max-width: 1200px;
    --header-height: 80px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body { font-family: 'Open Sans', sans-serif; background: var(--bg-main); color: var(--text-light); line-height: 1.7; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; font-weight: 800; letter-spacing: -0.5px; line-height: 1.3; }
a { color: inherit; text-decoration: none; transition: color 0.2s, background 0.2s, transform 0.2s; }
a:focus-visible { outline: 2px solid var(--primary-gold); outline-offset: 6px; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 25px; }
.section-padding { padding: 88px 0; }
.bg-secondary { background: var(--bg-secondary); }
.text-muted, main p { color: var(--text-muted); }
.text-gradient { color: var(--primary-gold); background: var(--gradient-gold); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
main h2 { font-size: clamp(1.7rem, 2.5vw, 2.2rem); margin-bottom: 32px; }
main h3 { font-size: 1.05rem; margin-bottom: 12px; }
.eyebrow { display: block; color: var(--primary-gold); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 16px; }
.btn-gold, .btn-outline { display: inline-block; padding: 14px 30px; border-radius: 4px; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; text-align: center; }
.btn-gold { background: var(--gradient-gold); border: 1px solid transparent; color: #000; box-shadow: 0 5px 15px rgba(255,143,0,0.2); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(255,143,0,0.4); }
.btn-outline { border: 1px solid var(--primary-gold); color: var(--primary-gold); }
.btn-outline:hover { background: var(--primary-gold); color: #000; }
.skip-link { position: absolute; top: 10px; left: 20px; transform: translateY(-160%); z-index: 1100; padding: 10px 18px; background: var(--primary-gold); color: #000; }
.skip-link:focus { transform: translateY(0); }
header { background: rgba(10,10,10,0.98); min-height: var(--header-height); padding: 15px 0; display: flex; align-items: center; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(10px); }
.header-content { width: 100%; display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 50px; width: auto; }
nav ul { display: flex; font-family: 'Montserrat', sans-serif; font-weight: 500; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
nav a { position: relative; }
nav a:hover, nav a[aria-current="page"] { color: var(--primary-gold); }
nav a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background: var(--primary-gold); transition: width 0.2s; }
nav a:hover::after, nav a[aria-current="page"]::after { width: 100%; }
.hero { min-height: min(90vh, 760px); display: flex; align-items: center; padding: 110px 0; border-bottom: 3px solid var(--primary-orange); background: linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.62)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover; }
.hero .container { width: 100%; }
.hero-content { max-width: 740px; }
.hero h1 { font-size: clamp(2.4rem, 4.4vw, 3.7rem); line-height: 1.1; margin-bottom: 30px; }
.hero p { max-width: 700px; font-size: 1.15rem; color: #d0d0d0; margin-bottom: 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.intro-copy { max-width: 850px; }
.intro-copy p + p { margin-top: 20px; }
.intro-copy strong { color: var(--text-light); font-weight: 600; }
.purchases-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.purchase-card { padding: 28px; border: 1px solid #2a2a2a; border-radius: 8px; }
.purchase-card h3 { color: var(--primary-gold); }
.purchase-icon { display: block; width: 28px; height: 28px; color: var(--primary-gold); margin-bottom: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.criteria { margin-top: 24px; padding: 28px 32px; background: #191609; border-left: 3px solid var(--primary-gold); }
.criteria p { max-width: 980px; }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); list-style: none; gap: 24px; position: relative; }
.steps::before { content: ''; position: absolute; left: 21px; right: 21px; top: 21px; height: 2px; background: rgba(255,193,7,0.2); }
.steps li { position: relative; }
.step-number { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; background: var(--gradient-gold); border-radius: 50%; color: #000; font-size: 1.2rem; font-weight: 800; position: relative; z-index: 1; box-shadow: 0 0 15px rgba(255,193,7,0.2); margin-bottom: 24px; }
.steps p { font-size: 0.95rem; }
.steps a { text-decoration: underline; text-underline-offset: 3px; }
.steps a:hover { color: var(--primary-gold); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 50px; }
.benefits-grid li { padding: 24px 0; border-top: 1px solid #2a2a2a; }
.benefits-grid h3 { margin-bottom: 8px; }
.stats-band { background: #050505; padding: 48px 0; border-block: 1px solid #252525; }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); text-align: center; }
.stats-grid li { padding: 8px 20px; border-right: 1px solid #3a3010; }
.stats-grid li:last-child { border: 0; }
.stat-value { display: block; color: var(--primary-gold); font-family: 'Montserrat', sans-serif; font-size: clamp(1.7rem, 2.7vw, 2.3rem); line-height: 1.2; font-weight: 800; margin-bottom: 14px; }
.stat-label { display: block; color: var(--text-muted); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.8px; }
.exclusions { border: 1px solid #2a2a2a; border-radius: 6px; overflow: hidden; }
.exclusions li { display: flex; gap: 16px; padding: 20px 24px; }
.exclusions li + li { border-top: 1px solid #2a2a2a; }
.exclusions .cross { color: var(--primary-orange); font-weight: 700; flex-shrink: 0; }
.exclusions strong { color: #ddd; }
.company-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
.company-details { padding: 30px; border: 1px solid #2a2a2a; border-radius: 6px; }
.company-details div { display: grid; grid-template-columns: 170px minmax(0, 1fr); gap: 18px; }
.company-details div + div { margin-top: 14px; }
.company-details dt { color: var(--text-muted); font-size: 0.9rem; }
.company-details dd { font-size: 0.95rem; overflow-wrap: anywhere; }
.contact-copy { padding-top: 20px; }
.contact-copy h3 { font-size: 1.2rem; }
.contact-copy p { margin-bottom: 24px; }
.email-link { color: var(--primary-gold); text-decoration: underline; text-underline-offset: 4px; overflow-wrap: anywhere; }
.contact-copy .email-link { font-size: 1.2rem; font-weight: 700; }
.email-link:hover { color: #fff; }
footer { background: #050505; padding: 80px 0 30px; font-size: 0.9rem; color: #888; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 30px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { height: 40px; width: auto; margin-bottom: 20px; opacity: 0.8; }
.footer-col h4 { color: #fff; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a:hover, .footer-col a[aria-current="page"] { color: var(--primary-gold); }
.footer-bottom { text-align: center; }
.footer-bottom a:hover { color: var(--primary-gold); }
@media (max-width: 1000px) {
    .company-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .company-details div { grid-template-columns: 1fr; gap: 3px; }
    .steps { gap: 20px; }
}
@media (max-width: 900px) {
    html { scroll-padding-top: 165px; }
    .section-padding { padding: 64px 0; }
    .hero { padding: 80px 0; min-height: 0; }
    .purchases-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; }
    .steps::before { display: none; }
    .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 0; }
    .stats-grid li:nth-child(2) { border: 0; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1.2fr; gap: 25px; }
}
@media (max-width: 600px) {
    html { scroll-padding-top: 180px; }
    .container { padding: 0 22px; }
    .hero { padding: 64px 0; }
    .hero h1 { font-size: 2.4rem; }
    .hero p { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .section-padding { padding: 54px 0; }
    .purchases-grid, .benefits-grid, .company-grid, .footer-grid { grid-template-columns: 1fr; }
    .purchase-card, .criteria, .company-details { padding: 24px; }
    .steps { grid-template-columns: 1fr; gap: 28px; }
    .steps::before { display: block; left: 21px; top: 21px; bottom: 21px; width: 2px; height: auto; }
    .steps li { padding-left: 64px; }
    .step-number { position: absolute; left: 0; top: 0; }
    .stats-grid li { padding: 8px 12px; }
    .stat-value { font-size: clamp(1.3rem, 6.5vw, 1.7rem); }
    .stat-label { font-size: 0.75rem; }
    .exclusions li { padding: 20px; gap: 12px; }
    .contact-copy { padding-top: 0; }
    footer { padding-top: 54px; }
    .footer-grid { gap: 32px; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; }
}
