@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #2CC9A2;
  --brand-dark: #22B591;
  --brand-light: #E8FAF5;
  --navy: #0D1F38;
  --navy-mid: #162844;
  --navy-light: #1E3451;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-900: #111827;
}

html, body, body.admin-bar {
  background-color: #ffffff !important;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--gray-700);
  background: #fff;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ─── NAVBAR ─────────────────────────────────────────────── */
#navbar {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  transition: background 0.3s, box-shadow 0.3s;
}
#navbar.solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; height: 4rem; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 2rem; width: auto; transition: filter 0.3s; }
#navbar:not(.solid) .nav-logo img { filter: brightness(0) invert(1); }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-link {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.9); transition: color 0.2s;
  display: flex; align-items: center; gap: 0.25rem;
}
#navbar.solid .nav-link { color: var(--gray-600); }
.nav-link:hover { color: #fff; }
#navbar.solid .nav-link:hover { color: var(--brand); }
.nav-link-active { color: #fff !important; font-weight: 600; }
#navbar.solid .nav-link-active { color: var(--brand) !important; }
.nav-actions { display: none; align-items: center; gap: 1rem; }
.nav-see-results {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.8); transition: color 0.2s;
}
#navbar.solid .nav-see-results { color: var(--gray-600); }
.nav-see-results:hover { color: #fff; }
#navbar.solid .nav-see-results:hover { color: var(--brand); }
.nav-cta {
  display: inline-flex; align-items: center;
  background: var(--brand); color: #fff;
  font-size: 0.875rem; font-weight: 600;
  padding: 0.625rem 1.25rem; border-radius: 0.5rem;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--brand-dark); }

/* Dropdown */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 0.75rem); left: 50%; transform: translateX(-50%);
  width: 14rem; background: #fff; border-radius: 0.75rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12); border: 1px solid var(--gray-100);
  overflow: hidden; display: none;
}
.nav-dropdown.open { display: block; }
.nav-dropdown a {
  display: block; padding: 0.875rem 1.25rem;
  font-size: 0.875rem; font-weight: 500; color: var(--gray-700);
  border-bottom: 1px solid var(--gray-50); transition: color 0.15s, background 0.15s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { color: var(--brand); background: var(--gray-50); }
.chevron { transition: transform 0.2s; display: inline-block; margin-left: 2px; }
.chevron.open { transform: rotate(180deg); }

/* Mobile menu */
.nav-hamburger { display: flex; padding: 0.5rem; color: #fff; }
#navbar.solid .nav-hamburger { color: var(--gray-900); }
.mobile-menu {
  background: #fff; border-top: 1px solid var(--gray-100);
  padding-bottom: 1rem; display: none;
}
.mobile-menu.open { display: block; }
.mobile-menu a, .mobile-menu button {
  display: block; width: 100%; padding: 0.875rem 1.5rem; text-align: left;
  font-size: 1rem; font-weight: 500; color: var(--gray-700);
  border-bottom: 1px solid var(--gray-50); transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu button:hover { color: var(--brand); }
.mobile-menu-services { background: var(--gray-50); border-bottom: 1px solid var(--gray-100); display: none; }
.mobile-menu-services.open { display: block; }
.mobile-menu-services a { padding-left: 2rem; font-size: 0.875rem; }
.mobile-menu-actions { padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-see-results {
  display: block; text-align: center; font-weight: 600;
  border: 1px solid var(--gray-200); color: var(--gray-700);
  padding: 0.75rem; border-radius: 0.5rem; transition: color 0.2s;
}
.mobile-see-results:hover { color: var(--brand); }
.mobile-cta {
  display: block; text-align: center; font-weight: 600;
  background: var(--brand); color: #fff;
  padding: 0.75rem; border-radius: 0.5rem; transition: background 0.2s;
}
.mobile-cta:hover { background: var(--brand-dark); }

/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(140deg, #1AA882 0%, #2CC9A2 55%, #38D4AE 100%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M0 0h1v40H0zM39 0h1v40h-1zM0 0v1h40V0zM0 39v1h40v-1z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-glow-top {
  position: absolute; top: -8rem; right: 0;
  width: 700px; height: 700px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(ellipse, rgba(255,255,255,0.5) 0%, transparent 65%); opacity: 0.2;
}
.hero-glow-bot {
  position: absolute; bottom: 0; left: 0;
  width: 500px; height: 500px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(ellipse, rgba(0,0,0,0.5) 0%, transparent 70%); opacity: 0.1;
}
.hero-inner {
  position: relative; max-width: 1280px; margin: 0 auto; padding: 6rem 1.5rem 9rem;
  display: grid; grid-template-columns: 1fr; gap: 4rem; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.625rem;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 9999px; padding: 0.375rem 1rem; margin-bottom: 2rem;
  backdrop-filter: blur(4px);
}
.hero-badge-dot {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: #fff; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-badge span { font-size: 0.875rem; font-weight: 500; color: #fff; }
.hero-h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900;
  line-height: 1.06; color: #fff; margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.hero-p {
  font-size: 1.125rem; color: rgba(255,255,255,0.8);
  line-height: 1.7; margin-bottom: 2.5rem; max-width: 36rem;
}
.hero-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; color: var(--brand); font-weight: 700;
  padding: 1rem 2rem; border-radius: 0.75rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-btn:hover { transform: translateY(-2px); box-shadow: 0 28px 70px rgba(0,0,0,0.25); }
.hero-btn svg { transition: transform 0.2s; }
.hero-btn:hover svg { transform: translateX(4px); }
.hero-features { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 3.5rem; }
.hero-feature {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.8);
}
.hero-feature-dot { font-size: 0.625rem; color: var(--brand); }

/* Dashboard card */
.hero-card {
  display: none;
  border-radius: 1rem; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  background: #0D1F38; position: relative;
}
.hero-card-bar {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.875rem 1.25rem; background: #162844;
}
.card-dots { display: flex; gap: 0.375rem; }
.card-dots span { width: 0.75rem; height: 0.75rem; border-radius: 50%; }
.card-url {
  flex: 1; background: #0D1F38; border-radius: 0.375rem;
  padding: 0.375rem 0.75rem; font-size: 0.75rem; color: var(--gray-500);
}
.hero-card-body { padding: 1.5rem; }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.25rem; }
.card-metric-label {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--gray-500); margin-bottom: 0.375rem;
}
.card-metric-val { font-size: 2.5rem; font-weight: 900; color: #fff; }
.card-trend { display: flex; align-items: center; gap: 0.375rem; margin-top: 0.5rem; }
.card-trend span { color: var(--brand); font-size: 0.875rem; font-weight: 600; }
.card-right { text-align: right; }
.card-right-label { font-size: 0.75rem; color: var(--gray-500); margin-bottom: 0.25rem; }
.card-right-val { font-size: 1.5rem; font-weight: 900; color: #fff; }
.card-right-pct { font-size: 0.75rem; color: var(--brand); font-weight: 500; margin-top: 0.25rem; }
.card-chart { position: relative; height: 9rem; margin-bottom: 1.25rem; }
.card-chart svg { width: 100%; height: 100%; }
.card-months {
  display: flex; justify-content: space-between;
  position: absolute; bottom: 0; left: 0.25rem; right: 0.25rem;
}
.card-months span { font-size: 0.75rem; color: var(--gray-600); }
.card-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.75rem; }
.card-stat { background: #162844; border-radius: 0.75rem; padding: 0.75rem; }
.card-stat-label { font-size: 0.75rem; color: var(--gray-500); margin-bottom: 0.375rem; }
.card-stat-val { font-size: 0.875rem; font-weight: 700; color: #fff; }
.card-stat-badge { font-size: 0.75rem; color: var(--brand); font-weight: 500; margin-top: 0.25rem; }
.hero-floater-1 {
  display: none; position: absolute; bottom: -1.25rem; left: -2rem;
  background: #fff; border-radius: 1rem; box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  padding: 1rem; gap: 0.75rem; align-items: center;
}
.hero-floater-2 {
  display: none; position: absolute; top: -1rem; right: -1.5rem;
  background: #fff; border-radius: 1rem; box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  padding: 1rem; text-align: right;
}
.floater-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--brand-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.floater-label { font-size: 0.75rem; color: var(--gray-400); }
.floater-val { font-weight: 700; color: var(--gray-900); font-size: 0.875rem; }
.floater-sub { font-size: 0.75rem; color: var(--brand); font-weight: 600; }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 4rem; }

/* ─── LOGO BAR ───────────────────────────────────────────── */
#logobar { background: #fff; padding: 3.5rem 0; border-bottom: 1px solid var(--gray-100); }
.logobar-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.logobar-label {
  text-align: center; font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em; color: var(--gray-400); margin-bottom: 2.5rem;
}
.logobar-logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2.5rem;
}
.logobar-logos img {
  height: 2rem; width: auto; object-fit: contain;
  filter: grayscale(1); opacity: 0.5; transition: filter 0.3s, opacity 0.3s;
}
.logobar-logos img:hover { filter: none; opacity: 0.8; }

/* ─── STATS ──────────────────────────────────────────────── */
#stats { padding: 5rem 0; background: var(--navy); }
.stats-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.stats-grid {
  display: grid; grid-template-columns: 1fr;
  border-radius: 1rem; overflow: hidden; background: rgba(255,255,255,0.06); gap: 1px;
}
.stat-item { padding: 2rem 2.5rem; background: var(--navy); }
.stat-val { font-size: 3.5rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 0.75rem; }
.stat-label {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--brand); margin-bottom: 0.5rem;
}
.stat-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* ─── SERVICES ───────────────────────────────────────────── */
#services { background: #fff; padding: 7rem 0; }
.services-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--brand);
}
.services-h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: var(--navy); margin: 0.75rem 0 1.25rem; line-height: 1.1;
}
.services-p { font-size: 1.125rem; color: var(--gray-500); line-height: 1.7; }
.services-intro { max-width: 40rem; margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.service-card {
  border-radius: 1rem; border: 1px solid var(--gray-100); padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: rgba(44,201,162,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.08); transform: translateY(-4px);
}
.service-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: var(--brand-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; transition: background 0.3s;
}
.service-card:hover .service-icon { background: var(--brand); }
.service-icon svg { color: var(--brand); transition: color 0.3s; }
.service-card:hover .service-icon svg { color: #fff; }
.service-title { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.service-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 1.5rem; }
.service-points { display: flex; flex-direction: column; gap: 0.625rem; }
.service-point { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; color: var(--gray-600); }
.service-bullet { width: 0.375rem; height: 0.375rem; border-radius: 50%; background: var(--brand); flex-shrink: 0; margin-top: 0.4rem; }

/* ─── PROCESS ────────────────────────────────────────────── */
#process { padding: 7rem 0; background: var(--gray-50); }
.process-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.process-intro { max-width: 40rem; margin-bottom: 4rem; }
.process-h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: var(--gray-900); line-height: 1.1; margin-bottom: 1.25rem; }
.process-p { font-size: 1.125rem; color: var(--gray-500); line-height: 1.7; }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.process-card {
  border-radius: 1rem; padding: 2rem; border: 1px solid;
  transition: transform 0.3s, box-shadow 0.3s;
}
.process-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.1); }
.process-card.dark { background: #1a2535; border-color: #2a3a52; }
.process-card.light { background: #fff; border-color: var(--gray-100); }
.process-card-inner { display: flex; align-items: flex-start; gap: 1.5rem; }
.process-num { font-size: 3rem; font-weight: 900; line-height: 1; flex-shrink: 0; }
.process-card.dark .process-num { color: var(--brand); }
.process-card.light .process-num { color: var(--gray-100); }
.process-title { font-size: 1.25rem; font-weight: 900; margin-bottom: 0.75rem; }
.process-card.dark .process-title { color: #fff; }
.process-card.light .process-title { color: var(--gray-900); }
.process-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.25rem; }
.process-card.dark .process-desc { color: var(--gray-400); }
.process-card.light .process-desc { color: var(--gray-500); }
.process-details { display: flex; flex-direction: column; gap: 0.5rem; }
.process-detail { display: flex; align-items: center; gap: 0.625rem; }
.process-detail-dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; background: var(--brand); flex-shrink: 0; }
.process-detail-text { font-size: 0.875rem; font-weight: 500; }
.process-card.dark .process-detail-text { color: #cdd5e0; }
.process-card.light .process-detail-text { color: var(--gray-600); }

/* ─── CASE STUDIES ───────────────────────────────────────── */
#case-studies { padding: 7rem 0; background: var(--gray-50); }
.cs-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.cs-head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3.5rem; }
.cs-h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: var(--navy); line-height: 1.1; margin-top: 0.75rem; }
.cs-subp { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.7; }
.cs-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.cs-card {
  border-radius: 1rem; padding: 1.75rem;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid; transition: transform 0.3s, box-shadow 0.3s; min-height: 14rem;
}
.cs-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.12); }
.cs-card.light { background: #fff; border-color: var(--gray-100); }
.cs-card.light:hover { border-color: rgba(44,201,162,0.2); }
.cs-card.dark { background: var(--navy); border-color: var(--navy); }
.cs-cat { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--brand); }
.cs-title { font-size: 1.125rem; font-weight: 700; margin: 0.75rem 0 2rem; line-height: 1.4; }
.cs-card.light .cs-title { color: var(--navy); }
.cs-card.dark .cs-title { color: #fff; }
.cs-bottom { display: flex; flex-direction: column; gap: 1.25rem; }
.cs-metric-row { display: flex; align-items: flex-end; justify-content: space-between; }
.cs-metric-val { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.cs-card.light .cs-metric-val { color: var(--navy); }
.cs-card.dark .cs-metric-val { color: #fff; }
.cs-unit { font-size: 0.875rem; margin-top: 0.25rem; }
.cs-card.light .cs-unit { color: var(--gray-400); }
.cs-card.dark .cs-unit { color: rgba(255,255,255,0.5); }
.cs-badge { font-size: 0.75rem; font-weight: 500; padding: 0.375rem 0.75rem; border-radius: 9999px; }
.cs-card.light .cs-badge { background: var(--brand-light); color: var(--brand); }
.cs-card.dark .cs-badge { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }
.cs-read {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; font-weight: 600; color: var(--brand); transition: gap 0.2s;
}
.cs-card:hover .cs-read { gap: 0.75rem; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
#testimonial { background: var(--navy); padding: 7rem 0; }
.testimonial-inner { max-width: 64rem; margin: 0 auto; padding: 0 1.5rem; }
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.testimonial-item { display: flex; flex-direction: column; }
.testimonial-quote-mark {
  font-size: 4rem; color: var(--brand); line-height: 0.8;
  font-family: Georgia, serif; margin-bottom: 1.5rem; user-select: none;
}
.testimonial-text { font-size: 1.125rem; font-weight: 500; color: #fff; line-height: 1.7; flex: 1; margin-bottom: 2rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-name { font-weight: 700; color: #fff; }
.testimonial-title { font-size: 0.875rem; color: var(--gray-500); }

/* ─── QUALIFICATION ──────────────────────────────────────── */
#qualification { background: #fff; padding: 7rem 0; }
.qual-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.qual-head { text-align: center; margin-bottom: 3.5rem; }
.qual-h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: var(--navy); margin: 0.75rem 0 1rem; }
.qual-p { font-size: 1.125rem; color: var(--gray-500); max-width: 32rem; margin: 0 auto; line-height: 1.7; }
.qual-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.qual-card { border-radius: 1rem; padding: 2rem 2.5rem; }
.qual-card.dont { background: var(--gray-50); border: 1px solid var(--gray-100); }
.qual-card.do { background: var(--brand-light); border: 1px solid rgba(44,201,162,0.2); }
.qual-card-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.qual-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.qual-card.dont .qual-icon { background: #fee2e2; }
.qual-card.do .qual-icon { background: var(--brand); }
.qual-card-title { font-size: 1.25rem; font-weight: 700; color: var(--navy); }
.qual-items { display: flex; flex-direction: column; gap: 1rem; }
.qual-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.qual-item-icon {
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.125rem;
}
.qual-card.dont .qual-item-icon { background: #fee2e2; }
.qual-card.do .qual-item-icon { background: var(--brand); }
.qual-item-text { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }
.qual-card.do .qual-item-text { color: var(--gray-700); }

/* ─── FAQ ────────────────────────────────────────────────── */
#faq { padding: 7rem 0; background: #fff; }
.faq-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.faq-layout { display: grid; grid-template-columns: 1fr; gap: 4rem; }
.faq-h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: var(--gray-900); line-height: 1.1; margin-bottom: 1.25rem; }
.faq-p { font-size: 1.125rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 2rem; }
.faq-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--brand); color: #fff; font-weight: 700;
  padding: 0.875rem 1.75rem; border-radius: 0.75rem;
  font-size: 0.875rem; transition: background 0.2s;
}
.faq-cta:hover { background: var(--brand-dark); }
.faq-list { border-top: 1px solid var(--gray-100); }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-item:last-child { border-bottom: none; }
.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.5rem 0; text-align: left;
}
.faq-question { font-size: 1rem; font-weight: 600; color: var(--gray-900); transition: color 0.2s; }
.faq-btn:hover .faq-question { color: var(--brand); }
.faq-icon {
  flex-shrink: 0; width: 1.75rem; height: 1.75rem; border-radius: 50%;
  border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center;
  color: var(--gray-400); transition: border-color 0.2s, color 0.2s;
}
.faq-btn:hover .faq-icon { border-color: var(--brand); color: var(--brand); }
.faq-answer {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease; padding-bottom: 0;
}
.faq-answer.open { max-height: 20rem; opacity: 1; padding-bottom: 1.5rem; }
.faq-answer p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; padding-right: 2.5rem; }

/* ─── CTA ────────────────────────────────────────────────── */
#cta {
  position: relative; overflow: hidden; padding: 7rem 0;
  background: linear-gradient(140deg, #1AA882 0%, #2CC9A2 55%, #38D4AE 100%);
}
.cta-grid {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M0 0h1v40H0zM39 0h1v40h-1zM0 0v1h40V0zM0 39v1h40v-1z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-glow {
  position: absolute; top: 0; right: 0; width: 600px; height: 600px;
  border-radius: 50%; opacity: 0.15; pointer-events: none;
  background: radial-gradient(ellipse, rgba(255,255,255,0.6) 0%, transparent 65%);
}
.cta-inner { position: relative; max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.cta-badge {
  display: inline-block; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.2em; padding: 0.375rem 1rem; border-radius: 9999px; margin-bottom: 2rem;
}
.cta-h2 {
  font-size: clamp(2rem,5vw,3.5rem); font-weight: 900; color: #fff;
  margin-bottom: 1.5rem; line-height: 1.1;
}
.cta-p { font-size: 1.25rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 3rem; max-width: 40rem; margin-left: auto; margin-right: auto; }
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.625rem;
  background: #fff; color: var(--brand); font-weight: 700;
  padding: 1rem 2.5rem; border-radius: 0.75rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2); transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 32px 70px rgba(0,0,0,0.25); }
.cta-btn svg { transition: transform 0.2s; }
.cta-btn:hover svg { transform: translateX(4px); }

/* ─── FOOTER ─────────────────────────────────────────────── */
#footer { background: #0A1628; padding: 4rem 0 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.footer-top {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 2rem; width: auto; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; max-width: 18rem; }
.footer-brand-email { margin-top: 1.5rem; }
.footer-brand-email a { font-size: 0.875rem; color: var(--gray-600); transition: color 0.2s; }
.footer-brand-email a:hover { color: var(--brand); }
.footer-col-title {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; color: #fff; margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.875rem; color: var(--gray-500); transition: color 0.2s; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
  padding-top: 2rem; text-align: center;
}
.footer-copy { font-size: 0.875rem; color: var(--gray-600); }
.footer-legal { display: flex; gap: 1.5rem; align-items: center; }
.footer-legal a { font-size: 0.875rem; color: var(--gray-600); transition: color 0.2s; display: flex; align-items: center; }
.footer-legal a:hover { color: var(--brand); }

/* ─── CMP SHARED ─────────────────────────────────────────── */
.cmp-section-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.cmp-h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 900;
  color: var(--navy); line-height: 1.1; margin: 0.75rem 0 1.25rem;
}
.cmp-body-p { font-size: 1rem; color: var(--gray-500); line-height: 1.75; }
.cmp-section-head { text-align: center; max-width: 44rem; margin: 0 auto 3.5rem; }
.cmp-section-sub { font-size: 1.0625rem; color: var(--gray-500); line-height: 1.7; }

