/* ============================================================
   CALYBR — Global Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #ffffff;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

:root {
  --amber: #EF9F27;
  --amber-dark: #412402;
  --amber-mid: #633806;
  --amber-light: rgba(239,159,39,0.14);
  --black: #080808;
  --black-2: #050505;
  --gray-bg: #f4f4f4;
  --gray-light: #f9f9f9;
  --border-light: rgba(0,0,0,0.09);
  --border-dark: rgba(255,255,255,0.08);
}


/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(36px, 5.5vw, 56px); font-weight: 500; line-height: 1.1; }
h2 { font-size: clamp(24px, 3.5vw, 32px); font-weight: 500; line-height: 1.2; }
h3 { font-size: 16px; font-weight: 500; }
p  { font-size: 14px; line-height: 1.75; color: #555; }


/* ── REUSABLE TAGS ── */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.tag-amber  { background: var(--amber); color: var(--amber-dark); }
.tag-ghost  { background: var(--amber-light); color: var(--amber); }
.tag-green  { background: #EAF3DE; color: #27500A; }
.tag-white  { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }


/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: opacity 0.2s, transform 0.15s;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-amber  { background: var(--amber); color: var(--amber-dark); }
.btn-dark   { background: var(--black); color: #fff; }
.btn-ghost-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.32); }
.btn-ghost-dark  { background: transparent; color: var(--amber-dark); border: 1.5px solid var(--amber-dark); }
.btn-ghost-white:hover, .btn-ghost-dark:hover { opacity: 0.8; }
.btn-amber.pulse { animation: btnPulse 2.8s ease-in-out infinite; }


