/*
Theme Name: Harbor Healthcare
Theme URI: https://harborhealthcare.co
Author: Harbor Healthcare
Author URI: https://harborhealthcare.co
Description: A custom WordPress theme for Harbor Healthcare — a direct-to-consumer telehealth platform for medically supervised weight loss. Built with ACF flexible content sections.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
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: harbor-healthcare
Tags: healthcare, telehealth, custom-menu, custom-logo, featured-images, full-width-template
*/

/* ===== CSS VARIABLES (Brand Guidelines) ===== */
:root {
  /* Primary Blues */
  --deep: #0B3954;
  --mid: #1B6B93;
  --sky: #3DA5D9;
  --light: #7DC4E0;
  --mist: #D4EDF7;
  --foam: #F0F8FC;

  /* Warm Neutrals */
  --warm: #F7F5F0;
  --sand: #EDE8DF;
  --silver: #9CA3AD;
  --slate: #5A6270;
  --charcoal: #2C3038;

  /* Accent & Semantic */
  --leaf: #4CAF82;
  --leaf-hover: #3D9A6F;
  --leaf-light: #E8F5EE;
  --alert: #E8B931;
  --coral: #E8705A;

  --white: #FFFFFF;

  /* Typography */
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 100px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--warm);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.25s; }
a:hover { color: var(--sky); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--deep);
  line-height: 1.2;
}

h1 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.08;
}

h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin-bottom: 16px;
  color: var(--slate);
}

p:last-child { margin-bottom: 0; }

.caption {
  font-size: 13px;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.6;
}

/* Accent text in headlines */
.accent { color: var(--leaf); }
.accent-blue { color: var(--sky); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== BUTTONS ===== */
.btn-primary {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  background: var(--leaf);
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--leaf-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76,175,130,0.3);
  color: var(--white);
}

.btn-secondary {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--deep);
  background: var(--white);
  border: 1.5px solid var(--sand);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  cursor: pointer;
}

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

.btn-dark {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  background: var(--charcoal);
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-dark:hover {
  background: var(--deep);
  transform: translateY(-1px);
  color: var(--white);
}

.btn-outline-light {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
  color: var(--white);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: var(--leaf);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.7;
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: var(--charcoal);
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 1001;
}

.promo-banner p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin: 0;
  letter-spacing: 0.2px;
}

.promo-banner a {
  color: var(--leaf);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.promo-banner a:hover { color: var(--light); }

.promo-banner-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}

.promo-banner-close:hover { color: var(--white); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all 0.35s ease;
  background: var(--warm);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(247,245,240,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-mark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 30px;
  height: 30px;
}

.nav-logo-mark span {
  border-radius: 4px;
}

.nav-logo-mark span:nth-child(1) { background: var(--sky); }
.nav-logo-mark span:nth-child(2) { background: var(--mid); }
.nav-logo-mark span:nth-child(3) { background: var(--leaf); }
.nav-logo-mark span:nth-child(4) { background: var(--sky); }

.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--deep);
  letter-spacing: -0.5px;
  transition: color 0.25s;
}

.nav-logo:hover .nav-logo-text { color: var(--mid); }

/* WP Nav Menu Styles */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li { position: relative; }

.nav-menu a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.25s;
  padding: 6px 0;
  display: block;
}

.nav-menu a:hover { color: var(--deep); }

/* Dropdown */
.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(11,57,84,0.12), 0 0 0 1px rgba(11,57,84,0.05);
  padding: 8px 0;
  min-width: 200px;
  z-index: 100;
}

.nav-menu li:hover > .sub-menu { display: block; }

.nav-menu .sub-menu a {
  color: var(--slate);
  padding: 10px 20px;
  font-size: 14px;
}

.nav-menu .sub-menu a:hover {
  color: var(--deep);
  background: var(--warm);
}

/* Nav CTA button */
.nav-menu .menu-item-cta a,
.nav-cta {
  font-family: var(--font-head) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  background: var(--charcoal) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-full) !important;
  transition: all 0.25s !important;
  display: inline-block;
}

.nav-menu .menu-item-cta a:hover,
.nav-cta:hover {
  background: var(--deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(11,57,84,0.2);
}

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

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 0 0;
  background: var(--warm);
  overflow: hidden;
  text-align: center;
}

.hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: 64px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--leaf-light);
  border: 1px solid rgba(76,175,130,0.2);
  border-radius: var(--radius-full);
  padding: 6px 16px 6px 10px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--leaf);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

