/*
Theme Name: Mowsix Growth Partner
Theme URI: https://mowsix.com
Author: Mowsix
Author URI: https://mowsix.com
Description: A performance-first WordPress theme for Mowsix — the startup growth partner. Clean, editorial, and built to convert. Includes homepage, case studies, pricing, solutions, about, and contact page templates.
Version: 2.0.1
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mowsix
Tags: business, portfolio, one-column, two-columns, custom-menu, custom-logo, featured-images, footer-widgets, full-width-template, theme-options, translation-ready
*/

/* ── DESIGN TOKENS ── */
:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --mid: #e8e5de;
  --muted: #9e9b92;
  --accent: #c8ff00;
  --accent-dark: #a8d900;
  --text: #1a1a18;
  --text-2: #4a4a45;
  --font: 'DM Sans', sans-serif;
  --mono: 'DM Mono', monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max-width: 1100px;
  --header-height: 64px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 64px; /* compensate for fixed header */
}
/* Hero pages start at top — handled in header.php via body class */
body.page-template-front-page,
body.page-template-page-about,
body.page-template-page-contact,
body.page-template-page-solutions,
body.post-type-archive-case_study { padding-top: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--black);
}
h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 300; letter-spacing: -0.04em; }
h1 strong { font-weight: 600; }
h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 300; letter-spacing: -0.035em; }
h2 strong { font-weight: 600; }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 18px; }
p { font-weight: 300; line-height: 1.75; color: var(--text-2); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 24px;
}
.section-label::before {
  content: ''; display: block; width: 20px; height: 1px; background: var(--muted);
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 999px;
  font-size: 14px; font-weight: 600; font-family: var(--font);
  text-decoration: none; cursor: pointer;
  transition: all 0.18s ease; border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--accent); color: var(--black); border-color: var(--accent);
}
.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.btn--dark {
  background: var(--black); color: var(--white); border-color: var(--black);
}
.btn--dark:hover { background: #222; border-color: #222; }
.btn--outline {
  background: transparent; color: var(--black); border-color: var(--black);
}
.btn--outline:hover { background: var(--black); color: var(--white); }
.btn--outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  height: var(--header-height);
  background: rgba(247,245,240,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--mid);
  overflow: visible;
  display: flex; align-items: center;
}
.site-header .container {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  flex: 1;
}

/* Desktop: nav floats inline via absolute positioning within header */
@media (min-width: 901px) {
  .primary-nav {
    position: absolute;
    left: 50%; transform: translateX(-50%);
    top: 0; height: var(--header-height);
    display: flex; align-items: center;
  }
}
.site-logo {
  font-size: 20px; font-weight: 600; letter-spacing: -0.5px;
  color: var(--black); text-decoration: none;
}
.site-logo span { color: var(--muted); font-weight: 300; }
.site-logo img { height: var(--header-logo-h, 48px); width: auto; }

.primary-nav { display: flex; align-items: center; gap: 32px; }
.primary-nav a {
  font-size: 14px; font-weight: 400; color: var(--text-2);
  text-decoration: none; transition: color 0.15s;
}
.primary-nav a:hover { color: var(--black); }
.primary-nav a.current-menu-item { color: var(--black); font-weight: 500; }

.nav-cta { margin-left: 8px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--black); transition: all 0.2s;
}

/* ── HERO ── */
.hero {
  padding: 100px 0 80px;
  position: relative; overflow: hidden;
}
.hero__content { max-width: 680px; }
.hero__eyebrow { margin-bottom: 24px; }
.hero__title { margin-bottom: 24px; }
.hero__sub {
  font-size: 18px; color: var(--text-2);
  font-weight: 300; line-height: 1.75;
  margin-bottom: 40px; max-width: 520px;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero__stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  margin-top: 64px; padding-top: 48px;
  border-top: 1px solid var(--mid);
}
.hero__stat-num {
  font-size: 40px; font-weight: 600; letter-spacing: -2px;
  color: var(--black); line-height: 1;
}
.hero__stat-label { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* ── FEATURE CARDS ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--mid);
  padding: 36px 32px;
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
.feature-card__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--off-white); border: 1px solid var(--mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 20px;
}
.feature-card__title {
  font-size: 16px; font-weight: 600; color: var(--black);
  letter-spacing: -0.3px; margin-bottom: 10px;
}
.feature-card__text { font-size: 14px; font-weight: 300; line-height: 1.7; }

/* ── CASE STUDY CARDS ── */
.cases-grid { display: flex; flex-direction: column; gap: 2px; }
.case-card {
  background: var(--white);
  border: 1px solid var(--mid);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.case-card:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.case-card__header {
  padding: 48px 56px 40px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: start;
  border-bottom: 1px solid var(--mid);
}
.case-card__tag {
  display: inline-flex; align-items: center;
  padding: 4px 12px; border-radius: 999px;
  font-size: 11px; font-family: var(--mono);
  letter-spacing: 0.05em; font-weight: 500;
  text-transform: uppercase; margin-bottom: 14px;
}
.tag--saas { background: #f0efff; color: #4f46e5; }
.tag--real { background: #fff8ec; color: #d97706; }
.tag--ecom { background: #f0fdf4; color: #16a34a; }
.case-card__title { font-size: 28px; font-weight: 600; letter-spacing: -0.8px; color: var(--black); margin-bottom: 8px; }
.case-card__subtitle { font-size: 16px; color: var(--text-2); font-weight: 300; }
.case-card__metrics { display: flex; flex-direction: column; gap: 20px; min-width: 200px; }
.metric__val { font-size: 30px; font-weight: 600; letter-spacing: -1px; line-height: 1; }
.metric__val--up { color: #16a34a; }
.metric__val--down { color: #dc2626; }
.metric__label { font-size: 12px; color: var(--muted); margin-top: 4px; font-family: var(--mono); text-align: right; }
.case-card__body {
  padding: 40px 56px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
}
.case-col__title {
  font-size: 11px; font-family: var(--mono); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px;
}
.testimonial-card {
  background: var(--white); border: 1px solid var(--mid);
  border-radius: var(--radius-lg); padding: 32px;
}
.testimonial-card__quote {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: var(--text); font-style: italic; margin-bottom: 24px;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--off-white); border: 1px solid var(--mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600; color: var(--text-2);
  flex-shrink: 0;
}
.testimonial-card__name { font-size: 14px; font-weight: 600; color: var(--black); }
.testimonial-card__role { font-size: 12px; color: var(--muted); }

/* ── PRICING ── */
.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.plan-card {
  background: var(--white); border: 1px solid var(--mid);
  border-radius: var(--radius-xl); padding: 40px 36px;
  display: flex; flex-direction: column; position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.07); }
.plan-card--featured { background: var(--black); border-color: var(--black); }
.plan-card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--black);
  font-size: 11px; font-weight: 600; font-family: var(--mono);
  padding: 4px 14px; border-radius: 999px; letter-spacing: 0.06em;
  text-transform: uppercase; white-space: nowrap;
}
.plan-card__name {
  font-size: 12px; font-family: var(--mono); letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.plan-card--featured .plan-card__name { color: rgba(255,255,255,0.45); }
.plan-card__tagline { font-size: 17px; font-weight: 600; color: var(--black); letter-spacing: -0.4px; margin-bottom: 24px; }
.plan-card--featured .plan-card__tagline { color: var(--white); }
.plan-card__price { font-size: 52px; font-weight: 600; letter-spacing: -2.5px; color: var(--black); line-height: 1; }
.plan-card--featured .plan-card__price { color: var(--white); }
.plan-card__price sub { font-size: 20px; font-weight: 400; letter-spacing: 0; vertical-align: baseline; position: relative; top: -6px; }
.plan-card__period { font-size: 13px; color: var(--muted); margin-top: 6px; }
.plan-card--featured .plan-card__period { color: rgba(255,255,255,0.4); }
.plan-card__divider { height: 1px; background: var(--mid); margin: 28px 0; }
.plan-card--featured .plan-card__divider { background: rgba(255,255,255,0.12); }
.plan-card__features { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; margin-bottom: 32px; }
.plan-card__features li { font-size: 14px; color: var(--text-2); font-weight: 300; display: flex; align-items: flex-start; gap: 10px; }
.plan-card--featured .plan-card__features li { color: rgba(255,255,255,0.8); }
.feat-icon { width: 18px; height: 18px; border-radius: 50%; background: var(--off-white); border: 1px solid var(--mid); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; color: var(--text-2); font-size: 10px; }
.plan-card--featured .feat-icon { background: rgba(200,255,0,0.15); border-color: rgba(200,255,0,0.3); color: var(--accent); }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 64px 72px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
}
.cta-banner__title { font-size: clamp(26px, 4vw, 40px); font-weight: 600; letter-spacing: -1.5px; color: var(--white); }
.cta-banner__title span { color: var(--accent); }
.cta-banner__sub { font-size: 15px; color: rgba(255,255,255,0.4); margin-top: 8px; font-weight: 300; }

/* ── FOOTER ── */
.site-footer {
  background: var(--black); color: rgba(255,255,255,0.6);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; gap: 40px;
  margin-bottom: 64px;
}
.footer-logo {
  font-size: 20px; font-weight: 600; letter-spacing: -0.5px;
  color: var(--white); text-decoration: none; display: block; margin-bottom: 16px;
}
.footer-logo span { color: rgba(255,255,255,0.35); font-weight: 300; }
.footer-tagline { font-size: 14px; line-height: 1.7; font-weight: 300; max-width: 280px; }
.footer-col__title {
  font-size: 11px; font-family: var(--mono); letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-col__links { display: flex; flex-direction: column; gap: 10px; }
.footer-col__links a {
  font-size: 14px; color: rgba(255,255,255,0.6);
  text-decoration: none; font-weight: 300; transition: color 0.15s;
}
.footer-col__links a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 13px; font-weight: 300; }
.footer-locations { display: flex; gap: 24px; font-size: 13px; font-family: var(--mono); letter-spacing: 0.04em; }

/* ── BLOG / POSTS ── */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
.post-card {
  background: var(--white); border: 1px solid var(--mid);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}
.post-card:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.07); }
.post-card__img { aspect-ratio: 16/9; object-fit: cover; width: 100%; background: var(--mid); }
.post-card__body { padding: 24px; }
.post-card__cat { font-size: 11px; font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.post-card__title { font-size: 17px; font-weight: 600; color: var(--black); letter-spacing: -0.4px; line-height: 1.3; margin-bottom: 10px; text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 3px; transition: text-decoration-color .2s; }
.post-card:hover .post-card__title { text-decoration-color: var(--black); }
.post-card__excerpt { font-size: 14px; color: var(--text-2); font-weight: 300; line-height: 1.65; }
.post-card__meta { margin-top: 20px; font-size: 12px; color: var(--muted); font-family: var(--mono); }

/* ── SINGLE POST ── */
.post-content {
  max-width: 700px; margin: 0 auto; padding: 64px 40px;
}
.post-content h2 { font-size: 26px; margin: 2em 0 0.5em; }
.post-content h3 { font-size: 20px; margin: 1.75em 0 0.5em; }
.post-content p { margin-bottom: 1.5em; }
.post-content ul, .post-content ol { margin: 0 0 1.5em 1.5em; }
.post-content li { margin-bottom: 0.5em; font-weight: 300; color: var(--text-2); }
.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 24px; margin: 2em 0;
  font-size: 18px; font-style: italic; color: var(--text);
}
.post-content code { font-family: var(--mono); font-size: 13px; background: var(--mid); padding: 2px 6px; border-radius: 4px; }
.post-content pre { background: var(--black); padding: 24px; border-radius: var(--radius); overflow-x: auto; margin: 1.5em 0; }
.post-content pre code { background: none; color: var(--accent); padding: 0; }

/* ── FORMS ── */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 500; color: var(--black); letter-spacing: -0.1px; }
.form-input, .form-textarea, .form-select {
  padding: 12px 16px; border-radius: var(--radius);
  border: 1px solid var(--mid); background: var(--white);
  font-family: var(--font); font-size: 15px; color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.08);
}
.form-textarea { resize: vertical; min-height: 140px; }

/* ── PAGE HEADER ── */
.page-header {
  padding: 80px 0 64px; border-bottom: 1px solid var(--mid);
  margin-bottom: 64px;
}
.page-header__title { margin-bottom: 12px; }
.page-header__sub { font-size: 18px; max-width: 540px; }

/* ── UTILS ── */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.divider { height: 1px; background: var(--mid); }

/* ── ANIMATE ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeUp 0.5s ease both; }
.delay-1 { animation-delay: 0.07s; }
.delay-2 { animation-delay: 0.14s; }
.delay-3 { animation-delay: 0.21s; }
.delay-4 { animation-delay: 0.28s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .footer-col--subscribe { grid-column: 1 / -1; }
  .case-card__header { grid-template-columns: 1fr; }
  .case-card__body { grid-template-columns: 1fr; }
  .case-card__metrics { flex-direction: row; flex-wrap: wrap; }
  .metric__label { text-align: left; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 64px 0; }
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .primary-nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: var(--header-height); left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--mid);
    padding: 16px 24px; z-index: 999;
    max-height: calc(100vh - var(--header-height)); overflow-y: auto;
  }
  .primary-nav.open a { padding: 12px 0; border-bottom: 1px solid var(--mid); }
  .primary-nav.open .nav-cta { margin: 12px 0 0; border-bottom: none; }
  .primary-nav.open .mega-menu { display: none; }
  .primary-nav.open .nav-has-mega { display: flex; flex-direction: column; }
  .primary-nav.open .nav-has-mega.open .mega-menu { display: flex; flex-direction: column; gap: 0; position: static; box-shadow: none; border: none; padding: 0 0 0 12px; background: transparent; }
  .primary-nav.open .nav-has-mega.open .mega-menu .mega-item { padding: 8px 0; border-bottom: 1px solid var(--mid); border-radius: 0; }
  .primary-nav.open .nav-arrow { display: inline-block; margin-left: 6px; }
  .hero { padding: 64px 0 48px; }
  .hero__stats { gap: 28px; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-banner { flex-direction: column; text-align: center; padding: 48px 32px; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .case-card__header { padding: 28px 24px; }
  .case-card__body { padding: 24px; }
}

/* ═══════════════════════════════════════
   PERFORMANCE & RENDERING OPTIMISATIONS
═══════════════════════════════════════ */

/* GPU-accelerate only the elements that actually animate */
.site-header            { will-change: background; }
.reveal                 { will-change: opacity, transform; }
.reveal.in-view         { will-change: auto; } /* release after animation */

/* Use content-visibility to skip rendering off-screen sections */
/* Browsers that support it get significant layout/paint savings */
.site-footer,
.section:not(:first-of-type) {
    content-visibility: auto;
    contain-intrinsic-size: 0 400px; /* prevents layout shift during lazy render */
}

/* Scroll reveal base state — in CSS so it works before JS loads */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Prevent layout shift from lazy-loaded images */
img { height: auto; }
img:not([width]) { max-width: 100%; }

/* Smooth scrolling — only when user hasn't opted out */
@media (prefers-reduced-motion: no-preference) {
    html { scroll-behavior: smooth; }
}
/*
 * Mowsix — Global Responsive Stylesheet
 * Covers: Mobile (≤480px), Tablet portrait (≤640px), Tablet landscape (≤900px), Desktop small (≤1100px)
 * Applied sitewide via wp_enqueue_style in functions.php
 */

/* ═══════════════════════════════════════
   BASE MOBILE RESETS
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
img, video, iframe { max-width: 100%; height: auto; }
table { width: 100%; }

/* Prevent text overflow */
p, li, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; word-break: break-word; }

/* ═══════════════════════════════════════
   DESKTOP SMALL (≤1100px)
═══════════════════════════════════════ */
@media (max-width: 1100px) {
    .container { padding: 0 32px; }
    .hero__title { font-size: clamp(36px,5.5vw,64px); }
}

/* ═══════════════════════════════════════
   TABLET LANDSCAPE (≤900px)
═══════════════════════════════════════ */
@media (max-width: 900px) {
    /* Global container */
    .container { padding: 0 24px; }

    /* Typography scale-down */
    h1, .hp-hero__title, .about-hero__title { font-size: clamp(36px, 6vw, 56px); letter-spacing: -0.04em; }
    h2 { font-size: clamp(26px, 4vw, 40px); }

    /* Sections */
    .section { padding: 64px 0; }
    .section--sm { padding: 48px 0; }

    /* ── HOMEPAGE ── */
    .hp-hero__inner { padding: 80px 24px 56px; }
    .hp-hero__stats { grid-template-columns: repeat(2, 1fr); }
    .hp-stat { padding: 20px 16px 20px 0; }
    .hp-services__inner,
    .hp-ai__inner,
    .hp-who__inner,
    .hp-cases__inner,
    .hp-testimonials__inner,
    .hp-cta__inner { padding: 0 24px; }
    .hp-services { padding: 72px 0; }
    .hp-services__header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
    .hp-services__grid { grid-template-columns: 1fr; gap: 12px; }
    .hp-ai { padding: 72px 0; }
    .hp-ai__inner { grid-template-columns: 1fr; gap: 48px; }
    .hp-who { padding: 72px 0; }
    .hp-who__top { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
    .hp-who__values { grid-template-columns: 1fr; gap: 8px; }
    .hp-who__locations { gap: 24px; }
    .hp-cases { padding: 72px 0; }
    .hp-case-card__head { grid-template-columns: 1fr; gap: 20px; }
    .hp-case-card__body { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
    .hp-case-metrics { flex-direction: row; flex-wrap: wrap; gap: 20px; }
    .hp-testimonials { padding: 72px 0; }
    .hp-test-featured { padding: 32px 28px; }
    .hp-test-featured__quote-mark { font-size: 72px; left: 24px; top: 28px; }
    .hp-test-grid { grid-template-columns: 1fr; gap: 12px; }
    .hp-cta { padding: 72px 0; }
    .hp-cta__inner { grid-template-columns: 1fr; gap: 28px; }

    /* ── ABOUT ── */
    .about-hero__inner { grid-template-columns: 1fr; gap: 36px; padding: 80px 24px 64px; }
    .about-story__inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
    .about-story__sticky { position: static; }
    .about-story__num { font-size: 64px; }
    .about-values__inner { padding: 0 24px; }
    .about-values__grid { grid-template-columns: 1fr; gap: 10px; }
    .about-ai__inner { padding: 0 24px; }
    .about-ai__grid { grid-template-columns: 1fr; gap: 10px; }
    .about-locations__inner { padding: 0 24px; }
    .about-loc-grid { grid-template-columns: 1fr; gap: 12px; }
    .about-cta__inner { flex-direction: column; align-items: flex-start; padding: 0 24px; }
    .about-hero,.about-story,.about-values,.about-ai,.about-locations,.about-cta { padding: 72px 0; }

    /* ── CONTACT ── */
    .ct-hero { padding: 80px 0 48px; }
    .ct-hero__inner { padding: 0 24px; }
    .ct-body__inner { grid-template-columns: 1fr; padding: 0 24px; }
    .ct-sidebar { position: static; }
    .ct-form-wrap { padding: 32px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .phone-row { grid-template-columns: 130px 1fr; }

    /* ── PRICING ── */
    .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .plan-card.featured { transform: none; }
    .plan-card.featured:hover { transform: translateY(-3px); }
    .pricing-controls { flex-direction: column; align-items: flex-start; gap: 16px; padding: 32px 0 24px; }
    .controls-divider { display: none; }
    .no-surprises__grid { grid-template-columns: 1fr; gap: 10px; }
    .no-surprises__inner { padding: 0 24px; }
    .included-section { overflow-x: auto; }
    .included-table { min-width: 560px; }

    /* ── SERVICES ── */
    .svcs-hero__inner,
    .svcs-grid-inner,
    .svcs-cta__inner { padding: 0 24px; }
    .svcs-cta__inner { flex-direction: column; align-items: flex-start; }

    /* ── SINGLE SERVICE ── */
    .svc-hero__inner { padding: 0 24px; }
    .svc-hero__top { flex-direction: column; gap: 28px; }
    .svc-hero__proof { grid-template-columns: 1fr 1fr; }
    .svc-hero__proof-item:last-child { grid-column: 1/-1; border-right: none; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; }
    .svc-deliverable__inner { grid-template-columns: 1fr; gap: 20px; padding: 0 24px; }
    .svc-included__inner { grid-template-columns: 1fr; gap: 36px; padding: 0 24px; }
    .svc-included__left { position: static; }
    .svc-ideal__inner,
    .svc-cases__inner,
    .svc-others__inner,
    .svc-cta__inner { padding: 0 24px; }
    .svc-cases__grid { grid-template-columns: 1fr; }
    .svc-timeline-strip__inner { padding: 0 24px; flex-direction: column; gap: 24px; }
    .svc-timeline-strip__steps { flex-wrap: wrap; gap: 12px; }
    .svc-timeline-step { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding: 12px 0; }
    .svc-timeline-step:first-child { border-top: none; }
    .svc-others__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .svc-cta__inner { flex-direction: column; align-items: flex-start; }

    /* ── SOLUTIONS HUB ── */
    .sol-hero__inner { padding: 0 24px; }
    .sol-grid-inner,
    .sol-common__inner,
    .sol-cta__inner { padding: 0 24px; }
    .sol-cards { grid-template-columns: 1fr; gap: 12px; }
    .sol-common__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .sol-cta__inner { flex-direction: column; align-items: flex-start; }

    /* ── SINGLE SOLUTION ── */
    .vsol-hero__inner,
    .vsol-ch-inner,
    .vsol-app-inner,
    .vsol-res-inner,
    .vsol-faq-inner,
    .vsol-others-inner,
    .vsol-cta-inner { padding: 0 24px; }
    .vsol-hero__top { grid-template-columns: 1fr; gap: 36px; }
    .vsol-hero__proof { grid-template-columns: 1fr 1fr; }
    .vsol-hero__actions { margin-bottom: 40px; }
    .vsol-ch-grid,
    .vsol-app-grid,
    .vsol-res-grid { grid-template-columns: 1fr; gap: 10px; }
    .vsol-others-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .vsol-cta-inner { flex-direction: column; align-items: flex-start; }

    /* ── CASE STUDIES HUB ── */
    .csh-hero__inner,
    .csh-filter-inner,
    .csh-grid-inner,
    .csh-cta-inner { padding-left: 24px; padding-right: 24px; }

    /* ── FOOTER ── */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-locations { flex-direction: column; gap: 6px; }

    /* ── HERO (base) ── */
    .hero { padding: 64px 0 48px; }
    .hero__stats { gap: 20px; flex-wrap: wrap; }
    .features-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-banner { flex-direction: column; gap: 24px; }
}

/* ═══════════════════════════════════════
   TABLET PORTRAIT (≤640px)
═══════════════════════════════════════ */
@media (max-width: 640px) {
    .container { padding: 0 20px; }

    /* ── HOMEPAGE ── */
    .hp-hero__inner { padding: 72px 20px 48px; }
    .hp-hero__actions { flex-direction: column; align-items: flex-start; gap: 10px; }
    .btn--hero, .btn--hero-ghost { width: 100%; justify-content: center; }
    .hp-test-featured { padding: 28px 20px; }
    .hp-test-featured__quote-mark { display: none; }
    .hp-test-featured__author { flex-wrap: wrap; gap: 14px; }
    .hp-test-metric { margin-left: 0; text-align: left; }

    /* ── ABOUT ── */
    .about-hero__inner { padding: 72px 20px 56px; }
    .about-hero__locs { flex-direction: column; gap: 14px; }

    /* ── CONTACT ── */
    .ct-hero { padding: 72px 0 40px; }
    .ct-form-wrap { padding: 24px 20px; border-radius: var(--radius-lg); }
    .phone-row { grid-template-columns: 1fr; }
    .phone-select { width: 100%; }
    .ct-captcha { flex-direction: column; align-items: flex-start; gap: 12px; }

    /* ── PRICING ── */
    .plan-card { padding: 28px 20px; }
    .plans-grid { max-width: 100%; }
    .included-section { padding: 64px 0; }
    .no-surprises { padding: 64px 0; }

    /* ── SOLUTIONS ── */
    .sol-cards { gap: 10px; }
    .sol-card { padding: 32px 24px; }
    .sol-common__grid { grid-template-columns: 1fr; }

    /* ── CASE STUDIES HUB ── */
    .csh-filter-inner { gap: 6px; padding: 12px 16px; }

    /* ── SERVICES ── */
    .svc-others__grid { grid-template-columns: 1fr; }
    .vsol-others-grid { grid-template-columns: 1fr; }

    /* ── FOOTER ── */
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .site-footer { padding: 56px 0 32px; }
}

/* ═══════════════════════════════════════
   MOBILE (≤480px)
═══════════════════════════════════════ */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    /* Typography */
    h1, .hp-hero__title { font-size: clamp(32px, 8vw, 44px); }
    h2 { font-size: clamp(22px, 6vw, 32px); }

    /* ── HOMEPAGE ── */
    .hp-hero__inner { padding: 64px 16px 40px; }
    .hp-hero__stats { grid-template-columns: 1fr 1fr; }
    .hp-stat__num { font-size: 26px; }
    .hp-ticker__item { padding: 0 24px; font-size: 11px; }
    /* USP strip */
    .hp-usp-strip > div { grid-template-columns: 1fr !important; }

    /* ── CASE STUDIES ── */
    .csh-hero { padding: 56px 16px 70px; }
    .csh-card { padding: 24px; }

    /* ── PRICING ── */
    .plan-card { padding: 24px 16px; }
    .plan-card__price .price-num { font-size: 36px; }
    .included-table { min-width: 480px; }
    .ct-captcha { padding: 12px; }

    /* ── SOLUTIONS + HERO PROOFS ── */
    .vsol-hero__proof { grid-template-columns: 1fr 1fr; }
    .vsol-proof-item { padding: 20px 0; }
    .svc-hero__proof { grid-template-columns: 1fr 1fr; }

    /* ── TESTIMONIALS ── */
    .hp-test-grid { gap: 10px; }
    .hp-test-card { padding: 20px; }

    /* ── CONTACT ── */
    .ct-hero__inner { padding: 0 16px; }
    .ct-body__inner { padding: 0 16px; }

    /* ── GENERAL ── */
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions a { text-align: center; justify-content: center; }
    .case-card__header { padding: 24px 20px; }
    .case-card__body { padding: 20px; }
    .footer-grid { padding: 0 16px; }
}

/* ═══════════════════════════════════════
   TOUCH INTERACTION ENHANCEMENTS
═══════════════════════════════════════ */
@media (hover: none) {
    /* Remove hover-only states that confuse touchscreens */
    .mega-item:hover { background: transparent; border-color: transparent; }
    .hp-case-card:hover { transform: none; }
    .svc-card:hover { transform: none; }
    /* Tap targets — minimum 44×44px */
    .nav-toggle { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
    .primary-nav > a,
    .nav-has-mega > .nav-top-link { min-height: 44px; }
}

/* ═══════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .hp-ticker__track { animation: none; }
    .reveal { opacity: 1; transform: none; }
    .reveal.in-view { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════
   PRINT STYLES
═══════════════════════════════════════ */
@media print {
    .site-header,
    .nav-toggle,
    .hp-ticker,
    .hp-cta,
    .csh-cta,
    .vsol-cta,
    .about-cta,
    .sol-cta,
    .ct-submit-btn { display: none !important; }
    body { font-size: 12pt; color: #000; padding-top: 0 !important; }
    a { color: #000; text-decoration: underline; }
    .container { max-width: 100%; padding: 0; }
}

/* ═══════════════════════════════════════
   STICKY HEADER + MEGA MENU
═══════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px;
    background: rgba(247,245,240,0.0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease, box-shadow .3s ease;
    will-change: background, backdrop-filter;
}
/* Scrolled state — applied via JS */
.site-header.is-scrolled {
    background: rgba(247,245,240,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--mid);
    box-shadow: 0 1px 24px rgba(10,10,10,0.07);
}
/* On dark hero pages, always show solid from start */
.site-header.on-dark {
    background: rgba(10,10,10,0.0);
}
.site-header.on-dark .site-logo { color: var(--white); }
.site-header.on-dark .site-logo span { color: rgba(255,255,255,0.4); }
.site-header.on-dark .primary-nav > a,
.site-header.on-dark .nav-has-mega > .nav-top-link { color: rgba(255,255,255,0.7); }
.site-header.on-dark .primary-nav > a:hover,
.site-header.on-dark .nav-has-mega:hover > .nav-top-link { color: var(--white); background: rgba(255,255,255,0.08); }
.site-header.on-dark .nav-toggle span { background: var(--white); }
.site-header.on-dark.is-scrolled {
    background: rgba(247,245,240,0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--mid);
}
.site-header.on-dark.is-scrolled .site-logo { color: var(--black); }
.site-header.on-dark.is-scrolled .site-logo span { color: var(--muted); }
.site-header.on-dark.is-scrolled .primary-nav > a,
.site-header.on-dark.is-scrolled .nav-has-mega > .nav-top-link { color: var(--text-2); }
.site-header.on-dark.is-scrolled .nav-toggle span { background: var(--black); }

/* Scroll progress bar */
.scroll-progress {
    position: absolute;
    bottom: -1px;
    left: 0;
    height: 2px;
    width: 0%;
    background: var(--accent);
    transition: width .05s linear;
    z-index: 10;
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}
.site-logo {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.6px;
    color: var(--black);
    text-decoration: none;
    flex-shrink: 0;
    z-index: 10;
    transition: color .25s;
}
.site-logo span { color: var(--muted); font-weight: 300; transition: color .25s; }

/* ── Nav links ── */
.primary-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
    margin-right: 16px;
}
.primary-nav > a,
.nav-has-mega > .nav-top-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: color .18s, background .18s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}
.primary-nav > a:hover,
.nav-has-mega:hover > .nav-top-link {
    color: var(--black);
    background: rgba(10,10,10,0.05);
}
/* Active page indicator */
.primary-nav > a.current,
.nav-has-mega.current > .nav-top-link {
    color: var(--black);
    font-weight: 600;
}

/* Solutions dropdown trigger */
.nav-has-mega { position: relative; }

/* Invisible bridge — covers the visual gap between the nav link and the panel
   so the cursor can travel from link to panel without losing hover. */
.nav-has-mega::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 14px;
    background: transparent;
    pointer-events: none; /* default: don't intercept */
    z-index: 199;
}
.nav-has-mega:hover::before,
.nav-has-mega:focus-within::before {
    pointer-events: auto; /* only catch cursor while menu is open */
}

.nav-arrow {
    width: 14px; height: 14px;
    opacity: 0.45;
    transition: transform .22s, opacity .22s;
    flex-shrink: 0;
}
.nav-has-mega:hover .nav-arrow,
.nav-has-mega.open .nav-arrow {
    transform: rotate(180deg);
    opacity: 0.8;
}

/* ── Mega menu panel ── */
.mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 700px;
    background: var(--white);
    border: 1px solid var(--mid);
    border-radius: 20px;
    box-shadow: 0 28px 72px rgba(10,10,10,0.16);
    padding: 28px;
    opacity: 0;
    pointer-events: none;
    /* Close transition is delayed slightly so a cursor briefly slipping off
       doesn't immediately collapse the panel. Open transition is instant. */
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear .15s;
    visibility: hidden;
    z-index: 200;
}
.nav-has-mega:hover .mega-menu,
.nav-has-mega:focus-within .mega-menu,
.mega-menu:hover {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    visibility: visible;
    transition: opacity .22s ease, transform .22s ease, visibility 0s linear 0s;
}
.mega-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--mid);
}
.mega-menu__label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}
.mega-menu__all {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    text-decoration: none;
    transition: color .15s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.mega-menu__all:hover { color: var(--black); }
.mega-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 6px;
}
.mega-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: background .18s, border-color .18s;
    border: 1px solid transparent;
}
.mega-item:hover { background: var(--off-white); border-color: var(--mid); }
.mega-item__icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    background: var(--off-white);
    border: 1px solid var(--mid);
}
.mega-item__title { font-size: 14px; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.mega-item__desc { font-size: 12px; font-weight: 300; color: var(--text-2); line-height: 1.45; }
.mega-menu__footer {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--mid);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mega-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .18s;
}
.mega-footer-cta:hover { background: #222; }
.mega-footer-note { font-size: 12px; color: var(--muted); font-family: var(--mono); }

/* ── Nav CTA button ── */
.nav-cta {
    background: var(--black) !important;
    color: var(--white) !important;
    padding: 9px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: background .18s !important;
    text-decoration: none;
    white-space: nowrap;
}
.nav-cta:hover { background: #333 !important; }
.site-header.on-dark .nav-cta {
    background: var(--accent) !important;
    color: var(--black) !important;
}
.site-header.on-dark.is-scrolled .nav-cta {
    background: var(--black) !important;
    color: var(--white) !important;
}

/* ── Mobile hamburger ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--black); border-radius: 2px;
    transition: all .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BODY OFFSET — compensate for fixed header ── */
body { padding-top: 64px; }
/* Remove offset on pages where hero starts at top */
body.page-template-front-page,
body.page-template-page-about,
body.page-template-page-solutions,
body.post-type-archive-case_study,
body.page-template-page-contact { padding-top: 0; }

/* ═══════════════════════════════════════
   MOBILE / TABLET NAV
   Breakpoints: tablet ≤ 1024px, mobile ≤ 640px
═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .site-header .container { padding: 0 24px; }
}

@media (max-width: 900px) {
    .site-header .container { padding: 0 20px; }
    .nav-toggle { display: flex; }

    /* Hide desktop nav, show only via .open */
    .primary-nav {
        display: none;
        position: fixed;
        top: 64px; left: 0; right: 0; bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 0 0 40px 0;
        gap: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 999;
        border-top: 1px solid var(--mid);
    }
    .primary-nav.open { display: flex; }

    /* Nav links */
    .primary-nav > a {
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 500;
        border-bottom: 1px solid var(--mid);
        border-radius: 0;
        justify-content: space-between;
        color: var(--black);
        background: transparent;
    }
    .primary-nav > a:hover,
    .primary-nav > a.current { background: var(--off-white); color: var(--black); }

    /* Solutions top link */
    .nav-has-mega > .nav-top-link {
        padding: 16px 24px;
        font-size: 16px;
        font-weight: 500;
        border-bottom: 1px solid var(--mid);
        border-radius: 0;
        justify-content: space-between;
        width: 100%;
        color: var(--black);
        background: transparent;
        display: flex;
    }
    /* Disable desktop hover on mobile */
    .nav-has-mega:hover > .mega-menu { opacity: 0; pointer-events: none; display: none; }

    /* Mobile mega menu — accordion */
    .mega-menu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        border-top: 1px solid var(--mid) !important;
        border-radius: 0 !important;
        padding: 12px 24px 16px !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        background: var(--off-white) !important;
        display: none !important;
    }
    /* Only show when parent has .open */
    .nav-has-mega.open > .mega-menu { display: block !important; }
    .mega-grid { grid-template-columns: 1fr; gap: 4px; }
    .mega-item { padding: 10px 14px; background: var(--white); border-radius: 10px; border: 1px solid var(--mid); }
    .mega-menu__header { margin-bottom: 12px; padding-bottom: 10px; }
    .mega-menu__footer { flex-direction: column; gap: 10px; align-items: flex-start; padding-top: 12px; }
    .mega-footer-cta { display: inline-flex; }

    /* CTA button in mobile menu */
    .nav-cta {
        margin: 12px 24px 0 !important;
        text-align: center !important;
        display: block !important;
        padding: 14px 20px !important;
        border-radius: 8px !important;
    }

    /* Hamburger icon colour on dark headers */
    .site-header.on-dark:not(.is-scrolled) .nav-toggle span { background: var(--white); }
    .site-header.on-dark.is-scrolled .nav-toggle span { background: var(--black); }
    .site-header:not(.on-dark) .nav-toggle span { background: var(--black); }
}

