/* ── Reset & Variables ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:    #ffffff;
  --off:      #f7f9fc;
  --navy:     #0a1628;
  --blue:     #1251c5;
  --blue-mid: #1a6bff;
  --blue-lt:  #e8f0fe;
  --teal:     #0d9488;
  --teal-lt:  #e0f7f5;
  --green:    #10b981;
  --green-lt: #d1fae5;
  --muted:    #5a6a7e;
  --border:   #e2e8f0;
  --shadow:   0 1px 3px rgba(10,22,40,0.08), 0 4px 16px rgba(10,22,40,0.06);
  --shadow-lg:0 8px 32px rgba(10,22,40,0.12), 0 2px 8px rgba(10,22,40,0.06);
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--navy);
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ── Navigation ────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.site-nav.scrolled { box-shadow: var(--shadow); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  color: white;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav-logo-text span { color: var(--blue); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--blue); }

/* WordPress nav menu overrides */
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a { color: var(--blue); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue);
  color: white;
  padding: 0.6rem 1.3rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(18,81,197,0.3);
}

.nav-cta:hover {
  background: #0d42a8;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(18,81,197,0.35);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}

.mobile-menu {
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 1.5rem 2rem 2rem;
  box-shadow: var(--shadow-lg);
}

.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; margin-bottom: 1.5rem; }
.mobile-menu ul a { display: block; padding: 0.65rem 0; font-weight: 500; color: var(--navy); border-bottom: 1px solid var(--border); }
.mobile-menu ul a:hover { color: var(--blue); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: white;
  padding: 0.85rem 1.8rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(18,81,197,0.3);
}

.btn-primary:hover {
  background: #0d42a8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18,81,197,0.35);
  color: white;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--navy);
  padding: 0.85rem 1.8rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(13,148,136,0.3);
}

.btn-teal:hover {
  background: #0b7a72;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,148,136,0.35);
  color: white;
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 100px 3rem 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.45;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero::after {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(18,81,197,0.08) 0%, rgba(13,148,136,0.06) 50%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-lt);
  color: var(--blue);
  border: 1px solid rgba(18,81,197,0.15);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.6rem;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1.6rem;
  color: var(--navy);
}

.grad {
  background: linear-gradient(90deg, var(--blue) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 2.4rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 2.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-avatars { display: flex; }

.trust-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -8px;
  background: linear-gradient(135deg, var(--blue-lt), var(--teal-lt));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--blue);
}

.trust-avatars .trust-avatar:first-child { margin-left: 0; }

.trust-text { font-size: 0.8rem; color: var(--muted); line-height: 1.4; }
.trust-text strong { color: var(--navy); font-weight: 600; }

.hero-right {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.8s 0.15s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  border-radius: 16px 16px 0 0;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.6rem;
}

.hero-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.live-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--green);
  font-weight: 500;
}

.live-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.stat-item {
  background: var(--off);
  padding: 1.4rem 1.2rem;
  transition: background 0.2s;
}

.stat-item:hover { background: var(--blue-lt); }

.stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.3rem;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-lbl { font-size: 0.72rem; font-weight: 500; color: var(--muted); letter-spacing: 0.02em; }

.hero-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.mini-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.mini-card:hover { border-color: var(--blue); box-shadow: 0 2px 12px rgba(18,81,197,0.1); }

.mini-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.mini-icon.blue  { background: var(--blue-lt); }
.mini-icon.teal  { background: var(--teal-lt); }
.mini-icon.green { background: var(--green-lt); }

.mini-text .val { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.mini-text .lbl { font-size: 0.68rem; color: var(--muted); font-weight: 500; }

/* ── Ticker ────────────────────────────────────────────────── */
.ticker-wrap { background: var(--navy); overflow: hidden; padding: 0.75rem 0; }

.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 0 2.5rem;
}

.ticker-item .sep { color: var(--teal); font-size: 0.8rem; }

/* ── Logos ─────────────────────────────────────────────────── */
.logos-section {
  padding: 3rem;
  border-bottom: 1px solid var(--border);
  background: var(--off);
}

.logos-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.logo-pill {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #b0bec5;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.logo-pill:hover { color: var(--muted); }

/* ── Sections ──────────────────────────────────────────────── */
.section { padding: 90px 3rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-lt);
  color: var(--blue);
  border: 1px solid rgba(18,81,197,0.15);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 540px;
  color: var(--navy);
}

.section-intro { max-width: 360px; font-size: 0.95rem; line-height: 1.75; color: var(--muted); }

/* ── Services ──────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(18,81,197,0.12);
  transform: translateY(-4px);
}

.service-num { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; color: var(--muted); letter-spacing: 0.1em; }

.service-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

.service-icon-wrap.blue  { background: var(--blue-lt); }
.service-icon-wrap.teal  { background: var(--teal-lt); }
.service-icon-wrap.green { background: var(--green-lt); }

.service-title { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; color: var(--navy); }

.service-desc { font-size: 0.87rem; line-height: 1.75; color: var(--muted); flex: 1; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.2s;
}

.service-link:hover { gap: 0.6rem; color: var(--blue); }

/* ── Process ───────────────────────────────────────────────── */
.process-section { background: var(--navy); padding: 90px 3rem; }

.process-section .section-label {
  background: rgba(255,255,255,0.08);
  color: var(--teal);
  border-color: rgba(13,148,136,0.25);
}

.process-section h2 { color: white; }
.process-section .section-intro { color: rgba(255,255,255,0.5); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 3.5rem;
}

.process-step {
  background: rgba(255,255,255,0.02);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.25s;
}