.hero-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--leaf-hover);
  letter-spacing: 0.2px;
}

.hero h1 {
  color: var(--deep);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--leaf);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero checklist value props */
.hero-checklist {
  display: inline-block;
  margin: 0 auto 40px;
  padding: 0;
  list-style: none;
  text-align: left;
  max-width: 100%;
}

.hero-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
}

.hero-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-check-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--white);
  stroke-width: 2.5;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-trust-micro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--silver);
}

.hero-trust-micro svg {
  width: 14px;
  height: 14px;
  stroke: var(--leaf);
}

/* Bento photo grid below hero headline */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  margin-top: 16px;
}

.bento-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--sand);
  position: relative;
}

.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bento-item-1 {
  grid-column: span 5;
  height: 280px;
}

.bento-item-2 {
  grid-column: span 4;
  height: 280px;
}

.bento-item-3 {
  grid-column: span 3;
  height: 280px;
}

.bento-item-4 {
  grid-column: span 3;
  height: 220px;
}

.bento-item-5 {
  grid-column: span 5;
  height: 220px;
}

.bento-item-6 {
  grid-column: span 4;
  height: 220px;
}

/* Stat overlay on bento items */
.bento-stat {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 10px 14px;
}

.bento-stat-num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--deep);
  letter-spacing: -0.5px;
  line-height: 1;
}

.bento-stat-label {
  font-size: 11px;
  color: var(--silver);
  margin-top: 2px;
}

/* ===== SOCIAL PROOF BAR (Scrolling logos) ===== */
.social-proof-bar {
  background: var(--white);
  padding: 40px 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  overflow: hidden;
}

.social-proof-bar .section-eyebrow {
  text-align: center;
  margin-bottom: 24px;
}

/* Press logos scrolling track */
.press-logos {
  overflow: hidden;
  position: relative;
}

.press-logos::before,
.press-logos::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.press-logos::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.press-logos::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.press-logos-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.press-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--charcoal);
  letter-spacing: -0.5px;
}

.press-logo-item:hover {
  opacity: 0.75;
  filter: grayscale(0%);
}

.press-logo-item img {
  max-height: 28px;
  width: auto;
}

/* Legacy stat layout (kept for fallback) */
.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-stat { text-align: center; }
.proof-stat-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: -0.5px;
}
.proof-stat-label { font-size: 13px; color: var(--silver); margin-top: 2px; }
.proof-divider { width: 1px; height: 40px; background: var(--sand); }

/* ===== HOW IT WORKS — Timeline ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--warm);
}

/* Timeline layout: steps left, image right */
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.timeline-steps {
  position: relative;
}

/* Vertical connector line */
.timeline-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--mist), var(--leaf), var(--sky));
}

.timeline-step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-step:last-child { margin-bottom: 0; }

.timeline-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--slate);
  z-index: 1;
  transition: all 0.3s;
}

.timeline-step:hover .timeline-dot {
  background: var(--deep);
  border-color: var(--deep);
  color: var(--white);
  transform: scale(1.1);
}

.timeline-step-body {
  padding-top: 8px;
}

.timeline-step-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.timeline-step-desc {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
}

.timeline-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--sky);
  background: var(--foam);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-top: 10px;
}

.timeline-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(11,57,84,0.1);
  position: sticky;
  top: 120px;
}

.timeline-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Legacy step cards (fallback) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--mist), var(--sky), var(--leaf));
  z-index: 0;
}

.step-card { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--deep);
  margin: 0 auto 20px;
  transition: all 0.3s;
}
.step-card:hover .step-num {
  background: var(--deep);
  color: var(--white);
  border-color: var(--deep);
  transform: scale(1.1);
}
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card:nth-child(1) .step-icon { background: var(--mist); }
.step-card:nth-child(2) .step-icon { background: var(--leaf-light); }
.step-card:nth-child(3) .step-icon { background: #FFF3E0; }
.step-title { font-family: var(--font-head); font-size: 20px; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; }
.step-desc { font-size: 15px; color: var(--slate); line-height: 1.65; max-width: 300px; margin: 0 auto; }
.step-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--sky);
  background: var(--foam);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-top: 14px;
}

/* ===== BENEFITS ===== */
.benefits {
  padding: 100px 0;
  background: var(--white);
}

