/* ===================================================
   HOSTSTARTER THEME — main.css
   =================================================== */

/* ── Google Fonts ────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ───────────────────────────────── */
:root {
  --hs-blue:       #1A3C6E;
  --hs-orange:     #F26522;
  --hs-dark:       #111827;
  --hs-gray-600:   #4B5563;
  --hs-gray-400:   #9CA3AF;
  --hs-light-blue: #EBF2FA;
  --hs-white:      #FFFFFF;

  --font-main: 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.13);

  --container: 1180px;
  --gap:        2rem;
}

/* ── Reset & Base ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--hs-gray-600);
  background: var(--hs-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--hs-blue); text-decoration: none; }
a:hover { color: var(--hs-orange); }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  color: var(--hs-blue);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin-bottom: 1rem; }

/* ── Layout Helpers ──────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section--light { background: var(--hs-light-blue); }
.section--dark  { background: var(--hs-dark); color: var(--hs-white); }
.section--dark h2, .section--dark h3 { color: var(--hs-white); }

.text-center { text-align: center; }
.text-orange { color: var(--hs-orange); }
.text-blue   { color: var(--hs-blue); }

/* Section Label */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--hs-orange);
  margin-bottom: .75rem;
}
.section-intro {
  max-width: 620px;
  margin: 0 auto 3rem;
  color: var(--hs-gray-600);
  font-size: 1.05rem;
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .8rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--hs-orange);
  color: var(--hs-white);
  border-color: var(--hs-orange);
}
.btn-primary:hover {
  background: #d95510;
  border-color: #d95510;
  color: var(--hs-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(242,101,34,.35);
}
.btn-secondary {
  background: transparent;
  color: var(--hs-blue);
  border-color: var(--hs-blue);
}
.btn-secondary:hover {
  background: var(--hs-blue);
  color: var(--hs-white);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--hs-white);
  color: var(--hs-blue);
  border-color: var(--hs-white);
}
.btn-white:hover {
  background: var(--hs-light-blue);
  color: var(--hs-blue);
}
.btn-sm { padding: .55rem 1.1rem; font-size: .85rem; }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.05rem; }

/* ── Header ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--hs-white);
  border-bottom: 1px solid rgba(26,60,110,.1);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  gap: 2rem;
}
.site-logo { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.site-logo img { height: 44px; width: auto; }
.site-logo .logo-img { height: 110px; width: auto; display: block; }
.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--hs-blue);
  letter-spacing: -.02em;
}
.logo-text span { color: var(--hs-orange); }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--hs-gray-600);
  padding: .45rem .8rem;
  border-radius: var(--radius-sm);
  transition: all .15s;
}
.main-nav a:hover, .main-nav a.current-menu-item {
  color: var(--hs-blue);
  background: var(--hs-light-blue);
}

/* Dropdown */
.menu-item-has-children { position: relative; }
.menu-item-has-children > a::after {
  content: '▾';
  font-size: .7rem;
  margin-left: .35rem;
}
.sub-menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--hs-white);
  border: 1px solid rgba(26,60,110,.1);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: .625rem .5rem;
  z-index: 200;
  column-count: 1;
  column-gap: 0;
  /* fade in quickly, fade out slowly with delay so cursor can travel to items */
  transition: opacity .15s ease, visibility 0s linear .4s;
}

/* Wide multi-column markets dropdown */
.sub-menu--markets {
  min-width: 560px;
  column-count: 3;
  column-gap: 0;
}

/* Group label rows inside dropdowns */
.sub-menu-group-label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--hs-gray-400);
  padding: .6rem .75rem .25rem;
  break-inside: avoid;
  pointer-events: none;
  margin-top: .25rem;
}

.sub-menu li:first-child.sub-menu-group-label { margin-top: 0; }
.menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .15s ease, visibility 0s linear 0s;
}
.sub-menu li { break-inside: avoid; }
.sub-menu a {
  display: block;
  padding: .4rem .75rem;
  font-size: .85rem;
  white-space: nowrap;
  color: var(--hs-gray-600);
  border-radius: var(--radius-sm);
}
.sub-menu a:hover { background: var(--hs-light-blue); color: var(--hs-blue); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--hs-blue);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  background: var(--hs-white);
  padding: 1.5rem;
  overflow-y: auto;
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: .75rem 1rem;
  font-weight: 500;
  color: var(--hs-gray-600);
  border-bottom: 1px solid rgba(0,0,0,.05);
  font-size: 1rem;
}
.mobile-nav a:hover { color: var(--hs-blue); }
.mobile-nav .mobile-markets-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.mobile-markets-panel { display: none; background: var(--hs-light-blue); border-radius: var(--radius-sm); padding: .5rem; margin: .5rem 0; }
.mobile-markets-panel.open { display: grid; grid-template-columns: 1fr 1fr; gap: .25rem; }
.mobile-markets-panel a { font-size: .85rem; padding: .4rem .75rem; border: none; }