@media (max-width: 480px) {
    .site-header .container { padding: 0 16px; }
    .site-logo { font-size: 18px; }
}

.footer-contact-details { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; margin-top: 16px; }
.footer-contact-link { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color .2s; }
.footer-contact-link:hover { color: rgba(255,255,255,0.8); }
.footer-contact-link svg { flex-shrink: 0; opacity: 0.6; }
.footer-socials { display: flex; flex-direction: row; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.footer-social-link { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; font-size: 11px; color: rgba(255,255,255,0.55); text-decoration: none; transition: border-color .2s, color .2s; }
.footer-social-link:hover { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.9); }
.footer-social-link svg { flex-shrink: 0; }
.footer-legal-links{display:flex;gap:20px;flex-wrap:wrap;}
.footer-legal-links a{font-size:12px;color:rgba(255,255,255,0.35);text-decoration:none;font-family:var(--mono);letter-spacing:0.03em;transition:color .2s;}
.footer-legal-links a:hover{color:rgba(255,255,255,0.7);}
@media(max-width:900px){
    .footer-grid{grid-template-columns:1fr 1fr;gap:32px;}
    .footer-bottom{flex-direction:column;gap:16px;text-align:center;align-items:center;}
    .footer-legal-links{justify-content:center;}
    .footer-locations{justify-content:center;}
}
@media(max-width:480px){
    .footer-grid{grid-template-columns:1fr;gap:28px;}
    .footer-socials { gap: 6px; }
    .footer-legal-links{flex-direction:column;gap:10px;align-items:center;}
}

/* ── PRICING PAGE STYLES ── */

.pricing-controls {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 48px 0 32px;
}
.currency-select-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}
.currency-select-wrap::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--text-2);
    pointer-events: none;
}
.currency-select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--white);
    border: 1.5px solid var(--mid);
    border-radius: var(--radius);
    padding: 10px 40px 10px 14px;
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    cursor: pointer;
    transition: border-color .2s;
    min-width: 200px;
}
.currency-select:hover, .currency-select:focus { border-color: var(--black); outline: none; }
.currency-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
}
.controls-divider { width:1px; height:32px; background:var(--mid); }
.billing-toggle-group { display:flex; align-items:center; gap:12px; }
.billing-label { font-size:14px; color:var(--text-2); transition:color .2s; }
.billing-label.active { color:var(--black); font-weight:500; }
.billing-toggle-track {
    position:relative; width:48px; height:26px;
    background:var(--mid); border-radius:999px; cursor:pointer; transition:background .2s; flex-shrink:0;
}
.billing-toggle-thumb {
    position:absolute; top:3px; left:3px; width:20px; height:20px;
    border-radius:50%; background:var(--white); box-shadow:0 1px 4px rgba(0,0,0,.18); transition:transform .22s;
}
.save-badge {
    background:var(--accent); color:var(--black); font-size:11px; font-weight:600;
    font-family:var(--mono); padding:4px 10px; border-radius:999px; opacity:0; transition:opacity .2s; white-space:nowrap;
}

/* Plans */
.plans-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; align-items:start; padding-bottom:80px; }
.plan-card {
    background:var(--white); border:1.5px solid var(--mid); border-radius:var(--radius-xl);
    padding:36px; position:relative; transition:border-color .2s, transform .2s;
}
.plan-card:hover { transform:translateY(-3px); }
.plan-card.featured {
    background:var(--black); border-color:var(--black);
    transform:translateY(-8px); box-shadow:0 24px 60px rgba(10,10,10,.18);
}
.plan-card.featured:hover { transform:translateY(-11px); }
.plan-card__badge {
    display:inline-flex; align-items:center; gap:6px;
    background:var(--accent); color:var(--black); font-family:var(--mono); font-size:10px;
    font-weight:600; letter-spacing:0.08em; text-transform:uppercase;
    padding:5px 12px; border-radius:999px; margin-bottom:20px;
}
.plan-card__badge::before { content:'★'; font-size:9px; }
.plan-card__name { font-size:22px; font-weight:600; color:var(--black); letter-spacing:-0.02em; margin-bottom:4px; }
.plan-card.featured .plan-card__name { color:var(--white); }
.plan-card__tagline { font-size:13px; font-family:var(--mono); color:var(--muted); margin-bottom:28px; }
.plan-card.featured .plan-card__tagline { color:rgba(255,255,255,.45); }
.plan-price-block { margin-bottom:6px; }
.plan-card__price { display:flex; align-items:baseline; gap:3px; }
.plan-card__price sub { font-size:22px; font-weight:300; color:var(--black); vertical-align:baseline; }
.plan-card.featured .plan-card__price sub { color:var(--white); }
.price-num { font-size:clamp(36px,4vw,48px); font-weight:300; letter-spacing:-0.04em; line-height:1; color:var(--black); }
.plan-card.featured .price-num { color:var(--white); }
.plan-card__period { font-size:12px; font-family:var(--mono); color:var(--muted); margin-bottom:24px; }
.plan-card.featured .plan-card__period { color:rgba(255,255,255,.35); }
.plan-card__divider { height:1px; background:var(--mid); margin-bottom:20px; }
.plan-card.featured .plan-card__divider { background:rgba(255,255,255,.1); }
.plan-card__desc { font-size:14px; font-weight:300; line-height:1.7; color:var(--text-2); margin-bottom:24px; }
.plan-card.featured .plan-card__desc { color:rgba(255,255,255,.6); }
.plan-card__features { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:32px; }
.plan-card__features li { display:flex; align-items:flex-start; gap:10px; font-size:14px; font-weight:400; color:var(--text); line-height:1.5; }
.plan-card.featured .plan-card__features li { color:rgba(255,255,255,.8); }
.feat-icon {
    width:18px; height:18px; border-radius:50%; background:rgba(200,255,0,.15);
    border:1px solid rgba(200,255,0,.4); display:flex; align-items:center; justify-content:center;
    font-size:10px; font-weight:700; color:#5a7a00; flex-shrink:0; margin-top:1px;
}
.plan-card.featured .feat-icon { background:rgba(200,255,0,.2); border-color:rgba(200,255,0,.5); color:var(--accent); }
.btn--plan-outline {
    display:block; width:100%; text-align:center; padding:13px; border-radius:var(--radius);
    font-size:14px; font-weight:600; border:1.5px solid var(--mid); color:var(--black); text-decoration:none; transition:border-color .2s,background .2s;
}
.btn--plan-outline:hover { border-color:var(--black); background:var(--off-white); }
.btn--plan-primary {
    display:block; width:100%; text-align:center; padding:14px; border-radius:var(--radius);
    font-size:14px; font-weight:600; background:var(--accent); color:var(--black); text-decoration:none; transition:background .2s,transform .15s;
}
.btn--plan-primary:hover { background:var(--accent-dark); transform:translateY(-1px); }

/* What's Included */
.included-section { background:var(--white); border-top:1px solid var(--mid); border-bottom:1px solid var(--mid); padding:96px 0; }
.included-table { width:100%; border-collapse:separate; border-spacing:0; margin-top:56px; }
.included-table thead { position:sticky; top:64px; z-index:10; }
.included-table th { text-align:center; padding:20px 24px; font-size:14px; font-weight:600; color:var(--black); border-bottom:2px solid var(--mid); vertical-align:bottom; background:var(--white); }
.included-table th:first-child { text-align:left; width:40%; }
.included-table th.col-featured { background:var(--black); color:var(--white); border-radius:12px 12px 0 0; border-bottom:2px solid var(--black); }
.feat-plan-name { font-size:16px; display:block; margin-bottom:4px; }
.feat-plan-badge { display:inline-block; background:var(--accent); color:var(--black); font-family:var(--mono); font-size:9px; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; padding:3px 8px; border-radius:999px; }
.included-table td { padding:16px 24px; border-bottom:1px solid var(--mid); font-size:14px; color:var(--text); vertical-align:middle; }
.included-table td.col-featured { background:rgba(10,10,10,.03); text-align:center; }
.included-table td:not(:first-child) { text-align:center; }
.included-table tr:last-child td { border-bottom:none; }
.included-table tbody tr:hover td { background:var(--off-white); }
.included-table tbody tr:hover td.col-featured { background:rgba(10,10,10,.05); }
.tbl-section-header td { background:var(--off-white)!important; font-family:var(--mono); font-size:10px; letter-spacing:0.1em; text-transform:uppercase; color:var(--muted); padding:10px 24px; border-bottom:1px solid var(--mid); font-weight:500; }
.tbl-check { color:#3a7a00; font-size:16px; font-weight:700; }
.tbl-partial { color:var(--muted); font-size:12px; font-family:var(--mono); }
.tbl-none { color:var(--mid); font-size:20px; }

/* No Surprises */
.no-surprises { background:var(--black); padding:96px 0; position:relative; overflow:hidden; }
.no-surprises__blob { position:absolute; bottom:-100px; left:-80px; width:400px; height:400px; background:radial-gradient(circle,rgba(200,255,0,.06) 0%,transparent 70%); pointer-events:none; }
.no-surprises__inner { max-width:var(--max-width); margin:0 auto; padding:0 40px; position:relative; z-index:2; }
.no-surprises__heading { font-size:clamp(36px,5vw,60px); font-weight:300; letter-spacing:-0.04em; color:var(--white); line-height:1.05; margin-bottom:64px; max-width:600px; }
.no-surprises__heading strong { font-weight:600; color:var(--accent); }
.no-surprises__grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.no-surprises__item { background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08); border-radius:var(--radius-lg); padding:36px; transition:background .2s; }
.no-surprises__item:hover { background:rgba(255,255,255,.07); }
.ns-icon { font-size:28px; margin-bottom:16px; display:block; }
.ns-title { font-size:16px; font-weight:600; color:var(--white); margin-bottom:8px; }
.ns-text { font-size:14px; font-weight:300; color:rgba(255,255,255,.5); line-height:1.7; }

/* FAQ */
.faq-item{background:var(--white);border:1px solid var(--mid);border-radius:var(--radius);overflow:hidden;}
.faq-q{padding:22px 28px;display:flex;justify-content:space-between;align-items:center;cursor:pointer;font-size:15px;font-weight:500;color:var(--black);user-select:none;gap:16px;}
.faq-icon{width:24px;height:24px;border-radius:50%;background:var(--off-white);border:1px solid var(--mid);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:16px;color:var(--muted);transition:transform .22s,background .15s;}
.faq-item.open .faq-icon{transform:rotate(45deg);background:var(--black);color:var(--white);border-color:var(--black);}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease;padding:0 28px;}
.faq-item.open .faq-a{max-height:400px;padding:0 28px 24px;}

@media(max-width:900px){
    .plans-grid{grid-template-columns:1fr;max-width:480px;margin-left:auto;margin-right:auto;}
    .plan-card.featured{transform:none;}
    .plan-card.featured:hover{transform:translateY(-3px);}
    .no-surprises__grid{grid-template-columns:1fr;gap:10px;}
    .no-surprises__inner{padding:0 24px;}
    .no-surprises__heading{margin-bottom:40px;font-size:clamp(28px,5vw,44px);}
    .pricing-controls{flex-direction:column;align-items:flex-start;gap:14px;padding:32px 0 20px;}
    .controls-divider{display:none;}
    .billing-toggle-group{flex-wrap:wrap;gap:10px;}
    .included-section{padding:64px 0;}
    .svcs-cta__inner{padding:0 24px;flex-direction:column;align-items:flex-start;}
}
@media(max-width:768px){
    .no-surprises{padding:64px 0;}
    .included-section{overflow-x:auto;padding:56px 0;}
    .included-section .container{padding:0 20px;}
    .included-table{min-width:540px;font-size:13px;}
    .included-table th{padding:14px 14px;}
    .included-table td{padding:12px 14px;}
    .plans-grid{max-width:100%;}
    .plan-card{padding:28px 20px;}
    .pricing-controls{padding:24px 0 16px;}
    .currency-select{min-width:160px;font-size:12px;}
}
@media(max-width:480px){
    .plans-grid{padding-bottom:48px;}
    .plan-card{padding:24px 16px;border-radius:var(--radius-lg);}
    .plan-card__price .price-num{font-size:36px;}
    .plan-card__name{font-size:18px;}
    .plan-card__features li{font-size:13px;}
    .no-surprises__grid{gap:8px;}
    .no-surprises__item{padding:24px 20px;}
    .no-surprises__heading{font-size:clamp(26px,7vw,38px);}
    .included-table{min-width:460px;font-size:12px;}
    .included-table th,.included-table td{padding:10px 10px;}
    .cta-banner{padding:32px 20px;border-radius:var(--radius-lg);}
    .faq-q{padding:16px 20px;font-size:14px;}
    .faq-item.open .faq-a{padding:0 20px 16px;}
}

/* ═══════════════════════════════════════
   CONTACT PAGE STYLES
═══════════════════════════════════════ */
.ct-hero { background:var(--black); padding:120px 0 72px; position:relative; overflow:hidden; }
.ct-hero__glow { position:absolute; top:-100px; right:-60px; width:500px; height:500px; background:radial-gradient(circle,rgba(200,255,0,0.08) 0%,transparent 70%); pointer-events:none; }
.ct-hero__inner { max-width:var(--max-width); margin:0 auto; padding:0 40px; position:relative; z-index:2; }
.ct-hero__label { display:inline-flex; align-items:center; gap:8px; font-family:var(--mono); font-size:11px; letter-spacing:0.12em; text-transform:uppercase; color:rgba(255,255,255,0.35); margin-bottom:20px; }
.ct-hero__label::before { content:''; display:block; width:20px; height:1px; background:rgba(255,255,255,0.2); }
.ct-hero__title { font-size:clamp(44px,6vw,72px); font-weight:300; letter-spacing:-0.05em; color:var(--white); line-height:1.02; margin-bottom:20px; }
.ct-hero__title strong { font-weight:700; color:var(--accent); }
.ct-hero__sub { font-size:17px; font-weight:300; color:rgba(255,255,255,0.5); line-height:1.7; max-width:520px; }

/* Layout */
.ct-body { background:var(--off-white); padding:72px 0 96px; }
.ct-body__inner { max-width:var(--max-width); margin:0 auto; padding:0 40px; display:grid; grid-template-columns:1.2fr 1fr; gap:64px; align-items:start; }

