/* ========================================
   BUSSLER & CO - BOLD AWARD-WINNING
   ======================================== */
:root {
    --bg: #111a15;
    --bg-2: #0e1611;
    --surface: #1a2620;
    --surface-light: #f7f6f3;
    --border: rgba(255,255,255,0.1);
    --border-light: rgba(0,0,0,0.08);
    --text: #f8f6f3;
    --text-2: #c8c3bc;
    --text-3: #8a857e;
    --text-dark: #2d4a3a;
    --text-dark-2: #5a7a68;
    --gold: #d4a953;
    --gold-light: #e8c67a;
    --gold-dark: #b08e3f;
    --font: 'Inter', -apple-system, sans-serif;
    --serif: 'Playfair Display', Georgia, serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--bg); color: var(--text); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 4rem); }

/* Cursor */
.cursor-glow { position: fixed; width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle, rgba(212,169,83,0.06) 0%, transparent 70%); pointer-events: none; z-index: 0; transform: translate(-50%,-50%); opacity: 0; transition: opacity 0.8s; }
@media(hover:hover) { .cursor-glow { opacity: 1; } }

/* ===== NAV ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.5rem 0; transition: all 0.5s var(--ease); }
.nav.scrolled { background: rgba(17,26,21,0.95); backdrop-filter: blur(30px); padding: 0.8rem 0; border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1300px; margin: 0 auto; padding: 0 clamp(1.5rem,4vw,4rem); display: flex; align-items: center; justify-content: space-between; }
.nav-logo-img { height: 36px; filter: brightness(0) invert(1); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-link { font-size: 0.75rem; font-weight: 500; color: var(--text-2); letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.3s; }
.nav-link:hover { color: #fff; }
.nav-link-cta { color: var(--bg) !important; background: var(--gold); padding: 0.65rem 1.5rem; font-weight: 600; transition: all 0.3s; }
.nav-link-cta:hover { background: var(--gold-light); }
.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; z-index: 1001; }
.nav-toggle span { display: block; width: 28px; height: 1.5px; background: #fff; transition: all 0.3s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
@media(max-width:900px) {
    .nav-toggle { display: flex; }
    .nav-links { position: fixed; inset: 0; background: rgba(17,26,21,0.98); flex-direction: column; justify-content: center; gap: 2rem; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
    .nav-links.open { opacity: 1; pointer-events: all; }
    .nav-link { font-size: 1rem; letter-spacing: 0.2em; }
}

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; image-rendering: auto; -webkit-backface-visibility: hidden; backface-visibility: hidden; will-change: transform; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,15,12,0.9) 0%, rgba(10,15,12,0.5) 50%, rgba(10,15,12,0.2) 100%); }
@media(max-width:768px) { .hero-overlay { background: rgba(17,26,21,0.8); } }
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 8rem clamp(1.5rem,4vw,4rem) 4rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-3); margin-bottom: 2rem; border: 1px solid var(--border); padding: 0.5rem 1rem; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-title { font-family: var(--serif); font-size: clamp(3.5rem, 7vw, 5.5rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 1.5rem; white-space: nowrap; }
@media(max-width:768px) { .hero-title { white-space: normal; } }
.hero-italic { background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #e8d5a0 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-style: italic; }
.hero-sub { font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--text-2); line-height: 1.7; margin-bottom: 2.5rem; font-weight: 400; max-width: 600px; }
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats-bar { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 3rem; padding: 2rem; background: rgba(17,26,21,0.85); backdrop-filter: blur(20px); border-top: 1px solid var(--border); }
.hero-stat { text-align: center; }
.stat-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.stat-suffix { font-family: var(--serif); font-size: 1.2rem; color: var(--gold); }
.stat-label { display: block; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); margin-top: 0.3rem; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
@media(max-width:600px) { .hero-stats-bar { gap: 1.5rem; } .stat-num { font-size: 1.5rem; } }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2.25rem; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font); border: none; cursor: pointer; transition: all 0.3s; }
.btn-gold { background: var(--gold); color: var(--bg); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); color: #fff; background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 1.2rem 2.75rem; font-size: 0.85rem; }

/* ===== PRESS BAR ===== */
.press-bar { padding: 3rem 0; border-bottom: 1px solid var(--border); background: var(--bg); }
.press-label { display: block; text-align: center; font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-3); margin-bottom: 1.5rem; opacity: 0.6; }
.press-logos { display: flex; align-items: center; justify-content: center; gap: clamp(2rem, 5vw, 3.5rem); flex-wrap: wrap; max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.press-logo { opacity: 0.5; transition: all 0.3s; display: inline-flex; align-items: center; }
.press-logo:hover { opacity: 1; }
.press-logo-img { height: clamp(22px, 3vw, 34px); width: auto; filter: brightness(0) invert(1); transition: filter 0.3s; }
.press-logo:hover .press-logo-img { filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(10deg) brightness(1.1); }
.press-logo-img.press-logo-wide { height: clamp(18px, 2.5vw, 28px); }
.press-logo-img.press-logo-mid { height: clamp(20px, 2.8vw, 30px); }

/* ===== SECTIONS ===== */
.section { padding: clamp(6rem,12vw,10rem) 0; }
.section-dark { background: var(--bg-2); }
.section-light { background: var(--surface-light); }
.section-light .tag { color: var(--gold-dark); }
.section-light .headline { color: var(--text-dark); }
.section-light .headline em { color: var(--gold-dark); }
.section-light .body-text,
.section-light .section-intro { color: var(--text-dark-2); }
.section-header { text-align: center; margin-bottom: 4rem; }
.tag { display: inline-block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.headline { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1.1; color: #fff; margin-bottom: 1.5rem; }
.headline em { font-style: italic; color: var(--gold); }
.headline-center { text-align: center; }
.body-text { font-size: 1.15rem; color: var(--text-2); line-height: 1.8; margin-bottom: 1.5rem; font-weight: 400; }

/* ===== ABOUT ===== */
.about-text { max-width: 800px; margin-bottom: 1rem; }
.badge-row { display: flex; gap: 1.5rem; margin-top: 2rem; align-items: center; }
.council-badge { height: 90px; width: auto; opacity: 0.85; filter: brightness(0) invert(1); }
.section-light .council-badge { filter: brightness(0); opacity: 0.8; }

/* ===== LAMBO BANNER ===== */
.lambo-banner { position: relative; height: 70vh; min-height: 500px; overflow: hidden; display: flex; align-items: flex-end; margin-top: 0; }
.lambo-banner-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lambo-banner-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,26,21,0.95) 0%, rgba(17,26,21,0.3) 50%, transparent 100%); }
.lambo-banner-content { position: relative; z-index: 1; padding: clamp(2rem,5vw,4rem); max-width: 600px; }
.lambo-banner-content .tag { color: var(--gold-light); }
.lambo-banner-title { font-family: var(--serif); font-size: clamp(3rem,6vw,5rem); font-weight: 800; line-height: 1; margin-bottom: 1rem; color: #fff; }
.lambo-banner-content p { font-size: 1.1rem; color: var(--text-2); line-height: 1.7; }
.lambo-press { margin-top: 2rem; }
.lambo-press-label { display: block; font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; }
.lambo-press-logos { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.lambo-press-logos a { font-size: 0.95rem; font-weight: 600; color: #fff; transition: color 0.3s; white-space: nowrap; letter-spacing: 0.04em; border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 2px; }
.lambo-press-logos a:hover { color: var(--gold); border-color: var(--gold); }

/* Inline press logos (Sarina etc) */
.inline-press { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; align-items: center; }
.inline-press a { font-size: 0.85rem; font-weight: 700; color: #fff; opacity: 0.55; transition: all 0.3s; white-space: nowrap; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.6rem 1.2rem; border: 1px solid rgba(255,255,255,0.15); border-radius: 2px; text-decoration: none; }
.inline-press a:hover { opacity: 1; color: var(--gold); border-color: var(--gold); }
.section-light .inline-press a { color: var(--text-dark); opacity: 0.7; border-color: rgba(0,0,0,0.12); background: rgba(0,0,0,0.03); }
.section-light .inline-press a:hover { opacity: 1; color: var(--gold-dark); border-color: var(--gold-dark); background: rgba(0,0,0,0.05); }

/* Sarina layout */
.sarina-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-top: 2rem; }
.sarina-image-wrap { border-radius: 4px; overflow: hidden; }
.sarina-image { width: 100%; display: block; border-radius: 4px; }
.sarina-press-label { display: block; font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-dark-2); margin-bottom: 1rem; }
.sarina-press-wrap .inline-press { justify-content: flex-start; }
@media (max-width: 768px) {
    .sarina-layout { grid-template-columns: 1fr; gap: 2rem; }
    .sarina-press-wrap .inline-press { justify-content: center; }
}

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.service-card { display: flex; flex-direction: column; background: var(--surface); padding: clamp(2rem,4vw,3.5rem); position: relative; overflow: hidden; transition: all 0.5s var(--ease); border: 1px solid transparent; text-decoration: none; color: inherit; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--gold); transition: width 0.5s var(--ease); }
.service-card:hover { background: #1e2e25; border-color: var(--border); }
.service-card:hover::after { width: 100%; }
.service-num { font-family: var(--serif); font-size: 3.5rem; font-weight: 800; color: rgba(212,169,83,0.1); position: absolute; top: 1rem; right: 1.5rem; line-height: 1; }
.service-card h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; color: #fff; }
.service-card p { font-size: 1rem; color: var(--text-2); line-height: 1.7; flex: 1; }
.service-arrow { display: block; margin-top: 1.5rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); opacity: 0; transform: translateX(-8px); transition: all 0.4s var(--ease); }
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }
@media(max-width:768px) { .services-grid { grid-template-columns: 1fr; } }

