/* Ledger Partners — style.css */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600;700;800&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:#08152b; --navy-mid:#0d2040; --blue:#0f3460; --accent:#1a56db;
  --gold:#3a54c8; --gold-light:#4b63e8; --teal:#0da2af;
  --white:#fff; --offwhite:#f6f7f9; --light-gray:#e2e6ec; --mid-gray:#7a8799;
  --dark-gray:#2c3e50; --text:#111827; --text-soft:#4b5563;
  --font-serif:'Instrument Serif','Georgia',serif;
  --font:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  --nav-h:68px; --max-w:1280px;
  --ease:cubic-bezier(0.22,1,0.36,1);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; } a { text-decoration: none; color: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.accent-bar { width: 32px; height: 2px; background: var(--gold); margin-bottom: 14px; }
.tab-eyebrow { display: inline-block; font-size: 10.5px; font-weight: 700; color: var(--mid-gray); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--light-gray);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(8,21,43,0.10); border-color: transparent; }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; gap: 32px;
}
.nav-logo img { height: 67px; }
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
.nav-link {
  font-size: 13.5px; font-weight: 500; color: var(--text-soft);
  padding: 7px 14px; border-radius: 8px;
  white-space: nowrap; letter-spacing: -0.01em;
  transition: background 0.18s, color 0.18s; position: relative;
}
.nav-link:hover { background: var(--offwhite); color: var(--navy); }
.nav-link.active { color: var(--navy); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px;
  height: 2px; border-radius: 2px; background: var(--gold-light);
}
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-nav-ghost {
  font-size: 13.5px; font-weight: 600; padding: 8px 18px; border-radius: 8px;
  color: var(--navy); border: 1.5px solid var(--light-gray);
  transition: border-color 0.2s, background 0.2s; white-space: nowrap;
}
.btn-nav-ghost:hover { border-color: var(--navy); background: var(--offwhite); }
.btn-contact {
  background: var(--navy); color: var(--white);
  font-size: 13.5px; font-weight: 600; padding: 9px 22px; border-radius: 8px;
  white-space: nowrap; transition: background 0.2s, transform 0.15s; letter-spacing: -0.01em;
}
.btn-contact:hover { background: var(--blue); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; height: 2px; width: 100%; background: var(--text); border-radius: 2px; transition: 0.3s; }
.mobile-menu {
  display: none; flex-direction: column;
  padding: 10px 24px 24px;
  background: var(--white); border-top: 1px solid var(--light-gray);
}
.mobile-menu a { padding: 12px 8px; font-size: 15px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--light-gray); }
.mobile-menu a.btn-contact { margin-top: 14px; border: none; border-radius: 8px; text-align: center; padding: 14px; }
.mobile-menu.open { display: flex; }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: center; overflow: hidden; margin-top: var(--nav-h); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(8,21,43,0.88) 0%, rgba(8,21,43,0.75) 45%, rgba(15,52,96,0.50) 100%); z-index: 1; }
.hero-fade { position: absolute; inset: 0; background: #fff; opacity: 0; z-index: 3; pointer-events: none; transition: opacity 0.05s linear; }
.hero-content { position: relative; z-index: 4; max-width: var(--max-w); margin: 0 auto; padding: 0 40px; width: 100%; will-change: transform, opacity; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); background: rgba(200,151,58,0.12); border: 1px solid rgba(200,151,58,0.25); padding: 6px 14px; border-radius: 100px; margin-bottom: 28px; }
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-light); animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-content h1 { font-family: var(--font-serif); font-size: clamp(44px, 5.8vw, 80px); font-weight: 400; font-style: italic; color: var(--white); line-height: 1.02; letter-spacing: -0.01em; margin-bottom: 4px; }
.hero-content h2 { font-family: var(--font); font-size: clamp(40px, 5.2vw, 74px); font-weight: 800; color: var(--white); line-height: 1.0; letter-spacing: -0.03em; margin-bottom: 28px; }
.hero-content p { font-size: clamp(15px, 1.4vw, 18px); color: rgba(255,255,255,0.75); max-width: 500px; margin-bottom: 8px; line-height: 1.65; }
.hero-sub { font-size: 14px !important; color: rgba(255,255,255,0.50) !important; margin-bottom: 40px !important; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--navy); font-size: 14px; font-weight: 700; padding: 14px 28px; border-radius: 10px; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; letter-spacing: -0.01em; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,151,58,0.30); }
.btn-hero-ghost { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.80); padding: 14px 4px; border-bottom: 1.5px solid rgba(255,255,255,0.25); transition: color 0.2s, border-color 0.2s; }
.btn-hero-ghost:hover { color: var(--white); border-color: var(--white); }
.hero-stat { flex: 1; padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.08); }
.hero-stat:first-child { padding-left: 0; } .hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: var(--font-serif); font-size: clamp(24px, 2.4vw, 36px); font-weight: 400; color: var(--white); line-height: 1.1; margin-bottom: 4px; }
.hero-stat-num span { color: var(--gold); } .hero-stat-label { font-size: 11.5px; color: rgba(255,255,255,0.45); letter-spacing: 0.02em; }