/* ─── CMP HERO ───────────────────────────────────────────── */
.cmp-hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(140deg, #1AA882 0%, #2CC9A2 55%, #38D4AE 100%);
}
.cmp-hero-grid {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M0 0h1v40H0zM39 0h1v40h-1zM0 0v1h40V0zM0 39v1h40v-1z'/%3E%3C/g%3E%3C/svg%3E");
}
.cmp-hero-glow {
  position: absolute; top: -8rem; right: 0;
  width: 700px; height: 700px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(ellipse, rgba(255,255,255,0.5) 0%, transparent 65%); opacity: 0.2;
}
.cmp-hero-inner {
  position: relative; max-width: 1280px; margin: 0 auto; padding: 7rem 1.5rem 9rem;
  display: grid; grid-template-columns: 1fr; gap: 3rem; width: 100%;
}
.cmp-hero-h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem); font-weight: 900;
  line-height: 1.08; color: #fff; margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.cmp-hero-p {
  font-size: 1.125rem; color: rgba(255,255,255,0.85);
  line-height: 1.75; margin-bottom: 2.5rem; max-width: 34rem;
}
.cmp-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.cmp-hero-ghost {
  display: inline-flex; align-items: center;
  border: 2px solid rgba(255,255,255,0.5); color: #fff;
  font-size: 0.9375rem; font-weight: 600;
  padding: 0.9rem 1.75rem; border-radius: 0.75rem;
  transition: border-color 0.2s, background 0.2s;
}
.cmp-hero-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.cmp-hero-img {
  border-radius: 1.25rem; box-shadow: 0 40px 100px rgba(0,0,0,0.25);
  width: 100%; object-fit: cover; aspect-ratio: 4/3;
}