/* Form */
.ct-form-wrap { background:var(--white); border:1px solid var(--mid); border-radius:var(--radius-xl); padding:48px; }
.ct-form-title { font-size:22px; font-weight:600; color:var(--black); margin-bottom:6px; letter-spacing:-0.02em; }
.ct-form-sub { font-size:14px; font-weight:300; color:var(--text-2); margin-bottom:36px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.form-label { font-size:12px; font-weight:600; color:var(--black); letter-spacing:0.02em; }
.form-label .req { color:#dc2626; margin-left:2px; }
.form-input, .form-select, .form-textarea {
    width:100%; padding:12px 14px; border:1.5px solid var(--mid); border-radius:var(--radius);
    font-family:var(--font); font-size:14px; color:var(--black); background:var(--white);
    transition:border-color .2s, box-shadow .2s; outline:none; appearance:none;
}
.form-input:focus,.form-select:focus,.form-textarea:focus { border-color:var(--black); box-shadow:0 0 0 3px rgba(10,10,10,0.06); }
.form-input.error,.form-select.error,.form-textarea.error { border-color:#dc2626; background:#fef2f2; }
.form-input.valid,.form-select.valid,.form-textarea.valid { border-color:#16a34a; }
.field-error { font-size:12px; color:#dc2626; margin-top:4px; display:none; }
.field-error.show { display:block; }
.form-textarea { min-height:120px; resize:vertical; }
.form-select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239e9b92' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center; padding-right:36px; cursor:pointer; }

/* Phone row special */
.phone-row { display:grid; grid-template-columns:140px 1fr; gap:8px; }
.phone-select { border:1.5px solid var(--mid); border-radius:var(--radius); padding:12px 10px; font-family:var(--mono); font-size:13px; color:var(--black); background:var(--off-white); cursor:pointer; outline:none; appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239e9b92' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 10px center; transition:border-color .2s; }
.phone-select:focus { border-color:var(--black); outline:none; }

/* Captcha */
.ct-captcha { background:var(--off-white); border:1.5px solid var(--mid); border-radius:var(--radius); padding:16px 18px; display:flex; align-items:center; justify-content:space-between; gap:16px; margin-bottom:16px; }
.ct-captcha__check { display:flex; align-items:center; gap:12px; cursor:pointer; }
.ct-captcha__box { width:22px; height:22px; border:2px solid var(--mid); border-radius:4px; flex-shrink:0; display:flex; align-items:center; justify-content:center; transition:all .2s; cursor:pointer; }
.ct-captcha__box.checked { background:var(--black); border-color:var(--black); }
.ct-captcha__box.checked::after { content:'✓'; color:var(--white); font-size:13px; font-weight:700; }
.ct-captcha__label { font-size:14px; color:var(--text); }
.ct-captcha__badge { font-family:var(--mono); font-size:10px; color:var(--muted); text-align:right; }
.captcha-math { display:flex; align-items:center; gap:10px; }
.captcha-math__q { font-family:var(--mono); font-size:14px; font-weight:600; color:var(--black); white-space:nowrap; }
.captcha-math__input { width:60px; padding:8px 10px; border:1.5px solid var(--mid); border-radius:8px; font-family:var(--mono); font-size:14px; text-align:center; outline:none; transition:border-color .2s; }
.captcha-math__input:focus { border-color:var(--black); }
.captcha-math__input.error { border-color:#dc2626; background:#fef2f2; }
.ct-captcha-error { font-size:12px; color:#dc2626; margin-top:4px; display:none; }
.ct-captcha-error.show { display:block; }

/* Submit */
.ct-submit-btn {
    width:100%; padding:16px; border-radius:var(--radius); font-size:15px; font-weight:700;
    background:var(--black); color:var(--white); border:none; cursor:pointer;
    transition:background .2s, transform .15s; display:flex; align-items:center; justify-content:center; gap:8px;
}
.ct-submit-btn:hover:not(:disabled) { background:#1a1a1a; transform:translateY(-1px); }
.ct-submit-btn:disabled { opacity:0.6; cursor:not-allowed; }
.ct-form-note { font-size:12px; color:var(--muted); text-align:center; margin-top:10px; }

/* Error/Success */
.ct-form-error { display:none; background:#fef2f2; border:1px solid #fecaca; border-radius:var(--radius); padding:12px 16px; font-size:13px; color:#dc2626; margin-bottom:16px; }
.ct-form-error.show { display:block; }
.ct-success { display:none; text-align:center; padding:56px 40px; }
.ct-success__icon { width:64px; height:64px; border-radius:50%; background:rgba(22,163,74,0.1); border:2px solid rgba(22,163,74,0.3); display:flex; align-items:center; justify-content:center; font-size:24px; margin:0 auto 20px; }
.ct-success__title { font-size:24px; font-weight:600; color:var(--black); margin-bottom:8px; }
.ct-success__sub { font-size:15px; font-weight:300; color:var(--text-2); }

/* Sidebar */
.ct-sidebar { display:flex; flex-direction:column; gap:16px; position:sticky; top:40px; }
.ct-steps { background:var(--white); border:1px solid var(--mid); border-radius:var(--radius-xl); padding:36px; }
.ct-steps__title { font-size:16px; font-weight:600; color:var(--black); margin-bottom:24px; }
.ct-step { display:flex; gap:16px; align-items:flex-start; padding-bottom:20px; margin-bottom:20px; border-bottom:1px solid var(--mid); }
.ct-step:last-child { border-bottom:none; padding-bottom:0; margin-bottom:0; }
.ct-step__num { width:32px; height:32px; border-radius:50%; background:var(--off-white); border:1px solid var(--mid); display:flex; align-items:center; justify-content:center; font-family:var(--mono); font-size:11px; color:var(--muted); flex-shrink:0; margin-top:2px; }
.ct-step__title { font-size:14px; font-weight:600; color:var(--black); margin-bottom:4px; }
.ct-step__text { font-size:13px; font-weight:300; color:var(--text-2); line-height:1.6; }
.ct-contact-card { background:var(--black); border-radius:var(--radius-xl); padding:36px; }
.ct-contact-card__label { font-family:var(--mono); font-size:10px; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.3); margin-bottom:12px; }
.ct-contact-email { font-size:17px; font-weight:600; color:var(--accent); text-decoration:none; letter-spacing:-0.3px; }
.ct-contact-locs { display:flex; flex-direction:column; gap:12px; margin-top:20px; padding-top:20px; border-top:1px solid rgba(255,255,255,0.08); }
.ct-loc-label { font-family:var(--mono); font-size:10px; color:rgba(255,255,255,0.3); letter-spacing:.06em; margin-bottom:2px; }
.ct-loc-val { font-size:13px; color:rgba(255,255,255,0.65); font-weight:300; }

@media(max-width:900px){
    .ct-body__inner { grid-template-columns:1fr; }
    .ct-sidebar { position:static; }
    .form-row { grid-template-columns:1fr; }
    .ct-hero__inner,.ct-body__inner { padding:0 24px; }
    .ct-hero { padding:100px 0 56px; }
}

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


/* === From archive-case_study.php === */
/* ═══════════════════════════════════════
   CASE STUDIES ARCHIVE — Mowsix Design System
═══════════════════════════════════════ */

/* ── 1. HERO — lime full-bleed ── */
.csh-hero {
    background: #c8ff00;
    padding: clamp(80px, 12vh, 140px) 40px clamp(96px, 14vh, 160px);
    position: relative;
    overflow: hidden;
}
.csh-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.csh-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0a0b0a;
    margin-bottom: 28px;
}
.csh-hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    background: #0a0b0a;
    border-radius: 999px;
    flex-shrink: 0;
}
.csh-hero h1 {
    font-size: clamp(40px, 7vw, 90px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #0a0b0a;
    margin: 0 0 28px;
    max-width: 1100px;
    text-wrap: balance;
}
.csh-hero__mark {
    background: #0a0b0a;
    color: #c8ff00;
    padding: 0 12px;
    display: inline-block;
    line-height: 1;
}
.csh-hero__sub {
    max-width: 580px;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 400;
    line-height: 1.5;
    color: #0a0b0a;
    opacity: 0.82;
    margin: 0;
}

/* ── 2. INTRO / THESIS-STYLE ── */
.csh-intro {
    background: #f4f2ec;
    padding: clamp(72px, 10vh, 120px) 40px;
}
.csh-intro__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}
.csh-intro__heading {
    font-size: clamp(36px, 4.4vw, 60px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.0;
    color: #0a0b0a;
    margin: 0;
    text-wrap: balance;
}
.csh-intro__heading-muted {
    color: rgba(10,11,10,0.4);
}
.csh-intro__right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 6px;
}
.csh-intro__p {
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.6;
    color: #0a0b0a;
    margin: 0;
    text-wrap: pretty;
}
.csh-intro__p--muted { color: rgba(10,11,10,0.65); }
.csh-intro__p--bold { font-weight: 600; }
.csh-intro__mark {
    background: #c8ff00;
    color: #0a0b0a;
    padding: 0 6px;
    font-weight: 600;
}

/* ── 3. FILTER BAR — design-system style ── */
.csh-filter-bar {
    background: #f4f2ec;
    border-top: 1px solid #e3e1d8;
    border-bottom: 1px solid #e3e1d8;
    position: sticky;
    top: 64px;
    z-index: 50;
}
.csh-filter-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.csh-filter-btn {
    background: transparent;
    border: 1px solid rgba(10,11,10,0.18);
    border-radius: 999px;
    padding: 8px 16px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #0a0b0a;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
    letter-spacing: -0.005em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.csh-filter-btn:hover {
    background: rgba(10,11,10,0.05);
    border-color: rgba(10,11,10,0.4);
}
.csh-filter-btn.active {
    background: #0a0b0a;
    color: #f4f2ec;
    border-color: #0a0b0a;
}
.csh-filter-count {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(10,11,10,0.45);
    font-weight: 400;
    margin-left: 2px;
}
.csh-filter-btn.active .csh-filter-count {
    color: rgba(244,242,236,0.55);
}

/* ── 4. CASE STUDIES GRID ── */
.csh-grid-section {
    background: #ecebe4;
    padding: clamp(72px, 10vh, 120px) 40px;
}
.csh-grid-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.csh-grid-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 32px;
    flex-wrap: wrap;
}
.csh-grid-head h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: #0a0b0a;
    margin: 0;
    max-width: 600px;
    text-wrap: balance;
}
.csh-grid-stats {
    display: flex;
    gap: 28px;
}
.csh-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-left: 1px solid rgba(10,11,10,0.12);
    padding-left: 18px;
}
.csh-stat:first-child { border-left: none; padding-left: 0; }
.csh-stat__num {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #0a0b0a;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.csh-stat__label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(10,11,10,0.5);
}

.csh-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.csh-empty {
    background: #fff;
    border: 1px solid #e3e1d8;
    border-radius: 20px;
    padding: 56px;
    text-align: center;
}
.csh-empty__text {
    font-family: var(--mono);
    font-size: 13px;
    color: rgba(10,11,10,0.5);
}
.csh-card {
    background: #fff;
    border: 1px solid #e3e1d8;
    border-radius: 20px;
    padding: 36px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
    transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.csh-card:hover {
    border-color: rgba(10,11,10,0.18);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px -6px rgba(17,17,17,0.12), 0 2px 4px rgba(17,17,17,0.04);
}
.csh-card.is-hidden { display: none; }
.csh-card__l {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.csh-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.csh-card__num {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(10,11,10,0.45);
    letter-spacing: 0.08em;
    font-weight: 600;
}
.csh-card__vertical {
    background: #f4f2ec;
    color: rgba(10,11,10,0.7);
    padding: 4px 10px;
    border-radius: 4px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.csh-card__title {
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: #0a0b0a;
    margin: 0;
}
.csh-card__subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(10,11,10,0.65);
    margin: 6px 0 0;
}
.csh-card__problem {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}
.csh-card__problem-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10,11,10,0.5);
    margin-bottom: 4px;
}
.csh-card__problem-text {
    font-size: 14px;
    line-height: 1.55;
    color: #0a0b0a;
    margin: 0;
}
.csh-card__cta {
    font-size: 14px;
    font-weight: 600;
    color: #0a0b0a;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
    margin-top: 8px;
    align-self: flex-start;
}

.csh-card__r {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.csh-card__metrics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.csh-card__metrics-row.is-single {
    grid-template-columns: 1fr;
}
.csh-card__metric {
    padding: 22px;
    background: #0a0b0a;
    border-radius: 14px;
    color: #fff;
}
.csh-card__metric--full {
    grid-column: 1 / -1;
}
.csh-card__metric-num {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #c8ff00;
    font-variant-numeric: tabular-nums;
}
.csh-card__metric-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
}
.csh-card__results {
    background: #f4f2ec;
    border-radius: 14px;
    padding: 22px;
}
.csh-card__results-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10,11,10,0.5);
    margin-bottom: 8px;
}
.csh-card__results-text {
    font-size: 14px;
    line-height: 1.55;
    color: #0a0b0a;
    margin: 0;
}

/* ── 5. FINAL CTA — lime, mirrors design system ── */
.csh-cta {
    background: #c8ff00;
    padding: clamp(72px, 10vh, 120px) 40px;
}
.csh-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.csh-cta h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.0;
    color: #0a0b0a;
    margin: 0;
    text-wrap: balance;
}
.csh-cta__sub {
    font-size: 15px;
    color: rgba(10,11,10,0.65);
    margin: 12px 0 0;
    max-width: 520px;
    line-height: 1.55;
}
.csh-cta__btn {
    display: inline-flex;
    align-items: center;
    background: #0a0b0a;
    color: #fff;
    padding: 18px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
    transition: background .18s ease, transform .18s ease;
}
.csh-cta__btn:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-1px);
}

/* ── Mobile ── */
@media (max-width: 1024px) {
    .csh-intro__inner { grid-template-columns: 1fr; gap: 40px; }
    .csh-card { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
    .csh-cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
    .csh-hero { padding: 64px 24px 80px; }
    .csh-intro, .csh-grid-section, .csh-cta { padding-left: 24px; padding-right: 24px; }
    .csh-filter-inner { padding: 12px 24px; gap: 6px; }
    .csh-grid-stats { gap: 18px; flex-wrap: wrap; }
    .csh-stat { padding-left: 12px; }
    .csh-stat__num { font-size: 22px; }
    .csh-card__metrics-row { grid-template-columns: 1fr; }
    .csh-card__metric--full { grid-column: 1 / -1; }
}


/* === From archive-service.php === */
/* ═══════════════════════════════════════
   SERVICES ARCHIVE — Mowsix Design System
═══════════════════════════════════════ */

/* ── 1. SERVICES HERO — lime full-bleed ── */
.svcs-hero {
    background: #c8ff00;
    padding: clamp(80px, 12vh, 140px) 40px clamp(96px, 14vh, 160px);
    position: relative;
    overflow: hidden;
}
.svcs-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.svcs-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0a0b0a;
    margin-bottom: 28px;
}
.svcs-hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    background: #0a0b0a;
    border-radius: 999px;
    flex-shrink: 0;
}
.svcs-hero h1 {
    font-size: clamp(40px, 7vw, 90px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #0a0b0a;
    margin: 0 0 28px;
    max-width: 1100px;
    text-wrap: balance;
}
.svcs-hero__mark {
    background: #0a0b0a;
    color: #c8ff00;
    padding: 0 12px;
    display: inline-block;
    line-height: 1;
}
.svcs-hero__sub {
    max-width: 580px;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 400;
    line-height: 1.5;
    color: #0a0b0a;
    opacity: 0.82;
    margin: 0;
}

/* ── 2. INTRO / THESIS-STYLE ── */
.svcs-intro {
    background: #f4f2ec;
    padding: clamp(72px, 10vh, 120px) 40px;
}
.svcs-intro__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}
.svcs-intro__heading {
    font-size: clamp(36px, 4.4vw, 60px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.0;
    color: #0a0b0a;
    margin: 0;
    text-wrap: balance;
}
.svcs-intro__heading-muted {
    color: rgba(10,11,10,0.4);
}
.svcs-intro__right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 6px;
}
.svcs-intro__p {
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.6;
    color: #0a0b0a;
    margin: 0;
    text-wrap: pretty;
}
.svcs-intro__p--muted { color: rgba(10,11,10,0.65); }
.svcs-intro__p--bold { font-weight: 600; }
.svcs-intro__mark {
    background: #c8ff00;
    color: #0a0b0a;
    padding: 0 6px;
    font-weight: 600;
}

/* ── 3. SERVICES GRID ── */
.svcs-grid-section {
    background: #ecebe4;
    padding: clamp(72px, 10vh, 120px) 40px;
}
.svcs-grid-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.svcs-grid-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 32px;
    flex-wrap: wrap;
}
.svcs-grid-head h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: #0a0b0a;
    margin: 0;
    max-width: 600px;
    text-wrap: balance;
}
.svcs-grid-stats {
    display: flex;
    gap: 28px;
}
.svc-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-left: 1px solid rgba(10,11,10,0.12);
    padding-left: 18px;
}
.svc-stat:first-child { border-left: none; padding-left: 0; }
.svc-stat__num {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: #0a0b0a;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.svc-stat__lbl {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(10,11,10,0.5);
}

.svcs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.svc-card {
    background: #fff;
    border: 1px solid #e3e1d8;
    border-radius: 20px;
    padding: 36px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: start;
    transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.svc-card:hover {
    border-color: rgba(10,11,10,0.18);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px -6px rgba(17,17,17,0.12), 0 2px 4px rgba(17,17,17,0.04);
}
.svc-card__l {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.svc-card__num {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(10,11,10,0.45);
    letter-spacing: 0.08em;
    font-weight: 600;
}
.svc-card__title {
    font-size: clamp(24px, 2.4vw, 32px);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: #0a0b0a;
    margin: 0;
}
.svc-card__tagline {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(10,11,10,0.65);
    margin: 6px 0 0;
}
.svc-card__included {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}
.svc-card__included-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10,11,10,0.5);
    margin-bottom: 4px;
}
.svc-card__included-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #0a0b0a;
}
.svc-card__included-item::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c8ff00;
    margin-top: 8px;
    flex-shrink: 0;
}
.svc-card__cta {
    font-size: 14px;
    font-weight: 600;
    color: #0a0b0a;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
    margin-top: 8px;
    align-self: flex-start;
}

.svc-card__r {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.svc-card__deliverable {
    background: #f4f2ec;
    border-radius: 14px;
    padding: 22px;
}
.svc-card__deliverable-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10,11,10,0.5);
    margin-bottom: 8px;
}
.svc-card__deliverable-text {
    font-size: 15px;
    line-height: 1.5;
    color: #0a0b0a;
}
.svc-card__metric {
    padding: 22px;
    background: #0a0b0a;
    border-radius: 14px;
    color: #fff;
}
.svc-card__metric-num {
    font-size: clamp(34px, 3.5vw, 44px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #c8ff00;
    font-variant-numeric: tabular-nums;
}
.svc-card__metric-lbl {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
}
.svc-card__ideal {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.svc-card__ideal-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10,11,10,0.5);
}
.svc-card__ideal-item {
    font-size: 13px;
    color: rgba(10,11,10,0.65);
    line-height: 1.4;
}

/* ── 4. FINAL CTA — lime, mirrors homepage ── */
.svcs-cta {
    background: #c8ff00;
    padding: clamp(72px, 10vh, 120px) 40px;
}
.svcs-cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.svcs-cta h2 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.0;
    color: #0a0b0a;
    margin: 0;
    text-wrap: balance;
}
.svcs-cta__sub {
    font-size: 15px;
    color: rgba(10,11,10,0.65);
    margin: 12px 0 0;
    max-width: 520px;
    line-height: 1.55;
}
.svcs-cta__btn {
    display: inline-flex;
    align-items: center;
    background: #0a0b0a;
    color: #fff;
    padding: 18px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
    transition: background .18s ease, transform .18s ease;
}
.svcs-cta__btn:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-1px);
}

/* ── Mobile ── */
@media (max-width: 1024px) {
    .svcs-intro__inner { grid-template-columns: 1fr; gap: 40px; }
    .svc-card { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
    .svcs-cta__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
    .svcs-hero { padding: 64px 24px 80px; }
    .svcs-intro, .svcs-grid-section, .svcs-cta { padding-left: 24px; padding-right: 24px; }
    .svcs-grid-stats { gap: 18px; flex-wrap: wrap; }
    .svc-stat { padding-left: 12px; }
    .svc-stat__num { font-size: 22px; }
}


/* === From front-page.php === */
/* ═══════════════════════════════════════
   HOMEPAGE STYLES — Mowsix Design System
═══════════════════════════════════════ */

/* Section label (eyebrow) — used across sections */
.hp-section-label {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10,11,10,0.55);
    margin-bottom: 16px;
}

/* ── 1. HERO — Lime full-bleed ── */
.hp-hero {
    background: #c8ff00;
    padding: clamp(80px, 12vh, 140px) 40px clamp(96px, 14vh, 160px);
    position: relative;
    overflow: hidden;
}
.hp-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.hp-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0a0b0a;
    margin-bottom: 28px;
}
.hp-hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    background: #0a0b0a;
    border-radius: 999px;
    flex-shrink: 0;
}
.hp-hero__title {
    font-size: clamp(40px, 7.5vw, 100px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #0a0b0a;
    margin: 0 0 28px;
    max-width: 1100px;
    text-wrap: balance;
}
.hp-hero__mark {
    background: #0a0b0a;
    color: #c8ff00;
    padding: 0 12px;
    display: inline-block;
    line-height: 1;
}
.hp-hero__sub {
    max-width: 580px;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 400;
    line-height: 1.5;
    color: #0a0b0a;
    opacity: 0.82;
    margin: 0 0 36px;
}
.hp-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
.hp-hero__btn {
    display: inline-flex;
    align-items: center;
    background: #0a0b0a;
    color: #f4f2ec;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    font-family: inherit;
    transition: background .18s var(--ease-std,cubic-bezier(.4,0,.2,1)), transform .18s ease;
}
.hp-hero__btn:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    color: #f4f2ec;
}
.hp-hero__microcopy {
    font-size: 13px;
    color: rgba(10,11,10,0.55);
    margin: 0;
    letter-spacing: 0.01em;
}
.hp-hero__urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10,11,10,0.08);
    border: 1px solid rgba(10,11,10,0.18);
    border-radius: 999px;
    padding: 6px 14px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    color: #0a0b0a;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 4px;
}
.hp-hero__urgency-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0a0b0a;
    animation: hp-pulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes hp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

/* ── 2. METRICS BAND ── */
.hp-metrics {
    background: #0a0b0a;
    padding: 48px 40px;
}
.hp-metrics__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 32px;
    align-items: center;
}
.hp-metric {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 24px;
    border-left: 1px solid rgba(255,255,255,0.1);
}
.hp-metric:first-child {
    border-left: none;
    padding-left: 0;
}
.hp-metric__num {
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.hp-metric__label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.hp-metrics__link {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    letter-spacing: 0.06em;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    padding-bottom: 2px;
    transition: color .18s ease, border-color .18s ease;
    align-self: center;
    white-space: nowrap;
}
.hp-metrics__link:hover {
    color: #c8ff00;
    border-color: #c8ff00;
}

/* ── 3. TRUSTED BY MARQUEE ── */
.hp-trusted {
    background: #f4f2ec;
    padding: 48px 0;
    border-bottom: 1px solid #e3e1d8;
    overflow: hidden;
}
.hp-trusted__head {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 24px;
}
.hp-trusted__eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10,11,10,0.45);
}
.hp-trusted__track {
    display: flex;
    gap: 64px;
    width: max-content;
    animation: hp-trusted-scroll 50s linear infinite;
    align-items: center;
    will-change: transform;
}
.hp-trusted__track:hover {
    animation-play-state: paused;
}
@keyframes hp-trusted-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}
.hp-trusted__logo {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: rgba(10,11,10,0.5);
    font-weight: 600;
    letter-spacing: -0.01em;
    font-size: 22px;
    flex-shrink: 0;
    white-space: nowrap;
    transition: color .2s ease;
}
.hp-trusted__logo:hover {
    color: #0a0b0a;
}
.hp-trusted__logo:nth-child(2n) { font-style: italic; }
.hp-trusted__logo:nth-child(3n) { letter-spacing: 0.14em; text-transform: uppercase; font-size: 16px; font-weight: 500; }
.hp-trusted__logo:nth-child(5n) { font-weight: 300; font-size: 20px; }

/* ── 4. THESIS ── */
.hp-thesis {
    background: #f4f2ec;
    padding: clamp(72px, 10vh, 120px) 40px;
}
.hp-thesis__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}
.hp-thesis__heading {
    font-size: clamp(36px, 4.4vw, 60px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.0;
    color: #0a0b0a;
    margin: 0;
    text-wrap: balance;
}
.hp-thesis__heading-muted {
    color: rgba(10,11,10,0.4);
}
.hp-thesis__right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 6px;
}
.hp-thesis__p {
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.6;
    color: #0a0b0a;
    margin: 0;
    text-wrap: pretty;
}
.hp-thesis__p--muted { color: rgba(10,11,10,0.65); }
.hp-thesis__p--bold { font-weight: 600; }
.hp-thesis__mark {
    background: #c8ff00;
    color: #0a0b0a;
    padding: 0 6px;
    font-weight: 600;
}

/* ── 5. HOW WE WORK ── */
.hp-how {
    background: #ecebe4;
    padding: clamp(72px, 10vh, 120px) 40px;
}
.hp-how__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.hp-how__heading {
    font-size: clamp(28px, 3.6vw, 48px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: #0a0b0a;
    margin: 0 0 56px;
    max-width: 800px;
    text-wrap: balance;
}
.hp-how__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.hp-how__card {
    background: #fff;
    border: 1px solid #e3e1d8;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 260px;
    transition: transform .22s ease, box-shadow .22s ease;
}
.hp-how__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px -6px rgba(17,17,17,0.12), 0 2px 4px rgba(17,17,17,0.05);
}
.hp-how__card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hp-how__num {
    font-family: var(--mono);
    font-size: 13px;
    color: rgba(10,11,10,0.45);
    font-weight: 600;
}
.hp-how__pill {
    background: #c8ff00;
    color: #0a0b0a;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
}
.hp-how__card-title {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #0a0b0a;
    margin: 8px 0 0;
}
.hp-how__card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(10,11,10,0.65);
    margin: 0;
    text-wrap: pretty;
}

/* ── 6. CASE STUDIES ── */
.hp-cases {
    background: #f4f2ec;
    padding: clamp(72px, 10vh, 120px) 40px;
}
.hp-cases__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.hp-cases__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 24px;
    flex-wrap: wrap;
}
.hp-cases__heading {
    font-size: clamp(28px, 3.6vw, 48px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: #0a0b0a;
    margin: 0;
    max-width: 700px;
    text-wrap: balance;
}
.hp-case-card {
    background: #fff;
    border: 1px solid #e3e1d8;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 16px;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.hp-case-card:last-child { margin-bottom: 0; }
.hp-case-card:hover {
    border-color: rgba(10,11,10,0.18);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px -6px rgba(17,17,17,0.12);
}
.hp-case-card__head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e3e1d8;
    align-items: start;
}
.hp-case-tag {
    display: inline-block;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10,11,10,0.5);
    background: #f4f2ec;
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}
.hp-case-card__title {
    font-size: clamp(20px, 2.2vw, 28px);
    font-weight: 500;
    letter-spacing: -0.025em;
    color: #0a0b0a;
    line-height: 1.15;
}
.hp-case-card__sub {
    font-size: 14px;
    color: rgba(10,11,10,0.6);
    margin: 6px 0 0;
}
.hp-case-metrics {
    display: flex;
    gap: 28px;
}
.hp-case-metric__val {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    color: #0a0b0a;
}
.hp-case-metric__val--up { color: #1f8f4c; }
.hp-case-metric__val--down { color: #c2341f; }
.hp-case-metric__label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(10,11,10,0.45);
    margin-top: 4px;
}
.hp-case-card__body {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 32px;
    align-items: center;
}
.hp-case-col-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10,11,10,0.5);
    margin-bottom: 8px;
}
.hp-case-col-text {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(10,11,10,0.7);
    margin: 0;
}

