/* ============================================================
   F and S CPAs LLP — Warm & Approachable Design
   ============================================================ */

/* NOTE: Conversion-focused homepage component styles are appended
   at the bottom of this file under "HOMEPAGE — CONVERSION SECTIONS". */

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

:root {
  --primary: #0d7377;
  --primary-hover: #0a5f63;
  --primary-bg: #e6f4f4;
  --accent: #f4a261;
  --accent-hover: #e8894a;
  --bg: #fdf8f0;
  --white: #ffffff;
  --card: #ffffff;
  --text: #1c1917;
  --text-muted: #78716c;
  --text-light: #a8a29e;
  --border: #e7e3dc;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 48px;
  --font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1160px;
  --section-pad: 96px 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.09);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark span {
  font-size: 0.875rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links > li > a:not(.btn-primary) {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  display: block;
}

.nav-links > li > a:not(.btn-primary):hover {
  color: var(--text);
  background: var(--border);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--white) !important;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  margin-left: 8px;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle {
  cursor: pointer;
  display: flex !important;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-toggle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.6;
  transition: transform 0.2s;
}

.nav-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  list-style: none;
  min-width: 200px;
  padding: 16px 0 8px;
  z-index: 200;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: background 0.15s, color 0.15s;
  border-radius: 0;
}

.dropdown-menu li a:hover {
  background: var(--primary-bg);
  color: var(--primary);
}

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

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: var(--bg);
  padding: 88px 40px 0;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

.hero-headline {
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: var(--primary);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
}

.btn-hero-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 8px;
  transition: color 0.2s;
  gap: 6px;
}

.btn-hero-secondary:hover { color: var(--text); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.hero-trust-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.hero-trust-text strong { color: var(--text); display: block; }

.hero-img-wrap {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  overflow: hidden;
  height: 560px;
  position: relative;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-img-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-img-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.hero-img-badge-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.hero-img-badge-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   SERVICES (homepage)
   ============================================================ */

.home-services {
  padding: var(--section-pad);
  background: var(--white);
}

.home-services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 56px;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.home-svc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.home-svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--primary-bg);
}

.home-svc-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.home-svc-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.home-svc-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.home-svc-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}

/* ============================================================
   WHO WE ARE
   ============================================================ */

.who-we-are {
  padding: var(--section-pad);
  background: var(--bg);
}

.who-we-are-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.who-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  position: relative;
}

.who-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.who-body strong { color: var(--text); }

.who-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.who-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
}

.who-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.who-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-section {
  background: var(--primary);
  padding: 88px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.cta-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.cta-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 1;
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  transition: transform 0.15s, box-shadow 0.2s;
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 50px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-cta-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ============================================================
   PAGE HERO (service pages)
   ============================================================ */

.page-hero {
  background: var(--bg);
  padding: 80px 40px 72px;
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--primary); font-weight: 500; }
.breadcrumb span { color: var(--text-light); }

.page-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.page-hero-title em {
  font-style: normal;
  color: var(--primary);
}

.page-hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

/* ============================================================
   SERVICES HUB PAGE
   ============================================================ */

.services-grid-section {
  padding: var(--section-pad);
  background: var(--white);
}

.services-grid-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.svc-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--primary-bg);
}

.svc-card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.svc-card-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.svc-card-desc {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 24px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap 0.2s;
}

.svc-card:hover .svc-card-link { gap: 8px; }

/* ============================================================
   SERVICE DETAIL
   ============================================================ */

.svc-detail-section {
  padding: var(--section-pad);
  background: var(--white);
}

.svc-detail-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.svc-detail-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 32px;
}

.svc-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-checklist li {
  font-size: 0.975rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 30px;
  position: relative;
}

.svc-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--primary-bg);
  color: var(--primary);
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 20px;
  padding-left: 1px;
}

.svc-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  box-shadow: var(--shadow-md);
}

.svc-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   SERVICE WHY SECTION
   ============================================================ */

.svc-why-section {
  background: var(--bg);
  padding: var(--section-pad);
}

.svc-why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.svc-why-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 48px;
  text-align: center;
}

.svc-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}

.svc-why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.svc-why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.svc-why-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   PRICING TABLE
   ============================================================ */

.pricing-section {
  padding: var(--section-pad);
  background: var(--white);
}