/* ── Trust Bar ───────────────────────────────────── */
.trust-bar {
  background: var(--hs-blue);
  padding: .7rem 0;
  overflow: hidden;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  padding: .3rem 1.2rem;
  white-space: nowrap;
}
.trust-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.25);
}
.trust-item svg { color: var(--hs-orange); flex-shrink: 0; }

/* ── Hero ────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--hs-blue) 0%, #0f2547 100%);
  color: var(--hs-white);
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 780px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(242,101,34,.15);
  border: 1px solid rgba(242,101,34,.3);
  color: #ffa97a;
  padding: .4rem 1rem;
  border-radius: 99px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: .04em;
}
.hero h1 { color: var(--hs-white); margin-bottom: 1.25rem; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  max-width: 580px;
  margin: 0 auto 2rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  margin-top: 1.75rem;
}
.hero-stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 1.25rem 1rem;
  background: rgba(255,255,255,.05);
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--hs-white);
  display: block;
}
.hero-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-top: .2rem;
}

/* ── Why Section Cards ───────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--hs-white);
  border: 1px solid rgba(26,60,110,.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all .2s;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(26,60,110,.15);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: var(--hs-light-blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--hs-blue);
}
.card h3 { font-size: 1rem; margin-bottom: .5rem; }
.card p  { font-size: .9rem; margin: 0; line-height: 1.55; }

/* ── How It Works ────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}
.step {
  text-align: center;
  padding: 1.5rem;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--hs-orange);
  color: var(--hs-white);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 14px rgba(242,101,34,.35);
}
.step h3 { margin-bottom: .5rem; font-size: 1.05rem; }
.step p  { font-size: .9rem; }

/* ── Markets Grid ────────────────────────────────── */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.market-card {
  background: var(--hs-white);
  border: 1px solid rgba(26,60,110,.1);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1rem;
  text-align: center;
  transition: all .18s;
  box-shadow: var(--shadow-sm);
}
.market-card:hover {
  background: var(--hs-blue);
  color: var(--hs-white);
  border-color: var(--hs-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.market-card:hover h4, .market-card:hover span { color: var(--hs-white); }
.market-card h4 { font-size: .9rem; margin-bottom: .25rem; color: var(--hs-blue); }
.market-card span { font-size: .78rem; color: var(--hs-gray-400); }

.markets-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.market-group { margin-bottom: 2.5rem; }
.market-group-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--hs-gray-400);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}

/* ── Portfolio Gallery ───────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.portfolio-grid .portfolio-item:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--hs-gray-100);
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.portfolio-item:hover img { transform: scale(1.03); }
.portfolio-item:first-child { min-height: 520px; }
.portfolio-item:not(:first-child) { min-height: 250px; }
.portfolio-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .45rem .85rem;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
}
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-grid .portfolio-item:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
    min-height: 260px;
  }
  .portfolio-item:not(:first-child) { min-height: 180px; }
}

/* ── Testimonials ────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--hs-white);
  border: 1px solid rgba(26,60,110,.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.stars { color: #F59E0B; font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.testimonial-text {
  font-size: .95rem;
  font-style: italic;
  color: var(--hs-gray-600);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--hs-blue);
  color: var(--hs-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .9rem; color: var(--hs-blue); }
.author-location { font-size: .78rem; color: var(--hs-gray-400); }

/* ── Blog Cards ──────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  background: var(--hs-white);
  border: 1px solid rgba(26,60,110,.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-thumb {
  aspect-ratio: 16/9;
  background: var(--hs-light-blue);
  overflow: hidden;
}
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--hs-orange);
  margin-bottom: .5rem;
}
.blog-card h3 { font-size: 1rem; margin-bottom: .6rem; line-height: 1.4; }
.blog-card h3 a { color: var(--hs-blue); }
.blog-card h3 a:hover { color: var(--hs-orange); }
.blog-card-excerpt { font-size: .88rem; color: var(--hs-gray-600); flex: 1; margin-bottom: 1rem; }
.blog-card-meta { font-size: .78rem; color: var(--hs-gray-400); }

/* ── Lead Form / CTA ─────────────────────────────── */
.cta-section { background: var(--hs-blue); }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.cta-left h2 { color: var(--hs-white); margin-bottom: 1rem; }
.cta-left p  { color: rgba(255,255,255,.75); }
.cta-calendly-wrap {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
}
.cta-calendly-wrap h3 { color: var(--hs-white); margin-bottom: .5rem; }
.cta-calendly-wrap p  { color: rgba(255,255,255,.7); font-size: .9rem; margin-bottom: 1.25rem; }