/* Big text + image layout (MEDVi style) */
.benefits-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--warm);
  border-radius: var(--radius-xl);
  padding: 64px;
  margin-bottom: 40px;
}

.benefits-feature-headline {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  color: var(--deep);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.benefits-feature-headline em {
  font-style: normal;
  color: var(--leaf);
}

.benefits-feature-desc {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 24px;
}

.benefits-feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(11,57,84,0.1);
}

.benefits-feature-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* Checklist inside benefits */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.benefits-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
}

.benefits-list-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.benefits-list-check svg {
  width: 12px;
  height: 12px;
  stroke: var(--white);
  stroke-width: 2.5;
}

/* Benefit card grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--warm);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.35s;
  border: 1px solid transparent;
}

.benefit-card:hover {
  background: var(--white);
  border-color: var(--sand);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(11,57,84,0.07);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.benefit-card:nth-child(1) .benefit-icon { background: var(--mist); }
.benefit-card:nth-child(2) .benefit-icon { background: var(--leaf-light); }
.benefit-card:nth-child(3) .benefit-icon { background: #FFF3E0; }
.benefit-card:nth-child(4) .benefit-icon { background: #F3E5F5; }

.benefit-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.benefit-desc {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
  background: var(--warm);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 1.5px solid var(--sand);
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(11,57,84,0.09);
}

.price-card.featured {
  border-color: var(--deep);
  border-width: 2px;
  padding-top: 68px;
}

.price-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--deep);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 8px;
  letter-spacing: 0.5px;
}

.price-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.price-desc {
  font-size: 14px;
  color: var(--silver);
  margin-bottom: 20px;
}

.price-amount {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  color: var(--deep);
  letter-spacing: -2px;
  margin-bottom: 4px;
}

.price-amount span {
  font-size: 16px;
  font-weight: 400;
  color: var(--silver);
  letter-spacing: 0;
}

.price-per {
  font-size: 13px;
  color: var(--silver);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
}

.price-features li {
  font-size: 14px;
  color: var(--slate);
  padding: 8px 0;
  border-bottom: 1px solid var(--warm);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li:last-child { border: none; }

.price-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--leaf-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.price-check svg { width: 10px; height: 10px; }

.price-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 14px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.price-btn-primary {
  background: var(--deep);
  color: var(--white);
}

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

.price-btn-outline {
  background: transparent;
  color: var(--deep);
  border: 1.5px solid var(--sand);
}

.price-btn-outline:hover {
  border-color: var(--deep);
  background: var(--warm);
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--silver);
  margin-top: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ===== TESTIMONIALS — Bento masonry ===== */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonials-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

/* Large photo card */
.testimonial-photo-card {
  grid-column: span 4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 380px;
}

.testimonial-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(11,57,84,0.85) 0%, transparent 100%);
}

.testimonial-photo-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 2px;
}

.testimonial-photo-loss {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

/* Standard text review card */
.testimonial-card {
  background: var(--warm);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all 0.35s;
  grid-column: span 4;
}

.testimonial-card.span-8 { grid-column: span 8; }
.testimonial-card.span-5 { grid-column: span 5; }
.testimonial-card.span-3 { grid-column: span 3; }
.testimonial-card.span-4 { grid-column: span 4; }

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(11,57,84,0.07);
  background: var(--white);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--alert);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card.span-8 .testimonial-text {
  font-size: 20px;
  line-height: 1.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mist), var(--light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--deep);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--charcoal);
}

.testimonial-meta {
  font-size: 12px;
  color: var(--silver);
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--leaf);
  background: var(--leaf-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-top: 6px;
}

/* ===== COMPARISON TABLE ===== */
.comparison {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.comparison-table {
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--sand);
}

.comp-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.comp-row.header {
  background: var(--charcoal);
}

.comp-cell {
  padding: 18px 24px;
  border-bottom: 1px solid var(--sand);
  font-size: 14px;
  color: var(--slate);
  background: var(--white);
}

.comp-cell.label {
  color: var(--charcoal);
  font-weight: 500;
}

.comp-cell.header-cell {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  padding: 20px 24px;
  color: rgba(255,255,255,0.55);
  border-bottom: none;
  background: transparent;
}

.comp-cell.harbor {
  background: var(--leaf-light);
  color: var(--charcoal);
}

.comp-cell.harbor.header-cell {
  color: var(--leaf);
  background: rgba(76,175,130,0.15);
}

.comp-row:last-child .comp-cell { border-bottom: none; }