.pricing-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.pricing-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pricing-tab {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: var(--font);
}

.pricing-tab:hover { color: var(--text); }

.pricing-tab.active {
  background: var(--primary);
  color: var(--white);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  border-color: var(--primary-bg);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured {
  background: var(--primary);
  border-color: var(--primary);
}

.pricing-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-card-label { color: rgba(255,255,255,0.7); }

.pricing-card-range {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}

.pricing-card.featured .pricing-card-range { color: rgba(255,255,255,0.9); }

.pricing-card-price {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 28px;
}

.pricing-card.featured .pricing-card-price { color: var(--white); }

.per-run {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}

.pricing-card.featured .per-run { color: rgba(255,255,255,0.65); }

.pricing-card-btn {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  transition: background 0.2s;
  text-decoration: none;
  width: 100%;
  text-align: center;
}

.pricing-card-btn:hover { background: #c8e9e8; }

.pricing-card.featured .pricing-card-btn {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

.pricing-card.featured .pricing-card-btn:hover {
  background: rgba(255,255,255,0.3);
}

.pricing-cards.two-col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-note a { color: var(--primary); font-weight: 600; }

/* ============================================================
   BLOG
   ============================================================ */

.blog-hero {
  background: var(--bg);
  padding: 80px 40px 60px;
  border-bottom: 1px solid var(--border);
}

.blog-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.blog-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}

.blog-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
}

.blog-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px 40px 96px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

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

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

.post-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--primary-bg);
}

.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.post-card:hover .post-card-img img { transform: scale(1.03); }

.post-card-body { padding: 28px; }

.post-meta {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.post-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.post-card-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.post-card-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.post-card-link:hover { gap: 8px; }

.blog-empty {
  text-align: center;
  padding: 80px 32px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ============================================================
   SINGLE POST
   ============================================================ */

.post-hero {
  background: var(--bg);
  padding: 80px 40px 60px;
  border-bottom: 1px solid var(--border);
}

.post-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.post-tag {
  display: inline-block;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.post-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}

.post-hero-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.post-featured-img {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}

.post-featured-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-top: -20px;
  box-shadow: var(--shadow-md);
}

.post-content {
  max-width: 760px;
  margin: 60px auto;
  padding: 0 40px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #44403c;
}

.post-content h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text);
  margin: 48px 0 16px;
  letter-spacing: -0.02em;
}

.post-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 36px 0 12px;
}

.post-content p { margin-bottom: 24px; }

.post-content ul, .post-content ol {
  margin: 0 0 24px 24px;
}

.post-content li { margin-bottom: 8px; }

.post-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 48px;
  transition: gap 0.2s;
}

.post-back:hover { gap: 10px; }

/* ============================================================
   STATIC PAGES
   ============================================================ */

.static-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 40px 120px;
}

.static-page h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.static-page .updated {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.static-page h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 40px 0 12px;
}

.static-page p, .static-page li {
  font-size: 1rem;
  line-height: 1.75;
  color: #44403c;
  margin-bottom: 16px;
}

.static-page ul { margin-left: 24px; margin-bottom: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--text);
  padding: 48px 40px;
}

.site-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand .logo-mark { background: rgba(255,255,255,0.12); }
.footer-brand .logo-name { color: rgba(255,255,255,0.9); }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.45); }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.85); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .home-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner,
  .who-we-are-inner,
  .svc-detail-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero { padding: 64px 24px 0; }
  .hero-img-wrap { height: 360px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }

  .services-grid-inner { grid-template-columns: 1fr; }

  .svc-why-grid { grid-template-columns: 1fr 1fr; }

  .pricing-cards { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

  .pricing-tabs { flex-wrap: wrap; border-radius: var(--radius-md); width: 100%; justify-content: center; }

  .who-img-wrap, .svc-detail-img { height: 300px; }

  .site-footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px 20px; }

  .site-header { padding: 0 20px; }

  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }

  nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }

  nav.nav-open .dropdown-menu {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg);
    border-radius: var(--radius-sm);
    margin-top: 4px;
    padding: 8px 0;
  }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }

  .home-services-grid { grid-template-columns: 1fr; }

  .svc-why-grid { grid-template-columns: 1fr; }

  .blog-grid { padding: 40px 20px 64px; grid-template-columns: 1fr; }

  .page-hero { padding: 60px 20px 52px; }

  .cta-section { padding: 64px 20px; }

  .site-footer { padding: 36px 20px; }
}