/* ── 7. MID-PAGE CTA ── */
.hp-midcta {
    background: #0a0b0a;
    padding: 64px 40px;
}
.hp-midcta__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.hp-midcta__left {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-width: 280px;
}
.hp-midcta__eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c8ff00;
}
.hp-midcta__heading {
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    max-width: 640px;
    text-wrap: balance;
}
.hp-midcta__mark {
    background: #c8ff00;
    color: #0a0b0a;
    padding: 0 8px;
}
.hp-midcta__btn {
    display: inline-flex;
    align-items: center;
    background: #c8ff00;
    color: #0a0b0a;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
    transition: background .18s ease, transform .18s ease;
}
.hp-midcta__btn:hover {
    background: #b2e600;
    color: #0a0b0a;
    transform: translateY(-1px);
}

/* ── 8. WHO WE ARE ── */
.hp-who {
    background: #ecebe4;
    padding: clamp(72px, 10vh, 120px) 40px;
}
.hp-who__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.hp-who__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.hp-who__heading {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: #0a0b0a;
    margin: 0 0 24px;
    text-wrap: balance;
}
.hp-who__p {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(10,11,10,0.65);
    margin: 0 0 16px;
    text-wrap: pretty;
}
.hp-who__link {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0a0b0a;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
}
.hp-who__link:hover { color: #1a1a1a; }
.hp-who__image {
    border-radius: 20px;
    overflow: hidden;
    background: #0a0b0a;
}
.hp-who__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}
.hp-who__placeholder {
    background: #0a0b0a;
    border-radius: 20px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── 9. TESTIMONIALS MARQUEE ── */
.hp-testi {
    background: #fff;
    padding: clamp(64px, 9vh, 100px) 0;
    overflow: hidden;
}
.hp-testi__head {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 36px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}
.hp-testi__heading {
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: #0a0b0a;
    margin: 0;
    text-wrap: balance;
}
.hp-testi__link {
    font-size: 14px;
    font-weight: 600;
    color: #0a0b0a;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1.5px;
    white-space: nowrap;
}
.hp-testi__marquee {
    overflow: hidden;
}
.hp-testi__track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: hp-testi-scroll 90s linear infinite;
    padding: 0 16px;
    will-change: transform;
}
.hp-testi__track:hover {
    animation-play-state: paused;
}
@keyframes hp-testi-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}
.hp-testi__card {
    background: #f4f2ec;
    border-radius: 16px;
    padding: 28px;
    width: 360px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hp-testi__metric {
    display: inline-flex;
    align-items: center;
    background: rgba(200,255,0,0.18);
    color: #1f8f4c;
    border-radius: 4px;
    padding: 4px 10px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    width: fit-content;
}
.hp-testi__quote {
    font-size: 14px;
    line-height: 1.6;
    color: #0a0b0a;
    margin: 0;
    flex: 1;
}
.hp-testi__author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(10,11,10,0.08);
    padding-top: 14px;
}
.hp-testi__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #ecebe4;
}
.hp-testi__avatar--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0b0a;
    color: #c8ff00;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.hp-testi__author-text {
    flex: 1;
    min-width: 0;
}
.hp-testi__name {
    font-size: 14px;
    font-weight: 600;
    color: #0a0b0a;
}
.hp-testi__role {
    font-size: 12px;
    color: rgba(10,11,10,0.55);
    margin-top: 2px;
}

/* ── Google reviews badge (under marquee) ── */
.hp-gbp {
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 0 40px;
    display: flex;
    justify-content: center;
}
.hp-gbp__inner {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 22px;
    border: 1px solid #e3e1d8;
    border-radius: 999px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: border-color .18s ease, transform .18s ease;
}
a.hp-gbp__inner:hover {
    border-color: rgba(10,11,10,0.3);
    transform: translateY(-1px);
}
.hp-gbp__label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(10,11,10,0.55);
}
.hp-gbp__stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    line-height: 1;
}
.hp-gbp__star {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    line-height: 1;
    font-size: 16px;
}
.hp-gbp__star-bg,
.hp-gbp__star-fg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    line-height: 1;
    overflow: hidden;
    white-space: nowrap;
}
.hp-gbp__star-bg {
    width: 100%;
    color: rgba(10,11,10,0.15);
}
.hp-gbp__star-fg {
    color: #f5b400; /* Google star yellow */
}
.hp-gbp__rating {
    font-size: 14px;
    font-weight: 700;
    color: #0a0b0a;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
}
.hp-gbp__count {
    font-size: 12px;
    color: rgba(10,11,10,0.5);
}
.hp-gbp__google {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding-left: 12px;
    margin-left: 4px;
    border-left: 1px solid #e3e1d8;
}
.hp-gbp__google-text {
    font-size: 12px;
    font-weight: 600;
    color: rgba(10,11,10,0.7);
}
@media (max-width: 640px) {
    .hp-gbp { padding: 0 24px; }
    .hp-gbp__inner { padding: 10px 16px; gap: 10px; flex-wrap: wrap; justify-content: center; }
    .hp-gbp__label { display: none; }
}

/* ── 10. FAQ ── */
.hp-faq {
    background: #f4f2ec;
    padding: clamp(72px, 10vh, 120px) 40px;
}
.hp-faq__inner {
    max-width: 880px;
    margin: 0 auto;
}
.hp-faq__heading {
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: #0a0b0a;
    margin: 0 0 48px;
    text-wrap: balance;
}
.hp-faq__list {
    border-top: 1px solid #e3e1d8;
}

/* ── 11. FINAL CTA ── */
.hp-cta {
    background: #c8ff00;
    padding: clamp(72px, 10vh, 120px) 40px;
}
.hp-cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.hp-cta__heading {
    font-size: clamp(32px, 4.2vw, 56px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.0;
    color: #0a0b0a;
    margin: 0;
    text-wrap: balance;
}
.hp-cta__sub {
    font-size: 15px;
    color: rgba(10,11,10,0.65);
    margin: 12px 0 0;
    max-width: 480px;
    line-height: 1.55;
}
.btn--cta-black {
    display: inline-flex;
    align-items: center;
    background: #0a0b0a;
    color: #fff;
    padding: 18px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
    transition: background .18s ease, transform .18s ease;
}
.btn--cta-black:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-1px);
}

/* ── Wrapper / spacing helpers ── */
.hp-thesis__left { display: flex; flex-direction: column; }
.hp-who__text { display: flex; flex-direction: column; }
/* FAQ items need consistent vertical rhythm in the homepage list */
.hp-faq__list .faq-item { margin-bottom: 8px; }

/* ── Mobile responsive ── */
@media (max-width: 1024px) {
    .hp-thesis__inner { grid-template-columns: 1fr; gap: 40px; }
    .hp-how__grid { grid-template-columns: 1fr; gap: 16px; }
    .hp-case-card__head { grid-template-columns: 1fr; gap: 20px; }
    .hp-case-card__body { grid-template-columns: 1fr; gap: 24px; }
    .hp-case-metrics { gap: 20px; }
    .hp-who__grid { grid-template-columns: 1fr; gap: 40px; }
    .hp-metrics__inner { grid-template-columns: repeat(2,1fr); gap: 24px; }
    .hp-metrics__link { grid-column: 1 / -1; justify-self: start; }
    .hp-cta__inner, .hp-midcta__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
    .hp-hero { padding: 64px 24px 80px; }
    .hp-metrics { padding: 32px 24px; }
    .hp-trusted__head, .hp-thesis, .hp-how, .hp-cases, .hp-midcta, .hp-who, .hp-testi__head, .hp-faq, .hp-cta {
        padding-left: 24px;
        padding-right: 24px;
    }
    .hp-testi__head { padding: 0 24px 28px; }
    .hp-metrics__inner { grid-template-columns: 1fr 1fr; gap: 20px; }
    .hp-metric { padding-left: 16px; }
    .hp-case-metrics { flex-wrap: wrap; gap: 14px; }
    .hp-testi__card { width: 280px; padding: 22px; }
    .hp-trusted__track { gap: 40px; }
    .hp-trusted__logo { font-size: 18px; }
}
@media (prefers-reduced-motion: reduce) {
    .hp-trusted__track, .hp-testi__track { animation: none; }
    .hp-hero__urgency-dot { animation: none; }
}

/* === From page-about.php === */
/* ═══════════════════════════════════════
   ABOUT PAGE — Mowsix Design System
═══════════════════════════════════════ */

/* ── 1. HERO — lime full-bleed ── */
.ab-hero {
    background: #c8ff00;
    padding: clamp(80px, 12vh, 140px) 40px clamp(96px, 14vh, 160px);
    position: relative;
    overflow: hidden;
}
.ab-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.ab-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0a0b0a;
    margin-bottom: 28px;
}
.ab-hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    background: #0a0b0a;
    border-radius: 999px;
    flex-shrink: 0;
}
.ab-hero h1 {
    font-size: clamp(40px, 7vw, 90px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #0a0b0a;
    margin: 0 0 28px;
    max-width: 1100px;
    text-wrap: balance;
}
.ab-hero__mark {
    background: #0a0b0a;
    color: #c8ff00;
    padding: 0 12px;
    display: inline-block;
    line-height: 1;
}
.ab-hero__sub {
    max-width: 580px;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 400;
    line-height: 1.5;
    color: #0a0b0a;
    opacity: 0.82;
    margin: 0;
}

/* ── 2. STORY — sticky number, 2-column ── */
.ab-story {
    background: #f4f2ec;
    padding: clamp(72px, 10vh, 120px) 40px;
}
.ab-story__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}
.ab-story__sticky {
    position: sticky;
    top: 96px;
    align-self: start;
}
.ab-story__num {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    color: rgba(10,11,10,0.45);
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}
.ab-story__heading {
    font-size: clamp(36px, 4.4vw, 60px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.0;
    color: #0a0b0a;
    margin: 0;
    text-wrap: balance;
}
.ab-story__heading-muted { color: rgba(10,11,10,0.4); }
.ab-story__body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 6px;
}
.ab-story__p {
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.65;
    color: #0a0b0a;
    margin: 0;
    text-wrap: pretty;
}
.ab-story__p--muted { color: rgba(10,11,10,0.65); }
.ab-story__p--bold { font-weight: 600; }
.ab-story__mark {
    background: #c8ff00;
    color: #0a0b0a;
    padding: 0 6px;
    font-weight: 600;
}

/* ── 3. VALUES — 4 cards ── */
.ab-values {
    background: #ecebe4;
    padding: clamp(72px, 10vh, 120px) 40px;
}
.ab-values__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.ab-values__head {
    margin-bottom: 56px;
}
.ab-values__heading {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: #0a0b0a;
    margin: 0;
    max-width: 700px;
    text-wrap: balance;
}
.ab-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.ab-value-card {
    background: #fff;
    border: 1px solid #e3e1d8;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 280px;
    transition: transform .22s ease, box-shadow .22s ease;
}
.ab-value-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px -6px rgba(17,17,17,0.12), 0 2px 4px rgba(17,17,17,0.04);
}
.ab-value-card__num {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(10,11,10,0.45);
    font-weight: 600;
    letter-spacing: 0.08em;
}
.ab-value-card__title {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #0a0b0a;
    margin: 0;
}
.ab-value-card__text {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(10,11,10,0.65);
    margin: 0;
    flex: 1;
}
.ab-value-card__pill {
    background: #c8ff00;
    color: #0a0b0a;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    align-self: flex-start;
    margin-top: auto;
}

/* ── 4. TEAM — profile cards ── */
.ab-team {
    background: #f4f2ec;
    padding: clamp(72px, 10vh, 120px) 40px;
}
.ab-team__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.ab-team__head {
    margin-bottom: 56px;
}
.ab-team__heading {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: #0a0b0a;
    margin: 0;
    max-width: 600px;
    text-wrap: balance;
}
.ab-team__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
/* Center single card when only one founder is shown */
.ab-team__grid--single {
    grid-template-columns: 1fr;
    max-width: 600px;
}
.ab-team-card {
    background: #fff;
    border: 1px solid #e3e1d8;
    border-radius: 20px;
    padding: 28px;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    align-items: start;
}
.ab-team-card__photo {
    width: 120px;
    height: 140px;
    border-radius: 14px;
    overflow: hidden;
    background: #0a0b0a;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ab-team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ab-team-card__photo-placeholder {
    color: rgba(255,255,255,0.3);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    padding: 0 12px;
}
.ab-team-card__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.ab-team-card__role {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(10,11,10,0.5);
}
.ab-team-card__name {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: #0a0b0a;
    margin: 0;
}
.ab-team-card__bio {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(10,11,10,0.65);
    margin: 6px 0 0;
}
.ab-team-card__links {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}
.ab-team-card__link {
    font-size: 12px;
    font-weight: 600;
    color: #0a0b0a;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}
.ab-team-card__link:hover {
    color: #1a1a1a;
}

/* ── 5. LOCATIONS — dark band ── */
.ab-locations {
    background: #0a0b0a;
    padding: clamp(72px, 10vh, 120px) 40px;
    color: #fff;
}
.ab-locations__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.ab-locations__head {
    margin-bottom: 48px;
}
.ab-locations__eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 14px;
}
.ab-locations__heading {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: #fff;
    margin: 0;
    max-width: 720px;
    text-wrap: balance;
}
.ab-locations__heading mark {
    background: #c8ff00;
    color: #0a0b0a;
    padding: 0 8px;
}
.ab-locations__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.ab-loc-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px;
}
.ab-loc-card__flag {
    font-size: 28px;
    margin-bottom: 16px;
    line-height: 1;
}
.ab-loc-card__country {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
}
.ab-loc-card__city {
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 12px;
}
.ab-loc-card__detail {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* ── 6. FINAL CTA — lime, mirrors design system ── */
.ab-cta {
    background: #c8ff00;
    padding: clamp(72px, 10vh, 120px) 40px;
}
.ab-cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.ab-cta__heading {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1.0;
    color: #0a0b0a;
    margin: 0;
    text-wrap: balance;
}
.ab-cta__sub {
    font-size: 15px;
    color: rgba(10,11,10,0.65);
    margin: 12px 0 0;
    max-width: 520px;
    line-height: 1.55;
}
.ab-cta__btn {
    display: inline-flex;
    align-items: center;
    background: #0a0b0a;
    color: #fff;
    padding: 18px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
    transition: background .18s ease, transform .18s ease;
}
.ab-cta__btn:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-1px);
}

/* ── Mobile ── */
@media (max-width: 1024px) {
    .ab-story__inner { grid-template-columns: 1fr; gap: 40px; }
    .ab-story__sticky { position: static; }
    .ab-values__grid { grid-template-columns: repeat(2, 1fr); }
    .ab-team__grid { grid-template-columns: 1fr; }
    .ab-locations__grid { grid-template-columns: 1fr; }
    .ab-cta__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
    .ab-hero { padding: 64px 24px 80px; }
    .ab-story, .ab-values, .ab-team, .ab-locations, .ab-cta { padding-left: 24px; padding-right: 24px; }
    .ab-values__grid { grid-template-columns: 1fr; gap: 14px; }
    .ab-team-card { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
    .ab-team-card__photo { width: 100%; height: 220px; }
    .ab-loc-card { padding: 24px; }
}

/* === From page-legal.php === */
.legal-hero{background:var(--black);padding:100px 0 64px;position:relative;overflow:hidden;}
.legal-hero__inner{max-width:780px;margin:0 auto;padding:0 40px;position:relative;z-index:2;}
.legal-badge{display:inline-flex;align-items:center;gap:8px;background:rgba(200,255,0,0.1);border:1px solid rgba(200,255,0,0.2);color:var(--accent);font-family:var(--mono);font-size:11px;letter-spacing:0.1em;text-transform:uppercase;padding:5px 14px;border-radius:999px;margin-bottom:20px;}
.legal-title{font-size:clamp(32px,4.5vw,52px);font-weight:300;letter-spacing:-0.04em;color:var(--white);line-height:1.08;margin-bottom:16px;}
.legal-title strong{font-weight:700;color:var(--accent);}
.legal-meta{font-family:var(--mono);font-size:12px;color:rgba(255,255,255,0.3);letter-spacing:0.04em;}
.legal-body{background:var(--white);padding:64px 0 96px;}
.legal-body__inner{max-width:780px;margin:0 auto;padding:0 40px;}
.legal-body__inner h2{font-size:22px;font-weight:600;color:var(--black);margin:40px 0 14px;letter-spacing:-0.02em;}
.legal-body__inner h2:first-child{margin-top:0;}
.legal-body__inner h3{font-size:17px;font-weight:600;color:var(--black);margin:28px 0 10px;}
.legal-body__inner p{font-size:15px;font-weight:300;color:var(--text-2);line-height:1.8;margin-bottom:18px;}
.legal-body__inner ul,.legal-body__inner ol{margin:0 0 18px 20px;padding:0;}
.legal-body__inner li{font-size:15px;font-weight:300;color:var(--text-2);line-height:1.75;margin-bottom:8px;}
.legal-body__inner a{color:var(--black);font-weight:500;text-decoration:underline;}
.legal-body__inner a:hover{color:var(--text-2);}
.legal-divider{height:1px;background:var(--mid);margin:32px 0;}
.legal-back{display:inline-flex;align-items:center;gap:8px;font-family:var(--mono);font-size:12px;color:var(--muted);text-decoration:none;margin-top:48px;transition:color .2s;}
.legal-back:hover{color:var(--black);}
@media(max-width:600px){
    .legal-hero__inner,.legal-body__inner{padding:0 24px;}
    .legal-hero{padding:80px 0 48px;}
    .legal-body{padding:48px 0 72px;}
}

/* === From page-nigeria.php === */
.ng-hero{background:var(--black);padding:120px 0 0;position:relative;overflow:hidden;}
.ng-hero__grid{position:absolute;inset:0;background-image:linear-gradient(rgba(200,255,0,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(200,255,0,0.03) 1px,transparent 1px);background-size:60px 60px;}
.ng-hero__glow{position:absolute;top:-120px;right:-80px;width:600px;height:600px;background:radial-gradient(circle,rgba(200,255,0,0.1) 0%,transparent 65%);pointer-events:none;}
.ng-inner{max-width:var(--max-width);margin:0 auto;padding:0 40px;position:relative;z-index:2;}
.ng-label{display:inline-flex;align-items:center;gap:8px;font-family:var(--mono);font-size:11px;letter-spacing:0.12em;text-transform:uppercase;color:rgba(255,255,255,0.35);margin-bottom:20px;}
.ng-label::before{content:'';display:block;width:20px;height:1px;background:rgba(255,255,255,0.2);}
.ng-title{font-size:clamp(40px,6vw,72px);font-weight:300;letter-spacing:-0.05em;color:var(--white);line-height:1.02;margin-bottom:20px;}
.ng-title strong{font-weight:700;color:var(--accent);}
.ng-sub{font-size:17px;font-weight:300;color:rgba(255,255,255,0.5);line-height:1.75;max-width:560px;margin-bottom:48px;}
.ng-hero__actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:64px;}
.ng-stats{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid rgba(255,255,255,0.1);}
.ng-stat{padding:28px 0;border-right:1px solid rgba(255,255,255,0.07);}
.ng-stat:last-child{border-right:none;}
.ng-stat__num{font-size:clamp(24px,3.5vw,36px);font-weight:300;letter-spacing:-0.04em;color:var(--accent);line-height:1;margin-bottom:4px;}
.ng-stat__label{font-family:var(--mono);font-size:10px;letter-spacing:0.07em;text-transform:uppercase;color:rgba(255,255,255,0.3);}

/* Cities section */
.ng-cities{background:var(--white);padding:96px 0;border-bottom:1px solid var(--mid);}
.ng-cities-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:56px;}
.ng-city-card{border-radius:var(--radius-xl);padding:48px;position:relative;overflow:hidden;}
.ng-city-card--lagos{background:var(--black);}
.ng-city-card--abuja{background:var(--off-white);border:1px solid var(--mid);}
.ng-city-card__glow{position:absolute;bottom:-60px;right:-40px;width:300px;height:300px;background:radial-gradient(circle,rgba(200,255,0,0.08) 0%,transparent 70%);pointer-events:none;}
.ng-city-card__flag{font-size:36px;margin-bottom:16px;display:block;}
.ng-city-card__city{font-size:clamp(28px,3.5vw,40px);font-weight:300;letter-spacing:-0.04em;margin-bottom:6px;}
.ng-city-card--lagos .ng-city-card__city{color:var(--white);}
.ng-city-card--abuja .ng-city-card__city{color:var(--black);}
.ng-city-card__desc{font-size:15px;font-weight:300;line-height:1.7;margin-bottom:24px;}
.ng-city-card--lagos .ng-city-card__desc{color:rgba(255,255,255,0.55);}
.ng-city-card--abuja .ng-city-card__desc{color:var(--text-2);}
.ng-city-tag{display:inline-flex;align-items:center;gap:6px;font-family:var(--mono);font-size:10px;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;padding:5px 12px;border-radius:999px;}
.ng-city-card--lagos .ng-city-tag{background:var(--accent);color:var(--black);}
.ng-city-card--abuja .ng-city-tag{background:var(--black);color:var(--white);}
.ng-city-industries{display:flex;flex-wrap:wrap;gap:8px;margin-top:20px;}
.ng-city-ind{font-family:var(--mono);font-size:11px;padding:4px 10px;border-radius:999px;border:1px solid;}
.ng-city-card--lagos .ng-city-ind{border-color:rgba(255,255,255,0.15);color:rgba(255,255,255,0.5);}
.ng-city-card--abuja .ng-city-ind{border-color:var(--mid);color:var(--muted);}

/* Why Nigeria section */
.ng-why{background:var(--off-white);padding:96px 0;}
.ng-why-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start;margin-top:56px;}
.ng-why-list{display:flex;flex-direction:column;gap:0;}
.ng-why-item{display:flex;gap:20px;align-items:flex-start;padding:24px 0;border-bottom:1px solid var(--mid);}
.ng-why-item:last-child{border-bottom:none;}
.ng-why-item__num{font-family:var(--mono);font-size:11px;color:var(--muted);flex-shrink:0;padding-top:3px;}
.ng-why-item__title{font-size:16px;font-weight:600;color:var(--black);margin-bottom:6px;}
.ng-why-item__text{font-size:14px;font-weight:300;color:var(--text-2);line-height:1.7;}
.ng-why-right{background:var(--black);border-radius:var(--radius-xl);padding:40px;position:sticky;top:96px;}
.ng-why-right__label{font-family:var(--mono);font-size:10px;letter-spacing:0.1em;text-transform:uppercase;color:rgba(255,255,255,0.35);margin-bottom:20px;}
.ng-why-right__stat{margin-bottom:32px;padding-bottom:28px;border-bottom:1px solid rgba(255,255,255,0.08);}
.ng-why-right__stat:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0;}
.ng-why-right__val{font-size:clamp(28px,3.5vw,40px);font-weight:300;letter-spacing:-0.04em;color:var(--accent);line-height:1;margin-bottom:6px;}
.ng-why-right__desc{font-size:13px;font-weight:300;color:rgba(255,255,255,0.45);line-height:1.6;}

/* Services section */
.ng-services{background:var(--white);padding:96px 0;border-top:1px solid var(--mid);}
.ng-services-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:56px;}
.ng-svc-card{background:var(--off-white);border:1px solid var(--mid);border-radius:var(--radius-lg);padding:32px;transition:border-color .2s,transform .2s;}
.ng-svc-card:hover{border-color:var(--accent);transform:translateY(-3px);}
.ng-svc-icon{font-size:28px;margin-bottom:14px;display:block;}
.ng-svc-title{font-size:17px;font-weight:600;color:var(--black);margin-bottom:8px;}
.ng-svc-text{font-size:14px;font-weight:300;color:var(--text-2);line-height:1.7;}

/* Industries */
.ng-industries{background:var(--off-white);padding:96px 0;border-top:1px solid var(--mid);}
.ng-ind-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:56px;}
.ng-ind-card{background:var(--white);border:1px solid var(--mid);border-radius:var(--radius-lg);padding:28px;text-decoration:none;color:inherit;display:block;transition:border-color .2s,transform .2s;}
.ng-ind-card:hover{border-color:var(--accent);transform:translateY(-3px);}
.ng-ind-icon{font-size:28px;margin-bottom:12px;display:block;}
.ng-ind-title{font-size:16px;font-weight:600;color:var(--black);margin-bottom:6px;}
.ng-ind-desc{font-size:13px;font-weight:300;color:var(--text-2);line-height:1.6;margin-bottom:12px;}
.ng-ind-arrow{font-family:var(--mono);font-size:11px;color:var(--muted);transition:color .2s;}
.ng-ind-card:hover .ng-ind-arrow{color:var(--black);}

/* CTA */
.ng-cta{background:var(--accent);padding:96px 0;}
.ng-cta__inner{max-width:var(--max-width);margin:0 auto;padding:0 40px;display:flex;align-items:center;justify-content:space-between;gap:48px;flex-wrap:wrap;}

