/*
Theme Name:  Webcat Labs
Theme URI:   https://webcatlabs.com
Author:      Webcat Labs
Description: AI Automation Agency — Premium WordPress Theme
Version:     1.0.0
License:     Private
Text Domain: webcat-labs
*/



/* ════════════════════════════════════════════
   TOKENS
════════════════════════════════════════════ */
:root {
  --bg:       #ebebec;
  --bg2:      #e2e2e3;
  --white:    #ffffff;
  --navy:     #111827;
  --navy2:    #1a2540;
  --dark:     #0f172a;
  --text:     #111827;
  --muted:    #6b7280;
  --light:    #9ca3af;
  --border:   rgba(0,0,0,0.07);
  --shadow:   0 2px 12px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-lg:0 8px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  --r:        18px;
  --r2:       26px;
  --serif:    'Instrument Serif', Georgia, serif;
  --sans:     'DM Sans', sans-serif;
  --mono:     'Space Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ════════════════════════════════════════════
   SCROLLBAR
════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

/* ════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════ */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 40px; }

/* ════════════════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════════════════ */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .75s cubic-bezier(.23,1,.32,1), transform .75s cubic-bezier(.23,1,.32,1); }
.rv.on { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }

/* ════════════════════════════════════════════
   WEBCAT LOGO SVG  (dark version for light bg)
════════════════════════════════════════════ */
.webcat-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
/* SVG logo drawn inline — cat silhouette integrated into letters */

/* ════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════ */
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: var(--navy);
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .88rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: background .25s, transform .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn-navy:hover { background: #1e3a5f; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(17,24,39,.25); }

.btn-navy-lg {
  padding: 17px 52px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .01em;
  border-radius: 50px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 500;
  font-size: .88rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: all .25s;
}
.btn-ghost:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }

/* ════════════════════════════════════════════
   FLOATING ICON CARD
════════════════════════════════════════════ */
.icon-card {
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  animation: float 5s ease-in-out infinite;
}
.icon-card.fc1 { animation-delay: 0s; }
.icon-card.fc2 { animation-delay: .8s; }
.icon-card.fc3 { animation-delay: 1.6s; }
.icon-card.fc4 { animation-delay: 2.4s; }
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(.8deg); }
  66%       { transform: translateY(-5px) rotate(-.6deg); }
}

/* ════════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
nav {
  position: relative;
  z-index: 1000;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 72px;
  box-sizing: border-box;
}
nav.sc {
  background: rgba(235,235,236,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 12px 40px;
}
.nav-logo-wrap { display: flex; align-items: center; }
.nav-btns {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.nav-links a { color: var(--muted); text-decoration: none; font-size: .88rem; font-weight: 500; transition: color .25s; }
.nav-links a:hover { color: var(--text); }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px 100px;
  position: relative;
  overflow: hidden;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: var(--white);
  border-radius: 50px;
  box-shadow: var(--shadow);
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 36px;
  animation: fadeUp .7s ease both;
}
.trust-badge .tbdot {
  width: 7px; height: 7px;
  background: #3b82f6;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(59,130,246,.2);
}

.hero-h1 {
  font-family: var(--sans);
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.035em;
  color: var(--dark);
  margin-bottom: 22px;
  max-width: 800px;
  animation: fadeUp .7s .12s ease both;
}
.hero-h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 44px;
  font-weight: 400;
  animation: fadeUp .7s .22s ease both;
}
.hero-cta-wrap {
  animation: fadeUp .7s .32s ease both;
}

@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }

/* Floating icons around hero */
.hero-float-zone {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
/* Left icons */
.fcard-tl { width: 80px; height: 160px; top: 22%; left: 10%; }
.fcard-bl { width: 76px; height: 76px; top: 55%; left: 7%; }
/* Right icons */
.fcard-tr { width: 80px; height: 160px; top: 22%; right: 10%; }
.fcard-br { width: 76px; height: 76px; top: 55%; right: 7%; }

/* ════════════════════════════════════════════
   SECTION LABELS
════════════════════════════════════════════ */
.sec-label {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 16px;
}

/* ════════════════════════════════════════════
   MARQUEE
════════════════════════════════════════════ */
.mq-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  background: #0f172a;
}
.mq-track {
  display: flex;
  width: max-content;
  animation: mq 26s linear infinite;
}
.mq-track span {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0 36px;
  white-space: nowrap;
}
.mq-track span.sep { color: rgba(255,255,255,0.25); padding: 0 6px; }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ════════════════════════════════════════════
   SECTION CARD (white rounded card like EcomBold sections)
════════════════════════════════════════════ */
.section-card {
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
  margin: 0 0 16px;
}

