/* Warp Drive Digital Marketing — Service Pages Shared CSS */
:root {
  --navy:   #0B1F4B;
  --navy2:  #0d2458;
  --gold:   #C9A84C;
  --gold2:  #e8c46a;
  --white:  #FFFFFF;
  --gray:   #8A97B0;
  --dark:   #07142F;
  --dark2:  #060f24;
  --card:   #111E3A;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--white); color: var(--dark); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 72px;
  background: rgba(7,20,47,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.45rem; letter-spacing: .06em; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.nav-logo span { color: var(--gold); }
.nav-logo-gem { width: 34px; height: 34px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .85rem; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--dark) !important; padding: 8px 18px !important; border-radius: 4px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--gold2) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; display: block; }
.mob-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 999; background: var(--dark); border-bottom: 1px solid rgba(201,168,76,.2); padding: 1.5rem 5%; flex-direction: column; gap: 0; }
.mob-menu.open { display: flex; }
.mob-menu a { color: rgba(255,255,255,.82); text-decoration: none; font-size: .98rem; font-weight: 500; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.mob-menu a:last-child { border: none; }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(145deg, #07142F 0%, #0c1f4a 55%, #071428 100%);
  padding: 140px 5% 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,168,76,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 10%, transparent 80%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.breadcrumb { font-size: .72rem; color: rgba(255,255,255,.35); margin-bottom: 1.2rem; letter-spacing: .05em; }
.breadcrumb a { color: rgba(255,255,255,.35); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.28);
  border-radius: 100px; padding: 5px 14px;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.3rem;
}
.page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.4rem, 5.5vw, 4.5rem); line-height: .96; letter-spacing: .02em; color: var(--white); margin-bottom: 1rem; }
.page-hero h1 em { font-style: normal; color: var(--gold); }
.hero-slogan { font-size: .82rem; color: rgba(255,255,255,.3); font-weight: 300; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.page-hero p { font-size: clamp(.95rem,1.5vw,1.1rem); color: rgba(255,255,255,.62); line-height: 1.75; max-width: 620px; font-weight: 300; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* BUTTONS */
.btn-gold { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--dark); font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .88rem; letter-spacing: .05em; text-transform: uppercase; padding: 13px 26px; border-radius: 4px; text-decoration: none; transition: background .2s, transform .2s; box-shadow: 0 4px 20px rgba(201,168,76,.22); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); }
.btn-outline-dark { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(255,255,255,.75); font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .88rem; letter-spacing: .05em; text-transform: uppercase; padding: 13px 26px; border-radius: 4px; border: 1px solid rgba(255,255,255,.18); text-decoration: none; transition: border-color .2s, color .2s; }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

/* SECTIONS */
.sec { padding: 90px 5%; }
.sec-dark { background: var(--dark); color: var(--white); }
.sec-navy { background: var(--navy); color: var(--white); }
.sec-light { background: #F4F6FA; }
.sec-white { background: var(--white); }

.sec-eyebrow { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.sec-eyebrow-dark { color: var(--gold); }
.sec-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: .02em; margin-bottom: 1rem; }
.sec-title em { font-style: normal; color: var(--gold); }
.sec-title-dark { color: var(--white); }
.sec-sub { font-size: .95rem; color: rgba(255,255,255,.5); line-height: 1.72; font-weight: 300; max-width: 560px; }
.sec-sub-light { color: #5a6a8a; }

/* INCLUDED CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.3rem; margin-top: 3rem; }
.inc-card { background: var(--white); border: 1px solid #e2e8f0; border-radius: 10px; padding: 1.8rem; transition: border-color .25s, transform .25s; }
.sec-light .inc-card { background: var(--white); }
.sec-white .inc-card { background: #F4F6FA; border-color: #e2e8f0; }
.inc-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.inc-card-icon { font-size: 1.5rem; margin-bottom: .9rem; }
.inc-card h3 { font-weight: 700; font-size: 1rem; margin-bottom: .5rem; color: var(--dark); }
.inc-card p { font-size: .83rem; line-height: 1.68; color: #5a6a8a; }

/* DARK CARDS */
.dark-card { background: var(--card); border: 1px solid rgba(255,255,255,.07); border-radius: 10px; padding: 1.8rem; transition: border-color .25s; }
.dark-card:hover { border-color: rgba(201,168,76,.3); }
.dark-card h3 { font-weight: 700; font-size: 1rem; margin-bottom: .5rem; color: var(--white); }
.dark-card p { font-size: .83rem; line-height: 1.68; color: rgba(255,255,255,.48); }

/* PROCESS STEPS */
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.process-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.process-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--gold); opacity: .25; line-height: 1; flex-shrink: 0; width: 44px; }
.step-body h3 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: .3rem; }
.step-body p { font-size: .83rem; color: rgba(255,255,255,.44); font-weight: 300; line-height: 1.7; }

/* NICHE PILLS */
.niche-pills { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 2rem; }
.niche-pill { display: inline-flex; align-items: center; gap: 6px; font-size: .8rem; font-weight: 700; color: var(--gold); text-decoration: none; padding: .5rem 1.1rem; border: 1px solid rgba(201,168,76,.35); border-radius: 4px; transition: all .2s; }
.niche-pill:hover { background: var(--gold); color: var(--dark); }

/* FAQ */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: 1px solid #e2e8f0; }
.sec-dark .faq-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 0; font-weight: 600; font-size: .95rem; cursor: pointer; color: var(--dark); gap: 1rem; }
.sec-dark .faq-q { color: var(--white); }
.faq-icon { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; transition: transform .25s; font-weight: 300; line-height: 1; }
.faq-a { font-size: .87rem; line-height: 1.75; color: #5a6a8a; padding-bottom: 1.1rem; display: none; font-weight: 300; }
.sec-dark .faq-a { color: rgba(255,255,255,.48); }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* STAT BAR */
.stat-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; padding: 3rem 5%; background: rgba(255,255,255,.03); border-top: 1px solid rgba(201,168,76,.12); border-bottom: 1px solid rgba(201,168,76,.12); text-align: center; }
.stat-n { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; color: var(--gold); line-height: 1; }
.stat-l { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-top: .3rem; }

/* CTA BAND */
.cta-band { background: var(--gold); padding: 64px 5%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 3.5vw, 3rem); letter-spacing: .03em; color: var(--dark); }
.cta-band p { font-size: .95rem; color: rgba(7,20,47,.65); margin-top: .5rem; }
.btn-dark { display: inline-flex; align-items: center; gap: 8px; background: var(--dark); color: var(--gold); font-family: 'Outfit', sans-serif; font-weight: 700; font-size: .88rem; letter-spacing: .06em; text-transform: uppercase; padding: 13px 26px; border-radius: 4px; text-decoration: none; transition: background .2s, transform .2s; white-space: nowrap; }
.btn-dark:hover { background: var(--navy2); transform: translateY(-2px); }

/* FOOTER */
footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.06); padding: 60px 5% 28px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: .84rem; color: rgba(255,255,255,.38); line-height: 1.72; margin-top: .9rem; max-width: 270px; }
.fcol h4 { font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.fcol ul { list-style: none; }
.fcol ul li { margin-bottom: .5rem; }
.fcol ul a { font-size: .82rem; color: rgba(255,255,255,.44); text-decoration: none; transition: color .2s; }
.fcol ul a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.6rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .75rem; color: rgba(255,255,255,.25); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .process-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cta-band { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .sec { padding: 65px 5%; }
  .footer-top { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 5% 60px; }
}