/* ─── CMP WHY ────────────────────────────────────────────── */
.cmp-why { background: #fff; padding: 7rem 0; }
.cmp-why-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
.cmp-why-callout {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--brand-light); border: 1px solid rgba(44,201,162,0.25);
  border-radius: 0.875rem; padding: 1.25rem 1.5rem; margin-top: 2rem;
}
.cmp-why-callout-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--brand); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cmp-why-callout-icon svg { stroke: #fff; }
.cmp-why-callout-text { font-size: 1rem; color: var(--navy); line-height: 1.6; margin: 0; padding-top: 0.375rem; }
.cmp-revenue-card {
  background: #fff; border-radius: 1.25rem; border: 1px solid var(--gray-100);
  padding: 2rem; box-shadow: 0 24px 60px rgba(0,0,0,0.07);
}
.cmp-revenue-label { font-size: 0.8125rem; font-weight: 600; color: var(--gray-700); margin-bottom: 0.25rem; }
.cmp-revenue-meta { font-size: 0.75rem; color: var(--gray-400); margin-bottom: 1.5rem; }
.cmp-bar-chart-wrap { margin-bottom: 0.5rem; padding-top: 0.5rem; }
.rev-bar { fill: #2CC9A2; transition: opacity 0.2s; cursor: default; }
.rev-bar:hover { opacity: 0.7; }
.cmp-revenue-months { display: flex; justify-content: space-between; margin-bottom: 1rem; }
.cmp-revenue-months span { font-size: 0.75rem; color: var(--gray-400); }
.cmp-revenue-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--brand-light); color: var(--brand);
  font-size: 0.8125rem; font-weight: 600; padding: 0.5rem 0.875rem; border-radius: 9999px;
}

/* ─── CMP PROCESS ────────────────────────────────────────── */
.cmp-process { padding: 7rem 0; background: var(--gray-50); }