/* ════════════════════════════════════════════
   PROBLEM
════════════════════════════════════════════ */
#problem { padding: 80px 0; }
.problem-card {
  background: var(--white);
  border-radius: 28px;
  padding: 70px 60px;
}
.problem-header { margin-bottom: 60px; }
.problem-h2 {
  font-family: var(--sans);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
  margin-bottom: 14px;
  color: var(--dark);
}
.problem-h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.problem-sub { font-size: 1rem; color: var(--muted); max-width: 440px; line-height: 1.7; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 36px 30px;
  border: 1px solid rgba(0,0,0,.04);
  transition: all .35s;
  position: relative;
  overflow: hidden;
}
.pain-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.06), transparent);
  opacity: 0; transition: opacity .35s;
}
.pain-card:hover { background: #f5f5f6; transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pain-card:hover::before { opacity: 1; }
.pain-ico { font-size: 2rem; margin-bottom: 18px; display: block; }
.pain-num { font-family: var(--mono); font-size: .62rem; color: var(--light); margin-bottom: 14px; letter-spacing: .1em; }
.pain-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.pain-card p { font-size: .88rem; color: var(--muted); line-height: 1.72; }
.pain-x { position: absolute; top: 16px; right: 16px; width: 20px; height: 20px; background: rgba(239,68,68,.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .55rem; color: rgba(239,68,68,.5); }

/* ════════════════════════════════════════════
   SOLUTION / PIPELINE  (EcomBold split section)
════════════════════════════════════════════ */
#solution { padding: 0 0 16px; }
.sol-card {
  background: var(--white);
  border-radius: 28px;
  padding: 70px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sol-h2 {
  font-family: var(--sans);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--dark);
}
.sol-h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.sol-sub { font-size: .95rem; color: var(--muted); line-height: 1.75; margin-bottom: 32px; }

/* Pipeline rows like EcomBold tool cards */
.pipe-list { display: flex; flex-direction: column; gap: 10px; }
.pipe-item {
  background: var(--bg);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(0,0,0,.04);
  transition: all .3s;
  cursor: default;
}
.pipe-item:hover { background: #f0f0f1; transform: translateX(4px); box-shadow: var(--shadow); }
.pipe-item-ico {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.pipe-item-info {}
.pipe-item-name { font-size: .92rem; font-weight: 700; color: var(--dark); }
.pipe-item-desc { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.pipe-arr { margin-left: auto; color: var(--light); font-size: .9rem; }

/* ════════════════════════════════════════════
   SERVICES GRID
════════════════════════════════════════════ */
#services { padding: 0 0 16px; }
.svc-header {
  background: var(--white);
  border-radius: 28px 28px 0 0;
  padding: 60px 60px 40px;
  border-bottom: 1px solid var(--border);
}
.svc-header-inner { display: flex; align-items: flex-end; justify-content: space-between; }
.svc-h2 {
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
  color: var(--dark);
}
.svc-h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.svc-sub { font-size: .95rem; color: var(--muted); max-width: 340px; line-height: 1.7; text-align: right; }

.svc-grid-wrap {
  background: var(--white);
  border-radius: 0 0 28px 28px;
  padding: 0 60px 60px;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,.04);
  transition: all .35s;
  cursor: default;
}
.svc-card:hover { background: #f0f0f1; transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-ico-wrap {
  width: 52px;
  height: 52px;
  min-height: 52px;
  max-height: 52px;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.svc-num { font-family: var(--mono); font-size: .6rem; color: var(--light); letter-spacing: .1em; margin-bottom: 10px; }
.svc-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.svc-card p { font-size: .85rem; color: var(--muted); line-height: 1.72; margin-bottom: 18px; }
.svc-benefit { font-family: var(--mono); font-size: .65rem; color: var(--light); }
.svc-benefit::before { content: '→  '; }

/* ════════════════════════════════════════════
   HOW IT WORKS (EcomBold section card style)
════════════════════════════════════════════ */
#how { padding: 0 0 16px; }
.how-card {
  background: var(--dark);
  border-radius: 28px;
  padding: 70px 60px;
  color: var(--white);
}
.how-label { color: rgba(255,255,255,.3); margin-bottom: 20px; }
.how-h2 {
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 60px;
}
.how-h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: rgba(255,255,255,.65); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  overflow: hidden;
}
.how-step {
  padding: 40px 36px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .3s;
}
.how-step:last-child { border-right: none; }
.how-step:hover { background: rgba(255,255,255,.03); }
.how-step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: .85rem; color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}
.how-step h3 { font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.how-step p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.75; }

/* ════════════════════════════════════════════
   METRICS
════════════════════════════════════════════ */
#metrics { padding: 0 0 16px; }
.metrics-card {
  background: var(--white);
  border-radius: 28px;
  padding: 70px 60px;
}
.metrics-header { text-align: center; margin-bottom: 60px; }
.metrics-h2 {
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--dark);
}
.metrics-h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--bg);
  border-radius: 20px;
  overflow: hidden;
}
.m-item {
  background: var(--bg);
  padding: 44px 32px;
  text-align: center;
}
.m-item:hover { background: var(--bg); }
.m-num {
  font-family: var(--sans);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 10px;
}
.m-label { font-size: .88rem; color: var(--muted); line-height: 1.5; }