/* Form */
.hs-form {
  background: var(--hs-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.hs-form h3 { color: var(--hs-blue); margin-bottom: 1.25rem; font-size: 1.15rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form-group { margin-bottom: .9rem; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--hs-blue);
  margin-bottom: .3rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .65rem .85rem;
  border: 1.5px solid rgba(26,60,110,.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: .9rem;
  color: var(--hs-dark);
  background: var(--hs-white);
  transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--hs-blue);
  box-shadow: 0 0 0 3px rgba(26,60,110,.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }

/* ── Pricing Card ────────────────────────────────── */
.pricing-section { background: var(--hs-light-blue); }
.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--hs-white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-top: 5px solid var(--hs-orange);
}
.pricing-badge {
  display: inline-block;
  background: var(--hs-light-blue);
  color: var(--hs-blue);
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem .9rem;
  border-radius: 99px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.pricing-fee {
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--hs-blue);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .35rem;
  flex-wrap: wrap;
}
.pricing-fee span { font-size: 1.5rem; vertical-align: top; margin-top: .6rem; display: inline-block; }
.pricing-plus { font-size: 1.5rem; font-weight: 400; color: var(--hs-gray-400); align-self: center; margin-top: 0; }
.pricing-flat { font-size: 2rem; font-weight: 800; color: var(--hs-blue); }
.pricing-flat-unit { font-size: 1rem; font-weight: 500; color: var(--hs-gray-400); }
.pricing-period { color: var(--hs-gray-400); font-size: .95rem; margin: .5rem 0 1.5rem; }
.pricing-features {
  text-align: left;
  margin: 1.5rem 0;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
  font-size: .9rem;
  color: var(--hs-gray-600);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓';
  color: #10B981;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── FAQ Accordion ───────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(26,60,110,.1);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 600;
  color: var(--hs-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--hs-orange);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--hs-gray-600);
  font-size: .95rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── Services Grid ───────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--hs-white);
  border: 1px solid rgba(26,60,110,.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(26,60,110,.18);
  transform: translateY(-2px);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--hs-light-blue);
  color: var(--hs-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.service-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.service-card p  { font-size: .88rem; margin: 0; line-height: 1.6; }

/* ── Stats Row ───────────────────────────────────── */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: rgba(26,60,110,.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 2rem 1rem;
  background: var(--hs-white);
}
.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--hs-blue);
  display: block;
  line-height: 1;
}
.stat-label { font-size: .82rem; color: var(--hs-gray-400); margin-top: .4rem; }

/* ── City Page ───────────────────────────────────── */
.city-hero {
  background: linear-gradient(135deg, #0f2547, var(--hs-blue));
  padding: 4rem 0 3rem;
  color: var(--hs-white);
}
.city-hero h1 { color: var(--hs-white); }
.city-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.city-meta-item {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  text-align: center;
  flex: 1;
  min-width: 130px;
}
.city-meta-num { font-size: 1.6rem; font-weight: 800; color: var(--hs-white); }
.city-meta-label { font-size: .75rem; color: rgba(255,255,255,.6); margin-top: .2rem; }

.nearby-cities { display: flex; flex-wrap: wrap; gap: .75rem; }
.nearby-city-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--hs-light-blue);
  color: var(--hs-blue);
  padding: .5rem 1rem;
  border-radius: 99px;
  font-size: .85rem;
  font-weight: 600;
  transition: all .15s;
}
.nearby-city-link:hover { background: var(--hs-blue); color: var(--hs-white); }