.comp-check { color: var(--leaf); font-weight: 700; font-size: 16px; }
.comp-x { color: var(--silver); font-size: 16px; }

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--warm);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--sand);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.25s;
}

.faq-question:hover { color: var(--deep); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.open .faq-icon {
  background: var(--deep);
  border-color: var(--deep);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--charcoal);
  transition: all 0.3s;
}

.faq-item.open .faq-icon svg { stroke: var(--white); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate);
  padding-right: 44px;
}

/* ===== GUARANTEE CARD ===== */
.guarantee-card {
  background: var(--warm);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  border: 1.5px solid var(--sand);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--leaf-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guarantee-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--leaf);
  stroke-width: 1.5;
}

.guarantee-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.guarantee-desc {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  margin: 0;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 100px 0;
  background: var(--warm);
  text-align: center;
  position: relative;
}

.final-cta-inner {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  border: 1.5px solid var(--sand);
  max-width: 760px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  color: var(--deep);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.final-cta h2 em {
  font-style: normal;
  color: var(--leaf);
}

.final-cta p {
  font-size: 18px;
  color: var(--slate);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.final-cta .btn-primary {
  font-size: 18px;
  padding: 18px 44px;
}

.final-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.final-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--silver);
}

.final-trust-item svg {
  width: 15px;
  height: 15px;
  stroke: var(--leaf);
  flex-shrink: 0;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--charcoal);
  padding: 24px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.trust-bar-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(76,175,130,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-bar-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--leaf);
}

.trust-bar-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.1);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--deep);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand { max-width: 300px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .nav-logo-text { color: var(--white); font-size: 18px; }

.footer-about {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
}

.footer-contact-item a:hover { color: var(--white); }

.footer-col-title {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* WP Footer Menu */
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li { margin-bottom: 10px; }

.footer-menu a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s;
}

.footer-menu a:hover { color: var(--white); }

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.25s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  max-width: 520px;
  text-align: right;
  line-height: 1.5;
}

/* ===== PAGE TEMPLATES ===== */

/* Page Header (About, Contact, Info pages) */
.page-header {
  background: var(--warm);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--sand);
}

.page-header h1 {
  color: var(--deep);
  margin-bottom: 16px;
  font-size: 44px;
}

.page-header p {
  color: var(--slate);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-header .breadcrumbs {
  margin-top: 24px;
  font-size: 13px;
  color: var(--silver);
}

.page-header .breadcrumbs a { color: var(--slate); }
.page-header .breadcrumbs a:hover { color: var(--deep); }

/* Page Content */
.page-content {
  padding: 80px 0;
  background: var(--warm);
}

.page-content .content-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 52px;
  border: 1.5px solid var(--sand);
}

.page-content h2 { margin: 40px 0 16px; font-size: 28px; }
.page-content h3 { margin: 32px 0 12px; font-size: 20px; }
.page-content p { margin-bottom: 16px; }
.page-content ul, .page-content ol { margin: 0 0 16px 24px; }
.page-content ul { list-style: disc; }
.page-content ol { list-style: decimal; }
.page-content li { margin-bottom: 8px; color: var(--slate); font-size: 15px; line-height: 1.7; }
.page-content img { border-radius: var(--radius-md); margin: 24px 0; }
.page-content blockquote {
  border-left: 3px solid var(--leaf);
  padding: 16px 24px;
  background: var(--leaf-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}
.page-content blockquote p { color: var(--deep); font-style: italic; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1.5px solid var(--sand);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--warm);
}

.contact-info-item:last-child { border: none; }

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.contact-info-value { font-size: 14px; color: var(--slate); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1.5px solid var(--sand);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--warm);
  transition: border-color 0.25s, background 0.25s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sky);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== ABOUT PAGE ===== */
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--warm);
  border-radius: var(--radius-md);
  padding: 32px;
  border-left: 4px solid var(--leaf);
}

.value-card h3 { margin-bottom: 8px; }
.value-card p { margin: 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1.5px solid var(--sand);
  transition: all 0.35s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11,57,84,0.08);
}

.team-card-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mist), var(--foam));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  color: var(--deep);
  overflow: hidden;
}

.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 18px; margin-bottom: 4px; color: var(--charcoal); }
.team-card p { font-size: 14px; color: var(--silver); margin: 0; }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--sand);
  transition: all 0.35s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(11,57,84,0.08);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--mist), var(--foam));
  overflow: hidden;
}