/* TICKER */
.ticker-strip { background: var(--navy); padding: 12px 0; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ticker-inner { display: flex; white-space: nowrap; animation: tickerScroll 32s linear infinite; will-change: transform; }
.ticker-inner:hover { animation-play-state: paused; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 32px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; text-transform: uppercase; border-right: 1px solid rgba(255,255,255,0.08); }
.ticker-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* WORK SECTION */
.work-section { position: relative; height: 500vh; background: var(--offwhite); }
.work-title-wrap { position: relative; z-index: 2; text-align: center; padding: 108px 40px 64px; background: var(--offwhite); }
.work-tag { display: inline-block; font-size: 10.5px; font-weight: 700; color: var(--mid-gray); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px; }
.work-heading { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 68px); font-weight: 400; font-style: italic; color: var(--navy); line-height: 1.08; opacity: 0; transform: translateX(60px); transition: opacity 0.95s var(--ease), transform 0.95s var(--ease); }
.work-heading strong { font-style: normal; font-family: var(--font); font-weight: 800; letter-spacing: -0.02em; color: var(--navy); }
.work-heading.visible { opacity: 1; transform: none; }
.work-sticky-outer { position: sticky; top: var(--nav-h); height: calc(100vh - var(--nav-h)); overflow: hidden; background: var(--offwhite); }
.work-sticky { width: 100%; height: 100%; display: flex; align-items: center; overflow: hidden; }
.work-cards-track { display: flex; gap: 20px; padding: 0 6vw; flex-shrink: 0; will-change: transform; transition: transform 0.05s linear; }
.work-card { flex-shrink: 0; width: clamp(300px, 33vw, 480px); height: clamp(380px, 60vh, 560px); border-radius: 20px; overflow: hidden; position: relative; background-size: cover; background-position: center; cursor: pointer; filter: blur(10px); opacity: 0.28; transform: scale(0.76); transition: transform 0.7s var(--ease), filter 0.7s var(--ease), opacity 0.7s var(--ease); }
.work-card::before { content: ''; position: absolute; inset: 0; background: rgba(180,190,200,0.6); transition: background 0.6s ease; z-index: 1; border-radius: 20px; }
.work-card--active { filter: blur(0); opacity: 1; transform: scale(1.16); z-index: 3; }
.work-card--active::before { background: linear-gradient(160deg, rgba(8,21,43,0.65) 0%, rgba(8,21,43,0.88) 100%); }
.work-card-inner { position: absolute; inset: 0; z-index: 2; padding: 36px; display: flex; flex-direction: column; justify-content: flex-end; color: #fff; }
.wc-eyebrow { display: flex; align-items: center; gap: 8px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; opacity: 0; transform: translateY(4px); transition: opacity 0.45s 0.15s, transform 0.45s 0.15s; }
.work-card--active .wc-eyebrow { opacity: 1; transform: none; }
.wc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; box-shadow: 0 0 8px rgba(200,151,58,0.7); }
.wc-num { position: absolute; top: 28px; left: 36px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.25); letter-spacing: 0.08em; transition: color 0.4s; }
.work-card--active .wc-num { color: var(--gold); }
.work-card-inner h3 { font-family: var(--font-serif); font-size: clamp(18px, 1.8vw, 26px); font-weight: 400; font-style: italic; line-height: 1.25; margin-bottom: 14px; opacity: 0; transform: translateY(14px); transition: opacity 0.45s 0.06s, transform 0.45s 0.06s; }
.work-card--active .work-card-inner h3 { opacity: 1; transform: none; }
.work-card-inner p { font-size: 13.5px; line-height: 1.65; color: rgba(255,255,255,0.75); opacity: 0; transform: translateY(10px); transition: opacity 0.45s 0.14s, transform 0.45s 0.14s; }
.work-card--active .work-card-inner p { opacity: 1; transform: none; }
.wc-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--teal); margin-top: 18px; opacity: 0; transform: translateY(6px); transition: opacity 0.45s 0.22s, transform 0.45s 0.22s; }
.work-card--active .wc-link { opacity: 1; transform: none; }