.neighborhoods-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.neighborhood-tag {
  background: var(--hs-white);
  border: 1px solid rgba(26,60,110,.15);
  color: var(--hs-blue);
  padding: .35rem .85rem;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 500;
}

/* ── Contact Page ────────────────────────────────── */
.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.contact-option {
  background: var(--hs-white);
  border: 1px solid rgba(26,60,110,.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-option:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contact-option .btn { margin-top: auto; }
.contact-option-icon {
  width: 60px;
  height: 60px;
  background: var(--hs-light-blue);
  border-radius: 50%;
  color: var(--hs-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.contact-option h3 { margin-bottom: .4rem; font-size: 1rem; }
.contact-option p  { font-size: .88rem; color: var(--hs-gray-400); margin-bottom: 1rem; }

/* ── Breadcrumb ──────────────────────────────────── */
.breadcrumb {
  font-size: .82rem;
  color: var(--hs-gray-400);
  padding: .75rem 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.breadcrumb a { color: var(--hs-gray-400); }
.breadcrumb a:hover { color: var(--hs-blue); }
.breadcrumb span { margin: 0 .4rem; }

/* ── Footer ──────────────────────────────────────── */
.site-footer {
  background: var(--hs-dark);
  color: rgba(255,255,255,.7);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-text { color: var(--hs-white); margin-bottom: .75rem; display: block; font-size: 1.3rem; }
.footer-logo-img { height: 52px; width: auto; display: block; margin-bottom: .75rem; }
.footer-brand p { font-size: .88rem; line-height: 1.65; margin-bottom: 1rem; }
.footer-contact-info a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .4rem;
}
.footer-contact-info a:hover { color: var(--hs-orange); }
.footer-col h4 {
  color: var(--hs-white);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: .45rem; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
}
.footer-col ul li a:hover { color: var(--hs-orange); }
.footer-col .view-all-link {
  display: inline-block;
  margin-top: .5rem;
  font-size: .82rem;
  color: var(--hs-orange);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }
.footer-legal { display: flex; gap: 1.25rem; }

/* ── 404 Page ────────────────────────────────────── */
.page-404 { text-align: center; padding: 6rem 0; }
.page-404 .error-num {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: var(--hs-light-blue);
  line-height: 1;
  display: block;
}
.page-404 h2 { margin: 1rem 0 .75rem; }
.page-404 p  { color: var(--hs-gray-400); margin-bottom: 2rem; }

/* ── Blog Single ─────────────────────────────────── */
.post-header { margin-bottom: 2.5rem; }
.post-header h1 { margin-bottom: 1rem; }
.post-meta { display: flex; gap: 1.25rem; flex-wrap: wrap; font-size: .85rem; color: var(--hs-gray-400); margin-bottom: 1.5rem; }
.post-featured-img { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 2.5rem; }
.post-content h2, .post-content h3 { margin: 1.75rem 0 .75rem; }
.post-content p  { margin-bottom: 1.1rem; }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.1rem; }
.post-content ul li, .post-content ol li { margin-bottom: .4rem; list-style: disc; }
.post-content ol li { list-style: decimal; }
.post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.post-sidebar { position: sticky; top: 88px; }
.sidebar-widget {
  background: var(--hs-light-blue);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h4 { color: var(--hs-blue); margin-bottom: 1rem; }

/* ── Utilities ───────────────────────────────────── */
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }

/* ── Airbnb Proof Section ────────────────────────── */
.airbnb-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 2rem;
}
.airbnb-proof-card {
  background: var(--hs-white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.airbnb-proof-card:hover { box-shadow: var(--shadow-md); }
.airbnb-proof-screenshot {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #e5e7eb;
}
.airbnb-proof-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}
.airbnb-proof-details {
  padding: 1.25rem 1.25rem 1.5rem;
}
.airbnb-proof-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}
.airbnb-proof-name {
  font-size: .95rem;
  font-weight: 600;
  color: var(--hs-dark);
  line-height: 1.4;
  margin-bottom: .6rem;
}
.airbnb-proof-location {
  font-size: .85rem;
  color: var(--hs-gray-400);
  margin-bottom: 1rem;
}
.airbnb-proof-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .75rem;
}
.airbnb-proof-rating {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hs-dark);
}
.airbnb-proof-reviews {
  font-size: .82rem;
  color: var(--hs-gray-400);
  background: #f3f4f6;
  padding: .2rem .6rem;
  border-radius: 50px;
}
.airbnb-overall-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  padding: 1.25rem 2rem;
  background: var(--hs-light-blue);
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
}
.airbnb-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hs-blue);
}
.airbnb-stat-label {
  font-size: .9rem;
  color: var(--hs-gray-600);
}
.airbnb-stat-divider {
  font-size: 1.5rem;
  color: var(--hs-gray-400);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .post-layout  { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .cta-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .airbnb-proof-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid .portfolio-item:first-child { grid-column: 1 / -1; grid-row: auto; }
}

@media (max-width: 480px) {
  .trust-item { font-size: .72rem; padding: .3rem .75rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 2rem 1.25rem; }
}

/* ════════════════════════════════════════════════════
   HERO BADGES (Google Reviews + Airbnb Guest Favorite)
   ════════════════════════════════════════════════════ */
.hero-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .875rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: .625rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50px;
  padding: .45rem 1rem .45rem .5rem;
  backdrop-filter: blur(6px);
  text-decoration: none;
  transition: background .2s, border-color .2s, transform .15s;
  cursor: default;
}