.process-step:hover { background: rgba(255,255,255,0.05); }

.step-connector {
  position: absolute;
  top: 2.5rem; right: -0.6rem;
  width: 1.2rem; height: 1.2rem;
  background: var(--teal);
  border-radius: 50%;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
}

.step-connector::after { content: '→'; font-size: 0.5rem; color: white; }
.process-step:last-child .step-connector { display: none; }

.step-num { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; color: var(--teal); letter-spacing: 0.1em; margin-bottom: 1.2rem; font-weight: 500; }
.step-title { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 0.75rem; letter-spacing: -0.01em; }
.step-desc { font-size: 0.84rem; line-height: 1.75; color: rgba(255,255,255,0.45); }

/* ── Results Band ──────────────────────────────────────────── */
.results-band {
  background: linear-gradient(135deg, var(--blue) 0%, #0e4fc4 40%, var(--teal) 100%);
  padding: 70px 3rem;
}

.results-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.result-val {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.result-val sup { font-size: 1.4rem; vertical-align: super; opacity: 0.8; }
.result-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.65); font-weight: 500; letter-spacing: 0.04em; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section { padding: 90px 3rem; background: var(--off); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: box-shadow 0.25s, transform 0.25s;
}

.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.stars { display: flex; gap: 0.2rem; color: #f59e0b; font-size: 0.85rem; }
.testimonial-text { font-size: 0.92rem; line-height: 1.75; color: var(--navy); flex: 1; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-lt), var(--teal-lt));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--blue);
  flex-shrink: 0;
}

.author-name { font-weight: 600; font-size: 0.85rem; color: var(--navy); }
.author-role { font-size: 0.72rem; color: var(--muted); }

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section { padding: 90px 3rem; background: white; text-align: center; }

.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-section h2 { max-width: none; margin: 0 auto 1.2rem; }
.cta-section p { font-size: 1rem; color: var(--muted); margin-bottom: 2.4rem; line-height: 1.75; }

.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: white; padding: 5rem 3rem 2.5rem; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; margin-bottom: 0.75rem; letter-spacing: -0.02em; }

.footer-brand-name span {
  background: linear-gradient(90deg, var(--blue-mid), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline { font-size: 0.85rem; line-height: 1.75; color: rgba(255,255,255,0.4); max-width: 260px; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 0.6rem; }

.social-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  transition: background 0.2s, color 0.2s;
}

.social-btn:hover { background: var(--blue); color: white; }

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul a:hover { color: white; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.footer-legal { font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.25); }
.footer-legal a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: white; }

/* ── Sub-page Layouts ──────────────────────────────────────── */
.page-wrapper { padding-top: 68px; }

.page-hero {
  background: var(--off);
  border-bottom: 1px solid var(--border);
  padding: 60px 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black 40%, transparent 100%);
}

.page-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.page-excerpt { font-size: 1.05rem; color: var(--muted); line-height: 1.75; }

.page-content-wrap { max-width: 820px; margin: 0 auto; padding: 60px 3rem; }

.page-content h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin: 2rem 0 1rem; }
.page-content h3 { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; margin: 1.75rem 0 0.75rem; color: var(--navy); }
.page-content p { font-size: 1rem; line-height: 1.8; color: #3a4a5e; margin-bottom: 1.25rem; }
.page-content ul, .page-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.page-content li { font-size: 1rem; line-height: 1.8; color: #3a4a5e; margin-bottom: 0.4rem; }
.page-content a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.page-content a:hover { color: var(--teal); }
.page-content img { border-radius: 12px; margin: 2rem 0; }
.page-content blockquote {
  border-left: 3px solid var(--blue);
  padding: 1rem 1.5rem;
  background: var(--blue-lt);
  border-radius: 0 10px 10px 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--navy);
}

.single-thumb { max-width: 820px; margin: 0 auto; padding: 0 3rem; }
.single-thumb img { border-radius: 12px; width: 100%; object-fit: cover; max-height: 420px; }

.single-content { max-width: 700px; }

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.post-nav a { font-size: 0.9rem; font-weight: 600; color: var(--blue); }
.post-nav a:hover { color: var(--teal); }

/* ── Blog ──────────────────────────────────────────────────── */
.blog-wrap { padding: 60px 3rem; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.blog-thumb img { width: 100%; height: 200px; object-fit: cover; }

.blog-card-body { padding: 1.5rem; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.blog-date { font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; color: var(--muted); }

.blog-cat {
  background: var(--blue-lt);
  color: var(--blue);
  border-radius: 100px;
  padding: 0.15rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.blog-title { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.blog-title a { color: var(--navy); transition: color 0.2s; }
.blog-title a:hover { color: var(--blue); }

.blog-excerpt { font-size: 0.85rem; line-height: 1.7; color: var(--muted); margin-bottom: 1rem; }

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.2s;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.no-posts { text-align: center; padding: 4rem; color: var(--muted); }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; padding: 100px 2rem 60px; min-height: auto; }
  .hero::before, .hero::after { display: none; }
  .hero-mini-cards { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .step-connector { display: none; }
  .results-inner { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .section { padding: 60px 1.5rem; }
  .process-section, .testimonials-section, .results-band, .cta-section { padding: 60px 1.5rem; }
  .logos-section { padding: 2.5rem 1.5rem; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .results-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .site-footer { padding: 3.5rem 1.5rem 2rem; }
  .hero-sub { max-width: 100%; }
  .page-hero { padding: 40px 1.5rem; }
  .page-content-wrap { padding: 40px 1.5rem; }
  .blog-wrap { padding: 40px 1.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .single-thumb { padding: 0 1.5rem; }
}