/* ─── CMP RESULTS ────────────────────────────────────────── */
.cmp-results { background: #fff; padding: 7rem 0; }
.cmp-results-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
.cmp-results-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.cmp-results-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9375rem; color: var(--gray-600); line-height: 1.6;
}
.cmp-results-bullet {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--brand); flex-shrink: 0; margin-top: 0.45rem;
}
.cmp-results-img {
  max-width: 100%; width: auto; display: block;
  border-radius: 1rem; box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

/* ─── CMP PROMO FUNNEL ───────────────────────────────────── */
.cmp-promo-graphic {
  background: #fff; border-radius: 1.25rem; border: 1px solid var(--gray-100);
  padding: 2rem; box-shadow: 0 16px 48px rgba(0,0,0,0.07);
}
.cmp-promo-graphic-label {
  font-size: 0.8125rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gray-500); margin-bottom: 1.5rem;
}
.cmp-promo-funnel { display: flex; flex-direction: column; gap: 0; }
.cmp-funnel-step { position: relative; margin-bottom: 0; }
.cmp-funnel-bar {
  width: var(--w); height: 3.5rem; background: var(--bg);
  border-radius: 0.5rem; position: absolute; left: 0; top: 0; opacity: 0.15;
}
.cmp-funnel-content {
  position: relative; display: flex; align-items: center; gap: 0.875rem;
  padding: 0.875rem 1rem; z-index: 1;
}
.cmp-funnel-icon {
  width: 2rem; height: 2rem; border-radius: 0.5rem;
  background: var(--bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cmp-funnel-icon svg { stroke: #fff; width: 14px; height: 14px; }
.cmp-funnel-text { font-size: 0.9375rem; font-weight: 700; color: var(--navy); flex: 1; }
.cmp-funnel-num { font-size: 0.75rem; color: var(--gray-500); text-align: right; white-space: nowrap; }
.cmp-funnel-arrow {
  width: 0; height: 0; margin: 0.125rem 0 0.125rem 1rem;
  border-left: 6px solid transparent; border-right: 6px solid transparent;
  border-top: 7px solid var(--gray-200);
}

/* ─── CMP DELIVERABLES ───────────────────────────────────── */
.cmp-deliverables { background: var(--gray-50); padding: 7rem 0; }
.cmp-deliverables-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.cmp-deliverable-card {
  background: #fff; border-radius: 1rem; padding: 2rem; border: 1px solid var(--gray-100);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.cmp-deliverable-card:hover {
  transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.07);
  border-color: rgba(44,201,162,0.25);
}
.cmp-del-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.cmp-del-title { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: 0.625rem; }
.cmp-del-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; }

/* ─── CMP PRICING ────────────────────────────────────────── */
.cmp-pricing { padding: 7rem 0; background: var(--navy); }
.cmp-pricing .cmp-section-head { color: #fff; }
.cmp-pricing .cmp-h2 { color: #fff; }
.cmp-pricing .cmp-section-sub { color: rgba(255,255,255,0.65); }
.cmp-pricing .section-eyebrow { color: var(--brand); }
.cmp-pricing-card {
  background: #fff; border-radius: 1.5rem; overflow: hidden;
  display: grid; grid-template-columns: 1fr;
  box-shadow: 0 40px 100px rgba(0,0,0,0.25); margin-bottom: 4rem;
}
.cmp-pricing-left {
  background: linear-gradient(140deg, #1AA882 0%, #2CC9A2 100%);
  padding: 3rem 2.5rem; display: flex; flex-direction: column; gap: 1.5rem;
}
.cmp-pricing-badge {
  display: inline-block; background: rgba(255,255,255,0.2); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; padding: 0.375rem 0.875rem; border-radius: 9999px; width: fit-content;
}
.cmp-pricing-amount { font-size: 4rem; font-weight: 900; color: #fff; line-height: 1; }
.cmp-pricing-amount span { font-size: 1.5rem; font-weight: 600; opacity: 0.8; }
.cmp-pricing-tagline { font-size: 1rem; color: rgba(255,255,255,0.85); line-height: 1.6; }
.cmp-pricing-btn {
  display: inline-flex; align-items: center; gap: 0.625rem; width: fit-content;
  background: #fff; color: var(--brand); font-weight: 700;
  padding: 1rem 2rem; border-radius: 0.75rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15); transition: transform 0.2s, box-shadow 0.2s;
}
.cmp-pricing-btn:hover { transform: translateY(-2px); box-shadow: 0 24px 50px rgba(0,0,0,0.2); }
.cmp-pricing-btn svg { transition: transform 0.2s; }
.cmp-pricing-btn:hover svg { transform: translateX(4px); }
.cmp-pricing-right { padding: 3rem 2.5rem; }
.cmp-pricing-includes-label {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--gray-500); margin-bottom: 1.5rem;
}
.cmp-pricing-includes { display: flex; flex-direction: column; gap: 1rem; }
.cmp-pricing-includes li {
  display: flex; align-items: center; gap: 0.875rem;
  font-size: 0.9375rem; color: var(--gray-700); font-weight: 500;
}
.cmp-check {
  width: 1.25rem; height: 1.25rem; border-radius: 50%; flex-shrink: 0;
  background: var(--brand); display: inline-flex; align-items: center; justify-content: center;
}
.cmp-check::after {
  content: ''; display: block; width: 0.35rem; height: 0.6rem;
  border-right: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, -1px);
}
.cmp-catch-head { text-align: center; margin-bottom: 2.5rem; }
.cmp-catch-title { font-size: 1.75rem; font-weight: 900; color: #fff; margin-bottom: 0.5rem; }
.cmp-catch-sub { color: rgba(255,255,255,0.6); font-size: 1rem; }
.cmp-catch-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.cmp-catch-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem; padding: 2rem; transition: background 0.3s, transform 0.3s;
}
.cmp-catch-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.cmp-catch-icon {
  width: 2.75rem; height: 2.75rem; border-radius: 0.75rem;
  background: rgba(44,201,162,0.15); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.cmp-catch-card-title { font-size: 1.0625rem; font-weight: 700; color: #fff; margin-bottom: 0.625rem; }
.cmp-catch-card-desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ─── CMP STEPS ──────────────────────────────────────────── */
.cmp-steps { background: #fff; padding: 7rem 0; }
.cmp-steps-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
.cmp-steps-list { display: flex; flex-direction: column; gap: 0; }
.cmp-step { display: flex; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid var(--gray-100); }
.cmp-step:last-child { border-bottom: none; }
.cmp-step-num {
  width: 2.25rem; height: 2.25rem; border-radius: 50%; flex-shrink: 0;
  background: var(--brand-light); color: var(--brand);
  font-weight: 800; font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center; margin-top: 0.125rem;
}
.cmp-step-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.375rem; }
.cmp-step-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; }

/* ─── CMP PROMOTION ──────────────────────────────────────── */
.cmp-promotion { background: var(--gray-50); padding: 7rem 0; }
.cmp-promotion-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
.cmp-promo-tactics { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.cmp-promo-tactic { display: flex; gap: 1.25rem; align-items: flex-start; }
.cmp-promo-star {
  font-size: 0.875rem; color: var(--brand); flex-shrink: 0;
  width: 2.25rem; height: 2.25rem; background: var(--brand-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.cmp-promo-tactic-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.cmp-promo-tactic-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; }

/* ─── CMP CS & FAQ ───────────────────────────────────────── */
.cmp-cs { background: var(--gray-50); padding: 7rem 0; }
.cmp-faq { background: #fff; padding: 7rem 0; }
.cmp-faq .cmp-section-inner { max-width: 1280px; }

/* ─── CONTENT OPTIMIZATION PAGE ─────────────────────────── */
.co-hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(140deg, #1AA882 0%, #2CC9A2 55%, #38D4AE 100%);
}
.co-hero-grid {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M0 0h1v40H0zM39 0h1v40h-1zM0 0v1h40V0zM0 39v1h40v-1z'/%3E%3C/g%3E%3C/svg%3E");
}
.co-hero-glow {
  position: absolute; top: -8rem; right: 0;
  width: 700px; height: 700px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(ellipse, rgba(255,255,255,0.5) 0%, transparent 65%); opacity: 0.2;
}
.co-hero-inner {
  position: relative; max-width: 1280px; margin: 0 auto; padding: 7rem 1.5rem 9rem;
  display: grid; grid-template-columns: 1fr; gap: 3rem; width: 100%;
}
.co-hero-h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem); font-weight: 900;
  line-height: 1.06; color: #fff; margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.co-hero-p {
  font-size: 1.125rem; color: rgba(255,255,255,0.85);
  line-height: 1.75; margin-bottom: 2.5rem; max-width: 34rem;
}
.co-hero-img {
  border-radius: 1.25rem; box-shadow: 0 40px 100px rgba(0,0,0,0.25);
  width: 100%; object-fit: cover; aspect-ratio: 16/10;
}
.co-problem { background: #fff; padding: 7rem 0; }
.co-problem-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
.co-problem-h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 900;
  color: var(--navy); line-height: 1.1; margin: 0.75rem 0 1.5rem;
}
.co-problem-p { font-size: 1rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 1rem; }
.co-problem-p strong { color: var(--gray-700); }
.co-problem-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 1.0625rem; font-weight: 700; color: var(--brand); margin: 1rem 0;
}
.co-problem-img { border-radius: 1rem; box-shadow: 0 20px 60px rgba(0,0,0,0.1); width: 100%; object-fit: cover; }
.co-noise {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #FFF8E7; border: 1px solid #FFE082;
  border-radius: 0.875rem; padding: 1.25rem 1.5rem; margin: 2rem 0;
}
.co-noise-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 50%; flex-shrink: 0;
  background: #FFE082; display: flex; align-items: center; justify-content: center;
}
.co-noise-text { font-size: 0.9375rem; color: #7A5C00; line-height: 1.6; margin: 0; padding-top: 0.25rem; }
.co-noise-text strong { color: #5A4000; }
.co-band {
  background: var(--brand-light); border-top: 1px solid rgba(44,201,162,0.2);
  border-bottom: 1px solid rgba(44,201,162,0.2); padding: 4rem 0;
}
.co-band-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.co-band-text { text-align: center; max-width: 44rem; margin: 0 auto; }
.co-band-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 900;
  color: var(--navy); line-height: 1.1; margin-bottom: 1rem;
}
.co-band-p { font-size: 1.0625rem; color: var(--gray-600); line-height: 1.7; }
.co-once { background: var(--gray-50); padding: 7rem 0; }
.co-once-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.co-once-head { text-align: center; margin-bottom: 1rem; }
.co-once-h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--navy); line-height: 1.1; }
.co-once-sub { font-size: 1.375rem; font-weight: 700; color: var(--brand); text-align: center; margin-bottom: 3.5rem; display: block; }
.co-overview-img-wrap {
  max-width: 820px; margin: 0 auto 4rem;
  border-radius: 1rem; overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.12); border: 1px solid var(--gray-100);
}
.co-overview-img-wrap img { width: 100%; display: block; }
.co-clients-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.co-client-card {
  position: relative; border-radius: 1rem; overflow: hidden;
  border: 1px solid var(--gray-100); transition: transform 0.3s, box-shadow 0.3s; background: #fff;
}
.co-client-card:hover { transform: translateY(-5px); box-shadow: 0 28px 70px rgba(0,0,0,0.12); }
.co-client-card img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; }
.co-client-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(13,31,56,0.95) 0%, rgba(13,31,56,0.6) 70%, transparent 100%);
}
.co-client-label { font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.65); margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.1em; }
.co-client-pct { font-size: 2rem; font-weight: 900; color: var(--brand); line-height: 1; }
.co-client-desc { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }
.co-your-turn { background: #fff; padding: 7rem 0; }
.co-your-turn-inner { max-width: 52rem; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.co-your-turn-h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: var(--navy); line-height: 1.1; margin-bottom: 1.25rem;
}
.co-your-turn-p { font-size: 1.125rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 2.5rem; }
.co-your-turn-btn {
  display: inline-flex; align-items: center; gap: 0.625rem;
  background: var(--brand); color: #fff; font-weight: 700;
  padding: 1.125rem 2.5rem; border-radius: 0.75rem; font-size: 1rem;
  box-shadow: 0 16px 48px rgba(44,201,162,0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.co-your-turn-btn:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 24px 56px rgba(44,201,162,0.4); }
.co-your-turn-btn svg { transition: transform 0.2s; }
.co-your-turn-btn:hover svg { transform: translateX(4px); }

/* ─── ABOUT US PAGE ──────────────────────────────────────── */
.about-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, #1AA882 0%, #2CC9A2 55%, #38D4AE 100%);
  padding: 9rem 0 8rem;
}
.about-hero-grid {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M0 0h1v40H0zM39 0h1v40h-1zM0 0v1h40V0zM0 39v1h40v-1z'/%3E%3C/g%3E%3C/svg%3E");
}
.about-hero-glow {
  position: absolute; top: -8rem; right: 0;
  width: 700px; height: 700px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(ellipse, rgba(255,255,255,0.5) 0%, transparent 65%); opacity: 0.2;
}
.about-hero-inner {
  position: relative; max-width: 760px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
.about-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.625rem;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 9999px; padding: 0.375rem 1rem; margin-bottom: 1.75rem;
  backdrop-filter: blur(4px);
}
.about-hero-eyebrow-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: #fff; animation: pulse 2s infinite; }
.about-hero-eyebrow span { font-size: 0.875rem; font-weight: 500; color: #fff; }
.about-hero-h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900;
  line-height: 1.06; color: #fff; margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.about-hero-p { font-size: 1.125rem; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 2rem; max-width: 36rem; }
.about-hero-stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 1rem; }
.about-hero-stat-val { font-size: 2.25rem; font-weight: 900; color: #fff; line-height: 1; }
.about-hero-stat-label { font-size: 0.8125rem; color: rgba(255,255,255,0.7); margin-top: 0.25rem; }
.about-mission { background: #fff; padding: 7rem 0; }
.about-mission-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.about-mission-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
.about-mission-h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 900;
  color: var(--navy); line-height: 1.1; margin: 0.75rem 0 1.5rem;
}
.about-mission-p { font-size: 1rem; color: var(--gray-500); line-height: 1.8; margin-bottom: 1rem; }
.about-inbound-callout {
  background: var(--brand-light); border: 1px solid rgba(44,201,162,0.25);
  border-radius: 1rem; padding: 1.75rem 2rem; margin-top: 2rem;
}
.about-inbound-callout h3 { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 0.625rem; }
.about-inbound-callout p { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7; }
.about-story { background: var(--gray-50); padding: 7rem 0; }
.about-story-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.about-story-layout { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
.about-story-photo-wrap {
  position: relative; border-radius: 1.25rem; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}
.about-story-photo { width: 100%; display: block; object-fit: cover; object-position: top; aspect-ratio: 3/4; }
.about-story-photo-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, transparent 100%);
  padding: 2rem 1.5rem 1.5rem;
}
.about-story-badge-name { font-weight: 700; color: #fff; font-size: 1.0625rem; }
.about-story-badge-role { font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-top: 0.125rem; }
.about-story-head { margin-bottom: 3rem; }
.about-story-h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--navy); line-height: 1.1; margin: 0.75rem 0 1rem; }
.about-story-sub { font-size: 1.0625rem; color: var(--gray-500); line-height: 1.7; }
.about-timeline { display: flex; flex-direction: column; gap: 0; }
.about-timeline-item { display: flex; gap: 1.75rem; padding-bottom: 3rem; position: relative; }
.about-timeline-item:last-child { padding-bottom: 0; }
.about-timeline-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.about-timeline-dot {
  width: 3rem; height: 3rem; border-radius: 50%; flex-shrink: 0;
  background: var(--brand); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(44,201,162,0.12);
  font-size: 1.125rem; font-weight: 900; color: #fff;
}
.about-timeline-line { flex: 1; width: 2px; background: var(--gray-200); margin-top: 0.75rem; }
.about-timeline-item:last-child .about-timeline-line { display: none; }
.about-timeline-body { padding-top: 0.5rem; }
.about-timeline-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--brand); margin-bottom: 0.5rem; }
.about-timeline-title { font-size: 1.1875rem; font-weight: 700; color: var(--navy); margin-bottom: 0.625rem; }
.about-timeline-text { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.75; }
.about-clients {
  background: #fff; padding: 7rem 0;
  border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb;
}
.about-clients-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.about-clients-head { text-align: center; margin-bottom: 4rem; }
.about-clients-h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 900; color: var(--navy); line-height: 1.1; margin: 0.75rem 0 1rem; }
.about-clients-sub { font-size: 1rem; color: var(--gray-500); max-width: 36rem; margin: 0 auto; line-height: 1.7; }
.about-logos-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid #e5e7eb; border-radius: 1rem; overflow: hidden;
}
.about-logo-cell {
  background: #fff; padding: 2.25rem 1.75rem;
  display: flex; align-items: center; justify-content: center;
  border-right: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb;
  transition: background 0.2s;
}
.about-logo-cell:hover { background: #f9fafb; }
.about-logo-cell img {
  height: 2.25rem; width: auto; max-width: 130px; object-fit: contain;
  opacity: 0.75; transition: opacity 0.3s; filter: grayscale(1);
}
.about-logo-cell:hover img { opacity: 1; filter: grayscale(0); }
.about-values { background: #fff; padding: 7rem 0; }
.about-values-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.about-values-head { text-align: center; max-width: 44rem; margin: 0 auto 4rem; }
.about-values-h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--navy); line-height: 1.1; margin: 0.75rem 0 1rem; }
.about-values-sub { font-size: 1.0625rem; color: var(--gray-500); line-height: 1.7; }
.about-values-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.about-value-card {
  border-radius: 1rem; padding: 2rem; border: 1px solid var(--gray-100);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.about-value-card:hover { border-color: rgba(44,201,162,0.3); box-shadow: 0 20px 50px rgba(0,0,0,0.07); transform: translateY(-4px); }
.about-value-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: var(--brand-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: background 0.3s;
}
.about-value-card:hover .about-value-icon { background: var(--brand); }
.about-value-icon svg { stroke: var(--brand); transition: stroke 0.3s; }
.about-value-card:hover .about-value-icon svg { stroke: #fff; }
.about-value-title { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 0.625rem; }
.about-value-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; }
.about-testimonials { background: var(--navy); padding: 7rem 0; }

/* ─── BLOG POST ──────────────────────────────────────────── */
.bp-hero {
  position: relative; padding: 7rem 0 5rem; overflow: hidden;
  background: linear-gradient(140deg, #1AA882 0%, #2CC9A2 55%, #38D4AE 100%);
}
.bp-hero-grid {
  position: absolute; inset: 0; opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M0 0h1v40H0zM39 0h1v40h-1zM0 0v1h40V0zM0 39v1h40v-1z'/%3E%3C/g%3E%3C/svg%3E");
}
.bp-hero-glow {
  position: absolute; top: -8rem; right: 0;
  width: 600px; height: 600px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(ellipse, rgba(255,255,255,0.5) 0%, transparent 65%); opacity: 0.2;
}
.bp-hero-inner { position: relative; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.bp-back {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.7); font-size: 0.875rem; font-weight: 500;
  margin-bottom: 2rem; transition: color 0.2s;
}
.bp-back:hover { color: #fff; }
.bp-hero-cat {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 9999px; padding: 0.375rem 1rem; margin-bottom: 1.5rem;
  font-size: 0.8125rem; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.bp-hero-h1 {
  font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 900;
  line-height: 1.1; color: #fff; margin-bottom: 1.25rem;
  letter-spacing: -0.02em; max-width: 48rem;
}
.bp-hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem;
  color: rgba(255,255,255,0.7); font-size: 0.875rem;
}
.bp-hero-meta-item { display: flex; align-items: center; gap: 0.375rem; }
.bp-layout {
  max-width: 1080px; margin: 0 auto; padding: 4rem 1.5rem 6rem;
  display: grid; grid-template-columns: 1fr; gap: 3rem;
  background: #fff;
}

body.single {
  background: #fff;
}
.bp-article img.bp-featured {
  width: 100%; height: 18rem; object-fit: cover;
  border-radius: 1rem; margin-bottom: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.bp-section { margin-bottom: 3rem; scroll-margin-top: 6rem; }
.bp-h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem); font-weight: 900;
  color: var(--navy); margin-bottom: 1rem; margin-top: 2.5rem; line-height: 1.2;
}
.bp-h3 {
  font-size: 1.0625rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.75rem; margin-top: 1.75rem; line-height: 1.3;
}
.bp-h4 { font-size: 0.9375rem; font-weight: 700; color: var(--navy); margin-bottom: 0.625rem; margin-top: 1.5rem; }
.bp-p { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 1.125rem; }
.bp-p strong { color: var(--gray-900); font-weight: 600; }
.bp-p em { font-style: italic; }
.bp-table-wrap {
  overflow-x: auto; border-radius: 1rem; border: 1px solid var(--gray-100);
  margin: 1.5rem 0; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.bp-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.bp-table thead tr { background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.bp-table th {
  text-align: left; padding: 0.875rem 1.25rem;
  font-size: 0.6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--gray-500); white-space: nowrap;
}
.bp-table td { padding: 0.75rem 1.25rem; border-bottom: 1px solid var(--gray-50); color: var(--gray-600); }
.bp-table tbody tr:last-child td { border-bottom: none; }
.bp-table tbody tr:hover { background: rgba(249,250,251,0.6); }
.bp-table td.td-strong { font-weight: 600; color: var(--gray-900); }
.bp-callout {
  display: flex; gap: 1rem; padding: 1.25rem 1.5rem;
  border-radius: 1rem; margin: 1.5rem 0;
}
.bp-callout-icon { flex-shrink: 0; margin-top: 0.125rem; }
.bp-callout-title { font-size: 0.875rem; font-weight: 700; margin-bottom: 0.375rem; }
.bp-callout-body { font-size: 0.875rem; line-height: 1.7; }
.bp-callout.tip { background: var(--brand-light); border: 1px solid rgba(44,201,162,0.25); }
.bp-callout.tip .bp-callout-title { color: var(--navy); }
.bp-callout.tip .bp-callout-body { color: var(--gray-700); }
.bp-ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; padding-left: 0; }
.bp-li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7; }
.bp-li-dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; background: var(--brand); flex-shrink: 0; margin-top: 0.55rem; }
.bp-li a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.bp-li a:hover { color: var(--brand-dark); }
.bp-intro { font-size: 1.125rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 1.5rem; }
.bp-intro strong { color: var(--navy); font-weight: 700; }
.bp-img { width: 100%; border-radius: 1rem; margin: 1.5rem 0; box-shadow: 0 4px 24px rgba(0,0,0,0.07); display: block; }
.bp-conclusion { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 1rem; padding: 1.5rem; margin-top: 2rem; }
.bp-conclusion-title { font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.bp-related-links { margin-top: 2rem; }
.bp-related-links p { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.8; }
.bp-related-links a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.bp-related-links a:hover { color: var(--brand-dark); }
.bp-author {
  border: 1px solid var(--gray-100); border-radius: 1rem;
  padding: 2rem; background: var(--gray-50); margin-top: 3rem;
}
.bp-author-eyebrow {
  font-size: 0.6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--gray-400); margin-bottom: 1.25rem;
}
.bp-author-inner { display: flex; flex-direction: column; gap: 1.5rem; }
.bp-author-photo {
  width: 5rem; height: 5rem; border-radius: 50%; object-fit: cover;
  border: 3px solid #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.bp-author-name { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.bp-author-role { font-size: 0.875rem; font-weight: 600; color: var(--brand); margin-bottom: 0.75rem; }
.bp-author-bio { font-size: 0.875rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 0; }
.bp-author-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.bp-author-follow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; font-weight: 500; color: var(--gray-500);
  border: 1px solid var(--gray-200); border-radius: 0.5rem;
  padding: 0.375rem 0.75rem; transition: all 0.2s; flex-shrink: 0; align-self: flex-start;
}
.bp-author-follow:hover { color: var(--navy); border-color: var(--gray-400); }
.bp-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.bp-widget {
  background: #fff; border: 1px solid var(--gray-100);
  border-radius: 1rem; padding: 1.5rem; box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  margin-top: 50px;
}
.bp-widget-title {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--gray-500); margin-bottom: 1.25rem;
}
.bp-cta-widget {
  position: relative; border-radius: 1rem; overflow: hidden; padding: 1.5rem;
  background: var(--navy);
}
.bp-cta-widget-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M0 0h1v40H0zM39 0h1v40h-1zM0 0v1h40V0zM0 39v1h40v-1z'/%3E%3C/g%3E%3C/svg%3E");
}
.bp-cta-widget-inner { position: relative; }
.bp-cta-widget-eyebrow {
  font-size: 0.6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--gray-500); margin-bottom: 0.875rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.bp-cta-widget-cat {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  background: rgba(44,201,162,0.15); color: var(--brand);
  border-radius: 9999px; padding: 0.25rem 0.75rem; margin-bottom: 0.875rem;
}
.bp-cta-widget-metric { font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 0.25rem; }
.bp-cta-widget-metric-label {
  font-size: 0.75rem; font-weight: 600; color: var(--brand);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem;
}
.bp-cta-widget-h3 { font-size: 1rem; font-weight: 800; color: #fff; line-height: 1.35; margin-bottom: 0.75rem; }
.bp-cta-widget-p { font-size: 0.8125rem; color: var(--gray-400); line-height: 1.65; margin-bottom: 1.25rem; }
.bp-cta-widget-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  background: var(--brand); color: #fff; font-weight: 700; font-size: 0.875rem;
  padding: 0.75rem 1.25rem; border-radius: 0.75rem; transition: background 0.2s, transform 0.2s;
}
.bp-cta-widget-btn:hover { background: var(--brand-dark); transform: translateY(-2px); }
.bp-cta-widget-btn svg { transition: transform 0.2s; }
.bp-cta-widget-btn:hover svg { transform: translateX(3px); }
.bp-related-item { padding-bottom: 1rem; margin-bottom: 1rem; border-bottom: 1px solid var(--gray-100); }
.bp-related-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.bp-related-meta { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.25rem; }
.bp-related-tag { font-size: 0.75rem; font-weight: 600; color: var(--brand); }
.bp-related-time { font-size: 0.75rem; color: var(--gray-400); }
.bp-related-title {
  font-size: 0.875rem; font-weight: 600; color: var(--gray-700); line-height: 1.45; transition: color 0.2s;
}
.bp-related-item:hover .bp-related-title { color: var(--brand); }