/* ════════════════════════════════════════════
   CASE STUDIES
════════════════════════════════════════════ */
#cases { padding: 0 0 16px; }
.cases-card {
  background: var(--white);
  border-radius: 28px;
  padding: 70px 60px;
}
.cases-h2 {
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 50px;
}
.cases-h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; }

.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.case-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,.04);
  transition: all .35s;
  cursor: default;
}
.case-card:hover { background: #f0f0f1; transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.case-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--white);
  border-radius: 50px;
  font-family: var(--mono); font-size: .62rem;
  color: var(--muted); letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.case-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 20px; line-height: 1.3; }
.case-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.case-b {
  background: var(--white);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}
.case-bl { font-family: var(--mono); font-size: .58rem; color: var(--light); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 5px; }
.case-bv { font-size: .82rem; color: var(--muted); line-height: 1.5; }
.case-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(5,150,105,0.25);
}
.case-result-ico { font-size: 1.1rem; flex-shrink: 0; }
.case-result-text { font-size: .82rem; color: rgba(255,255,255,.7); line-height: 1.5; }
.case-result-text strong { color: #fff; }

/* ════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════ */
#testi { padding: 0 0 16px; }
.testi-card-wrap {
  background: var(--white);
  border-radius: 28px;
  padding: 70px 60px;
}
.testi-h2 {
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--dark);
  margin-bottom: 50px;
  line-height: 1.05;
}
.testi-h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.testi-item {
  background: var(--bg);
  border-radius: 20px;
  padding: 30px 26px;
  border: 1px solid rgba(0,0,0,.04);
  transition: all .35s;
  cursor: default;
}
.testi-item:hover { background: #f0f0f1; transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-stars { font-size: .85rem; letter-spacing: 2px; color: #f59e0b; margin-bottom: 16px; }
.testi-q { font-size: .9rem; color: var(--muted); line-height: 1.78; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
  flex-shrink: 0;
}
.testi-name { font-size: .88rem; font-weight: 700; color: var(--dark); }
.testi-role { font-size: .75rem; color: var(--light); margin-top: 1px; }

/* ════════════════════════════════════════════
   FINAL CTA  (EcomBold style)
════════════════════════════════════════════ */
#cta { padding: 0 0 80px; }
.cta-card {
  background: var(--dark);
  border-radius: 28px;
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,255,255,.04) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-h2 {
  font-family: var(--sans);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.0;
  color: #fff;
  max-width: 640px;
  margin: 0 auto 20px;
}
.cta-h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; color: rgba(255,255,255,.65); }
.cta-sub { font-size: 1rem; color: rgba(255,255,255,.45); max-width: 400px; margin: 0 auto 44px; line-height: 1.72; }
.urgency {
  margin-top: 20px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--mono); font-size: .67rem;
  color: rgba(255,255,255,.25); letter-spacing: .08em;
}
.urg-dot { width: 5px; height: 5px; background: #f87171; border-radius: 50%; box-shadow: 0 0 6px #f87171; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.15} }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer { padding: 40px 0; border-top: 1px solid var(--border); }
.foot-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.foot-copy { font-family: var(--mono); font-size: .67rem; color: var(--light); letter-spacing: .04em; }
.foot-links { display: flex; gap: 28px; }
.foot-links a { color: var(--muted); text-decoration: none; font-size: .86rem; transition: color .25s; }
.foot-links a:hover { color: var(--dark); }

/* ════════════════════════════════════════════
   MOBILE
════════════════════════════════════════════ */
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  nav { padding: 14px 20px; }
  nav.sc { padding: 10px 20px; }
  .nav-links { display: none; }
  #hero { padding: 100px 20px 80px; }
  .fcard-tl, .fcard-bl, .fcard-tr, .fcard-br { display: none; }
  .pain-grid, .svc-grid, .metrics-grid, .cases-grid, .testi-grid, .how-steps { grid-template-columns: 1fr; }
  .sol-card { grid-template-columns: 1fr; gap: 36px; }
  .svc-header { padding: 44px 28px 30px; }
  .svc-header-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .svc-sub { text-align: left; }
  .svc-grid-wrap { padding: 0 28px 44px; }
  .problem-card, .sol-card, .how-card, .metrics-card, .cases-card, .testi-card-wrap, .cta-card { padding: 44px 28px; }
  .how-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .how-step:last-child { border-bottom: none; }
  footer .foot-inner { flex-direction: column; align-items: center; text-align: center; }
}

/* ── LOGO IMAGE ── */
.webcat-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
  transition: opacity .25s;
}
.logo-pill:hover { opacity: .65; }
.logo-img {
  height: 160px;
  width: auto;
  display: block;
  filter: none;
  mix-blend-mode: normal;
  opacity: 1;
}



/* ── WordPress specific overrides ── */
.wp-block-image img { max-width: 100%; }
.aligncenter { display: block; margin: 0 auto; }
a { cursor: pointer; }