a.hero-badge { cursor: pointer; }

a.hero-badge:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-1px);
}

.badge-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.badge-google-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.badge-content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.badge-stars {
  font-size: .78rem;
  color: #FCD34D;
  letter-spacing: .5px;
}

.badge-label {
  font-size: .7rem;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════
   COMPARISON PAGES
   ════════════════════════════════════════════════════ */
.hero--compact .hero-content { padding: 2.5rem 0; }

.comparison-table-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

.comparison-table thead tr {
  background: var(--hs-blue);
  color: #fff;
}

.comparison-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.comparison-table thead .col-us {
  background: var(--hs-orange);
}

.comparison-table tbody tr {
  border-bottom: 1px solid #E5E7EB;
  transition: background .15s;
}

.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody tr:hover { background: #F9FAFB; }

.comparison-table tbody td {
  padding: .875rem 1.25rem;
  vertical-align: middle;
}

.comparison-table .col-them {
  background: #FEF9F9;
}

.comparison-table .col-us {
  background: #F0FDF4;
  font-weight: 600;
}

.text-good { color: #16A34A; }
.text-bad  { color: #DC2626; }

/* Pain points grid */
.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pain-point-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
}

.pain-point-icon {
  font-size: 1.75rem;
  margin-bottom: .75rem;
}

.pain-point-card h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem;
  color: var(--hs-dark);
}

.pain-point-card p {
  font-size: .94rem;
  line-height: 1.7;
  color: var(--hs-gray-600);
  margin: 0;
}

/* 3-col card override for comparison page */
.cards-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ════════════════════════════════════════════════════
   CASE STUDY PAGE
   ════════════════════════════════════════════════════ */
.case-study-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.case-study-photo {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 400px;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}

.case-study-specs {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #E5E7EB;
}

.spec-item {
  font-size: .93rem;
  color: var(--hs-gray-600);
}

.case-study-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 820px;
  margin: 0 auto;
}

.case-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.case-step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--hs-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .9rem;
}

.case-step-body h3 { margin-bottom: .4rem; }
.case-step-body p  { margin: 0; line-height: 1.75; color: var(--hs-gray-600); }

.results-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.listing-screenshot-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}

.screenshot-caption {
  text-align: center;
  font-size: .8rem;
  color: var(--hs-gray-400);
  margin-top: .5rem;
}

.results-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.result-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.result-icon { font-size: 1.5rem; flex-shrink: 0; }

.result-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--hs-blue);
  line-height: 1.1;
}

.result-label {
  font-size: .88rem;
  color: var(--hs-gray-600);
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — Comparison & Case Study
   ════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .pain-points-grid          { grid-template-columns: 1fr; }
  .cards-grid--3             { grid-template-columns: 1fr; }
  .case-study-split          { grid-template-columns: 1fr; }
  .results-showcase          { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .comparison-table thead th { font-size: .78rem; padding: .75rem .875rem; }
  .comparison-table tbody td { font-size: .85rem; padding: .75rem .875rem; }
  .hero-badges               { gap: .625rem; }
}

/* ════════════════════════════════════════════════════
   LOGO WORDMARK
   ════════════════════════════════════════════════════ */
.site-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}