.reveal{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease;}
.reveal.in-view{opacity:1;transform:translateY(0);}
@keyframes fadeUp{from{opacity:0;transform:translateY(22px);}to{opacity:1;transform:translateY(0);}}
@media(max-width:900px){
    .ng-inner{padding:0 24px;}
    .ng-hero{padding:80px 0 0;}
    .ng-stats{grid-template-columns:repeat(2,1fr);}
    .ng-cities-grid,.ng-why-grid,.ng-services-grid{grid-template-columns:1fr;gap:16px;}
    .ng-why-right{position:static;}
    .ng-ind-grid{grid-template-columns:repeat(2,1fr);}
    .ng-cities{padding:64px 0;}
    .ng-why,.ng-services,.ng-industries{padding:64px 0;}
    .ng-cta__inner{flex-direction:column;align-items:flex-start;padding:0 24px;}
    .ng-cta{padding:64px 0;}
}
@media(max-width:480px){
    .ng-hero__actions{flex-direction:column;align-items:stretch;}
    .ng-hero__actions a{text-align:center;justify-content:center;}
    .ng-stats{grid-template-columns:1fr 1fr;}
    .ng-ind-grid{grid-template-columns:1fr;}
    .ng-city-card{padding:32px 24px;}
}
.ng-press-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:40px;}
.ng-press-card{display:block;background:var(--off-white);border:1px solid var(--mid);border-radius:var(--radius-lg);padding:28px;text-decoration:none;color:inherit;transition:border-color .2s,transform .2s;position:relative;}
.ng-press-card:hover{border-color:var(--black);transform:translateY(-3px);}
.ng-press-card__pub{font-family:var(--mono);font-size:10px;letter-spacing:0.1em;text-transform:uppercase;color:var(--muted);margin-bottom:12px;}
.ng-press-card__headline{font-size:16px;font-weight:600;color:var(--black);line-height:1.45;margin-bottom:12px;letter-spacing:-0.02em;}
.ng-press-card__name{font-size:12px;font-weight:300;color:var(--text-2);margin-bottom:16px;}
.ng-press-card__cta{font-family:var(--mono);font-size:11px;color:var(--muted);transition:color .2s;}
.ng-press-card:hover .ng-press-card__cta{color:var(--black);}
.ng-press-bio{display:flex;gap:24px;align-items:flex-start;background:var(--black);border-radius:var(--radius-xl);padding:36px;}
.ng-press-bio__avatar{width:60px;height:60px;border-radius:50%;background:var(--accent);color:var(--black);display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:700;flex-shrink:0;letter-spacing:-0.5px;}
.ng-press-bio__name{font-size:18px;font-weight:600;color:var(--white);margin-bottom:4px;letter-spacing:-0.02em;}
.ng-press-bio__title{font-family:var(--mono);font-size:11px;color:var(--accent);letter-spacing:0.05em;margin-bottom:14px;}
.ng-press-bio__text{font-size:14px;font-weight:300;color:rgba(255,255,255,0.55);line-height:1.75;}
@media(max-width:900px){.ng-press-grid{grid-template-columns:1fr;}.ng-press-bio{flex-direction:column;gap:16px;}}
.ng-wrong-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-bottom:40px;}
.ng-wrong-card{background:var(--white);border:1px solid var(--mid);border-radius:var(--radius-lg);padding:28px;display:flex;gap:16px;align-items:flex-start;transition:border-color .2s;}
.ng-wrong-card:hover{border-color:rgba(200,255,0,0.5);}
.ng-wrong-card__icon{font-size:22px;flex-shrink:0;margin-top:2px;}
.ng-wrong-card__title{font-size:16px;font-weight:600;color:var(--black);margin-bottom:6px;letter-spacing:-0.02em;}
.ng-wrong-card__text{font-size:14px;font-weight:300;color:var(--text-2);line-height:1.7;}
.ng-wrong-footer{background:var(--black);border-radius:var(--radius-xl);padding:36px 40px;display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap;}
.ng-wrong-footer__text{font-size:16px;font-weight:300;color:rgba(255,255,255,0.65);line-height:1.6;max-width:520px;}
.ng-wrong-footer__cta{background:var(--accent);color:var(--black);padding:14px 28px;border-radius:var(--radius);font-size:14px;font-weight:700;text-decoration:none;white-space:nowrap;transition:background .2s;}
.ng-wrong-footer__cta:hover{background:var(--accent-dark);}
@media(max-width:900px){.ng-wrong-grid{grid-template-columns:1fr;}.ng-wrong-footer{flex-direction:column;align-items:flex-start;padding:28px;}}
@keyframes pulse-dot{0%,100%{opacity:1;transform:scale(1);}50%{opacity:0.5;transform:scale(1.4);}}

/* === From page-solutions.php === */
.sol-hero{background:var(--black);padding:120px 0 80px;position:relative;overflow:hidden;}
.sol-hero__grid{position:absolute;inset:0;background-image:linear-gradient(rgba(200,255,0,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(200,255,0,0.03) 1px,transparent 1px);background-size:80px 80px;}
.sol-hero__glow{position:absolute;top:-120px;right:-60px;width:600px;height:600px;background:radial-gradient(circle,rgba(200,255,0,0.1) 0%,transparent 65%);pointer-events:none;}
.sol-hero__inner{max-width:var(--max-width);margin:0 auto;padding:0 40px;position:relative;z-index:2;}
.sol-hero__label{display:inline-flex;align-items:center;gap:8px;font-family:var(--mono);font-size:11px;letter-spacing:0.12em;text-transform:uppercase;color:rgba(255,255,255,0.35);margin-bottom:20px;}
.sol-hero__label::before{content:'';display:block;width:20px;height:1px;background:rgba(255,255,255,0.2);}
.sol-hero__title{font-size:clamp(44px,6vw,72px);font-weight:300;letter-spacing:-0.05em;color:var(--white);line-height:1.02;margin-bottom:20px;}
.sol-hero__title strong{font-weight:700;color:var(--accent);}
.sol-hero__sub{font-size:17px;font-weight:300;color:rgba(255,255,255,0.5);line-height:1.7;max-width:560px;}

.sol-grid-section{background:var(--off-white);padding:96px 0;}
.sol-grid-inner{max-width:var(--max-width);margin:0 auto;padding:0 40px;}
.sol-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:64px;}
.sol-cards .sol-card-wide{grid-column:1/-1;}
.sol-card{background:var(--white);border:1px solid var(--mid);border-radius:var(--radius-xl);padding:44px;position:relative;overflow:hidden;text-decoration:none;color:inherit;display:block;transition:border-color .25s,transform .25s;}
.sol-card:hover{border-color:var(--accent);transform:translateY(-5px);}
.sol-card__accent{position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--accent),var(--accent-dark));transform:scaleX(0);transform-origin:left;transition:transform .3s;}
.sol-card:hover .sol-card__accent{transform:scaleX(1);}
.sol-card__icon{font-size:44px;margin-bottom:20px;display:block;}
.sol-card__tag{font-family:var(--mono);font-size:10px;letter-spacing:0.1em;text-transform:uppercase;color:var(--muted);margin-bottom:10px;}
.sol-card__title{font-size:26px;font-weight:600;color:var(--black);margin-bottom:10px;letter-spacing:-0.03em;}
.sol-card__desc{font-size:15px;font-weight:300;color:var(--text-2);line-height:1.7;margin-bottom:28px;}
.sol-card__metrics{display:flex;gap:24px;padding-top:24px;border-top:1px solid var(--mid);flex-wrap:wrap;}
.sol-card__metric-val{font-size:26px;font-weight:300;letter-spacing:-0.04em;color:var(--black);line-height:1;}
.sol-card__metric-label{font-family:var(--mono);font-size:10px;letter-spacing:0.07em;text-transform:uppercase;color:var(--muted);margin-top:3px;}
.sol-card__cta{display:inline-flex;align-items:center;gap:8px;font-family:var(--mono);font-size:12px;color:var(--muted);transition:color .2s,gap .2s;margin-top:20px;}
.sol-card:hover .sol-card__cta{color:var(--black);gap:14px;}

.sol-common{background:var(--white);border-top:1px solid var(--mid);padding:96px 0;}
.sol-common__inner{max-width:var(--max-width);margin:0 auto;padding:0 40px;}
.sol-common__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:56px;}
.sol-common__item{background:var(--off-white);border:1px solid var(--mid);border-radius:var(--radius-lg);padding:28px;transition:border-color .2s;}
.sol-common__item:hover{border-color:var(--black);}
.sol-common__icon{font-size:28px;margin-bottom:12px;display:block;}
.sol-common__title{font-size:15px;font-weight:600;color:var(--black);margin-bottom:6px;}
.sol-common__text{font-size:13px;font-weight:300;color:var(--text-2);line-height:1.65;}

.sol-cta{background:var(--accent);padding:96px 0;}
.sol-cta__inner{max-width:var(--max-width);margin:0 auto;padding:0 40px;display:flex;align-items:center;justify-content:space-between;gap:48px;flex-wrap:wrap;}

.reveal{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease;}
.reveal.in-view{opacity:1;transform:translateY(0);}
@keyframes fadeUp{from{opacity:0;transform:translateY(22px);}to{opacity:1;transform:translateY(0);}}
@media(max-width:900px){.sol-cards{grid-template-columns:1fr;}.sol-common__grid{grid-template-columns:repeat(2,1fr);}.sol-hero__inner,.sol-grid-inner,.sol-common__inner,.sol-cta__inner{padding:0 24px;}.sol-cta__inner{flex-direction:column;align-items:flex-start;}}

/* === From single-service.php === */
/* ── Service Page Styles ── */

/* Hero */
.svc-hero {
    background: var(--black);
    color: var(--white);
    padding: 100px 0 0;
    overflow: hidden;
    position: relative;
}
.svc-hero__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}
.svc-hero__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.svc-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 24px;
}
.svc-hero__label::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: rgba(255,255,255,0.3);
}
.svc-hero__icon {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 24px;
    display: block;
}
.svc-hero__title {
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 300;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 24px;
}
.svc-hero__title strong {
    font-weight: 600;
    color: var(--accent);
}
.svc-hero__tagline {
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 40px;
}
.svc-hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 72px;
}
.btn--hero-primary {
    background: var(--accent);
    color: var(--black);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    display: inline-block;
}
.btn--hero-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn--hero-ghost {
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    text-decoration: none;
    transition: border-color .2s, color .2s;
    display: inline-block;
}
.btn--hero-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* Proof strip */
.svc-hero__proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.svc-hero__proof-item {
    padding: 32px 0;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.svc-hero__proof-item:last-child { border-right: none; }
.svc-hero__proof-val {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 300;
    letter-spacing: -0.04em;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}
.svc-hero__proof-label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
}

/* Noise texture overlay on hero */
.svc-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

/* Accent glow blob */
.svc-hero__blob {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,255,0,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* ── WHAT YOU GET (deliverable) ── */
.svc-deliverable {
    background: var(--accent);
    padding: 64px 0;
}
.svc-deliverable__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: center;
}
.svc-deliverable__label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(10,10,10,0.5);
    margin-bottom: 12px;
}
.svc-deliverable__heading {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 600;
    color: var(--black);
    line-height: 1.2;
}
.svc-deliverable__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--black);
    opacity: 0.8;
}

/* ── INCLUDED ── */
.svc-included {
    background: var(--white);
    padding: 96px 0;
    border-bottom: 1px solid var(--mid);
}
.svc-included__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.svc-included__left {
    position: sticky;
    top: 96px;
}
.svc-included__number {
    font-family: var(--mono);
    font-size: 80px;
    font-weight: 400;
    letter-spacing: -0.05em;
    color: var(--mid);
    line-height: 1;
    margin-bottom: 16px;
}
.svc-included__heading {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 20px;
}
.svc-included__heading strong { font-weight: 600; }
.svc-included__sub {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-2);
    line-height: 1.7;
}
.svc-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.svc-item {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    align-items: start;
    padding: 22px 0;
    border-bottom: 1px solid var(--mid);
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.svc-item.in-view {
    opacity: 1;
    transform: translateX(0);
}
.svc-item:first-child { border-top: 1px solid var(--mid); }
.svc-item__num {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--muted);
    padding-top: 4px;
}
.svc-item__text {
    font-size: 15px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.55;
}

/* ── IDEAL FOR ── */
.svc-ideal {
    background: var(--off-white);
    padding: 96px 0;
}
.svc-ideal__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}
.svc-ideal__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 16px;
}
.svc-ideal__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.svc-ideal__card {
    background: var(--white);
    border: 1px solid var(--mid);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color .2s, transform .2s;
}
.svc-ideal__card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}
.svc-ideal__card::before {
    content: '✓';
    position: absolute;
    top: 28px;
    right: 28px;
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
    line-height: 28px;
    text-align: center;
}
.svc-ideal__card-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    padding-right: 40px;
}

/* ── TIMELINE ── */
.svc-timeline-strip {
    background: var(--black);
    color: var(--white);
    padding: 64px 0;
}
.svc-timeline-strip__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.svc-timeline-strip__left { flex: 1; min-width: 240px; }
.svc-timeline-strip__label {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.svc-timeline-strip__val {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 300;
    letter-spacing: -0.03em;
    color: var(--white);
}
.svc-timeline-strip__val strong {
    font-weight: 600;
    color: var(--accent);
}
.svc-timeline-strip__steps {
    display: flex;
    gap: 0;
    flex: 2;
}
.svc-timeline-step {
    flex: 1;
    padding: 20px 24px;
    border-left: 1px solid rgba(255,255,255,0.1);
    position: relative;
}
.svc-timeline-step:first-child { border-left: none; }
.svc-timeline-step__num {
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}
.svc-timeline-step__title {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.svc-timeline-step__desc {
    font-size: 12px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

/* ── RELATED CASE STUDIES ── */
.svc-cases {
    background: var(--off-white);
    padding: 96px 0;
    border-top: 1px solid var(--mid);
}
.svc-cases__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}
.svc-cases__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
}
.svc-cases__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 20px;
}
.svc-case-card {
    background: var(--white);
    border: 1px solid var(--mid);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: border-color .2s, transform .2s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.svc-case-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.svc-case-card__tag {
    display: inline-block;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--off-white);
    color: var(--muted);
    margin-bottom: 16px;
}
.svc-case-card__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}
.svc-case-card__subtitle {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 24px;
}
.svc-case-card__metrics {
    display: flex;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--mid);
}
.svc-case-card__metric-val {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: -0.03em;
    color: var(--black);
}
.svc-case-card__metric-val--up { color: #1a7a1a; }
.svc-case-card__metric-val--down { color: #c05c00; }
.svc-case-card__metric-label {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ── OTHER SERVICES ── */
.svc-others {
    background: var(--white);
    padding: 96px 0;
    border-top: 1px solid var(--mid);
}
.svc-others__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}
.svc-others__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 48px;
}
.svc-other-card {
    border: 1px solid var(--mid);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: border-color .2s, background .2s;
    position: relative;
}
.svc-other-card:hover {
    border-color: var(--accent);
    background: rgba(200,255,0,0.03);
}
.svc-other-card__icon {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
}
.svc-other-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}
.svc-other-card__tagline {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 16px;
}
.svc-other-card__arrow {
    font-size: 14px;
    color: var(--muted);
    font-family: var(--mono);
    transition: color .2s, transform .2s;
    display: inline-block;
}
.svc-other-card:hover .svc-other-card__arrow {
    color: var(--black);
    transform: translateX(4px);
}

/* ── CTA BANNER ── */
.svc-cta {
    background: var(--accent);
    padding: 96px 0;
}
.svc-cta__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.svc-cta__heading {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 300;
    letter-spacing: -0.04em;
    color: var(--black);
    line-height: 1.1;
}
.svc-cta__heading strong { font-weight: 600; }
.svc-cta__sub {
    font-size: 15px;
    color: rgba(10,10,10,0.65);
    margin-top: 10px;
    max-width: 440px;
}
.btn--cta-dark {
    background: var(--black);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    display: inline-block;
}
.btn--cta-dark:hover { background: #222; transform: translateY(-1px); }

/* ── ANIMATIONS ── */
.animate-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .svc-hero__inner { padding: 0 24px; }
    .svc-hero__proof { grid-template-columns: 1fr 1fr; }
    .svc-hero__proof-item:last-child { grid-column: 1 / -1; border-right: none; border-top: 1px solid rgba(255,255,255,0.08); }
    .svc-deliverable__inner { grid-template-columns: 1fr; gap: 24px; padding: 0 24px; }
    .svc-included__inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
    .svc-included__left { position: static; }
    .svc-ideal__inner, .svc-cases__inner, .svc-others__inner, .svc-cta__inner, .svc-timeline-strip__inner { padding: 0 24px; }
    .svc-cases__grid { grid-template-columns: 1fr; }
    .svc-timeline-strip__steps { flex-direction: column; gap: 16px; }
    .svc-timeline-step { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0; }
    .svc-timeline-step:first-child { border-top: none; }
    .svc-cta__inner { flex-direction: column; align-items: flex-start; }
}

/* === From single-solution.php === */
.vsol-hero{background:var(--black);padding:120px 0 0;position:relative;overflow:hidden;}
.vsol-hero__grid{position:absolute;inset:0;background-image:linear-gradient(rgba(200,255,0,0.025) 1px,transparent 1px),linear-gradient(90deg,rgba(200,255,0,0.025) 1px,transparent 1px);background-size:80px 80px;}
.vsol-hero__glow{position:absolute;top:-120px;right:-80px;width:700px;height:700px;background:radial-gradient(circle,rgba(200,255,0,0.09) 0%,transparent 65%);pointer-events:none;}
.vsol-hero__inner{max-width:var(--max-width);margin:0 auto;padding:0 40px;position:relative;z-index:2;}
.vsol-hero__top{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:end;padding-bottom:0;}
.vsol-hero__label{display:inline-flex;align-items:center;gap:8px;font-family:var(--mono);font-size:11px;letter-spacing:0.12em;text-transform:uppercase;color:rgba(255,255,255,0.35);margin-bottom:20px;}
.vsol-hero__label::before{content:'';display:block;width:20px;height:1px;background:rgba(255,255,255,0.2);}
.vsol-hero__icon{font-size:52px;display:block;margin-bottom:20px;}
.vsol-hero__title{font-size:clamp(42px,6vw,70px);font-weight:300;letter-spacing:-0.05em;color:var(--white);line-height:1.02;margin-bottom:20px;}
.vsol-hero__title strong{font-weight:700;color:var(--accent);}
.vsol-hero__body{font-size:17px;font-weight:300;color:rgba(255,255,255,0.5);line-height:1.8;margin-bottom:36px;}
.vsol-hero__actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:72px;}
.vsol-hero__proof{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid rgba(255,255,255,0.1);}
.vsol-proof-item{padding:32px 0;border-right:1px solid rgba(255,255,255,0.07);}
.vsol-proof-item:last-child{border-right:none;}
.vsol-proof-val{font-size:clamp(28px,4vw,44px);font-weight:300;letter-spacing:-0.04em;color:var(--accent);line-height:1;margin-bottom:6px;}
.vsol-proof-label{font-family:var(--mono);font-size:10px;letter-spacing:0.07em;text-transform:uppercase;color:rgba(255,255,255,0.3);}

/* Challenges */
.vsol-challenges{background:var(--white);padding:96px 0;border-bottom:1px solid var(--mid);}
.vsol-ch-inner{max-width:var(--max-width);margin:0 auto;padding:0 40px;}
.vsol-ch-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:56px;}
.vsol-ch-card{background:var(--off-white);border:1px solid var(--mid);border-radius:var(--radius-lg);padding:32px;transition:border-color .2s,transform .2s;}
.vsol-ch-card:hover{border-color:var(--black);transform:translateY(-3px);}
.vsol-ch-icon{font-size:28px;margin-bottom:14px;display:block;}
.vsol-ch-title{font-size:17px;font-weight:600;color:var(--black);margin-bottom:8px;}
.vsol-ch-text{font-size:14px;font-weight:300;color:var(--text-2);line-height:1.7;}

/* What we do */
.vsol-approach{background:var(--black);padding:96px 0;}
.vsol-app-inner{max-width:var(--max-width);margin:0 auto;padding:0 40px;}
.vsol-app-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:56px;}
.vsol-app-card{background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);border-radius:var(--radius-lg);padding:32px;transition:background .2s;}
.vsol-app-card:hover{background:rgba(255,255,255,0.07);}
.vsol-app-icon{font-size:28px;margin-bottom:14px;display:block;}
.vsol-app-title{font-size:17px;font-weight:600;color:var(--white);margin-bottom:8px;}
.vsol-app-text{font-size:14px;font-weight:300;color:rgba(255,255,255,0.5);line-height:1.7;}

/* Results */
.vsol-results{background:var(--off-white);padding:96px 0;border-top:1px solid var(--mid);}
.vsol-res-inner{max-width:var(--max-width);margin:0 auto;padding:0 40px;}
.vsol-res-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:56px;}
.vsol-res-card{background:var(--white);border:1px solid var(--mid);border-radius:var(--radius-xl);padding:36px;transition:border-color .2s,transform .2s;}
.vsol-res-card:hover{border-color:rgba(200,255,0,0.5);transform:translateY(-3px);}
.vsol-res-tag{font-family:var(--mono);font-size:10px;letter-spacing:0.1em;text-transform:uppercase;color:var(--muted);border:1px solid var(--mid);display:inline-block;padding:4px 10px;border-radius:999px;margin-bottom:14px;}
.vsol-res-name{font-size:20px;font-weight:600;color:var(--black);margin-bottom:4px;}
.vsol-res-type{font-size:13px;font-weight:300;color:var(--text-2);margin-bottom:20px;}
.vsol-res-outcome{font-size:14px;font-weight:400;color:var(--text);line-height:1.65;padding-top:16px;border-top:1px solid var(--mid);}

/* FAQ */
.vsol-faq{background:var(--white);padding:96px 0;border-top:1px solid var(--mid);}
.vsol-faq-inner{max-width:720px;margin:0 auto;padding:0 40px;}
.vsol-others{background:var(--off-white);padding:80px 0;border-top:1px solid var(--mid);}
.vsol-others-inner{max-width:var(--max-width);margin:0 auto;padding:0 40px;}
.vsol-others-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:40px;}
.vsol-other-card{background:var(--white);border:1px solid var(--mid);border-radius:var(--radius-lg);padding:24px;text-decoration:none;color:inherit;display:block;transition:border-color .2s,transform .2s;}
.vsol-other-card:hover{border-color:var(--accent);transform:translateY(-3px);}
.vsol-other-icon{font-size:26px;margin-bottom:10px;display:block;}
.vsol-other-title{font-size:15px;font-weight:600;color:var(--black);margin-bottom:4px;}
.vsol-other-desc{font-size:12px;font-weight:300;color:var(--text-2);line-height:1.5;margin-bottom:12px;}
.vsol-other-arrow{font-family:var(--mono);font-size:11px;color:var(--muted);transition:color .2s;}
.vsol-other-card:hover .vsol-other-arrow{color:var(--black);}

/* CTA */
.vsol-cta{background:var(--accent);padding:96px 0;}
.vsol-cta-inner{max-width:var(--max-width);margin:0 auto;padding:0 40px;display:flex;align-items:center;justify-content:space-between;gap:48px;flex-wrap:wrap;}

.btn--vsol-primary{background:var(--accent);color:var(--black);padding:16px 32px;border-radius:var(--radius);font-weight:700;font-size:15px;text-decoration:none;transition:background .2s,transform .15s;display:inline-flex;align-items:center;gap:8px;}
.btn--vsol-primary:hover{background:var(--accent-dark);transform:translateY(-2px);}
.btn--vsol-ghost{border:1px solid rgba(255,255,255,0.2);color:rgba(255,255,255,0.75);padding:16px 32px;border-radius:var(--radius);font-size:15px;text-decoration:none;transition:border-color .2s,color .2s;display:inline-flex;align-items:center;gap:8px;}
.btn--vsol-ghost:hover{border-color:rgba(255,255,255,0.5);color:var(--white);}

.reveal{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease;}
.reveal.in-view{opacity:1;transform:translateY(0);}
@keyframes fadeUp{from{opacity:0;transform:translateY(22px);}to{opacity:1;transform:translateY(0);}}
@media(max-width:900px){
    .vsol-hero__top,.vsol-ch-grid,.vsol-app-grid,.vsol-res-grid,.vsol-others-grid{grid-template-columns:1fr;}
    .vsol-hero__proof{grid-template-columns:repeat(2,1fr);}
    .vsol-hero__inner,.vsol-ch-inner,.vsol-app-inner,.vsol-res-inner,.vsol-faq-inner,.vsol-others-inner,.vsol-cta-inner{padding:0 24px;}
    .vsol-cta-inner{flex-direction:column;align-items:flex-start;}
    .vsol-hero__actions{margin-bottom:40px;}
}
.vsol-stack-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(190px,1fr));gap:10px;}
.vsol-stack-chip{background:var(--white);border:1px solid var(--mid);border-radius:var(--radius);padding:14px 16px;display:flex;align-items:center;gap:12px;transition:border-color .2s,transform .2s;}
.vsol-stack-chip:hover{border-color:var(--black);transform:translateY(-2px);}
.vsol-stack-name{font-size:13px;font-weight:600;color:var(--black);line-height:1.3;}
.vsol-stack-cat{font-family:var(--mono);font-size:10px;color:var(--muted);letter-spacing:0.05em;margin-top:2px;}
@media(max-width:600px){.vsol-stack-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:360px){.vsol-stack-grid{grid-template-columns:1fr;}}

/* === From single.php === */
/* ── CASE STUDY SINGLE PAGE ── */
.cs-hero{background:var(--black);padding:100px 0 0;position:relative;overflow:hidden;}
.cs-hero__grid{position:absolute;inset:0;background-image:linear-gradient(rgba(200,255,0,0.025) 1px,transparent 1px),linear-gradient(90deg,rgba(200,255,0,0.025) 1px,transparent 1px);background-size:60px 60px;}
.cs-hero__glow{position:absolute;top:-100px;right:-60px;width:500px;height:500px;background:radial-gradient(circle,rgba(200,255,0,0.08) 0%,transparent 65%);pointer-events:none;}
.cs-hero__inner{max-width:var(--max-width);margin:0 auto;padding:0 40px;position:relative;z-index:2;}
.cs-hero__top{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:end;}
.cs-tag{display:inline-flex;align-items:center;font-family:var(--mono);font-size:10px;letter-spacing:0.1em;text-transform:uppercase;padding:5px 12px;border-radius:999px;border:1px solid;margin-bottom:16px;}
.cs-hero__title{font-size:clamp(38px,5.5vw,64px);font-weight:300;letter-spacing:-0.05em;color:var(--white);line-height:1.02;margin-bottom:16px;}
.cs-hero__title strong{font-weight:700;color:var(--accent);}
.cs-hero__sub{font-size:17px;font-weight:300;color:rgba(255,255,255,0.5);line-height:1.7;max-width:500px;}
.cs-hero__right{padding-bottom:8px;}
.cs-hero__meta{display:flex;gap:24px;margin-bottom:32px;flex-wrap:wrap;}
.cs-meta-item{display:flex;flex-direction:column;gap:3px;}
.cs-meta-label{font-family:var(--mono);font-size:10px;letter-spacing:0.1em;text-transform:uppercase;color:rgba(255,255,255,0.3);}
.cs-meta-val{font-size:14px;font-weight:500;color:rgba(255,255,255,0.8);}
.cs-hero__metrics{display:flex;flex-direction:column;gap:16px;}
.cs-metric{background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.08);border-radius:var(--radius-lg);padding:20px 24px;display:flex;align-items:center;justify-content:space-between;gap:20px;}
.cs-metric__val{font-size:clamp(28px,4vw,40px);font-weight:300;letter-spacing:-0.04em;color:var(--accent);line-height:1;}
.cs-metric__label{font-family:var(--mono);font-size:10px;letter-spacing:0.07em;text-transform:uppercase;color:rgba(255,255,255,0.35);margin-top:3px;}
.cs-metric__spark{flex-shrink:0;}
.cs-hero__proof{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid rgba(255,255,255,0.08);margin-top:64px;}
.cs-proof-item{padding:28px 0;border-right:1px solid rgba(255,255,255,0.07);}
.cs-proof-item:last-child{border-right:none;}
.cs-proof-val{font-size:clamp(20px,3vw,28px);font-weight:300;letter-spacing:-0.04em;color:var(--white);line-height:1;margin-bottom:4px;}
.cs-proof-label{font-family:var(--mono);font-size:10px;letter-spacing:0.07em;text-transform:uppercase;color:rgba(255,255,255,0.3);}