/* MOBILE NAV — hidden on desktop */
.work-mobile-nav { display: none; }

/* SERVICES GRID */
.services-section { background: var(--white); padding: 80px 0 100px; }
.services-header { max-width: var(--max-w); margin: 0 auto; padding: 0 40px 56px; }
.services-header h2 { font-family: var(--font-serif); font-size: clamp(28px, 3vw, 48px); font-weight: 400; font-style: italic; color: var(--navy); max-width: 600px; line-height: 1.15; }
.services-grid-wrap { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--light-gray); border-top: 1px solid var(--light-gray); max-width: var(--max-w); margin: 0 auto; }
.sg-cell { position: relative; overflow: hidden; aspect-ratio: 1 / 1; border-right: 1px solid var(--light-gray); border-bottom: 1px solid var(--light-gray); display: block; cursor: pointer; background: var(--white); }
.sg-default { position: absolute; inset: 0; padding: 32px 32px 28px; display: flex; flex-direction: column; justify-content: space-between; transition: opacity 0.35s, transform 0.35s; }
.sg-default h3 { font-size: clamp(17px, 1.5vw, 21px); font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: -0.01em; }
.sg-row { display: flex; align-items: center; justify-content: space-between; }
.sg-icon { width: 40px; height: 40px; color: var(--gold); }
.sg-icon svg { width: 100%; height: 100%; }
.sg-num { font-size: 11px; font-weight: 700; color: var(--light-gray); letter-spacing: 0.05em; transition: color 0.35s; }
.sg-hover { position: absolute; inset: 0; padding: 32px 32px 36px; display: flex; flex-direction: column; justify-content: flex-end; background-image: inherit; background-size: cover; background-position: center; opacity: 0; transform: scale(1.04); transition: opacity 0.38s, transform 0.38s; }
.sg-hover::before { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(8,21,43,0.65) 0%, rgba(8,21,43,0.92) 100%); z-index: 0; }
.sg-hover > * { position: relative; z-index: 1; }
.sg-hover h3 { font-family: var(--font-serif); font-size: 20px; font-weight: 400; font-style: italic; color: var(--white); margin-bottom: 10px; line-height: 1.2; }
.sg-hover p { font-size: 13px; color: rgba(255,255,255,0.72); line-height: 1.6; margin-bottom: 22px; }
.sg-arrow { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--navy); transition: transform 0.2s; }
.sg-arrow svg { width: 18px; height: 18px; }
.sg-cell:hover .sg-arrow { transform: translateX(3px); }
.sg-cell:hover .sg-default { opacity: 0; transform: scale(0.96); }
.sg-cell:hover .sg-hover { opacity: 1; transform: scale(1); }
.sg-cell:hover .sg-num { color: var(--gold); }