/* ===== AI AGENTS ===== */
.section-intro { font-size: 1.15rem; color: var(--text-2); line-height: 1.7; max-width: 600px; margin: -0.5rem auto 0; text-align: center; }
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ai-grid .ai-item { background: var(--surface); padding: clamp(2rem,3vw,2.5rem); border: 1px solid transparent; transition: all 0.4s var(--ease); }
.ai-grid .ai-item:hover { background: #1a1a1e; border-color: var(--border); }
.ai-item-num { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--gold); opacity: 0.3; margin-bottom: 1rem; display: block; }
.ai-item h4 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; color: #fff; }
.ai-item p { font-size: 0.95rem; color: var(--text-2); line-height: 1.6; }
.section-light .ai-grid .ai-item { background: #fff; border: 1px solid var(--border-light); }
.section-light .ai-grid .ai-item:hover { background: #fafaf8; border-color: rgba(0,0,0,0.15); }
.section-light .ai-item-num { color: var(--gold-dark); }
.section-light .ai-item h4 { color: var(--text-dark); }
.section-light .ai-item p { color: var(--text-dark-2); }
@media(max-width:768px) { .ai-grid { grid-template-columns: 1fr; } }

/* ===== PARTNER BANNER ===== */
.partner-banner { padding: clamp(5rem,10vw,8rem) 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partner-inner { max-width: 750px; }
.partner-tags { display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap; }
.partner-tags span { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.5rem 1rem; border: 1px solid var(--border); color: var(--text-3); }
.partner-articles { margin-top: 2rem; }
.partner-articles-label { display: block; font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; opacity: 0.7; }
.partner-articles-list { display: flex; flex-direction: column; gap: 0.5rem; }
.partner-articles-list a { font-size: 0.95rem; color: var(--text-2); transition: color 0.3s; }
.partner-articles-list a:hover { color: var(--gold); }

/* ===== PRESS COVERAGE GRID ===== */
.press-coverage-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.press-coverage-item { display: flex; align-items: center; gap: 0.75rem; padding: 1.25rem 1.5rem; background: var(--surface); border: 1px solid var(--border); transition: all 0.3s var(--ease); }
.press-coverage-item:hover { border-color: rgba(212,169,83,0.3); transform: translateY(-2px); }
.press-coverage-item .pub-name { font-size: 0.85rem; font-weight: 600; color: #fff; }
.press-coverage-item .pub-arrow { font-size: 0.75rem; color: var(--gold); margin-left: auto; opacity: 0; transition: opacity 0.3s; }
.press-coverage-item:hover .pub-arrow { opacity: 1; }

/* ===== RESULTS ===== */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.result-card { display: flex; flex-direction: column; background: var(--surface); padding: clamp(2rem,3vw,2.5rem); transition: all 0.4s var(--ease); position: relative; border: 1px solid var(--border); }
.result-card:hover { border-color: rgba(212,169,83,0.4); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.result-featured { grid-column: span 3; flex-direction: row; align-items: center; gap: 3rem; background: linear-gradient(135deg, var(--surface) 0%, rgba(212,169,83,0.08) 100%); border-left: 4px solid var(--gold); }
.result-metric { font-family: var(--serif); font-size: clamp(2.5rem,4vw,3.2rem); font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.result-featured .result-metric { font-size: clamp(3.5rem,5vw,5rem); margin-bottom: 0; flex-shrink: 0; }
.result-label { font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem; color: #fff; }
.result-card p { font-size: 0.92rem; color: var(--text-2); line-height: 1.6; margin-bottom: 1rem; flex: 1; }
.result-tag { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); opacity: 0.7; }
.result-link { display: block; margin-top: auto; padding-top: 1rem; font-size: 0.8rem; font-weight: 600; color: var(--gold); letter-spacing: 0.06em; opacity: 0.7; transition: all 0.3s var(--ease); }
.result-card:hover .result-link { opacity: 1; }
@media(max-width:1024px) { .results-grid { grid-template-columns: repeat(2, 1fr); } .result-featured { grid-column: span 2; flex-direction: column; gap: 1.5rem; text-align: center; } .result-featured .result-metric { font-size: clamp(3rem,5vw,4rem); } }
@media(max-width:600px) { .results-grid { grid-template-columns: 1fr; } .result-featured { grid-column: span 1; } }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.testimonial { background: var(--surface); padding: 2.5rem; border: 1px solid var(--border); transition: all 0.4s var(--ease); }
.testimonial:hover { border-color: rgba(212,169,83,0.2); transform: translateY(-4px); }
.testimonial-quote { font-family: var(--serif); font-size: 1.25rem; font-style: italic; color: #fff; line-height: 1.6; margin-bottom: 2rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 0.9rem; font-weight: 600; color: #fff; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-3); }
.section-light .testimonial { background: #fff; border-color: var(--border-light); }
.section-light .testimonial:hover { border-color: rgba(180,150,80,0.3); }
.section-light .testimonial-quote { color: var(--text-dark); }
.section-light .testimonial-author strong { color: var(--text-dark); }
.section-light .testimonial-author span { color: var(--text-dark-2); }
.section-light .testimonial-photo { border-color: var(--border-light); }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.team-member { background: var(--surface); padding: 2.5rem; text-align: center; transition: all 0.4s var(--ease); }
.team-member:hover { background: #1a1a1e; }
.team-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; object-position: center 20%; margin: 0 auto 1.5rem; border: 3px solid var(--border); transition: border-color 0.3s; }
.team-photo-face { object-position: center 25%; }
.team-photo-whitebg { background: #fff; }
.team-member:hover .team-photo { border-color: var(--gold); }
.team-photo-placeholder { width: 100px; height: 100px; border-radius: 50%; background: var(--bg-2); border: 3px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 500; color: var(--gold); margin: 0 auto 1.5rem; }
.team-member h3 { font-family: var(--serif); font-size: 1.15rem; margin-bottom: 0.3rem; color: #fff; }
.team-role { display: block; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; opacity: 0.7; }
.team-member p { font-size: 0.9rem; color: var(--text-2); line-height: 1.6; margin-bottom: 1rem; }
.team-links { display: flex; justify-content: center; gap: 1rem; }
.team-links a { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); transition: color 0.3s; }
.team-links a:hover { color: var(--gold); }
@media(max-width:900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:500px) { .team-grid { grid-template-columns: 1fr; } }

/* ===== CTA ===== */
.cta-section { position: relative; padding: clamp(6rem,14vw,12rem) 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg-img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: rgba(17,26,21,0.88); }
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-title { font-family: var(--serif); font-size: clamp(3rem,6vw,5rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.cta-sub { font-size: 1.2rem; color: var(--text-2); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo-img { height: 22px; filter: brightness(0) invert(1); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; color: var(--text-3); }
.footer-social { display: flex; gap: 1.5rem; margin-top: 1rem; }
.footer-social a { color: var(--text-3); transition: all 0.3s; display: inline-flex; align-items: center; }
.footer-social a:hover { color: var(--gold); }
.footer-social-icon { height: 22px; width: auto; filter: brightness(0) invert(0.6); transition: filter 0.3s; }
.footer-social a:hover .footer-social-icon { filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(10deg) brightness(1.1); }
.footer-col h4 { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; opacity: 0.7; }
.footer-col a { display: block; font-size: 0.85rem; color: var(--text-3); padding: 0.3rem 0; transition: color 0.3s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.75rem; color: var(--text-3); }
@media(max-width:768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media(max-width:480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-hero { opacity: 0; transform: translateY(30px); animation: heroIn 1s var(--ease) forwards; }
.reveal-hero:nth-child(1) { animation-delay: 0.3s; }
.reveal-hero:nth-child(2) { animation-delay: 0.5s; }
.reveal-hero:nth-child(3) { animation-delay: 0.7s; }
.reveal-hero:nth-child(4) { animation-delay: 0.9s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

/* Stagger */
.services-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.services-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.results-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.results-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.results-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.results-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.results-grid .reveal:nth-child(6) { transition-delay: 0.4s; }
.team-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.team-grid .reveal:nth-child(3) { transition-delay: 0.15s; }
.team-grid .reveal:nth-child(4) { transition-delay: 0.2s; }

/* ===== MOBILE FIXES ===== */
@media(max-width:600px) {
    .hero-content { padding: 7rem 1.25rem 6rem; }
    .hero-title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
    .hero-sub { font-size: 1rem; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { text-align: center; justify-content: center; }
    .press-logos { gap: 1.5rem; padding: 0 1rem; }
    .press-svg { height: 22px; }
    .lambo-banner { height: auto; min-height: 420px; padding-top: 4rem; }
    .lambo-banner-content { padding: 2rem 1.25rem 2.5rem; }
    .lambo-banner-title { font-size: clamp(2rem, 8vw, 3rem); }
    .lambo-banner-content p { font-size: 0.95rem; }
    .lambo-press-logos { gap: 1rem; }
    .lambo-press-logos a { font-size: 0.85rem; }
    .headline { font-size: clamp(2rem, 6vw, 3rem); }
    .ai-item { gap: 1rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial { padding: 1.75rem; }
    .testimonial-quote { font-size: 1.1rem; }
    .cta-title { font-size: clamp(2rem, 7vw, 3rem); }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; text-align: center; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .result-featured { gap: 1.5rem; padding: clamp(1.5rem, 3vw, 2rem); }
    .result-featured .result-metric { font-size: 3rem; }
}

/* Image sharpness */
img { image-rendering: -webkit-optimize-contrast; }
.hero-bg-img, .lambo-banner-img, .cta-bg-img { image-rendering: auto; }

/* ===== PRELOADER ===== */
.preloader { position: fixed; inset: 0; z-index: 9999; background: var(--bg); display: flex; align-items: center; justify-content: center; transition: opacity 0.6s, visibility 0.6s; }
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo { height: 40px; filter: brightness(0) invert(1); margin-bottom: 1.5rem; animation: preloaderPulse 1.5s ease infinite; }
.preloader-bar { width: 120px; height: 2px; background: var(--border); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.preloader-bar::after { content: ''; display: block; height: 100%; width: 40%; background: var(--gold); border-radius: 2px; animation: preloaderSlide 1s ease infinite; }
@keyframes preloaderPulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
@keyframes preloaderSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress { position: fixed; top: 0; left: 0; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); z-index: 1001; width: 0%; transition: width 0.1s linear; }

/* ===== GRAIN TEXTURE OVERLAY ===== */
body::after { content: ''; position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: 0.025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); background-repeat: repeat; background-size: 256px; mix-blend-mode: overlay; }

/* ===== AWARD-WINNING TOUCHES ===== */

/* Smooth page transitions */
html { scroll-padding-top: 100px; }

/* Gold line accents on section headers */
.section-header::after { content: ''; display: block; width: 40px; height: 2px; background: var(--gold); margin: 2rem auto 0; opacity: 0.5; }
.section-light .section-header::after { background: var(--gold-dark); }

/* About section - refined layout */
.about-text { columns: 2; column-gap: 3rem; }
@media(max-width:768px) { .about-text { columns: 1; } }

/* Horizontal marquee on press bar */
.press-logos { animation: pressScroll 40s linear infinite; }
@media(hover:hover) { .press-logos:hover { animation-play-state: paused; } }
@keyframes pressScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-10%); } }

/* Result cards - gold accent line on top */
.result-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; transition: opacity 0.4s; }
.result-card:hover::before { opacity: 1; }

/* Service cards - number glow on hover */
.service-card:hover .service-num { color: rgba(212,169,83,0.25); }

/* Team photos - larger and more prominent */
.team-photo { width: 120px; height: 120px; }

/* Testimonial quote mark */
.testimonial::before { content: '"'; font-family: var(--serif); font-size: 4rem; color: var(--gold); opacity: 0.15; position: absolute; top: 1rem; right: 1.5rem; line-height: 1; }
.testimonial { position: relative; overflow: hidden; }

/* AI agent items - icon glow */
.ai-item::before { content: ''; position: absolute; top: -30px; right: -30px; width: 80px; height: 80px; border-radius: 50%; background: radial-gradient(circle, rgba(212,169,83,0.06), transparent); pointer-events: none; }
.ai-item { position: relative; overflow: hidden; }

/* Smooth image reveals */
.sarina-image, .hero-bg-img, .lambo-banner-img { transition: transform 8s ease-out; }
.sarina-image:hover { transform: scale(1.02); }

/* Footer - refined spacing */
.footer-brand { padding-right: 2rem; }

/* Gold shimmer on CTA button */
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
.btn-gold { background: linear-gradient(110deg, var(--gold) 0%, var(--gold-light) 25%, var(--gold) 50%, var(--gold-light) 75%, var(--gold) 100%); background-size: 200% auto; }
.btn-gold:hover { animation: shimmer 2s linear infinite; }

/* Partner banner - refined left border accent */
.partner-inner { border-left: 3px solid var(--gold); padding-left: 2.5rem; }
@media(max-width:600px) { .partner-inner { padding-left: 1.5rem; } }

/* Lambo banner - ken burns */
.lambo-banner-img { animation: kenBurns 20s ease-in-out infinite alternate; }
@keyframes kenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.05); } }

/* Nav link hover underline */
.nav-link:not(.nav-link-cta)::after { content: ''; display: block; width: 0; height: 1px; background: var(--gold); transition: width 0.3s var(--ease); margin-top: 2px; }
.nav-link:not(.nav-link-cta):hover::after { width: 100%; }

/* ===== BACK TO TOP ===== */
.back-to-top { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; width: 44px; height: 44px; border: 1px solid var(--border); background: rgba(17,26,21,0.9); backdrop-filter: blur(20px); color: var(--gold); font-size: 1.2rem; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transform: translateY(20px); transition: all 0.4s var(--ease); pointer-events: none; }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

/* ===== TESTIMONIALS MOBILE ===== */
@media(max-width:600px) {
    .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
    .testimonial { padding: 1.5rem; }
    .testimonial::before { font-size: 3rem; top: 0.5rem; right: 1rem; }
    .testimonial-quote { font-size: 1rem; margin-bottom: 1.25rem; }
    .testimonial-photo { width: 40px; height: 40px; }
    .testimonial-author strong { font-size: 0.85rem; }
    .testimonial-author span { font-size: 0.75rem; }
}

/* ===== SECTION DIVIDERS ===== */
.section-light + .section-dark::before,
.section-dark + .section-light::before { content: ''; display: block; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }

::selection { background: rgba(212,169,83,0.3); color: #fff; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; }
