/* ===== CONVERT MEDIA GROUP — SHARED STYLES v4 ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #C8A04A;
    --gold-light: #E8C86A;
    --gold-dark: #9A7A2A;
    --dark: #0A0A0A;
    --dark-2: #111111;
    --dark-3: #1A1A1A;
    --silver: #E0E0E0;
    --silver-dim: #888888;
    --white: #FFFFFF;
    --glass: rgba(255,255,255,0.03);
    --glass-border: rgba(200,160,74,0.15);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; background: var(--dark); color: var(--silver); overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* CURSOR TRAIL */
#cursor-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99999;
}

/* LOADER */
.loader { position: fixed; inset: 0; background: var(--dark); z-index: 100000; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 20px; }
.loader-logo { height: 60px; }
.loader-bar { width: 200px; height: 2px; background: var(--dark-3); border-radius: 2px; overflow: hidden; }
.loader-bar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; transition: width 0.1s ease; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 48px; display: flex; align-items: center; justify-content: space-between; backdrop-filter: blur(20px); background: rgba(10,10,10,0.85); border-bottom: 1px solid rgba(200,160,74,0.1); transition: transform 0.4s ease; }
.nav.hidden { transform: translateY(-100%); }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--silver-dim); transition: color 0.3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: 10px 24px; background: transparent; border: 1px solid var(--gold); color: var(--gold); border-radius: 100px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s; font-family: 'Space Grotesk', sans-serif; }
.nav-cta:hover { background: var(--gold); color: var(--dark); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--dark); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 32px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: var(--silver); transition: color 0.3s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--white); font-size: 32px; cursor: pointer; }

/* BUTTONS */
.btn-primary { display: inline-block; padding: 16px 36px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark); border: none; border-radius: 100px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: 'Space Grotesk', sans-serif; transition: all 0.3s; text-align: center; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,160,74,0.3); }
.btn-secondary { display: inline-block; padding: 16px 36px; background: transparent; color: var(--silver); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: 'Space Grotesk', sans-serif; transition: all 0.3s; text-align: center; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* SECTION COMPONENTS */
.section-eyebrow { font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 16px; font-weight: 600; }
.section-title { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); margin-bottom: 16px; letter-spacing: -0.02em; line-height: 1.15; }
.section-subtitle { font-size: 16px; color: var(--silver-dim); max-width: 520px; margin: 0 auto; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 72px; }
.gold-text { background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* FOOTER */
.footer { padding: 60px 48px 32px; border-top: 1px solid rgba(255,255,255,0.06); background: var(--dark-2); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--silver-dim); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--silver-dim); transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 13px; color: var(--silver-dim); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: var(--silver-dim); transition: color 0.3s; }
.footer-legal a:hover { color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav { padding: 16px 20px; }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    #cursor-canvas { display: none; }
}