.logo-wordmark {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
}
.lw-host    { color: var(--hs-blue); }
.lw-starter { color: var(--hs-orange); }

/* Footer wordmark inherits split colors but overrides for dark bg */
.footer-logo-wordmark .lw-host    { color: #fff; }
.footer-logo-wordmark .lw-starter { color: var(--hs-orange); }

.footer-logo-lockup {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.footer-logo-wordmark {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}

/* ════════════════════════════════════════════════════
   SERVICE PAGES — Index
   ════════════════════════════════════════════════════ */
.services-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-index-card {
  background: #fff;
  border: 1.5px solid var(--hs-gray-200);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}

.service-index-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-3px);
  border-color: var(--hs-blue);
}

.sic-icon {
  font-size: 2.25rem;
  line-height: 1;
}

.sic-body { flex: 1; }

.sic-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hs-blue);
  margin-bottom: .25rem;
}

.sic-tagline {
  font-size: .88rem;
  color: var(--hs-gray-600);
  line-height: 1.5;
  margin-bottom: .75rem;
}

.sic-price {
  font-size: .85rem;
  font-weight: 700;
  color: var(--hs-orange);
  background: rgba(255,107,53,.08);
  display: inline-block;
  padding: .25rem .6rem;
  border-radius: 20px;
}

.sic-arrow {
  align-self: flex-end;
  font-size: 1.2rem;
  color: var(--hs-blue);
  opacity: .5;
  transition: opacity .2s, transform .2s;
}

.service-index-card:hover .sic-arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* ════════════════════════════════════════════════════
   SERVICE PAGES — Individual
   ════════════════════════════════════════════════════ */

/* Hero */
.service-hero {
  padding: 5rem 0 4rem;
  color: #fff;
  text-align: center;
}

.service-hero-icon { font-size: 3.5rem; line-height: 1; margin-bottom: 1rem; }
.service-eyebrow { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .75; margin-bottom: .75rem; }

.service-price-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50px;
  padding: .45rem 1.1rem;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-top: 1rem;
}

.service-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: .75rem;
}

.service-hero-sub {
  font-size: 1.1rem;
  opacity: .85;
  max-width: 580px;
  margin: 0 auto 1.5rem;
}

/* For Who bar */
.service-for-who {
  background: var(--hs-gray-50);
  border-top: 1px solid var(--hs-gray-200);
  border-bottom: 1px solid var(--hs-gray-200);
  padding: 1.25rem 0;
  text-align: center;
}

.service-for-who p {
  font-size: .95rem;
  color: var(--hs-gray-700);
  margin: 0;
}

.service-for-who strong { color: var(--hs-blue); }

/* Includes grid */
.service-includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.service-include-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: #fff;
  border: 1px solid var(--hs-gray-200);
  border-radius: 12px;
  padding: 1rem 1.125rem;
}

.service-include-item .check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--hs-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  margin-top: .1rem;
}

.service-include-item span {
  font-size: .9rem;
  color: var(--hs-gray-700);
  line-height: 1.5;
}

/* Outcome block */
.service-outcome-block {
  background: linear-gradient(135deg, var(--hs-blue) 0%, #1e3a8a 100%);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  color: #fff;
  margin-top: 1rem;
}

.outcome-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .7;
  margin-bottom: .75rem;
}

.outcome-quote {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.5;
  font-style: italic;
  margin: 0;
}

/* Service FAQ */
.service-faq { max-width: 720px; margin: 2rem auto 0; }

.service-faq-item {
  border-bottom: 1px solid var(--hs-gray-200);
}

.service-faq-item summary {
  padding: 1.1rem 0;
  font-weight: 600;
  font-size: .95rem;
  color: var(--hs-blue);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--hs-gray-500);
  transition: transform .2s;
}

.service-faq-item[open] summary::after { content: '−'; }

.service-faq-item p {
  font-size: .9rem;
  color: var(--hs-gray-700);
  line-height: 1.7;
  padding-bottom: 1rem;
  margin: 0;
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — Services
   ════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .services-index-grid { grid-template-columns: 1fr; }
  .service-includes-grid { grid-template-columns: 1fr; }
  .service-outcome-block { padding: 1.75rem; }
}

/* ════════════════════════════════════════════════════
   MANAGEMENT TIERS — Pricing Cards
   ════════════════════════════════════════════════════ */