/* ─── GENERIC PAGE LAYOUT ─────────────────────────────────── */
.page-layout { max-width: 860px; margin: 0 auto; padding: 4rem 1.5rem 6rem; }
.page-content .bp-featured {
  width: 100%; height: auto; border-radius: 1rem; margin-bottom: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07); display: block;
}

/* ─── WP EDITOR CONTENT STYLES ────────────────────────────── */
.bp-entry-content h2 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem); font-weight: 900; color: var(--navy);
  margin-bottom: 1rem; margin-top: 2.5rem; line-height: 1.2;
}
.bp-entry-content h3 {
  font-size: 1.0625rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.75rem; margin-top: 1.75rem; line-height: 1.3;
}
.bp-entry-content h4 { font-size: 0.9375rem; font-weight: 700; color: var(--navy); margin-bottom: 0.625rem; margin-top: 1.5rem; }
.bp-entry-content p { font-size: 1rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 1.125rem; }
.bp-entry-content p strong { color: var(--gray-900); font-weight: 600; }
.bp-entry-content p em { font-style: italic; }
.bp-entry-content a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s; }
.bp-entry-content a:hover { color: var(--brand-dark); }
.bp-entry-content ul, .bp-entry-content ol { margin: 1rem 0 1.25rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.bp-entry-content ul li { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7; list-style: disc; }
.bp-entry-content ol li { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.7; list-style: decimal; }
.bp-entry-content blockquote {
  border-left: 4px solid var(--brand); margin: 2rem 0; padding: 1rem 1.5rem;
  background: var(--brand-light); border-radius: 0 0.75rem 0.75rem 0;
}
.bp-entry-content blockquote p { font-size: 1.0625rem; font-style: italic; color: var(--navy); margin: 0; }
.bp-entry-content img { width: 100%; border-radius: 1rem; margin: 1.5rem 0; box-shadow: 0 4px 24px rgba(0,0,0,0.07); display: block; height: auto; }
.bp-entry-content figure { margin: 1.5rem 0; }
.bp-entry-content figcaption { font-size: 0.8125rem; color: var(--gray-400); text-align: center; margin-top: 0.5rem; }
.bp-entry-content table { width: 100%; border-collapse: collapse; font-size: 0.875rem; margin: 1.5rem 0; border: 1px solid var(--gray-100); border-radius: 1rem; overflow: hidden; }
.bp-entry-content table th {
  text-align: left; padding: 0.875rem 1.25rem; font-size: 0.6875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-500);
  background: var(--gray-50); border-bottom: 1px solid var(--gray-100);
}
.bp-entry-content table td { padding: 0.75rem 1.25rem; border-bottom: 1px solid var(--gray-50); color: var(--gray-600); }
.bp-entry-content table tbody tr:last-child td { border-bottom: none; }
.bp-entry-content table tbody tr:hover { background: rgba(249,250,251,0.6); }
.bp-entry-content hr { border: none; border-top: 1px solid var(--gray-100); margin: 2.5rem 0; }
.bp-entry-content pre {
  background: var(--navy); color: #e2e8f0; border-radius: 0.75rem;
  padding: 1.5rem; overflow-x: auto; font-size: 0.875rem; line-height: 1.7; margin: 1.5rem 0;
}
.bp-entry-content code { background: var(--gray-100); color: var(--navy); border-radius: 0.25rem; padding: 0.125rem 0.375rem; font-size: 0.875em; font-family: monospace; }
.bp-entry-content pre code { background: none; color: inherit; padding: 0; border-radius: 0; }
.bp-entry-content .alignleft { float: left; margin: 0 1.5rem 1rem 0; max-width: 50%; }
.bp-entry-content .alignright { float: right; margin: 0 0 1rem 1.5rem; max-width: 50%; }
.bp-entry-content .aligncenter { display: block; margin: 1.5rem auto; }
.bp-entry-content .alignwide { width: calc(100% + 4rem); margin-left: -2rem; max-width: none; }