/* Problem section */
.cs-problem{background:var(--white);padding:80px 0;border-bottom:1px solid var(--mid);}
.cs-section-inner{max-width:var(--max-width);margin:0 auto;padding:0 40px;}
.cs-problem__grid{display:grid;grid-template-columns:1fr 2fr;gap:64px;align-items:start;}
.cs-section-num{font-family:var(--mono);font-size:80px;font-weight:400;letter-spacing:-0.05em;color:var(--mid);line-height:1;margin-bottom:8px;}
.cs-section-heading{font-size:clamp(26px,3vw,36px);font-weight:300;letter-spacing:-0.03em;color:var(--black);}
.cs-section-heading strong{font-weight:700;}
.cs-problem-text{font-size:16px;font-weight:300;color:var(--text-2);line-height:1.85;}

/* What we did */
.cs-approach{background:var(--black);padding:80px 0;}
.cs-approach__inner{max-width:var(--max-width);margin:0 auto;padding:0 40px;display:grid;grid-template-columns:1fr 1.2fr;gap:64px;align-items:start;}
.cs-approach__left{position:sticky;top:96px;}
.cs-steps{display:flex;flex-direction:column;gap:0;}
.cs-step{display:grid;grid-template-columns:40px 1fr;gap:20px;padding:20px 0;border-bottom:1px solid rgba(255,255,255,0.07);}
.cs-step:last-child{border-bottom:none;}
.cs-step__num{font-family:var(--mono);font-size:11px;color:rgba(255,255,255,0.3);padding-top:3px;font-weight:500;}
.cs-step__title{font-size:15px;font-weight:600;color:var(--white);margin-bottom:5px;}
.cs-step__text{font-size:13px;font-weight:300;color:rgba(255,255,255,0.45);line-height:1.7;}
.cs-step__impact{display:inline-flex;align-items:center;gap:6px;margin-top:8px;background:rgba(200,255,0,0.1);border:1px solid rgba(200,255,0,0.2);border-radius:999px;padding:3px 10px;font-family:var(--mono);font-size:10px;color:var(--accent);}

/* Charts section */
.cs-charts{background:var(--white);padding:80px 0;border-top:1px solid var(--mid);}
.cs-charts__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:48px;}
.cs-chart-card{background:var(--off-white);border:1px solid var(--mid);border-radius:var(--radius-xl);padding:28px;}
.cs-chart-card__label{font-family:var(--mono);font-size:10px;letter-spacing:0.1em;text-transform:uppercase;color:var(--muted);margin-bottom:8px;}
.cs-chart-card__val{font-size:clamp(28px,3.5vw,40px);font-weight:300;letter-spacing:-0.04em;color:var(--black);line-height:1;margin-bottom:2px;}
.cs-chart-card__sub{font-size:12px;font-weight:300;color:var(--muted);margin-bottom:20px;}
.cs-chart-card__svg{width:100%;display:block;}

/* Timeline */
.cs-timeline{background:var(--off-white);padding:80px 0;border-top:1px solid var(--mid);}
.cs-timeline__track{display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin-top:48px;position:relative;}
.cs-timeline__track::before{content:'';position:absolute;top:20px;left:10%;right:10%;height:2px;background:var(--mid);z-index:0;}
.cs-tl-step{position:relative;z-index:1;text-align:center;padding:0 12px;}
.cs-tl-dot{width:40px;height:40px;border-radius:50%;background:var(--white);border:2px solid var(--mid);display:flex;align-items:center;justify-content:center;margin:0 auto 16px;font-size:14px;transition:border-color .2s;}
.cs-tl-step.active .cs-tl-dot{background:var(--black);border-color:var(--black);color:var(--white);}
.cs-tl-step.done .cs-tl-dot{background:var(--accent);border-color:var(--accent);}
.cs-tl-week{font-family:var(--mono);font-size:10px;letter-spacing:0.08em;text-transform:uppercase;color:var(--muted);margin-bottom:6px;}
.cs-tl-title{font-size:14px;font-weight:600;color:var(--black);margin-bottom:4px;}
.cs-tl-desc{font-size:12px;font-weight:300;color:var(--text-2);line-height:1.6;}