.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body { padding: 24px; }

.blog-card-meta {
  font-size: 12px;
  color: var(--silver);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-card-meta .category { color: var(--leaf); font-weight: 500; }

.blog-card h3 { font-size: 18px; margin-bottom: 8px; line-height: 1.4; }
.blog-card h3 a { color: var(--charcoal); }
.blog-card h3 a:hover { color: var(--deep); }
.blog-card p { font-size: 14px; color: var(--slate); line-height: 1.6; margin: 0; }

/* Single Post */
.single-post-content {
  max-width: 740px;
  margin: 0 auto;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--sand);
}

.post-meta-date { font-size: 14px; color: var(--silver); }
.post-meta-category {
  font-size: 13px;
  color: var(--leaf);
  font-weight: 500;
  background: var(--leaf-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.post-meta-author { font-size: 14px; color: var(--slate); }

.post-featured-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 40px;
}

.post-featured-image img { width: 100%; }

.post-navigation {
  display: flex;
  justify-content: space-between;
  padding: 32px 0;
  margin-top: 48px;
  border-top: 1px solid var(--sand);
}

.post-navigation a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--deep);
}

.post-navigation a:hover { color: var(--sky); }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination .page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--slate);
  background: var(--white);
  border: 1.5px solid var(--sand);
  transition: all 0.25s;
}

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

/* Sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1.5px solid var(--sand);
  margin-bottom: 24px;
}

.sidebar-widget h4 {
  font-size: 16px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--warm);
}

.sidebar-widget ul { list-style: none; }
.sidebar-widget li { margin-bottom: 10px; }
.sidebar-widget a { font-size: 14px; color: var(--slate); }
.sidebar-widget a:hover { color: var(--deep); }

/* ===== 404 PAGE ===== */
.error-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.error-404-content { position: relative; z-index: 1; }

.error-404-number {
  font-family: var(--font-head);
  font-size: 160px;
  font-weight: 800;
  color: rgba(11,57,84,0.05);
  line-height: 1;
  margin-bottom: -20px;
  letter-spacing: -8px;
}

.error-404 h1 {
  font-size: 36px;
  color: var(--deep);
  margin-bottom: 16px;
}

.error-404 p {
  font-size: 18px;
  color: var(--slate);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.error-404-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.error-404-links {
  margin-top: 48px;
  display: flex;
  gap: 32px;
  justify-content: center;
}

.error-404-links a {
  font-size: 14px;
  color: var(--silver);
  transition: color 0.25s;
}

.error-404-links a:hover { color: var(--deep); }

/* ===== WORDPRESS SPECIFIC ===== */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { display: block; margin: 24px auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--silver); margin-top: 8px; text-align: center; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }

/* WP Block styles */
.wp-block-image { margin: 24px 0; }
.wp-block-image img { border-radius: var(--radius-md); }
.wp-block-quote {
  border-left: 3px solid var(--leaf);
  padding: 16px 24px;
  background: var(--leaf-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}
.wp-block-quote p { color: var(--deep); font-style: italic; }
.wp-block-separator { border: none; border-top: 1px solid var(--sand); margin: 40px 0; }

/* Trust item (legacy, hero area) */
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate);
}

.trust-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--leaf-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg { width: 12px; height: 12px; }

/* Hero visual card (legacy hero right-side card, kept for compatibility) */
.hero-visual { position: relative; }

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 32px 72px rgba(11,57,84,0.1), 0 2px 4px rgba(0,0,0,0.04);
}