.mgmt-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  max-width: 900px;
  margin: 2.5rem auto 0;
  align-items: start;
}

.mgmt-tier {
  border-radius: 20px;
  padding: 2rem;
  text-align: left;
  position: relative;
}

.mgmt-tier--standard {
  background: #fff;
  border: 1.5px solid var(--hs-gray-200);
}

.mgmt-tier--premium {
  background: linear-gradient(160deg, #1A3C6E 0%, #0f2849 100%);
  color: #fff;
  border: none;
  box-shadow: 0 20px 60px rgba(26,60,110,.35);
}

.mgmt-tier-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hs-orange);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .3rem .9rem;
  border-radius: 50px;
  white-space: nowrap;
}

.mgmt-tier-name {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .65;
  margin-bottom: .5rem;
}

.mgmt-tier--premium .mgmt-tier-name { color: #fff; }

.mgmt-tier-price {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--hs-blue);
  margin-bottom: .25rem;
}

.mgmt-tier--premium .mgmt-tier-price { color: #fff; }

.mgmt-tier-plus {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: .6;
}

.mgmt-tier-unit {
  font-size: 1rem;
  font-weight: 500;
  opacity: .7;
}

.mgmt-tier-tagline {
  font-size: .9rem;
  color: var(--hs-gray-600);
  margin: .5rem 0 1.5rem;
  line-height: 1.5;
}

.mgmt-tier--premium .mgmt-tier-tagline { color: rgba(255,255,255,.75); }

.mgmt-tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.mgmt-tier-features li {
  font-size: .88rem;
  color: var(--hs-gray-700);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  line-height: 1.5;
}

.mgmt-tier--premium .mgmt-tier-features li { color: rgba(255,255,255,.9); }

.feat-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--hs-blue);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  margin-top: .15rem;
}

.feat-check--gold {
  background: #F5A623;
}

.feat-missing {
  opacity: .4;
}

.feat-missing span {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  margin-top: .1rem;
  color: var(--hs-gray-400);
}

.btn-outline-blue {
  display: inline-block;
  padding: .75rem 1.5rem;
  border: 2px solid var(--hs-blue);
  color: var(--hs-blue);
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  text-align: center;
  transition: background .2s, color .2s;
}

.btn-outline-blue:hover {
  background: var(--hs-blue);
  color: #fff;
}

/* ════════════════════════════════════════════════════
   MANAGEMENT TIERS — Comparison Table
   ════════════════════════════════════════════════════ */
.mgmt-compare-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1.5px solid var(--hs-gray-200);
}

.mgmt-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.mgmt-compare-table thead th {
  padding: 1rem 1.25rem;
  background: var(--hs-gray-50);
  font-weight: 700;
  color: var(--hs-gray-800);
  text-align: center;
  border-bottom: 2px solid var(--hs-gray-200);
}

.mgmt-compare-table thead th:first-child { text-align: left; }

.mgmt-compare-table thead th small {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  color: var(--hs-gray-500);
  margin-top: .2rem;
}

.mgmt-compare-table tbody td {
  padding: .875rem 1.25rem;
  border-bottom: 1px solid var(--hs-gray-100);
  color: var(--hs-gray-700);
  text-align: center;
}

.mgmt-compare-table tbody td:first-child {
  text-align: left;
  font-size: .88rem;
}

.mgmt-compare-table tbody tr:last-child td { border-bottom: none; }

.mgmt-compare-table tbody tr:hover td { background: var(--hs-gray-50); }

.col-premium { background: rgba(26,60,110,.04); }

.check-yes { color: var(--hs-blue); font-weight: 700; font-size: 1.1rem; }
.check-no  { color: var(--hs-gray-300); font-size: 1.1rem; }

.col-premium.check-yes { color: var(--hs-blue); }

/* ════════════════════════════════════════════════════
   AI PRICING SPOTLIGHT — Blue section
   ════════════════════════════════════════════════════ */
.section--blue {
  background: linear-gradient(135deg, #1A3C6E 0%, #0f2849 100%);
  color: #fff;
}

.section--blue h2 { color: #fff; }
.section--blue p  { color: rgba(255,255,255,.8); }

.ai-pricing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ai-pricing-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ai-stat-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: 1.5rem;
}

.ai-stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #F5A623;
  margin-bottom: .35rem;
}