/* ─── ARCHIVE / BLOG ──────────────────────────────────────── */
.archive-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, #1AA882 0%, #2CC9A2 55%, #38D4AE 100%);
  padding: 9rem 0 7rem;
}
.archive-hero-inner { position: relative; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; text-align: center; }
.archive-hero-h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900;
  line-height: 1.06; color: #fff; margin: 0.75rem 0 1.25rem; letter-spacing: -0.02em;
}
.archive-hero-p { font-size: 1.125rem; color: rgba(255,255,255,0.82); line-height: 1.75; max-width: 40rem; margin: 0 auto; }
.archive-hero .section-eyebrow { color: rgba(255,255,255,0.75); }
.archive-section { background: var(--gray-50); padding: 5rem 0 7rem; }
.archive-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.archive-grid { margin-bottom: 3.5rem; }
.archive-empty { text-align: center; padding: 5rem 0; color: var(--gray-500); font-size: 1.125rem; display: flex; flex-direction: column; align-items: center; }

/* ─── POST CARD ───────────────────────────────────────────── */
.post-card { display: flex; flex-direction: column; justify-content: space-between; gap: 0; padding: 0; overflow: hidden; min-height: 22rem; }
.post-card-thumb { width: 100%; aspect-ratio: 16 / 9; overflow: hidden; flex-shrink: 0; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.post-card:hover .post-card-thumb img { transform: scale(1.04); }
.post-card-body { padding: 1.5rem 1.75rem 0.75rem; flex: 1; }
.post-card-body .cs-cat { margin-bottom: 0.5rem; }
.post-card-body .cs-title { margin-bottom: 0.75rem; }
.post-card-excerpt { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.post-card .cs-bottom { padding: 0 1.75rem 1.75rem; border-top: 1px solid var(--gray-100); margin-top: 1rem; padding-top: 1rem; }
.post-card-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--gray-400); }
.post-card-dot { color: var(--gray-300); }