.hero-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.hero-card-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--mist), var(--foam)); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--deep); }
.hero-card-name { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--charcoal); }
.hero-card-role { font-size: 13px; color: var(--silver); }
.hero-card-stat { background: var(--warm); border-radius: var(--radius-sm); padding: 20px; margin-bottom: 16px; }
.hero-card-stat-label { font-size: 12px; color: var(--silver); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
.hero-card-stat-value { font-family: var(--font-head); font-size: 32px; font-weight: 700; color: var(--deep); letter-spacing: -1px; }
.hero-card-stat-sub { font-size: 13px; color: var(--leaf); font-weight: 500; margin-top: 4px; }
.hero-card-progress { margin-bottom: 16px; }
.hero-card-progress-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--slate); margin-bottom: 8px; }
.hero-card-progress-bar { height: 8px; background: var(--warm); border-radius: 4px; overflow: hidden; }
.hero-card-progress-fill { height: 100%; width: 68%; background: linear-gradient(90deg, var(--leaf), var(--sky)); border-radius: 4px; }
.hero-card-med { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--leaf-light); border-radius: var(--radius-sm); }
.hero-card-med-icon { width: 36px; height: 36px; background: var(--leaf); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.hero-card-med-text { font-size: 13px; font-weight: 500; color: var(--charcoal); }
.hero-card-med-sub { font-size: 12px; color: var(--slate); }

.hero-float-1, .hero-float-2 {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(11,57,84,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-float-1 { top: -20px; right: -30px; animation: float 4s ease infinite; }
.hero-float-2 { bottom: 20px; left: -40px; animation: float 4s ease 1s infinite; }
.hero-float-1 .hf-icon, .hero-float-2 .hf-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.hero-float-1 .hf-icon { background: var(--leaf-light); }
.hero-float-2 .hf-icon { background: var(--mist); }
.hf-text { font-family: var(--font-head); font-weight: 600; font-size: 13px; color: var(--charcoal); }
.hf-sub { font-size: 11px; color: var(--silver); }

/* Hero grid (legacy two-column layout, kept for compatibility) */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0 100px;
}

.hero-content { animation: fadeUp 0.8s ease forwards; }

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ===== NEW VARIANT CLASSES (v2.0 overhaul) ===== */

/* Button variants */
.btn-primary--dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn-primary--dark:hover {
  background: var(--deep);
  color: var(--white);
}

.btn-ghost {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--slate);
  background: none;
  border: none;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s;
  cursor: pointer;
}

.btn-ghost:hover { color: var(--deep); }

.price-btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.price-btn-dark:hover {
  background: var(--deep);
  color: var(--white);
  transform: translateY(-1px);
}

/* Hero warm variant */
.hero--warm { background: var(--warm); }

.hero-centered {
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: 64px;
}

.hero-headline--centered {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  color: var(--deep);
  letter-spacing: -2px;
  line-height: 1.08;
  margin-bottom: 24px;
}

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

.hero-badge--warm {
  background: var(--leaf-light);
  border-color: rgba(76,175,130,0.2);
}

.hero-actions--centered {
  justify-content: center;
}

.hero-checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.5;
  text-align: left;
  margin: 0 0 12px;
}

.hero-checklist-item:last-child { margin-bottom: 0; }

.hero-checklist-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--leaf);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.hero-checklist-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--white);
  stroke-width: 2.5;
}

/* Hero feature image (transparent PNG) */
.hero-feature-image {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 40px 0 0 !important;
  padding: 0 !important;
  float: none !important;
  position: static !important;
}

.hero-feature-image img {
  display: block !important;
  width: 100% !important;
  max-width: 560px !important;
  height: auto !important;
  margin: 0 auto !important;
  float: none !important;
  position: static !important;
}

.hero-card-data { display: none; }

/* Promo banner inner */
.promo-banner-inner {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.2px;
}

/* Social proof warm variant */
.social-proof-bar--warm {
  background: var(--white);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

/* Press logos marquee */
.press-bar {
  margin-top: 32px;
  text-align: center;
}

.press-bar-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.press-marquee-wrap {
  overflow: hidden;
  position: relative;
}

.press-marquee-wrap::before,
.press-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.press-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.press-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.press-marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.press-logo-name {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
  flex-shrink: 0;
  white-space: nowrap;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--charcoal);
  letter-spacing: -0.5px;
}

.press-logo-name:hover {
  opacity: 0.75;
  filter: grayscale(0%);
}

/* Benefits marquee variant */
.benefits-marquee .press-bar-label {
  color: var(--deep);
  opacity: 0.7;
}

.benefits-marquee .press-logo-name,
.benefits-marquee-item {
  opacity: 1;
  filter: none;
  gap: 12px;
  padding: 0 32px;
  height: 44px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0;
  color: var(--charcoal);
}

.benefits-marquee .press-logo-name:hover,
.benefits-marquee-item:hover {
  opacity: 1;
  filter: none;
}

.benefits-marquee-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--leaf-light);
  color: var(--leaf);
  flex-shrink: 0;
}

.benefits-marquee-icon svg {
  width: 20px;
  height: 20px;
}

/* How It Works — Split timeline layout */
.how-it-works--timeline { background: var(--warm); }

.hiw-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.hiw-intro {
  position: sticky;
  top: 120px;
}