/* Results */
.cs-results{background:var(--white);padding:80px 0;border-top:1px solid var(--mid);}
.cs-results__grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:48px;}
.cs-result-card{background:var(--off-white);border:1px solid var(--mid);border-radius:var(--radius-xl);padding:28px;transition:border-color .2s,transform .2s;}
.cs-result-card:hover{border-color:rgba(200,255,0,0.5);transform:translateY(-3px);}
.cs-result-card__label{font-family:var(--mono);font-size:10px;letter-spacing:0.1em;text-transform:uppercase;color:var(--muted);margin-bottom:8px;}
.cs-result-card__val{font-size:clamp(28px,4vw,44px);font-weight:300;letter-spacing:-0.04em;line-height:1;margin-bottom:4px;}
.cs-result-card__val--up{color:#1a6e1a;}
.cs-result-card__val--down{color:#b84f00;}
.cs-result-card__val--neutral{color:var(--black);}
.cs-result-card__desc{font-size:13px;font-weight:300;color:var(--text-2);line-height:1.6;}

/* Body content */
.cs-body-content{background:var(--white);padding:64px 0;border-top:1px solid var(--mid);}
.cs-body-inner{max-width:720px;margin:0 auto;padding:0 40px;}
.cs-body-inner h2,.cs-body-inner h3{font-weight:600;color:var(--black);letter-spacing:-0.02em;}
.cs-body-inner p{font-size:15px;font-weight:300;color:var(--text-2);line-height:1.8;margin-bottom:18px;}
.cs-body-inner ul{margin:0 0 20px 0;list-style:none;display:flex;flex-direction:column;gap:8px;}
.cs-body-inner ul li{display:flex;align-items:flex-start;gap:10px;font-size:15px;font-weight:300;color:var(--text-2);line-height:1.65;}
.cs-body-inner ul li::before{content:'→';color:var(--accent);font-weight:600;flex-shrink:0;margin-top:1px;}

.reveal{opacity:0;transform:translateY(22px);transition:opacity .6s ease,transform .6s ease;}
.reveal.in-view{opacity:1;transform:translateY(0);}
@keyframes fadeUp{from{opacity:0;transform:translateY(22px);}to{opacity:1;transform:translateY(0);}}

@media(max-width:900px){
    .cs-hero__top{grid-template-columns:1fr;gap:32px;}
    .cs-problem__grid{grid-template-columns:1fr;}
    .cs-approach__inner{grid-template-columns:1fr;}
    .cs-approach__left{position:static;}
    .cs-charts__grid{grid-template-columns:1fr;}
    .cs-timeline__track{grid-template-columns:1fr 1fr;row-gap:32px;}
    .cs-timeline__track::before{display:none;}
    .cs-results__grid{grid-template-columns:1fr;}
    .cs-hero__inner,.cs-section-inner,.cs-approach__inner,.cs-charts .cs-section-inner,.cs-results .cs-section-inner,.cs-timeline .cs-section-inner,.cs-body-inner{padding:0 24px;}
    .cs-hero{padding:80px 0 0;}
    .cs-hero__proof{grid-template-columns:1fr 1fr;}
}
@media(max-width:480px){
    .cs-timeline__track{grid-template-columns:1fr;}
    .cs-hero__proof{grid-template-columns:1fr 1fr;}
    .cs-charts__grid{grid-template-columns:1fr;}
    .cs-results__grid{grid-template-columns:1fr;}
}

/* Insights hub — 2-col grid collapses to 1 on mobile */
@media (max-width: 640px) {
    .post-card__img { aspect-ratio: 16/7; }
}


/* Related posts grid — always 2 columns (1 on mobile) */
.related-posts-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .related-posts-grid { grid-template-columns: repeat(2,1fr); } }


/* ═══════════════════════════════════════
   BREVO SUBSCRIBE FORM ("Get growth insights")
   Two variants: --full (lime band, post end) + --footer (slim, dark, in footer)
═══════════════════════════════════════ */

/* Wrapper around form auto-injected at end of every blog post */
.mowsix-subscribe-wrap-post {
    max-width: 880px;
    margin: 56px auto 0;
}

/* Honeypot — always visually hidden but accessible to bots */
.mowsix-subscribe__honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ── FULL VARIANT (lime, end of blog posts / dedicated page) ── */
.mowsix-subscribe--full {
    background: #c8ff00;
    border-radius: 20px;
    padding: 56px 40px;
    color: #0a0b0a;
}
.mowsix-subscribe__inner {
    max-width: 720px;
    margin: 0 auto;
}
.mowsix-subscribe__eyebrow-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.mowsix-subscribe__eyebrow-dot {
    width: 7px;
    height: 7px;
    background: #0a0b0a;
    border-radius: 50%;
    flex-shrink: 0;
}
.mowsix-subscribe__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0a0b0a;
}
.mowsix-subscribe__heading-full {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: #0a0b0a;
    margin: 0 0 14px;
    max-width: 580px;
    text-wrap: balance;
}
.mowsix-subscribe__sub {
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.55;
    color: rgba(10,11,10,0.82);
    margin: 0 0 24px;
    max-width: 540px;
}
.mowsix-subscribe__form-full {
    display: flex;
    gap: 8px;
    max-width: 520px;
    flex-wrap: wrap;
}
.mowsix-subscribe__input-full {
    flex: 1;
    min-width: 220px;
    background: #fff;
    border: 1.5px solid #0a0b0a;
    border-radius: 999px;
    padding: 14px 22px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 15px;
    color: #0a0b0a;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease;
}
.mowsix-subscribe__input-full::placeholder { color: rgba(10,11,10,0.4); }
.mowsix-subscribe__input-full:focus {
    border-color: #0a0b0a;
    box-shadow: 0 0 0 3px rgba(10,11,10,0.08);
}
.mowsix-subscribe__btn-full {
    background: #0a0b0a;
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 999px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s ease, transform .18s ease;
    white-space: nowrap;
}
.mowsix-subscribe__btn-full:hover { background: #1a1a1a; transform: translateY(-1px); }
.mowsix-subscribe__btn-full:disabled { opacity: 0.6; cursor: wait; transform: none; }
.mowsix-subscribe__microcopy-full {
    font-size: 12px;
    color: rgba(10,11,10,0.55);
    margin: 14px 0 0;
}

/* ── FOOTER VARIANT (slim, dark, in footer 5th column) ── */
.mowsix-subscribe--footer {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mowsix-subscribe--footer .mowsix-subscribe__eyebrow {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c8ff00;
    margin-bottom: 12px;
}
.mowsix-subscribe__heading {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.25;
    color: #fff;
    margin: 0 0 8px;
    max-width: 240px;
}
.mowsix-subscribe__sub-footer {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(255,255,255,0.55);
    margin: 0 0 14px;
}
.mowsix-subscribe__form-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mowsix-subscribe__input-footer {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px;
    padding: 11px 18px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px;
    color: #fff;
    outline: none;
    width: 100%;
    transition: border-color .18s ease, background .18s ease;
}
.mowsix-subscribe__input-footer::placeholder { color: rgba(255,255,255,0.35); }
.mowsix-subscribe__input-footer:focus {
    border-color: #c8ff00;
    background: rgba(255,255,255,0.08);
}
.mowsix-subscribe__btn-footer {
    background: #c8ff00;
    color: #0a0b0a;
    border: none;
    padding: 11px 18px;
    border-radius: 999px;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background .18s ease, transform .18s ease;
}
.mowsix-subscribe__btn-footer:hover { background: #d8ff33; transform: translateY(-1px); }
.mowsix-subscribe__btn-footer:disabled { opacity: 0.7; cursor: wait; transform: none; }
.mowsix-subscribe__microcopy-footer {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin: 8px 0 0;
}

/* ── Success / Error states ── */
.mowsix-subscribe__message {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.5;
}
.mowsix-subscribe__message:empty { margin-top: 0; }
.mowsix-subscribe__message.is-success {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(10,11,10,0.1);
    border-radius: 14px;
    padding: 14px 20px;
    color: #0a0b0a;
    font-weight: 500;
}
.mowsix-subscribe--footer .mowsix-subscribe__message.is-success {
    background: rgba(200,255,0,0.1);
    border-color: rgba(200,255,0,0.3);
    color: #c8ff00;
    padding: 10px 14px;
    font-size: 12px;
}
.mowsix-subscribe__success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #0a0b0a;
    color: #c8ff00;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 14px;
}
.mowsix-subscribe--footer .mowsix-subscribe__success-icon {
    background: #c8ff00;
    color: #0a0b0a;
    width: 20px;
    height: 20px;
    font-size: 11px;
}
.mowsix-subscribe__message.is-error {
    background: rgba(194,52,31,0.08);
    border: 1px solid rgba(194,52,31,0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: #c2341f;
    font-weight: 500;
}
.mowsix-subscribe--footer .mowsix-subscribe__message.is-error {
    background: rgba(194,52,31,0.12);
    color: #ff8a72;
    padding: 8px 12px;
    font-size: 12px;
}

/* ── Mobile ── */
@media (max-width: 640px) {
    .mowsix-subscribe--full {
        padding: 40px 24px;
        border-radius: 16px;
    }
    .mowsix-subscribe__heading-full {
        font-size: 26px;
    }
    .mowsix-subscribe__form-full {
        flex-direction: column;
        gap: 10px;
    }
    .mowsix-subscribe__input-full,
    .mowsix-subscribe__btn-full {
        width: 100%;
    }
    .mowsix-subscribe-wrap-post {
        margin: 40px 16px 0;
    }
}

/* ═══════════════════════════════════════
   UNIT ECONOMICS CALCULATOR
═══════════════════════════════════════ */

/* HERO */
.uec-hero {
    background: #c8ff00;
    padding: clamp(80px, 12vh, 140px) 40px clamp(96px, 14vh, 160px);
    position: relative;
    overflow: hidden;
}
.uec-hero__inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.uec-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 700; letter-spacing: 0.16em;
    text-transform: uppercase; color: #0a0b0a; margin-bottom: 28px;
}
.uec-hero__eyebrow-dot {
    width: 8px; height: 8px; background: #0a0b0a; border-radius: 999px; flex-shrink: 0;
}
.uec-hero h1 {
    font-size: clamp(40px, 7vw, 80px); font-weight: 500; line-height: 0.98;
    letter-spacing: -0.04em; color: #0a0b0a; margin: 0 0 22px;
    max-width: 920px; text-wrap: balance;
}
.uec-hero__mark {
    background: #0a0b0a; color: #c8ff00; padding: 0 12px;
    display: inline-block; line-height: 1;
}
.uec-hero__sub {
    max-width: 600px; font-size: clamp(16px, 1.5vw, 19px); font-weight: 400;
    line-height: 1.55; color: #0a0b0a; opacity: 0.82; margin: 0;
}

/* CALCULATOR */
.uec-calc { background: #f4f2ec; padding: clamp(60px, 8vh, 100px) 40px; }
.uec-calc__inner { max-width: 760px; margin: 0 auto; }

.uec-card {
    background: #fff; border: 1px solid #e3e1d8; border-radius: 24px;
    padding: 40px;
}

/* Card head with currency selector */
.uec-card__head {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 16px; margin-bottom: 6px;
}
.uec-card__head-l { flex: 1; }
.uec-card__eyebrow {
    font-family: var(--mono); font-size: 11px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; color: rgba(10,11,10,0.5);
    margin-bottom: 8px;
}
.uec-card__h2 {
    font-size: clamp(22px, 2.4vw, 28px); font-weight: 500;
    letter-spacing: -0.025em; line-height: 1.15; color: #0a0b0a; margin: 0;
}
.uec-card__sub {
    font-size: 13px; color: rgba(10,11,10,0.65); margin: 0 0 28px;
}

/* CURRENCY SELECTOR */
.uec-currency { position: relative; flex-shrink: 0; }
.uec-currency__btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border: 1px solid #e3e1d8; background: #fff;
    border-radius: 999px; font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 12px; font-weight: 600; color: #0a0b0a; cursor: pointer;
    transition: border-color .18s ease;
}
.uec-currency__btn:hover { border-color: rgba(10,11,10,0.3); }
.uec-currency__symbol { font-size: 13px; font-weight: 700; }
.uec-currency__arrow { font-size: 9px; color: rgba(10,11,10,0.45); margin-left: 2px; }
.uec-currency__menu {
    position: absolute; top: 100%; right: 0; margin-top: 6px;
    background: #fff; border: 1px solid #e3e1d8; border-radius: 12px;
    padding: 6px; min-width: 220px;
    box-shadow: 0 8px 24px -8px rgba(17,17,17,0.12), 0 2px 4px rgba(17,17,17,0.04);
    z-index: 10;
}
.uec-currency__menu[hidden] { display: none; }
.uec-currency__opt {
    display: flex; align-items: center; gap: 10px;
    width: 100%; padding: 8px 12px; border: none; background: transparent;
    border-radius: 8px; font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px; color: #0a0b0a; cursor: pointer; text-align: left;
}
.uec-currency__opt:hover { background: #f4f2ec; }
.uec-currency__opt.is-active { background: #0a0b0a; color: #fff; }
.uec-currency__opt-symbol {
    font-weight: 700; width: 32px; font-variant-numeric: tabular-nums;
}
.uec-currency__opt-name { flex: 1; }
.uec-currency__opt-code {
    font-family: var(--mono); font-size: 11px; font-weight: 700;
    letter-spacing: 0.04em; color: rgba(10,11,10,0.5);
}
.uec-currency__opt.is-active .uec-currency__opt-code { color: rgba(255,255,255,0.5); }

/* INPUT FIELDS */
.uec-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 18px;
}
.uec-field { display: flex; flex-direction: column; gap: 6px; }
.uec-field__label {
    display: flex; align-items: center; gap: 6px;
    font-family: var(--mono); font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase; color: #0a0b0a;
}
.uec-field__help {
    display: inline-flex; align-items: center; justify-content: center;
    width: 14px; height: 14px; border-radius: 50%;
    background: #ecebe4; color: rgba(10,11,10,0.45);
    font-size: 10px; font-weight: 700; cursor: help;
    font-family: 'DM Sans', system-ui, sans-serif;
}
.uec-field__wrap { position: relative; }
.uec-field__input {
    width: 100%; padding: 12px 14px 12px 36px;
    border: 1.5px solid #e3e1d8; border-radius: 10px;
    font-family: 'DM Sans', system-ui, sans-serif; font-size: 15px;
    color: #0a0b0a; background: #fff; outline: none;
    font-variant-numeric: tabular-nums;
    transition: border-color .18s ease;
}
.uec-field__input:focus { border-color: #0a0b0a; }
.uec-field__input--with-suffix { padding-left: 14px; padding-right: 32px; }
.uec-field__prefix {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    font-size: 14px; color: rgba(10,11,10,0.45); pointer-events: none;
    font-weight: 600; min-width: 16px;
}
.uec-field__suffix {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    font-size: 13px; color: rgba(10,11,10,0.45); pointer-events: none;
}

/* TOGGLE */
.uec-toggle {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; background: #f4f2ec; border: 1px solid #e3e1d8;
    border-radius: 10px; margin-bottom: 24px; cursor: pointer;
    user-select: none;
}
.uec-toggle__switch {
    width: 36px; height: 20px; background: #0a0b0a; border-radius: 999px;
    position: relative; flex-shrink: 0; transition: background .18s ease;
}
.uec-toggle__switch::after {
    content: ''; position: absolute; top: 3px; right: 3px;
    width: 14px; height: 14px; background: #c8ff00; border-radius: 50%;
    transition: transform .18s ease, background .18s ease;
}
.uec-toggle.is-off .uec-toggle__switch { background: #d8d6cd; }
.uec-toggle.is-off .uec-toggle__switch::after {
    transform: translateX(-16px); background: #fff;
}
.uec-toggle__label { font-size: 13px; color: #0a0b0a; font-weight: 500; }
.uec-toggle__help {
    font-family: var(--mono); font-size: 11px; color: rgba(10,11,10,0.45);
    margin-left: auto; font-weight: 600;
}

/* CALCULATE BUTTON */
.uec-calc-btn {
    display: block; width: 100%;
    background: #0a0b0a; color: #fff; border: none;
    padding: 16px 24px; border-radius: 999px;
    font-family: 'DM Sans', system-ui, sans-serif; font-size: 15px; font-weight: 600;
    cursor: pointer; transition: background .18s ease, transform .18s ease;
}
.uec-calc-btn:hover { background: #1a1a1a; transform: translateY(-1px); }
.uec-calc-btn:disabled { opacity: 0.6; cursor: wait; transform: none; }

.uec-form__error {
    margin-top: 12px; font-size: 13px; color: #c2341f;
    line-height: 1.5; min-height: 1px;
}
.uec-form__error:empty { display: none; }

/* HONEYPOT */
.uec-honeypot {
    position: absolute !important; left: -9999px !important;
    width: 1px !important; height: 1px !important;
    opacity: 0 !important; pointer-events: none !important;
}

/* TEASER */
.uec-teaser { text-align: center; padding: 24px 0 14px; }
.uec-teaser__eyebrow {
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
    text-transform: uppercase; color: rgba(10,11,10,0.5); margin-bottom: 8px;
}
.uec-teaser__num {
    font-size: clamp(48px, 7vw, 76px); font-weight: 500;
    letter-spacing: -0.05em; line-height: 1; color: #0a0b0a;
    font-variant-numeric: tabular-nums; margin-bottom: 12px;
}
.uec-teaser__num mark {
    background: #c8ff00; color: #0a0b0a; padding: 0 8px;
}
.uec-teaser__verdict {
    font-size: 14px; color: rgba(10,11,10,0.7); line-height: 1.55;
    max-width: 480px; margin: 0 auto 24px;
}
.uec-teaser__verdict strong { color: #0a0b0a; }

/* EMAIL GATE */
.uec-gate {
    background: #0a0b0a; border-radius: 18px; padding: 28px; color: #fff;
}
.uec-gate__eyebrow {
    font-family: var(--mono); font-size: 10px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: #c8ff00; margin-bottom: 8px;
}
.uec-gate__h {
    font-size: 20px; font-weight: 500; letter-spacing: -0.02em;
    color: #fff; margin: 0 0 14px; line-height: 1.25;
}
.uec-gate__form {
    display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap;
}
.uec-gate__input {
    flex: 1; min-width: 200px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 999px; padding: 12px 18px;
    font-family: 'DM Sans', system-ui, sans-serif; font-size: 14px;
    color: #fff; outline: none; transition: border-color .18s ease;
}
.uec-gate__input::placeholder { color: rgba(255,255,255,0.35); }
.uec-gate__input:focus { border-color: #c8ff00; }
.uec-gate__btn {
    background: #c8ff00; color: #0a0b0a; border: none;
    padding: 12px 22px; border-radius: 999px;
    font-family: 'DM Sans', system-ui, sans-serif; font-size: 13px; font-weight: 700;
    cursor: pointer; transition: background .18s ease, transform .18s ease;
}
.uec-gate__btn:hover { background: #d8ff33; transform: translateY(-1px); }
.uec-gate__btn:disabled { opacity: 0.7; cursor: wait; transform: none; }
.uec-gate__error {
    margin: 0 0 12px; font-size: 12px; color: #ff8a72;
    min-height: 1px;
}
.uec-gate__error:empty { display: none; }
.uec-gate__mc {
    font-size: 11px; color: rgba(255,255,255,0.45);
    line-height: 1.5; margin: 0;
}

/* RESULTS */
.uec-results-band {
    padding: 24px; border-radius: 14px; text-align: center; margin-bottom: 20px;
}
.uec-results-band--built { background: #e8f8e1; border: 1px solid #4caf50; }
.uec-results-band--watch { background: #fff8e6; border: 1px solid #f5b400; }
.uec-results-band--bleed { background: #fff0e6; border: 1px solid #ff8a00; }
.uec-results-band--burn  { background: #fbe9e7; border: 1px solid #c2341f; }

.uec-results-band__eyebrow {
    font-family: var(--mono); font-size: 10px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(10,11,10,0.55); margin-bottom: 6px;
}
.uec-results-band__num {
    font-size: clamp(44px, 6vw, 60px); font-weight: 500;
    letter-spacing: -0.04em; line-height: 1; color: #0a0b0a;
    font-variant-numeric: tabular-nums; margin-bottom: 4px;
}
.uec-results-band__num-suffix {
    font-size: 22px; color: rgba(10,11,10,0.4);
}
.uec-results-band__verdict {
    font-size: 18px; font-weight: 600; letter-spacing: -0.01em;
    color: #0a0b0a; margin-bottom: 6px;
}
.uec-results-band__line {
    font-size: 13px; color: rgba(10,11,10,0.65); line-height: 1.5;
    max-width: 480px; margin: 0 auto;
}

.uec-metrics {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px; margin-bottom: 24px;
}
.uec-metric {
    background: #f4f2ec; border: 1px solid #e3e1d8;
    border-radius: 12px; padding: 16px;
}
    background: #f4f2ec; border: 1px solid #e3e1d8;
    border-radius: 12px; padding: 16px;
}
.uec-metric__lbl {
    font-family: var(--mono); font-size: 9px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(10,11,10,0.5); margin-bottom: 4px;
}
.uec-metric__val {
    font-size: 28px; font-weight: 500; letter-spacing: -0.03em;
    line-height: 1; color: #0a0b0a; font-variant-numeric: tabular-nums;
}

.uec-recos { margin-bottom: 24px; }
.uec-recos__head {
    font-family: var(--mono); font-size: 11px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: #0a0b0a; margin-bottom: 12px;
}
.uec-reco {
    display: flex; gap: 12px; padding: 14px 16px;
    background: #f4f2ec; border-radius: 10px; margin-bottom: 8px;
    border-left: 3px solid #c8ff00;
}
.uec-reco__num {
    font-family: var(--mono); font-size: 11px; font-weight: 700;
    color: #0a0b0a; flex-shrink: 0; padding-top: 2px;
}
.uec-reco__text {
    font-size: 14px; line-height: 1.55; color: #0a0b0a;
}
.uec-reco__text strong { color: #0a0b0a; }
.uec-reco__uplift {
    display: inline-block; font-family: var(--mono); font-size: 10px;
    font-weight: 700; background: #c8ff00; color: #0a0b0a;
    padding: 2px 8px; border-radius: 4px; margin-left: 4px;
    white-space: nowrap;
}

.uec-cta-final {
    background: #c8ff00; border-radius: 14px;
    padding: 24px; text-align: center; margin-bottom: 16px;
}
.uec-cta-final__text {
    font-size: 17px; font-weight: 500; color: #0a0b0a;
    margin-bottom: 14px; letter-spacing: -0.015em;
}
.uec-cta-final__btn {
    display: inline-flex; align-items: center;
    background: #0a0b0a; color: #fff;
    padding: 12px 24px; border-radius: 999px;
    font-size: 13px; font-weight: 700; text-decoration: none;
    transition: background .18s ease, transform .18s ease;
}
.uec-cta-final__btn:hover { background: #1a1a1a; color: #fff; transform: translateY(-1px); }

.uec-source {
    font-size: 11px; color: rgba(10,11,10,0.45);
    line-height: 1.5; text-align: center; margin: 16px 0 0;
}
.uec-source a {
    color: rgba(10,11,10,0.65); text-decoration: underline;
    text-underline-offset: 2px;
}

.uec-back-link {
    display: block; margin: 16px auto 0;
    background: transparent; border: none;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 13px; font-weight: 600; color: rgba(10,11,10,0.55);
    cursor: pointer; padding: 8px 16px;
    transition: color .18s ease;
}
.uec-back-link:hover { color: #0a0b0a; }

/* MOBILE */
@media (max-width: 768px) {
    .uec-card { padding: 28px 20px; }
    .uec-card__head { flex-direction: column; align-items: stretch; }
    .uec-currency { align-self: flex-start; }
    .uec-grid { grid-template-columns: 1fr; }
    .uec-gate__form { flex-direction: column; gap: 10px; }
    .uec-gate__input, .uec-gate__btn { width: 100%; }
    .uec-metrics { grid-template-columns: 1fr; }
    .uec-currency__menu { right: auto; left: 0; }
    .uec-toggle { flex-wrap: wrap; }
    .uec-toggle__help { margin-left: 0; flex-basis: 100%; }
}
@media (max-width: 480px) {
    .uec-hero { padding: 64px 24px 80px; }
    .uec-calc { padding: 40px 20px; }
}

/* ── Homepage Calculator Promotion Card ── */
.hp-uec-promo {
    background: #f4f2ec;
    padding: clamp(60px, 8vh, 100px) 40px;
}
.hp-uec-promo__inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px;
    align-items: center;
    background: #fff; border: 1px solid #e3e1d8; border-radius: 24px;
    padding: 48px 56px;
}
.hp-uec-promo__l { display: flex; flex-direction: column; gap: 16px; }
.hp-uec-promo__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
    text-transform: uppercase; color: #0a0b0a;
}
.hp-uec-promo__eyebrow-dot {
    width: 6px; height: 6px; background: #c8ff00;
    border: 1px solid #0a0b0a; border-radius: 50%;
}
.hp-uec-promo__h {
    font-size: clamp(26px, 3vw, 36px); font-weight: 500;
    letter-spacing: -0.035em; line-height: 1.1; color: #0a0b0a;
    margin: 0; max-width: 460px;
}
.hp-uec-promo__sub {
    font-size: 15px; line-height: 1.55; color: rgba(10,11,10,0.65);
    max-width: 460px; margin: 0;
}
.hp-uec-promo__btn {
    display: inline-flex; align-items: center; align-self: flex-start;
    background: #0a0b0a; color: #fff; padding: 14px 24px;
    border-radius: 999px; font-size: 14px; font-weight: 600;
    text-decoration: none; margin-top: 8px;
    transition: background .18s ease, transform .18s ease;
}
.hp-uec-promo__btn:hover { background: #1a1a1a; color: #fff; transform: translateY(-1px); }

.hp-uec-promo__r { display: flex; align-items: center; justify-content: center; }
.hp-uec-promo__demo {
    background: #fff8e6; border: 1px solid #f5b400;
    border-radius: 18px; padding: 32px;
    width: 100%; max-width: 360px;
}
.hp-uec-promo__demo-eyebrow {
    font-family: var(--mono); font-size: 10px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: #7a5500; margin-bottom: 8px;
}
.hp-uec-promo__demo-score {
    font-size: 56px; font-weight: 500; letter-spacing: -0.04em;
    line-height: 1; color: #0a0b0a; font-variant-numeric: tabular-nums;
    margin-bottom: 4px;
}
.hp-uec-promo__demo-score span { font-size: 22px; color: rgba(10,11,10,0.4); }
.hp-uec-promo__demo-verdict {
    font-size: 17px; font-weight: 600; color: #0a0b0a;
    letter-spacing: -0.01em; margin-bottom: 18px;
}
.hp-uec-promo__demo-metrics {
    display: flex; flex-direction: column; gap: 8px;
    border-top: 1px solid rgba(122,85,0,0.2); padding-top: 14px;
}
.hp-uec-promo__demo-metrics > div {
    display: flex; justify-content: space-between; align-items: center;
}
.hp-uec-promo__demo-metrics span {
    font-family: var(--mono); font-size: 10px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(10,11,10,0.55);
}
.hp-uec-promo__demo-metrics strong {
    font-size: 16px; font-weight: 600; color: #0a0b0a;
    font-variant-numeric: tabular-nums;
}

@media (max-width: 880px) {
    .hp-uec-promo__inner { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
    .hp-uec-promo__r { order: -1; }
}

/* ── UEC structural classes (hidden by [hidden] attr) ── */
.uec-stage { display: block; }
.uec-stage[hidden] { display: none; }
.uec-stage--inputs,
.uec-stage--teaser,
.uec-stage--results { /* placeholders for stage-specific styling if needed */ }
.uec-currency__code { color: inherit; }

/* ── Services page → calculator tip strip ── */
.svcs-tool-tip {
    margin-top: 32px;
    padding: 22px 28px;
    background: #fff;
    border: 1px solid #e3e1d8;
    border-left: 3px solid #c8ff00;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.svcs-tool-tip__eyebrow {
    display: inline-flex;
    align-items: center;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0a0b0a;
    background: #c8ff00;
    padding: 4px 10px;
    border-radius: 999px;
    flex-shrink: 0;
}
.svcs-tool-tip__text {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(10,11,10,0.75);
    margin: 0;
    flex: 1;
    min-width: 200px;
}
.svcs-tool-tip__link {
    color: #0a0b0a;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
    margin-left: 4px;
    white-space: nowrap;
}
.svcs-tool-tip__link:hover {
    color: #1a1a1a;
}
@media (max-width: 600px) {
    .svcs-tool-tip { flex-direction: column; align-items: flex-start; }
    .svcs-tool-tip__link { white-space: normal; display: inline; margin-left: 0; }
}

/* ═══════════════════════════════════════
   FREE TOOLS HUB
═══════════════════════════════════════ */
.ft-hero {
    background: #c8ff00;
    padding: clamp(80px, 12vh, 140px) 40px clamp(96px, 14vh, 160px);
    position: relative;
    overflow: hidden;
}
.ft-hero__inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.ft-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 700; letter-spacing: 0.16em;
    text-transform: uppercase; color: #0a0b0a; margin-bottom: 28px;
}
.ft-hero__eyebrow-dot {
    width: 8px; height: 8px; background: #0a0b0a; border-radius: 999px; flex-shrink: 0;
}
.ft-hero h1 {
    font-size: clamp(40px, 7vw, 80px); font-weight: 500; line-height: 0.98;
    letter-spacing: -0.04em; color: #0a0b0a; margin: 0 0 22px;
    max-width: 920px; text-wrap: balance;
}
.ft-hero__mark {
    background: #0a0b0a; color: #c8ff00; padding: 0 12px;
    display: inline-block; line-height: 1;
}
.ft-hero__sub {
    max-width: 600px; font-size: clamp(16px, 1.5vw, 19px); font-weight: 400;
    line-height: 1.55; color: #0a0b0a; opacity: 0.82; margin: 0;
}

.ft-grid-section { background: #f4f2ec; padding: clamp(60px, 8vh, 100px) 40px; }
.ft-grid-inner { max-width: 1200px; margin: 0 auto; }
.ft-grid-head { margin-bottom: 56px; }
.ft-grid-h2 {
    font-size: clamp(28px, 3.6vw, 44px); font-weight: 500;
    letter-spacing: -0.035em; line-height: 1.05; color: #0a0b0a;
    margin: 8px 0 0; max-width: 600px; text-wrap: balance;
}
.ft-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.ft-tool-card {
    background: #fff; border: 1px solid #e3e1d8; border-radius: 20px;
    padding: 36px;
    display: flex; flex-direction: column; gap: 14px;
    position: relative;
    transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.ft-tool-card:hover {
    border-color: rgba(10,11,10,0.18); transform: translateY(-2px);
    box-shadow: 0 6px 16px -6px rgba(17,17,17,0.12), 0 2px 4px rgba(17,17,17,0.04);
}
.ft-tool-card--featured { border-color: #c8ff00; border-width: 2px; }
.ft-tool-card--coming { background: #ecebe4; opacity: 0.85; }
.ft-tool-card--coming:hover { transform: none; box-shadow: none; }
.ft-tool-card__num {
    font-family: var(--mono); font-size: 11px; color: rgba(10,11,10,0.45);
    letter-spacing: 0.08em; font-weight: 600;
}
.ft-tool-card__pill {
    position: absolute; top: 28px; right: 28px;
    background: #c8ff00; color: #0a0b0a;
    font-family: var(--mono); font-size: 10px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 999px;
}
.ft-tool-card__pill--muted { background: #d8d6cd; color: rgba(10,11,10,0.55); }
.ft-tool-card__title {
    font-size: clamp(22px, 2.4vw, 30px); font-weight: 500;
    letter-spacing: -0.02em; line-height: 1.1; color: #0a0b0a;
    margin: 0; max-width: 360px;
}
.ft-tool-card__sub {
    font-size: 15px; line-height: 1.55; color: rgba(10,11,10,0.65);
    margin: 0;
}
.ft-tool-card__list {
    margin: 8px 0; padding: 0 0 0 0; list-style: none;
    display: flex; flex-direction: column; gap: 8px;
}
.ft-tool-card__list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 13px; line-height: 1.5; color: #0a0b0a;
}
.ft-tool-card__list li::before {
    content: ''; display: block; width: 5px; height: 5px;
    border-radius: 50%; background: #c8ff00; margin-top: 8px; flex-shrink: 0;
}
.ft-tool-card__btn {
    display: inline-flex; align-items: center; align-self: flex-start;
    background: #0a0b0a; color: #fff; padding: 12px 22px;
    border-radius: 999px; font-size: 13px; font-weight: 600;
    text-decoration: none; margin-top: 8px;
    transition: background .18s ease, transform .18s ease;
}
.ft-tool-card__btn:hover { background: #1a1a1a; color: #fff; transform: translateY(-1px); }
.ft-tool-card__btn--disabled {
    background: rgba(10,11,10,0.1); color: rgba(10,11,10,0.5);
    cursor: not-allowed; pointer-events: none;
}

.ft-more-soon {
    text-align: center; padding: 32px 0 0;
    font-family: var(--mono); font-size: 12px; color: rgba(10,11,10,0.5);
    letter-spacing: 0.04em;
}

.ft-cta {
    background: #c8ff00;
    padding: clamp(72px, 10vh, 120px) 40px;
}
.ft-cta__inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    gap: 40px; flex-wrap: wrap;
}
.ft-cta__heading {
    font-size: clamp(32px, 4vw, 48px); font-weight: 500;
    letter-spacing: -0.04em; line-height: 1.0; color: #0a0b0a;
    margin: 0; text-wrap: balance;
}
.ft-cta__sub {
    font-size: 15px; color: rgba(10,11,10,0.65);
    margin: 12px 0 0; max-width: 520px; line-height: 1.55;
}
.ft-cta__btn {
    display: inline-flex; align-items: center;
    background: #0a0b0a; color: #fff;
    padding: 18px 32px; border-radius: 999px;
    font-size: 15px; font-weight: 700; text-decoration: none;
    flex-shrink: 0;
    transition: background .18s ease, transform .18s ease;
}
.ft-cta__btn:hover { background: #1a1a1a; color: #fff; transform: translateY(-1px); }

@media (max-width: 768px) {
    .ft-hero { padding: 64px 24px 80px; }
    .ft-grid-section { padding: 56px 24px; }
    .ft-grid { grid-template-columns: 1fr; }
    .ft-tool-card { padding: 28px; }
    .ft-cta { padding: 56px 24px; }
    .ft-cta__inner { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════
   SINGLE BLOG POST — CATEGORY PILL & META
═══════════════════════════════════════ */
.single-cat-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.single-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #c8ff00;
    color: #0a0b0a;
    border-radius: 999px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .18s ease, transform .18s ease;
}
.single-cat-pill:hover {
    background: #d8ff33;
    color: #0a0b0a;
    transform: translateY(-1px);
}
.single-cat-pill__dot {
    width: 6px;
    height: 6px;
    background: #0a0b0a;
    border-radius: 50%;
    flex-shrink: 0;
}
.single-cat-meta {
    font-family: var(--mono);
    font-size: 11px;
    color: rgba(10, 11, 10, 0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* End-of-post category footer */
.single-cat-footer {
    margin-top: 48px;
    padding: 20px 24px;
    background: #f4f2ec;
    border: 1px solid #e3e1d8;
    border-left: 3px solid #c8ff00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.single-cat-footer__label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(10, 11, 10, 0.5);
}
.single-cat-footer__link {
    font-size: 14px;
    font-weight: 600;
    color: #0a0b0a;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
    transition: color .18s ease;
}
.single-cat-footer__link:hover {
    color: #1a1a1a;
}

@media (max-width: 600px) {
    .single-cat-row {
        gap: 10px;
    }
    .single-cat-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* ═══════════════════════════════════════
   BLOG POST STYLED BLOCKS (v2 — May 2026)
   For new and re-imported blog posts using the .mowsix-* class vocabulary.
   Plus the [mowsix_toc] and [mowsix_calc_embed] shortcode renderings.
═══════════════════════════════════════ */

/* ── TL;DR block (pinned after H1) ── */
.mowsix-tldr {
    background: #0a0b0a;
    color: #fff;
    padding: 22px 26px;
    border-radius: 14px;
    margin: 24px 0 32px;
}
.mowsix-tldr__label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c8ff00;
    margin-bottom: 8px;
    display: block;
}
.mowsix-tldr p {
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}
.mowsix-tldr p strong {
    color: #c8ff00;
}
.mowsix-tldr p a {
    color: #c8ff00;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── TOC (rendered by [mowsix_toc] shortcode) ── */
.mowsix-toc {
    background: #f4f2ec;
    border: 1px solid #e3e1d8;
    border-radius: 10px;
    padding: 16px 22px;
    margin: 28px 0;
}
.mowsix-toc__label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10, 11, 10, 0.5);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
.mowsix-toc__list {
    margin: 0 0 0 18px;
    padding: 0;
    font-size: 14px;
    line-height: 1.85;
    color: #4a4943;
    list-style-type: decimal;
}
.mowsix-toc__list li {
    margin-bottom: 0;
    padding-left: 4px;
}
.mowsix-toc__list a {
    color: #4a4943;
    text-decoration: none;
    transition: color .15s ease;
}
.mowsix-toc__list a:hover {
    color: #0a0b0a;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Formula block (math / equation) ── */
.mowsix-formula {
    background: #0a0b0a;
    color: #c8ff00;
    padding: 16px 20px;
    border-radius: 10px;
    margin: 14px 0;
}
.mowsix-formula__label {
    font-family: var(--mono);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}
.mowsix-formula pre {
    font-family: var(--mono);
    font-size: 13px;
    color: #c8ff00;
    background: transparent;
    padding: 0;
    margin: 0;
    line-height: 1.6;
    overflow-x: auto;
    white-space: pre-wrap;
}

/* ── Callout (general purpose, with variants) ── */
.mowsix-callout {
    padding: 16px 20px;
    border-radius: 10px;
    margin: 16px 0;
}
.mowsix-callout__label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}
.mowsix-callout p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.65;
}

/* Variant: Mowsix (dark, lime accent) — "from our work" */
.mowsix-callout--mowsix {
    background: #0a0b0a;
    color: #fff;
}
.mowsix-callout--mowsix .mowsix-callout__label {
    color: #c8ff00;
}
.mowsix-callout--mowsix p {
    color: rgba(255, 255, 255, 0.85);
}
.mowsix-callout--mowsix a {
    color: #c8ff00;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Variant: Data (yellow, "behind the numbers") */
.mowsix-callout--data {
    background: #fff8e6;
    border: 1px solid #f5b400;
    border-left: 3px solid #f5b400;
}
.mowsix-callout--data .mowsix-callout__label {
    color: #7a5500;
}

/* Variant: Example (yellow, "worked example") */
.mowsix-callout--example {
    background: #fff8e6;
    border: 1px solid #f5b400;
    border-left: 3px solid #f5b400;
}
.mowsix-callout--example .mowsix-callout__label {
    color: #7a5500;
}

/* ── Related reading footer link block ── */
.mowsix-related {
    background: #f4f2ec;
    border: 1px solid #e3e1d8;
    border-left: 3px solid #0a0b0a;
    padding: 16px 20px;
    border-radius: 10px;
    margin: 24px 0;
}
.mowsix-related__label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0a0b0a;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}
.mowsix-related p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #4a4943;
}
.mowsix-related a {
    color: #0a0b0a;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}

/* ── Benchmark table (data-heavy, screenshot-shareable) ── */
.mowsix-bench-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin: 16px 0;
    background: #fff;
    border: 1px solid #e3e1d8;
    border-radius: 10px;
    overflow: hidden;
}
.mowsix-bench-table th {
    background: #0a0b0a;
    color: #fff;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 10px 12px;
    text-align: left;
}
.mowsix-bench-table td {
    padding: 9px 12px;
    border-top: 1px solid #e3e1d8;
    font-variant-numeric: tabular-nums;
    color: #0a0b0a;
}
.mowsix-bench-table td:first-child {
    font-weight: 600;
}
.mowsix-bench-table tr:nth-child(even) td {
    background: #fafaf6;
}
.mowsix-bench-table .red    { color: #c2341f; font-weight: 600; }
.mowsix-bench-table .yellow { color: #7a5500; font-weight: 600; }
.mowsix-bench-table .green  { color: #1f8f4c; font-weight: 600; }

/* ── End-of-post CTA block ── */
.mowsix-end-cta {
    background: #0a0b0a;
    color: #fff;
    padding: 28px 32px;
    border-radius: 14px;
    margin: 32px 0;
}
.mowsix-end-cta h3 {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 8px;
    line-height: 1.2;
}
.mowsix-end-cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 16px;
    line-height: 1.6;
}
.mowsix-end-cta__btn {
    display: inline-block;
    background: #c8ff00;
    color: #0a0b0a;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background .18s ease, transform .18s ease;
}
.mowsix-end-cta__btn:hover {
    background: #d8ff33;
    color: #0a0b0a;
    transform: translateY(-1px);
}

/* ── Calculator embed (rendered by [mowsix_calc_embed]) ── */
.mowsix-calc-embed {
    background: linear-gradient(135deg, #c8ff00 0%, #a8e000 100%);
    padding: 22px 28px;
    border-radius: 14px;
    margin: 24px 0;
}
.mowsix-calc-embed__label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(10, 11, 10, 0.55);
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}
.mowsix-calc-embed h3 {
    font-size: 19px;
    font-weight: 600;
    margin: 0 0 6px;
    letter-spacing: -0.015em;
    color: #0a0b0a;
    line-height: 1.25;
}
.mowsix-calc-embed p {
    font-size: 14px;
    margin: 0 0 14px;
    color: rgba(10, 11, 10, 0.75);
    line-height: 1.6;
}
.mowsix-calc-embed__btn {
    display: inline-block;
    background: #0a0b0a;
    color: #fff;
    padding: 11px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background .18s ease, transform .18s ease;
}
.mowsix-calc-embed__btn:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-1px);
}

/* ── FAQ section styling (for posts that include FAQ heading + Q&As) ── */
.mowsix-faq {
    border-top: 1px solid #e3e1d8;
    padding-top: 28px;
    margin-top: 32px;
}
.mowsix-faq h2 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.mowsix-faq__item {
    padding: 14px 0;
    border-bottom: 1px solid #ecebe4;
}
.mowsix-faq__item:last-child {
    border-bottom: none;
}
.mowsix-faq__item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #0a0b0a;
    margin: 0 0 6px;
    line-height: 1.35;
}
.mowsix-faq__item p {
    font-size: 14px;
    color: #4a4943;
    line-height: 1.7;
    margin: 0;
}

/* ── Sources block (citations at end of post) ── */
.mowsix-sources {
    font-size: 12px;
    color: #9a9a93;
    line-height: 1.7;
    background: #f4f2ec;
    padding: 16px 20px;
    border-radius: 10px;
    margin-top: 24px;
}
.mowsix-sources strong {
    color: #4a4943;
    display: block;
    margin-bottom: 6px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.mowsix-sources a {
    color: #4a4943;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Mobile adjustments ── */
@media (max-width: 640px) {
    .mowsix-tldr,
    .mowsix-end-cta {
        padding: 20px 22px;
    }
    .mowsix-tldr p {
        font-size: 14px;
    }
    .mowsix-end-cta h3 {
        font-size: 19px;
    }
    .mowsix-bench-table {
        font-size: 12px;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .mowsix-bench-table th,
    .mowsix-bench-table td {
        white-space: nowrap;
    }
    .mowsix-toc__list {
        font-size: 13px;
    }
    .mowsix-formula pre {
        font-size: 12px;
    }
}

/* ═══════════════════════════════════════
   FREE TOOLS MEGA MENU — extras
═══════════════════════════════════════ */

.mega-menu--tools .mega-item__title {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mega-item__badge {
    display: inline-block;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 999px;
    line-height: 1.4;
    vertical-align: middle;
}

.mega-item__badge--live {
    background: #c8ff00;
    color: #0a0b0a;
}

.mega-item__badge--new {
    background: #0a0b0a;
    color: #c8ff00;
}

.mega-item__badge--soon {
    background: #f4f2ec;
    color: #6a6960;
    border: 1px solid #d8d6cd;
}

/* Mega-menu--tools layout: 2-col grid like solutions but slightly wider */
.mega-menu--tools .mega-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 900px) {
    .mega-menu--tools .mega-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════
   GROWTH CHECKLIST LANDING PAGE
   /free-tools/growth-checklist/
═══════════════════════════════════════ */

/* HERO */
.gc-hero {
    background: #c8ff00;
    padding: clamp(80px, 12vh, 120px) 40px clamp(80px, 12vh, 120px);
    position: relative;
    overflow: hidden;
}
.gc-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.gc-hero__copy { max-width: 580px; }
.gc-hero__eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--mono); font-size: 12px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase; color: #0a0b0a;
    margin-bottom: 24px;
}
.gc-hero__eyebrow-dot {
    width: 8px; height: 8px; background: #0a0b0a; border-radius: 999px;
}
.gc-hero h1 {
    font-size: clamp(36px, 5.6vw, 60px);
    font-weight: 500; line-height: 1.02;
    letter-spacing: -0.04em; color: #0a0b0a;
    margin: 0 0 22px; text-wrap: balance;
}
.gc-hero__mark {
    background: #0a0b0a; color: #c8ff00; padding: 0 12px;
    display: inline-block; line-height: 1;
}
.gc-hero__sub {
    font-size: clamp(16px, 1.4vw, 18px); font-weight: 400;
    line-height: 1.55; color: #0a0b0a; opacity: 0.82;
    margin: 0 0 28px;
}
.gc-hero__bullets {
    list-style: none; padding: 0; margin: 0;
}
.gc-hero__bullets li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14.5px; line-height: 1.55; color: #0a0b0a;
    padding: 6px 0;
}
.gc-hero__check {
    background: #0a0b0a; color: #c8ff00;
    width: 20px; height: 20px; border-radius: 999px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}

/* FORM */
.gc-hero__form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 24px 48px -16px rgba(10, 11, 10, 0.18);
    border: 1px solid rgba(10, 11, 10, 0.08);
}
.gc-form__label {
    font-size: 22px; font-weight: 600; color: #0a0b0a;
    letter-spacing: -0.02em; margin-bottom: 6px;
}
.gc-form__sub {
    font-size: 13.5px; color: #4a4943;
    line-height: 1.55; margin: 0 0 22px;
}
.gc-form__row {
    margin-bottom: 14px;
}
.gc-form__row label {
    display: block;
    font-family: var(--mono);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #4a4943; margin-bottom: 6px;
}
.gc-form__optional {
    color: #9a9a93; font-weight: 400; text-transform: none;
    letter-spacing: 0; font-size: 11px;
}
.gc-form__required {
    color: #c2341f; margin-left: 2px;
}
.gc-form__row input,
.gc-form__row select {
    width: 100%; padding: 12px 14px;
    border: 1.5px solid #e3e1d8; border-radius: 10px;
    font-family: inherit; font-size: 14px; color: #0a0b0a;
    background: #fff;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.gc-form__row input:focus,
.gc-form__row select:focus {
    outline: none;
    border-color: #0a0b0a;
    box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.4);
}
.gc-form__input--error {
    border-color: #c2341f !important;
    background: #fff5f3;
}
.gc-form__hp {
    position: absolute; left: -9999px; height: 0; overflow: hidden;
}
.gc-form__btn {
    width: 100%; padding: 14px 24px;
    background: #0a0b0a; color: #fff;
    border: none; border-radius: 10px;
    font-family: inherit; font-size: 14px; font-weight: 700;
    letter-spacing: 0.02em; cursor: pointer;
    margin-top: 10px;
    transition: background .15s ease, transform .15s ease;
}
.gc-form__btn:hover:not(:disabled) {
    background: #1a1a1a;
    transform: translateY(-1px);
}
.gc-form__btn:disabled {
    opacity: 0.7; cursor: not-allowed;
}
.gc-form__privacy {
    font-size: 12px; color: #9a9a93;
    line-height: 1.5; margin: 14px 0 0; text-align: center;
}

/* SUCCESS STATE */
.gc-success { text-align: center; padding: 16px 0; }
.gc-success__icon {
    width: 56px; height: 56px;
    background: #c8ff00; border-radius: 999px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 700; color: #0a0b0a;
    margin: 0 auto 16px;
}
.gc-success__title {
    font-size: 22px; font-weight: 500;
    letter-spacing: -0.02em; color: #0a0b0a;
    margin: 0 0 6px;
}
.gc-success__sub {
    font-size: 14px; color: #4a4943;
    line-height: 1.55; margin: 0 0 20px;
}
.gc-success__btn {
    display: inline-block;
    background: #0a0b0a; color: #fff;
    padding: 14px 28px; border-radius: 999px;
    font-size: 14px; font-weight: 700;
    text-decoration: none;
    transition: background .15s ease, transform .15s ease;
}
.gc-success__btn:hover {
    background: #1a1a1a; color: #fff;
    transform: translateY(-1px);
}
.gc-success__hint {
    font-size: 11px; font-family: var(--mono);
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #9a9a93; margin: 14px 0 0;
}

/* WHAT'S INSIDE */
.gc-inside {
    background: #f4f2ec;
    padding: clamp(60px, 8vh, 100px) 40px;
}
.gc-inside__inner {
    max-width: 1200px; margin: 0 auto;
}
.gc-inside__header {
    text-align: center; margin-bottom: 48px;
    max-width: 720px; margin-left: auto; margin-right: auto;
}
.gc-inside__eyebrow {
    display: inline-block;
    font-family: var(--mono); font-size: 11px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: #6a6960; margin-bottom: 14px;
}
.gc-inside__heading {
    font-size: clamp(26px, 3.5vw, 36px); font-weight: 500;
    letter-spacing: -0.025em; line-height: 1.15; color: #0a0b0a;
    margin: 0; text-wrap: balance;
}
.gc-inside__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.gc-inside__card {
    background: #fff;
    border: 1px solid #e3e1d8;
    border-radius: 14px;
    padding: 28px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.gc-inside__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px -12px rgba(10, 11, 10, 0.12);
}
.gc-inside__card--dark {
    background: #0a0b0a;
    border-color: #0a0b0a;
}
.gc-inside__num {
    font-family: var(--mono);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.16em; color: #9a9a93;
    margin-bottom: 14px;
}
.gc-inside__card h3 {
    font-size: 19px; font-weight: 600;
    letter-spacing: -0.015em; color: #0a0b0a;
    margin: 0 0 8px; line-height: 1.25;
}
.gc-inside__card p {
    font-size: 13.5px; line-height: 1.6;
    color: #4a4943; margin: 0 0 16px;
}
.gc-inside__card ul {
    list-style: none; padding: 0; margin: 0;
}
.gc-inside__card ul li {
    font-size: 13px; line-height: 1.5;
    padding: 8px 0; border-top: 1px solid #ecebe4;
    color: #0a0b0a;
}
.gc-inside__card ul li:first-child {
    border-top: none;
}

/* Dark variant overrides — declared AFTER base rules to win specificity tie */
.gc-inside__card--dark h3 { color: #fff; }
.gc-inside__card--dark p { color: rgba(255, 255, 255, 0.7); }
.gc-inside__card--dark ul li {
    color: rgba(255, 255, 255, 0.85);
    border-top-color: rgba(255, 255, 255, 0.12);
}
.gc-inside__card--dark .gc-inside__num { color: #c8ff00; }

.gc-inside__rule {
    background: #fff8e6;
    border: 1px solid #f5b400;
    border-left: 4px solid #f5b400;
    border-radius: 12px;
    padding: 18px 22px;
    max-width: 720px; margin: 0 auto;
}
.gc-inside__rule p {
    font-size: 14px; line-height: 1.65; color: #7a5500;
    margin: 0;
}

/* FINAL CTA */
.gc-cta {
    background: #0a0b0a; color: #fff;
    padding: clamp(48px, 7vh, 80px) 40px;
}
.gc-cta__inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
}
.gc-cta__heading {
    font-size: clamp(22px, 3vw, 32px); font-weight: 500;
    letter-spacing: -0.025em; line-height: 1.2; color: #fff;
    margin: 0 0 8px; max-width: 600px; text-wrap: balance;
}
.gc-cta__sub {
    font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.7);
    margin: 0; max-width: 540px;
}
.gc-cta__btn {
    background: #c8ff00; color: #0a0b0a;
    padding: 14px 24px; border-radius: 999px;
    font-size: 14px; font-weight: 700;
    text-decoration: none;
    transition: background .15s ease, transform .15s ease;
    flex-shrink: 0;
}
.gc-cta__btn:hover {
    background: #d8ff33; color: #0a0b0a;
    transform: translateY(-1px);
}

/* MOBILE */
@media (max-width: 900px) {
    .gc-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .gc-inside__grid {
        grid-template-columns: 1fr;
    }
    .gc-cta__inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
@media (max-width: 640px) {
    .gc-hero { padding: 60px 24px; }
    .gc-hero__form-wrap { padding: 24px; }
    .gc-inside { padding: 60px 24px; }
    .gc-cta { padding: 48px 24px; }
}

/* ═══════════════════════════════════════
   HOMEPAGE GROWTH CHECKLIST PROMO CARD
   Replaces the old hp-midcta band.
   Mirrors hp-uec-promo structure with a
   dark "inside the PDF" preview widget.
═══════════════════════════════════════ */

.hp-gc-promo {
    background: #f4f2ec;
    padding: clamp(60px, 8vh, 100px) 40px;
}
.hp-gc-promo__inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px;
    align-items: center;
    background: #fff; border: 1px solid #e3e1d8; border-radius: 24px;
    padding: 48px 56px;
}
.hp-gc-promo__l { display: flex; flex-direction: column; gap: 16px; }
.hp-gc-promo__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
    text-transform: uppercase; color: #0a0b0a;
}
.hp-gc-promo__eyebrow-dot {
    width: 6px; height: 6px; background: #c8ff00;
    border: 1px solid #0a0b0a; border-radius: 50%;
}
.hp-gc-promo__h {
    font-size: clamp(26px, 3vw, 36px); font-weight: 500;
    letter-spacing: -0.035em; line-height: 1.1; color: #0a0b0a;
    margin: 0; max-width: 460px;
}
.hp-gc-promo__sub {
    font-size: 15px; line-height: 1.55; color: rgba(10,11,10,0.65);
    max-width: 460px; margin: 0;
}
.hp-gc-promo__btn {
    display: inline-flex; align-items: center; align-self: flex-start;
    background: #0a0b0a; color: #fff; padding: 14px 24px;
    border-radius: 999px; font-size: 14px; font-weight: 600;
    text-decoration: none; margin-top: 8px;
    transition: background .18s ease, transform .18s ease;
}
.hp-gc-promo__btn:hover {
    background: #1a1a1a; color: #fff;
    transform: translateY(-1px);
}

/* Right side — checklist preview widget */
.hp-gc-promo__r { display: flex; align-items: center; justify-content: center; }
.hp-gc-promo__demo {
    background: #0a0b0a;
    border-radius: 18px;
    padding: 28px 26px 22px;
    width: 100%; max-width: 360px;
    color: #fff;
}
.hp-gc-promo__demo-eyebrow {
    font-family: var(--mono); font-size: 10px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.hp-gc-promo__demo-list {
    list-style: none; padding: 0; margin: 0 0 16px;
    display: flex; flex-direction: column; gap: 10px;
}
.hp-gc-promo__demo-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; line-height: 1.4;
    color: rgba(255,255,255,0.85);
}
.hp-gc-promo__check {
    width: 14px; height: 14px;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 3px;
    background: transparent;
    flex-shrink: 0;
    position: relative;
    transition: background .15s ease;
}
.hp-gc-promo__demo-list .is-checked .hp-gc-promo__check {
    background: #c8ff00;
    border-color: #c8ff00;
}
.hp-gc-promo__demo-list .is-checked .hp-gc-promo__check::after {
    content: '';
    position: absolute;
    left: 4px; top: 1px;
    width: 4px; height: 8px;
    border: solid #0a0b0a;
    border-width: 0 1.6px 1.6px 0;
    transform: rotate(45deg);
}
.hp-gc-promo__label { flex: 1; }
.hp-gc-promo__demo-footer {
    font-family: var(--mono); font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 14px;
}

@media (max-width: 880px) {
    .hp-gc-promo__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 28px;
    }
    .hp-gc-promo__r { order: -1; }
}
@media (max-width: 640px) {
    .hp-gc-promo { padding: 50px 24px; }
    .hp-gc-promo__inner { padding: 30px 24px; }
}

/* ═══════════════════════════════════════
   GROWTH CHECKLIST FORM — additions
   • Email helper text
   • Privacy consent checkbox
   • Inline error messages
═══════════════════════════════════════ */

.gc-form__helper {
    font-size: 11.5px;
    color: #6a6960;
    line-height: 1.5;
    margin: 6px 0 0;
}

.gc-form__error {
    font-size: 12px;
    color: #c2341f;
    line-height: 1.5;
    margin: 6px 0 0;
    font-weight: 500;
}

/* Privacy consent checkbox */
.gc-form__consent {
    margin: 6px 0 0;
}
.gc-form__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    font-family: inherit;
    font-weight: 400;
    color: #0a0b0a;
}
.gc-form__checkbox-label input[type="checkbox"] {
    /* Hide native, we render a custom box */
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
}
.gc-form__checkbox-box {
    width: 18px;
    height: 18px;
    border: 1.5px solid #d8d6cd;
    border-radius: 4px;
    background: #fff;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    transition: border-color .15s ease, background .15s ease;
}
.gc-form__checkbox-label:hover .gc-form__checkbox-box {
    border-color: #0a0b0a;
}
.gc-form__checkbox-label input[type="checkbox"]:focus-visible + .gc-form__checkbox-box {
    border-color: #0a0b0a;
    box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.4);
}
.gc-form__checkbox-label input[type="checkbox"]:checked + .gc-form__checkbox-box {
    background: #0a0b0a;
    border-color: #0a0b0a;
}
.gc-form__checkbox-label input[type="checkbox"]:checked + .gc-form__checkbox-box::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #c8ff00;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.gc-form__checkbox-text {
    font-size: 12.5px;
    line-height: 1.55;
    color: #4a4943;
    flex: 1;
}
.gc-form__checkbox-text a {
    color: #0a0b0a;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}
.gc-form__checkbox-text a:hover {
    color: #1a1a1a;
}

/* Error state on consent (the box itself goes red) */
.gc-form__consent .gc-form__input--error + .gc-form__checkbox-box,
#gc-privacy.gc-form__input--error + .gc-form__checkbox-box {
    border-color: #c2341f;
    background: #fff5f3;
}

/* ═══════════════════════════════════════
   SHARED PRIVACY CONSENT CHECKBOX
   Used by all Mowsix lead forms via
   mowsix_render_privacy_consent().
   Contextually adapts to its container.
═══════════════════════════════════════ */

.mowsix-consent {
    margin: 12px 0 0;
}
.mowsix-consent__label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    font-family: inherit;
    font-weight: 400;
}
.mowsix-consent__input {
    /* Hide native, use custom box */
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
}
.mowsix-consent__box {
    width: 18px;
    height: 18px;
    border: 1.5px solid #d8d6cd;
    border-radius: 4px;
    background: #fff;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    transition: border-color .15s ease, background .15s ease;
}
.mowsix-consent__label:hover .mowsix-consent__box {
    border-color: #0a0b0a;
}
.mowsix-consent__input:focus-visible + .mowsix-consent__box {
    border-color: #0a0b0a;
    box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.4);
}
.mowsix-consent__input:checked + .mowsix-consent__box {
    background: #0a0b0a;
    border-color: #0a0b0a;
}
.mowsix-consent__input:checked + .mowsix-consent__box::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #c8ff00;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.mowsix-consent__text {
    font-size: 12.5px;
    line-height: 1.55;
    color: #4a4943;
    flex: 1;
}
.mowsix-consent__text a {
    color: #0a0b0a;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}
.mowsix-consent__text a:hover {
    color: #1a1a1a;
}

/* Compact variant — smaller text, tighter spacing for inline forms */
.mowsix-consent--compact {
    margin: 10px 0 0;
}
.mowsix-consent--compact .mowsix-consent__text {
    font-size: 11.5px;
    line-height: 1.5;
}
.mowsix-consent--compact .mowsix-consent__box {
    width: 16px;
    height: 16px;
}
.mowsix-consent--compact .mowsix-consent__input:checked + .mowsix-consent__box::after {
    left: 4px;
    top: 0px;
    width: 5px;
    height: 9px;
}

/* On dark backgrounds (footer is typically dark) — invert text colour */
footer .mowsix-consent__text,
.site-footer .mowsix-consent__text,
.dark .mowsix-consent__text {
    color: rgba(255, 255, 255, 0.65);
}
footer .mowsix-consent__text a,
.site-footer .mowsix-consent__text a,
.dark .mowsix-consent__text a {
    color: #fff;
}
footer .mowsix-consent__box,
.site-footer .mowsix-consent__box,
.dark .mowsix-consent__box {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
}
footer .mowsix-consent__input:checked + .mowsix-consent__box,
.site-footer .mowsix-consent__input:checked + .mowsix-consent__box,
.dark .mowsix-consent__input:checked + .mowsix-consent__box {
    background: #c8ff00;
    border-color: #c8ff00;
}
footer .mowsix-consent__input:checked + .mowsix-consent__box::after,
.site-footer .mowsix-consent__input:checked + .mowsix-consent__box::after,
.dark .mowsix-consent__input:checked + .mowsix-consent__box::after {
    border-color: #0a0b0a;
}

/* Error state — red border + bg */
.mowsix-consent__input.gc-form__input--error + .mowsix-consent__box,
.mowsix-consent__input--error + .mowsix-consent__box {
    border-color: #c2341f;
    background: #fff5f3;
}

/* ─── Calculator gate helper text ─── */
.uec-gate__helper {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 6px 0 0;
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE REDESIGN — .cnt-* namespace
   Panel-approved at 90/100 (May 2026)
═══════════════════════════════════════════════════════════════════ */

/* ── Hero (dark) ── */
.cnt-hero {
    background: #0a0b0a;
    color: #fff;
    padding: 100px 24px 120px;
    position: relative;
    overflow: hidden;
}
.cnt-hero__inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.cnt-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #c8ff00;
    margin-bottom: 32px;
}
.cnt-hero__eyebrow-dot {
    width: 7px;
    height: 7px;
    background: #c8ff00;
    border-radius: 999px;
    flex-shrink: 0;
}
.cnt-hero__h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0 0 24px;
    max-width: 920px;
}
.cnt-hero__mark {
    background: #c8ff00;
    color: #0a0b0a;
    padding: 0 14px;
    display: inline-block;
    line-height: 1.05;
    white-space: nowrap;
}
.cnt-hero__sub {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
    max-width: 720px;
    margin: 0;
}

/* ── Body ── */
.cnt-body {
    background: #f4f2ec;
    padding: 80px 24px;
}
.cnt-body__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: start;
}

/* ── Form Card ── */
.cnt-form-card {
    background: #fff;
    border: 1px solid #e3e1d8;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 24px 48px -16px rgba(10, 11, 10, 0.08);
}
.cnt-form-card__heading {
    font-size: 26px;
    font-weight: 600;
    color: #0a0b0a;
    letter-spacing: -0.025em;
    margin-bottom: 6px;
}
.cnt-form-card__sub {
    font-size: 14px;
    color: #4a4943;
    line-height: 1.55;
    margin: 0 0 28px;
}
.cnt-form-card__star {
    color: #0a0b0a;
}

/* ── Form fields ── */
.cnt-form__row--two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.cnt-form__group {
    margin-bottom: 14px;
}
.cnt-form__label {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #4a4943;
    margin-bottom: 6px;
}
.cnt-form__required {
    color: #c2341f;
    margin-left: 2px;
}
.cnt-form__optional {
    color: #9a9a93;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: 11px;
}
.cnt-form__input,
.cnt-form__select,
.cnt-form__textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e3e1d8;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    color: #0a0b0a;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.15s ease;
}
.cnt-form__input:focus,
.cnt-form__select:focus,
.cnt-form__textarea:focus {
    outline: none;
    border-color: #0a0b0a;
}
.cnt-form__textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    line-height: 1.5;
}
.cnt-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1L6 6L11 1' stroke='%230a0b0a' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.cnt-form__input--error {
    border-color: #c2341f !important;
    background: #fff5f3;
}
.cnt-form__input--valid {
    border-color: #1f8f4c;
}
.cnt-form__error {
    display: none;
    font-size: 12px;
    color: #c2341f;
    line-height: 1.5;
    margin-top: 6px;
    font-weight: 500;
}
.cnt-form__error.show {
    display: block;
}
.cnt-form__error--global {
    margin: 12px 0;
    padding: 12px 14px;
    background: #fff5f3;
    border: 1px solid #c2341f;
    border-radius: 10px;
}
.cnt-form__helper {
    font-size: 11.5px;
    color: #6a6960;
    line-height: 1.5;
    margin: -8px 0 14px;
}

/* ── Phone row ── */
.cnt-form__phone-row {
    display: flex;
    gap: 8px;
}
.cnt-form__phone-select {
    padding: 12px 14px;
    border: 1.5px solid #e3e1d8;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    color: #0a0b0a;
    background: #fff;
    flex-shrink: 0;
    min-width: 110px;
}
.cnt-form__input--phone {
    flex: 1;
}

/* ── CAPTCHA ── */
.cnt-captcha {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    background: #f4f2ec;
    border: 1.5px solid #e3e1d8;
    border-radius: 10px;
}
.cnt-captcha__math {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cnt-captcha__q {
    font-size: 14px;
    font-weight: 600;
    color: #0a0b0a;
}
.cnt-captcha__eq {
    color: #4a4943;
    font-size: 14px;
}
.cnt-captcha__input {
    width: 80px;
    padding: 8px 12px;
    border: 1.5px solid #e3e1d8;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    text-align: center;
    background: #fff;
    color: #0a0b0a;
}
.cnt-captcha__input:focus {
    outline: none;
    border-color: #0a0b0a;
}
.cnt-captcha__input.cnt-form__input--error {
    border-color: #c2341f;
    background: #fff5f3;
}
.cnt-captcha__badge {
    font-size: 11px;
    color: #6a6960;
    text-align: center;
    line-height: 1.3;
}

/* ── Privacy consent ── */
.cnt-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}
.cnt-consent__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
}
.cnt-consent__box {
    width: 18px;
    height: 18px;
    border: 1.5px solid #d8d6cd;
    border-radius: 4px;
    background: #fff;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.cnt-consent:hover .cnt-consent__box {
    border-color: #0a0b0a;
}
.cnt-consent__input:focus-visible + .cnt-consent__box {
    border-color: #0a0b0a;
    box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.4);
}
.cnt-consent__input:checked + .cnt-consent__box {
    background: #0a0b0a;
    border-color: #0a0b0a;
}
.cnt-consent__input:checked + .cnt-consent__box::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #c8ff00;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.cnt-consent__text {
    font-size: 12.5px;
    line-height: 1.55;
    color: #4a4943;
    flex: 1;
}
.cnt-consent__text a {
    color: #0a0b0a;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

/* ── Submit ── */
.cnt-form__submit {
    width: 100%;
    padding: 16px 24px;
    background: #0a0b0a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
    margin-top: 8px;
}
.cnt-form__submit:hover:not(:disabled) {
    background: #1a1a1a;
    transform: translateY(-1px);
}
.cnt-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.cnt-form__footnote {
    font-size: 12px;
    color: #9a9a93;
    line-height: 1.5;
    margin: 14px 0 0;
    text-align: center;
}

/* ── Success state ── */
.cnt-success {
    display: none;
    text-align: center;
    padding: 40px 24px;
}
.cnt-success__icon {
    width: 64px;
    height: 64px;
    background: #c8ff00;
    color: #0a0b0a;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}
.cnt-success__title {
    font-size: 24px;
    font-weight: 600;
    color: #0a0b0a;
    margin-bottom: 8px;
}
.cnt-success__sub {
    font-size: 14px;
    color: #4a4943;
    line-height: 1.55;
    margin: 0;
}

/* ── Right column ── */
.cnt-side {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.cnt-side-block {
    /* base style — overridden by --dark / --white modifiers */
}
.cnt-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6a6960;
    margin-bottom: 12px;
}
.cnt-eyebrow--lime {
    color: #c8ff00;
}
.cnt-side__h {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: #0a0b0a;
    margin: 0 0 20px;
}

/* Checklist */
.cnt-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}
.cnt-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    font-size: 14.5px;
    line-height: 1.55;
    color: #0a0b0a;
}
.cnt-checklist__check {
    background: #0a0b0a;
    color: #c8ff00;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Yellow callout */
.cnt-callout {
    background: #fff8e6;
    border: 1px solid #f5b400;
    border-left: 3px solid #f5b400;
    padding: 14px 16px;
    border-radius: 6px;
}
.cnt-callout p {
    font-size: 13px;
    line-height: 1.5;
    color: #7a5500;
    margin: 0;
}

/* Dark side block */
.cnt-side-block--dark {
    background: #0a0b0a;
    color: #fff;
    border-radius: 14px;
    padding: 26px;
}
.cnt-side-block__darktext {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* White (offices) block */
.cnt-side-block--white {
    background: #fff;
    border: 1px solid #e3e1d8;
    border-radius: 14px;
    padding: 22px 26px;
}
.cnt-offices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.cnt-office__name {
    font-size: 13px;
    font-weight: 600;
    color: #0a0b0a;
    margin-bottom: 4px;
}
.cnt-office__addr {
    font-size: 13px;
    color: #4a4943;
    line-height: 1.45;
}

/* ── Alternative CTA (lime strip) ── */
.cnt-altcta {
    background: #c8ff00;
    padding: 56px 24px;
}
.cnt-altcta__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cnt-altcta__content {
    flex: 1;
    min-width: 280px;
}
.cnt-altcta__h {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: #0a0b0a;
    margin: 0 0 6px;
}
.cnt-altcta__sub {
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(10, 11, 10, 0.7);
    margin: 0;
    max-width: 600px;
}
.cnt-altcta__btn {
    background: #0a0b0a;
    color: #fff;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.18s ease, transform 0.18s ease;
}
.cnt-altcta__btn:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-1px);
}

/* ── Mobile ── */
@media (max-width: 880px) {
    .cnt-body__inner { grid-template-columns: 1fr; gap: 32px; }
    .cnt-form-card { padding: 28px 24px; }
    .cnt-form__row--two { grid-template-columns: 1fr; gap: 0; }
    .cnt-offices { grid-template-columns: 1fr; }
    .cnt-altcta__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
    .cnt-hero { padding: 70px 20px 80px; }
    .cnt-body { padding: 50px 20px; }
    .cnt-altcta { padding: 40px 20px; }
    .cnt-form__phone-row { flex-direction: column; }
    .cnt-form__phone-select { width: 100%; }
    .cnt-captcha { flex-direction: column; gap: 10px; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════════════
   CONTACT FORM — Optional fields disclosure toggle
═══════════════════════════════════════════════════════════════════ */

.cnt-disclose {
    margin: 18px 0 14px;
}
.cnt-disclose__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f4f2ec;
    border: 1.5px dashed #d8d6cd;
    border-radius: 999px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: #0a0b0a;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
    letter-spacing: -0.005em;
}
.cnt-disclose__btn:hover {
    background: #ecebe4;
    border-color: #0a0b0a;
}
.cnt-disclose__btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(200, 255, 0, 0.4);
    border-color: #0a0b0a;
}
.cnt-disclose__icon {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    width: 14px;
    display: inline-block;
    text-align: center;
}
.cnt-disclose__label {
    /* shared with the hint below */
}
.cnt-disclose__hint {
    font-size: 11.5px;
    color: #9a9a93;
    line-height: 1.5;
    margin: 8px 0 0;
}

/* The optional fields panel */
.cnt-optional-panel {
    padding: 20px;
    background: #faf9f5;
    border: 1px solid #ecebe4;
    border-radius: 12px;
    margin-bottom: 18px;
    /* subtle entry animation when revealed */
    animation: cntFadeIn 0.2s ease-out;
}
.cnt-optional-panel[hidden] {
    display: none !important;
}
@keyframes cntFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}
.cnt-optional-panel .cnt-form__group:last-child {
    margin-bottom: 0;
}