/* ─── PAGINATION ──────────────────────────────────────────── */
.upcut-pagination { display: flex; align-items: center; justify-content: center; gap: 0.5rem; flex-wrap: wrap; margin-top: 3.5rem; }
.upcut-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 0.625rem;
  font-size: 0.9375rem; font-weight: 500; color: var(--gray-600);
  border: 1px solid var(--gray-200); background: #fff;
  transition: color 0.2s, border-color 0.2s, background 0.2s; text-decoration: none;
}
.upcut-pagination .page-numbers:hover { color: var(--brand); border-color: var(--brand); }
.upcut-pagination .page-numbers.current { background: var(--brand); color: #fff; border-color: var(--brand); font-weight: 700; }
.upcut-pagination .page-numbers.prev, .upcut-pagination .page-numbers.next { color: var(--gray-500); }
.upcut-pagination .page-numbers.dots { border-color: transparent; background: transparent; pointer-events: none; }

/* ─── SEARCH ──────────────────────────────────────────────── */
.search-empty-icon {
  width: 5rem; height: 5rem; border-radius: 50%; background: var(--brand-light);
  display: flex; align-items: center; justify-content: center; color: var(--brand); margin: 0 auto 1.5rem;
}
.search-empty-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; color: var(--navy); margin-bottom: 0.75rem; }
.search-form-inline {
  display: flex; align-items: center; gap: 0; margin-top: 1.75rem; max-width: 28rem; width: 100%;
  border: 1.5px solid var(--gray-200); border-radius: 0.75rem; overflow: hidden;
  background: #fff; transition: border-color 0.2s;
}
.search-form-inline:focus-within { border-color: var(--brand); }
.search-input { flex: 1; border: none; outline: none; padding: 0.875rem 1.25rem; font-size: 0.9375rem; font-family: inherit; color: var(--gray-700); background: transparent; }
.search-input::placeholder { color: var(--gray-400); }
.search-submit {
  flex-shrink: 0; width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center;
  background: var(--brand); color: #fff; border: none; cursor: pointer; transition: background 0.2s;
}
.search-submit:hover { background: var(--brand-dark); }