/* ── NAV ── */
nav {
  background: var(--black);
  padding: 0 48px;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.5px solid var(--border-dark);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav-logo img { height: 34px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--amber);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: #fff; }
.nav-cta {
  background: var(--amber) !important;
  color: var(--amber-dark) !important;
  padding: 9px 22px !important;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span { width: 22px; height: 1.5px; background: #fff; display: block; transition: 0.3s; }


/* ── HERO (shared) ── */
.hero {
  background: var(--black);
  padding: 88px 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-eyebrow { margin-bottom: 22px; }
.hero h1 { color: #fff; max-width: 720px; margin: 0 auto 20px; }
.hero .hero-sub {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 40px;
}
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 52px; }
.hero-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.hero-pill {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 20px;
  border: 0.5px solid rgba(255,255,255,0.1);
}

/* Hero floating shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(239,159,39,0.18);
}
.shape-1 { width: 340px; height: 340px; top: -80px; right: -60px; animation: float1 9s ease-in-out infinite; }
.shape-2 { width: 200px; height: 200px; bottom: 20px; left: -40px; animation: float2 7s ease-in-out infinite; }
.shape-3 { width: 120px; height: 120px; top: 40%; right: 12%; animation: float3 11s ease-in-out infinite; }
.shape-4 {
  width: 60px; height: 60px;
  top: 25%; left: 10%;
  border-radius: 0;
  transform: rotate(45deg);
  animation: spin 14s linear infinite;
  border-color: rgba(239,159,39,0.12);
}
.shape-5 { width: 80px; height: 80px; bottom: 15%; right: 20%; animation: float1 8s ease-in-out infinite 2s; border-color: rgba(255,255,255,0.06); }
.dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(239,159,39,0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}


/* ── MARQUEE ── */
.marquee-wrap {
  background: var(--black);
  border-top: 0.5px solid rgba(255,255,255,0.06);
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 32px;
}
.marquee-track span.dot { padding: 0; color: var(--amber); font-size: 8px; vertical-align: middle; }


/* ── STATS ── */
.stats {
  background: var(--amber);
  padding: 32px 48px;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.stat-number {
  font-size: 32px;
  font-weight: 500;
  color: var(--amber-dark);
  display: block;
}
.stat-label { font-size: 12px; color: var(--amber-mid); margin-top: 4px; }


/* ── SECTION SHARED ── */
section { padding: 76px 48px; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 { color: #0a0a0a; margin-top: 12px; }
.section-head.light h2 { color: #fff; }
.section-head p { font-size: 15px; color: #888; max-width: 500px; margin: 12px auto 0; }
.section-head.light p { color: rgba(255,255,255,0.45); }
.max-960 { max-width: 960px; margin: 0 auto; }
.max-840 { max-width: 840px; margin: 0 auto; }


/* ── PROCESS ── */
.process { background: #fff; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
.process-card {
  padding: 26px 22px;
  border: 0.5px solid #e4e4e4;
  border-radius: 12px;
  background: #fafafa;
  transition: border-color 0.25s, transform 0.25s;
}
.process-card:hover { border-color: var(--amber); transform: translateY(-3px); }
.step-circle {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--amber-dark);
  margin-bottom: 16px;
}
.process-card h3 { font-size: 14px; color: #0a0a0a; margin-bottom: 8px; }
.process-card p { font-size: 12px; color: #666; }


/* ── SERVICES ── */
.services { background: var(--gray-bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
  max-width: 840px;
  margin: 0 auto;
}
.service-card { padding: 40px 34px; border-radius: 14px; transition: transform 0.25s; }
.service-card:hover { transform: translateY(-4px); }
.service-card.dark { background: var(--black); }
.service-card.light { background: #fff; border: 0.5px solid #e4e4e4; }
.svc-badge {
  display: inline-block;
  font-size: 11px; font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.service-card.dark .svc-badge { background: var(--amber-light); color: var(--amber); }
.service-card.light .svc-badge { background: var(--amber); color: var(--amber-dark); }
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card.dark h3 { color: #fff; }
.service-card.light h3 { color: #0a0a0a; }
.service-card > p { font-size: 13px; line-height: 1.8; margin-bottom: 24px; }
.service-card.dark > p { color: rgba(255,255,255,0.5); }
.service-card.light > p { color: #666; }
.bullets { margin-bottom: 28px; }
.bullet { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.bullet-dot { width: 6px; height: 6px; background: var(--amber); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.service-card.dark .bullet span { font-size: 13px; color: rgba(255,255,255,0.6); }
.service-card.light .bullet span { font-size: 13px; color: #555; }


/* ── WHY ── */
.why { background: var(--black); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.why-card {
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 26px 22px;
  transition: border-color 0.25s, background 0.25s;
}
.why-card:hover { border-color: rgba(239,159,39,0.35); background: rgba(239,159,39,0.04); }
.why-icon {
  width: 32px; height: 32px;
  background: rgba(239,159,39,0.1);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.why-dot { width: 8px; height: 8px; background: var(--amber); border-radius: 50%; }
.why-card h3 { font-size: 14px; color: #fff; margin-bottom: 8px; }
.why-card p  { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.65; }


/* ── PROOF ── */
.proof {
  background: var(--gray-light);
  padding: 60px 48px;
  text-align: center;
  border-top: 0.5px solid #ebebeb;
}
.proof h2 { font-size: 26px; color: #0a0a0a; margin: 12px 0 8px; }
.proof-note { font-size: 13px; color: #bbb; margin-bottom: 36px; }
.logos-row { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.logo-slot { width: 100px; height: 40px; background: #ddd; border-radius: 8px; opacity: 0.3; }


/* ── CTA BAND ── */
.cta-band {
  background: var(--amber);
  padding: 76px 48px;
  text-align: center;
}
.cta-band h2 { color: var(--amber-dark); margin-bottom: 12px; }
.cta-band p { font-size: 15px; color: var(--amber-mid); line-height: 1.75; max-width: 480px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }


/* ── FOOTER ── */
footer {
  background: var(--black-2);
  padding: 52px 48px 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}
.footer-logo img { height: 30px; width: auto; object-fit: contain; opacity: 0.82; margin-bottom: 14px; }
.footer-desc { font-size: 12px; color: rgba(255,255,255,0.32); line-height: 1.9; max-width: 250px; }
.footer-col h4 {
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  line-height: 2.4;
  transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.7); }
.footer-email {
  font-size: 13px;
  color: var(--amber);
  margin-top: 4px;
  display: inline-block;
  transition: opacity 0.2s;
}
.footer-email:hover { opacity: 0.78; }
.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.07);
  margin-top: 44px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.footer-bottom span { font-size: 11px; color: rgba(255,255,255,0.22); }


/* ── INNER PAGE HERO (non-homepage) ── */
.page-hero {
  background: var(--black);
  padding: 80px 48px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: #fff; max-width: 700px; margin: 0 auto 18px; }
.page-hero p { color: rgba(255,255,255,0.5); font-size: 16px; max-width: 540px; margin: 0 auto; line-height: 1.8; }
.page-hero .hero-eyebrow { margin-bottom: 20px; }


/* ── ABOUT PAGE ── */
.story-section { background: #fff; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.story-text h2 { color: #0a0a0a; margin-bottom: 18px; font-size: 28px; }
.story-text p { margin-bottom: 16px; font-size: 14px; color: #555; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.value-card {
  background: #fafafa;
  border: 0.5px solid #e8e8e8;
  border-radius: 12px;
  padding: 26px 22px;
  transition: border-color 0.25s, transform 0.25s;
}
.value-card:hover { border-color: var(--amber); transform: translateY(-2px); }
.value-icon { font-size: 20px; margin-bottom: 12px; }
.value-card h3 { font-size: 15px; color: #0a0a0a; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: #666; line-height: 1.65; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.diff-card {
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 26px 22px;
  transition: border-color 0.25s;
}
.diff-card:hover { border-color: rgba(239,159,39,0.4); }
.diff-card h3 { font-size: 14px; color: #fff; margin-bottom: 8px; }
.diff-card p  { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.65; }
.diff-num { font-size: 28px; font-weight: 500; color: var(--amber); margin-bottom: 8px; opacity: 0.6; }


/* ── SERVICE PAGES ── */
.service-overview { background: #fff; }
.overview-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.overview-inner h2 { margin-bottom: 16px; }
.overview-inner p { font-size: 15px; color: #555; line-height: 1.8; }
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}
.tier-card {
  background: #fafafa;
  border: 0.5px solid #e4e4e4;
  border-radius: 12px;
  padding: 26px 20px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}
.tier-card:hover { border-color: var(--amber); transform: translateY(-3px); }
.tier-label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.7px; color: var(--amber); margin-bottom: 8px; }
.tier-range { font-size: 20px; font-weight: 500; color: #0a0a0a; margin-bottom: 8px; }
.tier-card p { font-size: 12px; color: #777; line-height: 1.6; }
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.included-card {
  background: #fafafa;
  border: 0.5px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px 20px;
}
.included-card h3 { font-size: 14px; color: #0a0a0a; margin-bottom: 8px; }
.included-card p { font-size: 12px; color: #777; line-height: 1.65; }
.check { color: var(--amber); font-size: 16px; margin-bottom: 10px; }
.industries-wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 800px; margin: 0 auto; }
.industry-pill {
  background: #fff;
  border: 0.5px solid #ddd;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 13px;
  color: #444;
  transition: background 0.2s, border-color 0.2s;
}
.industry-pill:hover { background: var(--amber-light); border-color: var(--amber); color: var(--amber-dark); }
.ugc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
  max-width: 840px;
  margin: 0 auto;
}
.ugc-card {
  background: #fafafa;
  border: 0.5px solid #e4e4e4;
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.25s;
}
.ugc-card:hover { border-color: var(--amber); transform: translateY(-3px); }
.ugc-card h3 { font-size: 15px; color: #0a0a0a; margin-bottom: 8px; }
.ugc-card p { font-size: 13px; color: #666; line-height: 1.65; }
.ugc-icon { font-size: 22px; margin-bottom: 12px; }
.deliverables-list { max-width: 700px; margin: 0 auto; }
.deliverable {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 0.5px solid #ebebeb;
}
.deliverable:last-child { border-bottom: none; }
.del-dot { width: 8px; height: 8px; background: var(--amber); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.del-title { font-size: 14px; font-weight: 500; color: #0a0a0a; margin-bottom: 4px; }
.del-desc  { font-size: 13px; color: #777; line-height: 1.6; }


/* ── CONTACT PAGE ── */
.contact-section { background: #fff; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.contact-info h2 { font-size: 28px; color: #0a0a0a; margin-bottom: 16px; }
.contact-info p { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 32px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-icon { width: 36px; height: 36px; background: var(--amber-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 15px; }
.info-label { font-size: 11px; color: #aaa; text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 3px; }
.info-val { font-size: 14px; color: #0a0a0a; font-weight: 500; }
.next-steps { margin-top: 40px; }
.next-step { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.ns-num { width: 26px; height: 26px; border-radius: 50%; background: var(--amber); color: var(--amber-dark); font-size: 12px; font-weight: 500; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ns-text strong { display: block; font-size: 13px; font-weight: 500; color: #0a0a0a; margin-bottom: 2px; }
.ns-text span { font-size: 12px; color: #888; }
.contact-form label { display: block; font-size: 12px; font-weight: 500; color: #444; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 0.5px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #0a0a0a;
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  margin-bottom: 18px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--amber);
  background: #fff;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.radio-row { display: flex; gap: 16px; margin-bottom: 18px; }
.radio-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 0.5px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  color: #555;
  transition: border-color 0.2s, background 0.2s;
  flex: 1;
  justify-content: center;
}
.radio-opt input { width: auto; margin-bottom: 0; }
.radio-opt:has(input:checked) { border-color: var(--amber); background: var(--amber-light); color: var(--amber-dark); }


/* ── BLOG PAGE ── */
.blog-hero { background: var(--black); padding: 80px 48px 72px; text-align: center; position: relative; overflow: hidden; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.blog-card {
  background: #fff;
  border: 0.5px solid #e4e4e4;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--amber); }
.blog-thumb {
  height: 180px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  position: relative;
  overflow: hidden;
}
.blog-thumb-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, #080808 0%, #1a1410 100%); }
.blog-thumb-icon { position: relative; z-index: 1; }
.blog-body { padding: 26px 24px; }
.blog-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.blog-cat { font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.7px; color: var(--amber); background: var(--amber-light); padding: 3px 10px; border-radius: 20px; }
.blog-date { font-size: 11px; color: #bbb; }
.blog-read { font-size: 11px; color: #bbb; }
.blog-card h3 { font-size: 17px; font-weight: 500; color: #0a0a0a; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { font-size: 13px; color: #777; line-height: 1.7; margin-bottom: 20px; }
.blog-link { font-size: 13px; font-weight: 500; color: var(--amber); }
.blog-link:hover { opacity: 0.78; }


/* ── ANIMATIONS ── */
@keyframes float1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  33%  { transform: translateY(-22px) translateX(12px); }
  66%  { transform: translateY(12px) translateX(-9px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50%  { transform: translateY(-28px) scale(1.05); }
}
@keyframes float3 {
  0%, 100% { transform: translateX(0) translateY(0); }
  25%  { transform: translateX(18px) translateY(-14px); }
  75%  { transform: translateX(-12px) translateY(18px); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,159,39,0); }
  50%  { box-shadow: 0 0 0 8px rgba(239,159,39,0.15); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Fade-up scroll reveals */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.27s; }
.d4 { transition-delay: 0.38s; }


/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--black); flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 18px; border-bottom: 0.5px solid rgba(255,255,255,0.08); z-index: 199; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero, .page-hero { padding: 64px 24px 56px; }
  section { padding: 56px 24px; }
  .stats { padding: 28px 24px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .included-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cta-band, .proof { padding: 56px 24px; }
  footer { padding: 48px 24px 32px; }
}
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .ugc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

.logo-slider-wrap {
  overflow: hidden;
  width: 100%;
  margin-top: 36px;
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.logo-slider-track {
  display: flex;
  gap: 60px;
  align-items: center;
  width: max-content;
  animation: slideLogos 18s linear infinite;
}
.logo-slider-track img {
  height: 36px;
  width: auto;
  opacity: 1.0;
  filter: grayscale(0%);
  transition: opacity 0.3s, filter 0.3s;
  flex-shrink: 0;
}
.logo-slider-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
@keyframes slideLogos {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}