.hiw-intro-title {
  margin-bottom: 16px;
}

.hiw-intro-desc {
  margin-bottom: 32px;
}

.hiw-timeline {
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--mist), var(--leaf), var(--sky));
}

.timeline-step-body {
  padding-top: 8px;
}

/* Benefits — Statement card variant */
.benefits--statement {
  padding: 100px 0;
  background: var(--white);
}

.benefits-statement-card {
  background: var(--warm);
  border-radius: var(--radius-xl);
  padding: 64px;
  border: 1.5px solid var(--sand);
}

.benefits-statement-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.benefits-statement-left {
  position: sticky;
  top: 120px;
}

.benefits-statement-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefits-statement-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  color: var(--deep);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.benefits-statement-desc {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 28px;
}

.benefit-body {
  flex: 1;
}

/* Pricing minimal variant */
.pricing--minimal { background: var(--warm); }

.price-card-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--deep);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 8px;
  letter-spacing: 0.5px;
}

/* Comparison light variant */
.comparison--light {
  background: var(--white);
}

.comparison-table--light {
  background: var(--white);
}

.comp-row--shaded .comp-cell {
  background: var(--warm);
}

.comp-row--shaded .comp-cell.harbor {
  background: rgba(76,175,130,0.08);
}

.comp-value--harbor {
  color: var(--leaf);
  font-weight: 600;
}

.comp-value--other {
  color: var(--silver);
}

/* FAQ minimal variant */
.faq--minimal { background: var(--warm); }
.faq-list--centered { max-width: 720px; margin: 0 auto; }

.faq-icon-plus { width: 14px; height: 14px; }
.faq-icon-minus { width: 14px; height: 14px; display: none; }
.faq-item.open .faq-icon-plus { display: none; }
.faq-item.open .faq-icon-minus { display: block; }

/* Final CTA warm variant */
.final-cta--warm {
  padding: 100px 0;
  background: var(--warm);
  text-align: center;
}

.final-cta-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 80px 64px;
  border: 1.5px solid var(--sand);
  max-width: 760px;
  margin: 0 auto;
}

.final-cta-eyebrow {
  color: var(--leaf);
}

.final-cta-title {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  color: var(--deep);
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.final-cta-text {
  font-size: 18px;
  color: var(--slate);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.final-trust--warm {
  margin-top: 36px;
}

/* Footer contact links */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
}

.footer-contact-link:hover {
  color: var(--white);
}

.footer-contact-link svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

/* Trust bar items (footer) */
.trust-bar-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar-item .trust-icon {
  width: 20px;
  height: 20px;
  background: none;
  border-radius: 0;
}

.trust-bar-item .trust-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--leaf);
}

/* Testimonials clean grid */
.testimonials--bento { background: var(--white); }

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

/* Circle avatar with photo */
.testimonial-avatar--photo {
  width: 48px;
  height: 48px;
}