/* ─── 404 PAGE ────────────────────────────────────────────── */
.notfound-hero .archive-hero-inner { display: flex; flex-direction: column; align-items: center; }
.notfound-code {
  font-size: clamp(5rem, 15vw, 9rem); font-weight: 900; color: rgba(255,255,255,0.2);
  line-height: 1; letter-spacing: -0.04em; display: block; margin-bottom: -1rem;
}
.notfound-body { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 4rem; padding: 2rem 0; }
.notfound-label { font-size: 0.9375rem; font-weight: 600; color: var(--navy); margin-bottom: 1.25rem; }
.notfound-search { display: flex; flex-direction: column; align-items: flex-start; }
.notfound-links { display: flex; flex-direction: column; }
.notfound-link-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.notfound-link-card {
  display: flex; align-items: center; gap: 0.875rem; background: #fff;
  border: 1px solid var(--gray-100); border-radius: 0.875rem; padding: 1.25rem 1.5rem;
  font-size: 0.9375rem; font-weight: 600; color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.notfound-link-card:hover { border-color: rgba(44,201,162,0.3); box-shadow: 0 8px 24px rgba(0,0,0,0.07); transform: translateY(-2px); color: var(--brand); }
.notfound-link-card svg { flex-shrink: 0; stroke: var(--brand); }
.notfound-recent { display: flex; flex-direction: column; }

/* ─── CONTACT PAGE ────────────────────────────────────────── */
#contact-hero {
  position: relative; background: var(--navy);
  padding: 9rem 0 5rem; overflow: hidden;
}
.contact-hero-dots {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle at 1px 1px, #2CC9A2 1px, transparent 0);
  background-size: 40px 40px;
}
.contact-hero-glow {
  position: absolute; top: -8rem; right: 0; width: 600px; height: 600px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(ellipse, rgba(44,201,162,0.15) 0%, transparent 65%);
}
.contact-hero-inner { position: relative; max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; text-align: center; z-index: 1; }
.contact-hero-eyebrow {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--brand); margin-bottom: 1.25rem;
}
.contact-hero-h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 900;
  line-height: 1.1; color: #fff; letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.contact-hero-h1 span { color: var(--brand); }
.contact-hero-p { font-size: 1.125rem; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 36rem; margin: 0 auto; }
#contact-info { background: #fff; padding: 6rem 0; }
.ci-inner { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.ci-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
.ci-stats { background: var(--navy); border-radius: 1.25rem; padding: 2rem; }
.ci-stats-eyebrow { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--brand); margin-bottom: 1.5rem; }
.ci-stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 2rem; }
.ci-stat-val { font-size: 1.875rem; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 0.25rem; }
.ci-stat-label { font-size: 0.75rem; color: var(--gray-400); line-height: 1.3; }
.ci-stats-desc { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.75); line-height: 1.65; }
.ci-details { background: var(--gray-50); border-radius: 1.25rem; padding: 2rem; }
.ci-details-title { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--navy); margin-bottom: 1.5rem; }
.ci-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.ci-detail:last-child { margin-bottom: 0; }
.ci-detail-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 0.5rem; background: var(--brand-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 0.125rem; color: var(--brand);
}
.ci-detail-label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-400); margin-bottom: 0.25rem; }
.ci-detail-val { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.ci-detail-sub { font-size: 0.75rem; color: var(--gray-400); margin-top: 0.125rem; }
.ci-detail-val a { color: var(--navy); transition: color 0.2s; }
.ci-detail-val a:hover { color: var(--brand); }
#contact-testimonials { background: var(--gray-50); padding: 5rem 0; border-top: 1px solid var(--gray-100); }
.ct-inner { max-width: 64rem; margin: 0 auto; padding: 0 1.5rem; }
.ct-label { text-align: center; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--gray-400); margin-bottom: 3rem; }
.ct-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.ct-card { background: #fff; border-radius: 1.25rem; padding: 2rem; border: 1px solid var(--gray-100); box-shadow: 0 2px 12px rgba(0,0,0,0.04); display: flex; flex-direction: column; }
.ct-quote-mark { font-size: 3rem; color: var(--brand); font-family: Georgia, serif; line-height: 0.8; margin-bottom: 1.25rem; user-select: none; }
.ct-quote { font-size: 1rem; color: var(--gray-700); line-height: 1.75; flex: 1; margin-bottom: 1.5rem; }
.ct-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--gray-100); }
.ct-avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.ct-name { font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.ct-title-text { font-size: 0.75rem; color: var(--gray-400); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(3,1fr); }
  .cs-grid { grid-template-columns: repeat(2,1fr); }
  .cmp-deliverables-grid { grid-template-columns: repeat(2,1fr); }
  .cmp-catch-grid { grid-template-columns: repeat(3,1fr); }
  .co-clients-grid { grid-template-columns: repeat(2,1fr); }
  .bp-article img.bp-featured { height: 22rem; }
  .bp-author-inner { flex-direction: row; gap: 1.5rem; }
  .notfound-link-grid { grid-template-columns: repeat(4, 1fr); }
  .ct-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .qual-grid { grid-template-columns: repeat(2,1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .cmp-pricing-card { grid-template-columns: 1fr 1fr; }
  .about-logos-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-actions { display: flex; }
  .nav-hamburger { display: none; }
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .hero-card { display: block; }
  .hero-floater-1 { display: flex; }
  .hero-floater-2 { display: block; }
  .cs-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .cs-subp { max-width: 22rem; }
  .cs-grid { grid-template-columns: repeat(3,1fr); }
  .testimonial-grid { grid-template-columns: repeat(2,1fr); }
  .faq-layout { grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
  .faq-sticky { position: sticky; top: 8rem; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .cmp-hero-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .cmp-why-grid { grid-template-columns: 1fr 1fr; }
  .cmp-results-grid { grid-template-columns: 1fr 1fr; }
  .cmp-steps-grid { grid-template-columns: 5fr 7fr; gap: 5rem; }
  .cmp-promotion-grid { grid-template-columns: 1fr 1fr; }
  .cmp-deliverables-grid { grid-template-columns: repeat(3,1fr); }
  .co-hero-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .co-problem-grid { grid-template-columns: 1fr 1fr; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-mission-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .about-values-grid { grid-template-columns: repeat(3, 1fr); }
  .about-logos-grid { grid-template-columns: repeat(4, 1fr); }
  .about-story-layout { grid-template-columns: 1fr 2fr; gap: 5rem; }
  .about-story-photo { aspect-ratio: 3/4; }
  .bp-layout { grid-template-columns: 1fr 20rem; gap: 3.5rem; }
  .bp-sidebar-sticky { position: sticky; top: 6rem; }
  .bp-article img.bp-featured { height: 26rem; }
  .ci-layout { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

@media (min-width: 1280px) {
  .bp-layout { grid-template-columns: 1fr 22rem; }
}

@media (max-width: 767px) {
  .about-logos-grid { grid-template-columns: repeat(2, 1fr); }
  .bp-entry-content .alignleft,
  .bp-entry-content .alignright { float: none; max-width: 100%; margin: 1rem 0; }
  .bp-entry-content .alignwide { width: 100%; margin-left: 0; }
}