.ai-stat-label {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════
   RESPONSIVE — Management Tiers
   ════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .mgmt-tiers           { grid-template-columns: 1fr; }
  .ai-pricing-split     { grid-template-columns: 1fr; gap: 2.5rem; }
  .mgmt-compare-table tbody td,
  .mgmt-compare-table thead th { padding: .75rem .875rem; font-size: .82rem; }
}

/* ════════════════════════════════════════════════════
   HOSTSTARTER PREMIUM — Qualification Section
   ════════════════════════════════════════════════════ */
.premium-qualify-section {
  background: #0c1f3d;
  color: #fff;
}

.premium-qualify-section h2 { color: #fff; }
.premium-qualify-section h3 { color: #fff; font-size: 1.25rem; margin-bottom: .75rem; }
.premium-qualify-section p  { color: rgba(255,255,255,.75); }

.premium-qualify-inner { max-width: 1100px; margin: 0 auto; }

.premium-qualify-header { margin-bottom: 3rem; }

.premium-qualify-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Criteria list */
.premium-criteria-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.premium-criteria-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.criteria-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-criteria-list li div { display: flex; flex-direction: column; gap: .2rem; }

.premium-criteria-list li strong {
  font-size: .95rem;
  color: #fff;
  font-weight: 700;
}

.premium-criteria-list li span {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}

/* Premium features list */
.premium-features-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.premium-features-list li {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.premium-features-list li:last-child { border-bottom: none; padding-bottom: 0; }

.pf-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(245,166,35,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-features-list li div { display: flex; flex-direction: column; gap: .2rem; }

.premium-features-list li strong {
  font-size: .92rem;
  color: #fff;
  font-weight: 700;
}

.premium-features-list li span {
  font-size: .83rem;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
}

.premium-pricing-note {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  background: rgba(245,166,35,.12);
  border: 1px solid rgba(245,166,35,.3);
  border-radius: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}

.premium-pricing-note strong { color: #F5A623; }
.premium-pricing-note a { color: #F5A623; font-weight: 600; }

/* Premium comparison table inside navy */
.premium-compare-wrap {
  margin: 2.5rem 0 3rem;
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
}

.premium-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.premium-compare-table thead th {
  padding: 1.1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.12);
  vertical-align: bottom;
}

.premium-compare-table thead th:first-child { text-align: left; width: 50%; }

.pct-plan-name {
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .2rem;
}

.pct-plan-price {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}

.pct-col-premium { background: rgba(245,166,35,.07); position: relative; }

.pct-badge {
  display: inline-block;
  background: #F5A623;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .2rem .6rem;
  border-radius: 20px;
  margin-bottom: .4rem;
}

.premium-compare-table tbody td {
  padding: .7rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: rgba(255,255,255,.8);
  text-align: center;
  vertical-align: middle;
}

.premium-compare-table tbody td:first-child {
  text-align: left;
  color: rgba(255,255,255,.85);
}

.premium-compare-table tbody tr:last-child td { border-bottom: none; }

/* Section header rows */
.pct-section-row td {
  background: rgba(255,255,255,.05);
  color: #F5A623 !important;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .6rem 1.25rem !important;
  text-align: left !important;
}

/* Detail text under feature name */
.pct-detail {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  font-weight: 400;
  margin-top: .2rem;
  line-height: 1.4;
}

.pct-yes {
  font-size: 1rem;
  font-weight: 700;
  color: #6ee7b7;
}

.pct-yes--gold { color: #F5A623; }

.pct-no {
  font-size: 1rem;
  color: rgba(255,255,255,.2);
}

/* Qualification criteria row at bottom */
.premium-qualify-criteria-row {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 3rem;
  margin-top: 1rem;
}

.pqcr-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.pqcr-inner h3 {
  font-size: 1.4rem;
  margin-bottom: .75rem;
}

.premium-criteria-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  text-align: left;
}

.premium-criteria-list li {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
}

.criteria-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-criteria-list li div { display: flex; flex-direction: column; gap: .2rem; }

.premium-criteria-list li strong {
  font-size: .9rem;
  color: #fff;
  font-weight: 700;
}

.premium-criteria-list li span {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .premium-qualify-split  { grid-template-columns: 1fr; gap: 2.5rem; }
  .premium-criteria-list  { grid-template-columns: 1fr; }
  .premium-compare-table tbody td,
  .premium-compare-table thead th { padding: .6rem .875rem; font-size: .82rem; }
}