.testimonial-avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ===== RESPONSIVE (v2 overrides) ===== */
@media (max-width: 1024px) {
  .hiw-split { grid-template-columns: 1fr; gap: 40px; }
  .hiw-intro { position: static; }
  .benefits-statement-inner { grid-template-columns: 1fr; gap: 40px; }
  .benefits-statement-left { position: static; }
  .benefits-statement-card { padding: 40px; }
  .benefits-statement-title { font-size: 30px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta-card { padding: 56px 40px; }
  .final-cta-title { font-size: 36px; }
}

@media (max-width: 768px) {
  .hero-headline--centered { font-size: 36px; letter-spacing: -1px; }
  .hero-feature-image { margin-top: 40px; border-radius: var(--radius-lg); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-bar-items { gap: 20px; justify-content: flex-start; padding: 0 24px; overflow-x: auto; }
  .press-bar-label { font-size: 11px; }
  .final-cta-card { padding: 48px 28px; }
  .final-cta-title { font-size: 30px; }
  .final-cta-text { font-size: 16px; }
}

@media (max-width: 480px) {
  .hero-headline--centered { font-size: 30px; }
  .hero-feature-image { margin-top: 32px; }
  .benefits-statement-card { padding: 28px; }
  .final-cta-card { padding: 36px 20px; }
  .final-cta-title { font-size: 26px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  h1 { font-size: 44px; }
  .section-title { font-size: 34px; }

  .bento-item-1 { grid-column: span 6; }
  .bento-item-2 { grid-column: span 6; }
  .bento-item-3 { display: none; }
  .bento-item-4 { grid-column: span 4; }
  .bento-item-5 { grid-column: span 8; }
  .bento-item-6 { display: none; }

  .timeline-grid { grid-template-columns: 1fr; gap: 40px; }
  .timeline-image { position: static; }
  .timeline-image img { height: 320px; }

  .benefits-feature { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .benefits-feature-img img { height: 260px; }
  .benefits-feature-headline { font-size: 30px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }

  .testimonials-bento .testimonial-card.span-8 { grid-column: span 12; }
  .testimonials-bento .testimonial-card.span-5 { grid-column: span 6; }
  .testimonials-bento .testimonial-card.span-3 { grid-column: span 6; }
  .testimonials-bento .testimonial-photo-card { grid-column: span 6; }

  .guarantee-card { padding: 40px; grid-template-columns: 60px 1fr; gap: 24px; }
  .guarantee-icon { width: 60px; height: 60px; }
  .guarantee-icon svg { width: 28px; height: 28px; }

  .final-cta-inner { padding: 56px 40px; }
  .final-cta h2 { font-size: 36px; }

  .steps-grid::before { display: none; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .trust-bar-inner { gap: 28px; }
  .trust-bar-divider { display: none; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-menu { display: none; }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(247,245,240,0.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px 28px;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border-bottom: 1px solid var(--sand);
  }

  .nav-menu.active a { color: var(--charcoal); padding: 10px 0; }
  .nav-menu.active .menu-item-cta a { margin-top: 12px; }
  .mobile-toggle { display: flex; }

  /* Hero */
  h1 { font-size: 36px; letter-spacing: -1px; }
  .hero { padding: 60px 0 0; }
  .hero-inner { padding-bottom: 40px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-checklist { align-items: flex-start; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-item { grid-column: span 1 !important; height: 180px !important; display: block; }

  /* Sections */
  .section-title { font-size: 30px; }
  .section-desc { font-size: 15px; }
  .section-header { margin-bottom: 48px; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-feature { padding: 28px; }
  .benefits-feature-headline { font-size: 26px; }

  /* Testimonials */
  .testimonials-bento { grid-template-columns: 1fr; }
  .testimonials-bento > * { grid-column: span 1 !important; }
  .testimonial-photo-card { min-height: 260px; }
  .testimonial-card.span-8 .testimonial-text { font-size: 16px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  /* Proof bar */
  .social-proof-inner { gap: 24px; }
  .proof-divider { display: none; }

  /* Comparison */
  .comp-row { grid-template-columns: 1.4fr 0.8fr 0.8fr; }
  .comp-cell { padding: 14px 12px; font-size: 13px; }

  /* Guarantee */
  .guarantee-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 28px;
    gap: 20px;
  }
  .guarantee-icon { margin: 0 auto; }

  /* Final CTA */
  .final-cta-inner { padding: 48px 28px; }
  .final-cta h2 { font-size: 30px; }
  .final-cta p { font-size: 16px; }
  .final-trust { gap: 20px; }

  /* Trust bar */
  .trust-bar-inner { gap: 20px; justify-content: flex-start; padding: 0 24px; overflow-x: auto; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { max-width: none; grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-disclaimer { text-align: left; }

  /* Pages */
  .page-header h1 { font-size: 32px; }
  .page-header { padding: 60px 0 40px; }
  .page-content .content-wrap { padding: 28px; }

  /* 404 */
  .error-404-number { font-size: 100px; }
  .error-404 h1 { font-size: 28px; }
  .error-404-actions { flex-direction: column; align-items: center; }

  /* Hero grid legacy */
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 80px 0 60px; }
  .hero-float-1, .hero-float-2 { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 30px; }
  .section-title { font-size: 26px; }

  .promo-banner p { font-size: 12px; padding: 0 32px; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-item { height: 200px !important; }

  .hero-card { padding: 24px; }
  .price-card { padding: 28px 20px; }
  .benefit-card { padding: 28px; }
  .testimonial-card { padding: 24px; }
  .guarantee-card { padding: 28px 20px; }
  .final-cta-inner { padding: 36px 20px; }
  .final-cta h2 { font-size: 26px; }
  .proof-stat-num { font-size: 22px; }

  .timeline-steps::before { left: 14px; }
  .timeline-dot { width: 30px; height: 30px; font-size: 12px; }
  .timeline-step { gap: 16px; }
}