/* WHY SECTION */
.why-section { background: var(--navy); padding: 100px 0 90px; overflow: hidden; position: relative; }
.why-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 80px 80px; pointer-events: none; }
.why-inner { max-width: 900px; margin: 0 auto; padding: 0 40px; position: relative; }
.why-header { margin-bottom: 56px; }
.why-header p { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 16px; }
.why-header h2 { font-family: var(--font-serif); font-size: clamp(28px, 3vw, 48px); font-weight: 400; font-style: italic; color: var(--white); line-height: 1.15; }
.why-line { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.why-line.visible { opacity: 1; transform: none; }
.why-line--last { height: 0; }
.why-line-rule { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 44px; }
.why-line-text { font-size: clamp(24px, 3.2vw, 42px); font-weight: 800; color: var(--white); margin-bottom: 44px; letter-spacing: -0.02em; line-height: 1.2; display: flex; align-items: baseline; gap: 16px; }
.why-line-text em { font-family: var(--font-serif); font-weight: 400; font-style: italic; font-size: 0.65em; color: rgba(255,255,255,0.4); letter-spacing: 0; }

/* TESTIMONIALS */
.testimonials-section { padding: 108px 0; background: var(--offwhite); }
.section-title-left { font-family: var(--font-serif); font-size: clamp(26px, 2.8vw, 44px); font-weight: 400; font-style: italic; color: var(--navy); margin-bottom: 44px; max-width: 680px; line-height: 1.15; }
.logo-strip { display: flex; align-items: center; flex-wrap: wrap; gap: 28px 40px; margin-bottom: 60px; padding: 28px 0; border-top: 1px solid var(--light-gray); border-bottom: 1px solid var(--light-gray); }
.logo-strip img { height: 34px; width: auto; object-fit: contain; filter: grayscale(1) blur(0.4px); opacity: 0.4; transition: opacity 0.3s, filter 0.3s; }
.logo-strip img:hover { opacity: 1; filter: none; }
.testimonial-slider { position: relative; }
.testimonial-track { overflow: hidden; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; animation: fadeIn 0.45s var(--ease); }
.testimonial-slide blockquote { font-family: var(--font-serif); font-size: clamp(18px, 2vw, 26px); font-weight: 400; font-style: italic; color: var(--navy); line-height: 1.55; border-left: 3px solid var(--gold); padding-left: 28px; margin-bottom: 36px; max-width: 820px; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-author img { width: 52px; height: 52px; object-fit: contain; border-radius: 10px; background: var(--white); padding: 6px; border: 1px solid var(--light-gray); }
.testimonial-author strong { display: block; font-size: 14.5px; font-weight: 700; color: var(--navy); }
.testimonial-author span { font-size: 13px; color: var(--mid-gray); }
.slider-controls { display: flex; align-items: center; gap: 12px; margin-top: 44px; }
.slider-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--light-gray); background: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--navy); transition: border-color 0.2s, background 0.2s, transform 0.15s; }
.slider-btn:hover { border-color: var(--gold); transform: scale(1.05); }
.slider-dots { display: flex; gap: 8px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--light-gray); border: none; cursor: pointer; transition: background 0.2s, width 0.3s; padding: 0; }
.dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* INSIGHTS */
.insights-section { padding: 108px 0; background: var(--white); }
.insights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.insight-card { display: block; background: var(--offwhite); padding: 40px; border-radius: 16px; border: 1px solid var(--light-gray); transition: box-shadow 0.25s, transform 0.2s, border-color 0.25s; position: relative; overflow: hidden; }
.insight-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.insight-card:hover { box-shadow: 0 12px 40px rgba(8,21,43,0.10); transform: translateY(-3px); border-color: transparent; }
.insight-card:hover::before { transform: scaleX(1); }
.insight-tag { display: inline-block; font-size: 10.5px; font-weight: 700; background: rgba(200,151,58,0.10); color: var(--gold); padding: 4px 10px; border-radius: 6px; margin-bottom: 18px; letter-spacing: 0.08em; text-transform: uppercase; border: 1px solid rgba(200,151,58,0.20); }
.insight-card h4 { font-family: var(--font-serif); font-size: 20px; font-weight: 400; font-style: italic; color: var(--navy); margin-bottom: 12px; line-height: 1.3; }
.insight-card p { font-size: 13.5px; color: var(--text-soft); line-height: 1.65; margin-bottom: 24px; }
.read-more { font-size: 13px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 4px; }
.read-more .arrow { display: inline-block; transition: transform 0.2s; }
.insight-card:hover .arrow { transform: translateX(5px); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--navy); color: var(--navy); font-size: 14px; font-weight: 700; padding: 13px 28px; border-radius: 10px; transition: background 0.2s, color 0.2s, transform 0.15s; letter-spacing: -0.01em; }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }

/* CTA BAND */
.cta-band { background: var(--gold-light); padding: 80px 40px; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 500px; height: 500px; border-radius: 50%; background: rgba(255,255,255,0.07); pointer-events: none; }
.cta-band-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { font-family: var(--font-serif); font-size: clamp(28px, 3vw, 48px); font-weight: 400; font-style: italic; color: var(--navy); line-height: 1.15; max-width: 600px; }
.cta-band h2 strong { font-style: normal; font-family: var(--font); font-weight: 800; }
.btn-dark { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: var(--white); font-size: 14px; font-weight: 700; padding: 16px 32px; border-radius: 10px; white-space: nowrap; transition: background 0.2s, transform 0.15s; flex-shrink: 0; }
.btn-dark:hover { background: var(--blue); transform: translateY(-2px); }

/* ═══════════ CTA — full blue band with real photo bg ═══════════ */
.erp-cta{position:relative;padding:120px 24px;overflow:hidden;background:var(--navy);text-align:center}
.erp-cta::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse 70% 80% at 30% 50%,rgba(232,184,75,.18) 0%,transparent 60%),radial-gradient(ellipse 50% 60% at 80% 20%,rgba(26,63,168,.5) 0%,transparent 50%)}
.erp-cta::after{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);background-size:48px 48px}
.erp-cta-content{position:relative;z-index:2;max-width:720px;margin:0 auto}
.erp-cta-content h2{color:var(--white)}
.erp-cta-content h2 em{color:var(--gold);font-style:italic}
.erp-cta-btns{display:flex;gap:14px;justify-content:center;margin-top:36px;flex-wrap:wrap}
/* primary: gold pill */
.btn-cta-primary{display:inline-flex;align-items:center;gap:10px;font-size:14px;font-weight:700;letter-spacing:.04em;color:var(--navy);background:var(--gold);text-decoration:none;padding:14px 32px;border-radius:8px;transition:background .2s,transform .2s;border:none}
.btn-cta-primary:hover{background:var(--gold-light);transform:translateY(-2px)}
/* ghost */
.btn-cta-ghost{display:inline-flex;align-items:center;font-size:14px;font-weight:600;color:var(--white);text-decoration:none;padding:14px 32px;border-radius:8px;border:1px solid rgba(255,255,255,.3);transition:border-color .2s,background .2s}
.btn-cta-ghost:hover{border-color:rgba(255,255,255,.7);background:rgba(255,255,255,.1)}