/* ============================================================
   HOMEPAGE — CONVERSION SECTIONS
   (pain points, problem-first services, trust, process, booking)
   ============================================================ */

/* Hero headline accent already styled via .hero-headline em */

/* --- PAIN POINTS --- */
.pain-section {
  background: var(--white);
  padding: var(--section-pad);
}

.pain-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.pain-header {
  text-align: center;
  margin-bottom: 48px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pain-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.pain-card-icon {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.pain-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pain-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.pain-card-bridge {
  background: var(--primary);
  border-color: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pain-card-bridge p {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pain-card-bridge p strong { color: var(--white); }

.pain-bridge-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.pain-bridge-link:hover { gap: 10px; }

/* --- SERVICES (problem-first) --- */
.home-services-grid.svc-2col {
  grid-template-columns: repeat(2, 1fr);
}

.home-svc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.home-svc-badge {
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

.home-svc-hook {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.45;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

/* --- TRUST / WHY US --- */
.trust-section {
  background: var(--white);
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
}

.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.trust-header {
  text-align: center;
  margin-bottom: 48px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.trust-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.trust-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.trust-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.trust-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.trust-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.trust-stat {
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 50px;
}

.trust-stat-num {
  font-weight: 800;
  margin-right: 4px;
}

/* --- PROCESS --- */
.process-section {
  background: var(--bg);
  padding: var(--section-pad);
}

.process-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 56px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 0 12px;
}

.process-num {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.process-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.process-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- BOOKING --- */
.book-section {
  background: var(--primary);
  padding: 88px 40px;
  position: relative;
  overflow: hidden;
}

.book-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.book-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.book-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

.book-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.book-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 28px;
}

.book-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  transition: opacity 0.2s;
}

.book-phone:hover { opacity: 0.8; }

.book-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

.book-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.book-card-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.book-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.book-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.book-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.book-form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

.book-form-group input,
.book-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.book-form-group input:focus,
.book-form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,115,119,0.1);
  background: var(--white);
}

.book-form-group input::placeholder { color: var(--text-light); }

.book-form-submit {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s, transform 0.15s;
  margin-top: 4px;
}

.book-form-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.book-form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

/* --- THANK YOU PAGE --- */
.thankyou-page {
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  text-align: center;
  background: var(--bg);
}

.thankyou-inner { max-width: 540px; }

.thankyou-icon { font-size: 3.5rem; margin-bottom: 24px; }

.thankyou-page h1 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}

.thankyou-page p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.thankyou-page p strong { color: var(--text); }

.thankyou-page a { color: var(--primary); font-weight: 600; }

.thankyou-back {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
}

/* --- RESPONSIVE (conversion sections) --- */
@media (max-width: 900px) {
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .home-services-grid.svc-2col { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .book-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .pain-grid { grid-template-columns: 1fr; }
  .book-section { padding: 64px 20px; }
  .book-card { padding: 28px 22px; }
  .book-form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   REVIEWS PAGE — Google review cards
   ============================================================ */
.reviews-summary {
  margin-top: 20px;
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 600;
}
.reviews-summary .reviews-stars { color: var(--accent); letter-spacing: 2px; margin-right: 8px; }
.reviews-summary strong { color: var(--primary); }

.reviews-section {
  background: var(--bg);
  padding: var(--section-pad);
}
.reviews-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.review-stars {
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
  border: none;
  margin: 0 0 20px;
  flex: 1;
}
.review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  font-size: 0.85rem;
}
.review-author { font-weight: 700; color: var(--text); }
.review-when { color: var(--text-light); }
.review-src { color: var(--primary); font-weight: 600; }
.reviews-cta-line {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
}
.reviews-cta-line a { color: var(--primary); font-weight: 600; }

@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICE PAGES — "Who this is for" qualifier band
   ============================================================ */
.svc-fit { background: var(--primary-bg); padding: 56px 24px; }
.svc-fit-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.svc-fit-inner h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.svc-fit-inner p { color: var(--text-muted); line-height: 1.7; }
.svc-fit-note { margin-top: 14px; font-size: 0.9rem; color: var(--text-light); }