/* FOOTER */
.footer { background: var(--navy); color: rgba(255,255,255,0.8); }
.footer-top { border-bottom: 1px solid rgba(255,255,255,0.07); padding: 56px 40px 48px; max-width: var(--max-w); margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px; }
.footer-contact { font-size: 14px; line-height: 1.9; }
.footer-contact strong { color: var(--white); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.5; }
.footer-contact a { color: var(--gold); }
.footer-contact a:hover { text-decoration: underline; }
.footer-newsletter { max-width: 340px; width: 100%; margin: 0 auto; }
.footer-newsletter p { font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; text-align: center; }
.footer-newsletter form { display: flex; flex-direction: column; gap: 9px; }
.footer-newsletter input { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; outline: none; padding: 11px 14px; font-size: 13.5px; color: var(--white); font-family: var(--font); text-align: center; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.30); }
.footer-newsletter input:focus { border-color: var(--gold); }
.footer-newsletter button { background: #25D366; color: #fff; border: none; border-radius: 8px; cursor: pointer; padding: 12px 18px; font-size: 13px; font-weight: 700; font-family: var(--font); transition: opacity 0.2s; }
.footer-newsletter button:hover { opacity: 0.88; }
.social-links { display: flex; gap: 12px; margin-top: 18px; justify-content: center; }
.social-links a { color: rgba(255,255,255,0.45); width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.10); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: color 0.2s, border-color 0.2s, background 0.2s; }
.social-links a:hover { color: var(--white); border-color: var(--gold); background: rgba(200,151,58,0.12); }
.footer-nav { max-width: var(--max-w); margin: 0 auto; padding: 40px 40px; display: flex; justify-content: center; }
.footer-logo-col { padding-top: 4px; }
.footer-logo { height: 100px; filter: grayscale(1) brightness(0) invert(1); opacity: 0.85; }
.footer-col h5 { font-size: 11.5px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.48); margin-bottom: 10px; transition: color 0.2s; letter-spacing: -0.01em; }
.footer-col a:hover { color: rgba(255,255,255,0.95); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 24px 40px; max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-legal a:hover { color: rgba(255,255,255,0.75); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.28); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .footer-nav { grid-template-columns: repeat(4, 1fr); }
  .footer-logo-col { grid-column: 1 / -1; }
  .work-card { width: 360px; height: 460px; }
  .hero-stat { padding: 0 20px; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .insights-grid, .footer-nav { grid-template-columns: repeat(3, 1fr); }
  .insights-grid { grid-template-columns: 1fr; }
  .work-section { height: auto; }
  .work-sticky-outer { position: relative; top: auto; height: auto; overflow: visible; background: var(--offwhite); }
  .work-sticky { padding: 40px 20px 24px; overflow-x: auto; scrollbar-width: none; }
  .work-sticky::-webkit-scrollbar { display: none; }
  .work-cards-track { transform: none !important; gap: 16px; }
  .work-card { width: 80vw; height: 440px; flex-shrink: 0; filter: none; opacity: 1; transform: none; }
  .work-card::before { background: linear-gradient(160deg, rgba(8,21,43,0.65) 0%, rgba(8,21,43,0.88) 100%); }
  .work-card .wc-eyebrow,
  .work-card .work-card-inner h3,
  .work-card .work-card-inner p,
  .work-card .wc-link { opacity: 1; transform: none; }
  .work-card .wc-num { color: var(--gold); }

  /* MOBILE NAV */
  .work-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 4px 0 40px;
    background: var(--offwhite);
  }
  .work-nav-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--light-gray);
    background: var(--white);
    color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
    flex-shrink: 0;
  }
  .work-nav-btn:hover { border-color: var(--gold); background: var(--offwhite); transform: scale(1.05); }
  .work-nav-btn:disabled { opacity: 0.3; cursor: default; transform: none; border-color: var(--light-gray); }
  .work-nav-counter {
    font-size: 12px; font-weight: 600;
    color: var(--mid-gray);
    letter-spacing: 0.08em;
    min-width: 40px; text-align: center;
  }

  .services-grid-wrap { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-inner { flex-wrap: wrap; }
  .hero-stat { min-width: 140px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .cta-band-inner { flex-direction: column; }
}
@media (max-width: 640px) {
  .nav-inner, .container, .hero-content { padding: 0 20px; }
  .hero-stats { padding: 20px; }
  .work-title-wrap { padding: 80px 20px 48px; }
  .work-card { width: 88vw; height: 400px; }
  .services-grid-wrap { grid-template-columns: 1fr 1fr; }
  .sg-default h3 { font-size: 15px; }
  .why-section { padding: 60px 0 48px; }
  .why-line-text { font-size: 20px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); padding: 40px 20px; }
  .footer-top { padding: 40px 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 20px; }
  .testimonials-section, .insights-section { padding: 64px 0; }
  .services-header { padding: 0 20px 40px; }
  .ticker-item { padding: 0 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-inner, .hero-data-cell { animation: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}