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

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

:root {
  --black: #0f0f0f;
  --charcoal: #1a1a1a;
  --charcoal-2: #222;
  --white: #ffffff;
  --off-white: #f8f8f8;
  --red: #e10600;
  --red-dark: #b80500;
  --red-hover: #c90500;
  --grey-light: #f5f5f5;
  --grey-mid: #e0e0e0;
  --grey-border: #d0d0d0;
  --grey-text: #555;
  --grey-muted: #888;
  --container: 1160px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.18s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font); }

/* ═══ LAYOUT ═══ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: 64px 28px; max-width: 100%; }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-alt { background: var(--grey-light); }
.section-dark { background: var(--black); }
.section-charcoal { background: var(--charcoal); }

/* ═══ TYPOGRAPHY ═══ */
.eyebrow {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 16px;
}
.eyebrow-light { background: transparent; color: var(--red); padding-left: 0; }
.section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.05;
  color: var(--black);
}
.section-title--white { color: var(--white); }
.section-subtitle { margin-top: 14px; font-size: 17px; color: var(--grey-text); max-width: 560px; line-height: 1.65; }
.section-subtitle--grey { color: var(--grey-muted); }
.section-header { margin-bottom: 52px; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  text-align: center;
  line-height: 1;
}
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-hover); border-color: var(--red-hover); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); }
.btn-black { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-black:hover { background: var(--charcoal-2); }
.btn-white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-white:hover { background: #eee; }
.btn-lg { padding: 17px 36px; font-size: 15px; }
.btn-full { width: 100%; display: flex; }

/* ═══ HEADER ═══ */
.site-header { position: sticky; top: 0; z-index: 500; background: var(--black); border-bottom: 3px solid var(--red); }
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 28px;
  height: 66px;
  max-width: var(--container);
  margin: 0 auto;
}
.logo-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-size: 18px; font-weight: 900; color: var(--white); letter-spacing: -.02em; }
.logo-name span { color: var(--red); }
.logo-sub { font-size: 10px; color: #666; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  color: #bbb;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 8px 12px;
  transition: color var(--transition);
  white-space: nowrap;
}
.header-nav a:hover, .header-nav a.active { color: var(--white); }
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 4px; }
.has-dropdown:hover .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #111;
  border-top: 2px solid var(--red);
  min-width: 220px;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}
.dropdown a { display: block; padding: 10px 16px; border-bottom: 1px solid #1c1c1c; font-size: 12px !important; }
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: #1a1a1a; color: var(--white) !important; }
.header-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}
.header-cta:hover { background: var(--red-hover) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all .25s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav { display: none; flex-direction: column; background: #111; border-top: 1px solid #1e1e1e; overflow: hidden; }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: #bbb; font-size: 14px; font-weight: 600; padding: 14px 28px; border-bottom: 1px solid #1a1a1a; text-transform: uppercase; letter-spacing: .04em; transition: color var(--transition), background var(--transition); }
.mobile-nav a:hover { color: var(--white); background: #1a1a1a; }
.mobile-nav .mobile-cta { background: var(--red); color: var(--white) !important; text-align: center; margin: 16px 28px 20px; }
.mobile-nav .mobile-cta:hover { background: var(--red-hover); }

/* ═══ HERO ═══ */
.hero { background: var(--black); padding: 80px 28px 88px; position: relative; overflow: hidden; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: flex-start; gap: 60px; }
.hero-content { flex: 1 1 0; min-width: 0; }
.hero-widget { flex: 0 0 380px; width: 380px; min-height: 280px; display: flex; align-items: flex-start; justify-content: center; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(225,6,0,.12);
  border: 1px solid rgba(225,6,0,.3);
  color: #ff4040;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 14px;
  margin-bottom: 28px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; display: inline-block; }
.hero h1 { font-size: clamp(42px, 7.5vw, 86px); font-weight: 900; color: var(--white); line-height: .95; letter-spacing: -.035em; margin-bottom: 8px; }
.hero h1 em { font-style: normal; color: var(--red); display: block; }
.hero-headline { font-size: clamp(18px, 2.5vw, 24px); font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: -.01em; }
.hero-sub { font-size: 16px; color: #888; max-width: 520px; line-height: 1.7; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid #1e1e1e; }
.hero-stat-num { font-size: 32px; font-weight: 900; color: var(--white); letter-spacing: -.04em; line-height: 1; }
.hero-stat-num span { color: var(--red); }
.hero-stat-label { font-size: 12px; color: #666; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

/* ═══ HERO REVIEW CARD ═══ */
.review-card { background: #111; border: 1px solid #222; border-radius: 12px; overflow: hidden; width: 100%; }
.review-card-header { background: #0a0a0a; border-bottom: 1px solid #1e1e1e; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.review-card-platform { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #bbb; }
.review-card-rating { display: flex; align-items: center; gap: 8px; }
.review-card-score { font-size: 22px; font-weight: 900; color: #fff; letter-spacing: -.03em; }
.review-stars { color: #f5a623; font-size: 14px; letter-spacing: 1px; }
.review-card-count { font-size: 12px; color: #666; }
.review-card-items { padding: 4px 0; }
.review-item { padding: 16px 20px; border-bottom: 1px solid #1a1a1a; }
.review-item:last-child { border-bottom: none; }
.review-item-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.review-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--red); color: #fff; font-size: 13px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-name { font-size: 13px; font-weight: 600; color: #ddd; }
.review-stars-sm { color: #f5a623; font-size: 11px; letter-spacing: 1px; margin-top: 2px; }
.review-text { font-size: 13px; color: #888; line-height: 1.55; margin: 0; }
.review-card-footer { display: block; padding: 14px 20px; background: #0d0d0d; border-top: 1px solid #1e1e1e; font-size: 13px; font-weight: 600; color: var(--red); text-decoration: none; text-align: center; transition: background .2s; }
.review-card-footer:hover { background: #161616; }

/* ═══ TRUST BAR ═══ */
.trust-bar { background: var(--red); padding: 0 28px; }
.trust-bar-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: stretch; justify-content: space-between; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 18px 0; flex: 1; justify-content: center; border-right: 1px solid rgba(255,255,255,.15); }
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 17px; flex-shrink: 0; }

/* ═══ REVIEWS ═══ */
.static-reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.static-review-card { background: var(--white); border: 1px solid var(--grey-mid); border-radius: 8px; padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.static-review-header { display: flex; align-items: center; gap: 12px; }
.static-review-header > div:nth-child(2) { flex: 1; }
.static-review-google { margin-left: auto; flex-shrink: 0; opacity: .7; }
.static-review-card p { font-size: 14px; color: var(--grey-text); line-height: 1.7; margin: 0; }
@media (max-width: 768px) { .static-reviews { grid-template-columns: 1fr; } }

/* ═══ SEO CONTENT ═══ */
.seo-content { background: var(--off-white); border-top: 1px solid #e8e8e8; }
.seo-content-inner { max-width: 820px; }
.seo-content-inner h2 { font-size: clamp(20px,3vw,28px); font-weight: 900; letter-spacing: -.02em; margin-bottom: 16px; }
.seo-content-inner h3 { font-size: 17px; font-weight: 800; margin-top: 28px; margin-bottom: 8px; color: var(--black); }
.seo-content-inner p { font-size: 15px; color: var(--grey-text); line-height: 1.75; margin-bottom: 12px; }
.seo-content-inner ul, .seo-content-inner ol { font-size: 15px; color: var(--grey-text); line-height: 1.75; margin: 0 0 16px 0; padding-left: 20px; }
.seo-content-inner ul { list-style: disc; }
.seo-content-inner ol { list-style: decimal; }
.seo-content-inner li { margin-bottom: 8px; }

/* ═══ SERVICE CARDS ═══ */
.services-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; background: var(--grey-mid); }
.services-grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.services-grid.cols-4 { grid-template-columns: repeat(4,1fr); }
.service-card { background: var(--white); padding: 32px 28px; border-top: 3px solid transparent; transition: border-color var(--transition), background var(--transition); display: flex; flex-direction: column; }
.service-card:hover { border-top-color: var(--red); background: #fafafa; }
.service-card-icon { font-size: 28px; margin-bottom: 14px; }
.service-card h3 { font-size: 15px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 8px; line-height: 1.25; }
.service-card p { font-size: 13px; color: var(--grey-text); line-height: 1.6; margin-bottom: 18px; flex: 1; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--red); letter-spacing: .04em; text-transform: uppercase; transition: gap var(--transition); }
.card-link::after { content: '→'; }
.card-link:hover { gap: 10px; }

/* ═══ WHY GRID ═══ */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--grey-mid); }
.why-item { background: var(--white); padding: 36px 32px; border-top: 3px solid transparent; transition: border-color var(--transition); }
.why-item:hover { border-top-color: var(--red); }
.why-num { font-size: 48px; font-weight: 900; color: #f0f0f0; letter-spacing: -.05em; line-height: 1; margin-bottom: 12px; }
.why-item h3 { font-size: 16px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 10px; }
.why-item p { font-size: 14px; color: var(--grey-text); line-height: 1.65; }

/* ═══ LANDLORD SPLIT ═══ */
.landlord-split { display: grid; grid-template-columns: 1fr 1fr; }
.landlord-split-left { background: var(--white); padding: 56px 52px; }
.landlord-split-right { background: var(--black); padding: 56px 52px; }
.feature-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-bullet { flex-shrink: 0; width: 20px; height: 20px; background: var(--red); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 10px; font-weight: 900; margin-top: 2px; }
.feature-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.feature-item p { font-size: 13px; color: var(--grey-text); line-height: 1.55; }
.landlord-cta-card { display: flex; flex-direction: column; height: 100%; }
.landlord-cta-card h3 { font-size: clamp(22px,3vw,32px); font-weight: 900; color: var(--white); letter-spacing: -.02em; line-height: 1.1; margin-bottom: 16px; }
.landlord-cta-card p { font-size: 15px; color: #777; line-height: 1.65; margin-bottom: 32px; }
.btn-stack { display: flex; flex-direction: column; gap: 12px; }

/* ═══ HOW IT WORKS ═══ */
.steps-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; background: #1e1e1e; }
.step-card { background: var(--charcoal); padding: 36px 28px; position: relative; overflow: hidden; }
.step-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--red); transition: width .3s ease; }
.step-card:hover::before { width: 100%; }
.step-num { font-size: 64px; font-weight: 900; color: rgba(255,255,255,.04); line-height: 1; margin-bottom: 16px; letter-spacing: -.06em; }
.step-card h3 { font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 10px; letter-spacing: -.01em; line-height: 1.3; }
.step-card p { font-size: 13px; color: #777; line-height: 1.6; }

/* ═══ AREAS ═══ */
.areas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--grey-mid); }
.area-card { background: var(--white); padding: 24px 22px; border-left: 3px solid transparent; transition: border-color var(--transition), background var(--transition); display: flex; flex-direction: column; }
.area-card:hover { border-left-color: var(--red); background: #fafafa; }
.area-card h3 { font-size: 15px; font-weight: 800; margin-bottom: 5px; }
.area-card p { font-size: 12px; color: var(--grey-muted); flex: 1; }
.area-card .btn { margin-top: 16px; align-self: flex-start; }

/* ═══ REVIEWS ═══ */
.reviews-placeholder { background: var(--grey-light); border: 2px dashed var(--grey-mid); padding: 72px 28px; text-align: center; }
.reviews-placeholder p { color: #bbb; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }

/* ═══ CONTACT ═══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; }
.contact-left { background: var(--white); padding: 56px 52px; }
.contact-right { background: var(--black); padding: 56px 52px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.contact-method { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 2px solid var(--grey-mid); transition: border-color var(--transition), background var(--transition); cursor: pointer; }
.contact-method:hover { border-color: var(--red); background: var(--grey-light); }
.contact-method.primary { border-color: #25D366; background: #f0fff4; }
.contact-method-icon { font-size: 20px; flex-shrink: 0; }
.contact-method-text h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--grey-text); margin-bottom: 2px; }
.contact-method-text p, .contact-method-text a { font-size: 15px; font-weight: 600; color: var(--black); }
.map-placeholder { background: #1a1a1a; border: 2px dashed #333; min-height: 320px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 28px; }
.map-placeholder p { color: #444; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

/* ═══ CTA BAND ═══ */
.cta-band { background: var(--red); padding: 64px 28px; text-align: center; }
.cta-band h2 { font-size: clamp(24px,4vw,44px); font-weight: 900; color: var(--white); letter-spacing: -.025em; margin-bottom: 12px; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.75); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.65; }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══ PAGE HERO ═══ */
.page-hero { background: var(--black); padding: 64px 28px; border-bottom: 3px solid var(--red); }
.page-hero-inner { max-width: var(--container); margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: #555; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; transition: color var(--transition); }
.breadcrumb a:hover { color: #888; }
.breadcrumb-sep { color: #333; font-size: 12px; }
.breadcrumb span { color: var(--red); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.page-hero h1 { font-size: clamp(28px,5vw,56px); font-weight: 900; color: var(--white); letter-spacing: -.03em; line-height: 1.05; margin-bottom: 14px; }
.page-hero-sub { font-size: 17px; color: #888; max-width: 580px; line-height: 1.65; margin-bottom: 28px; }
.page-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ═══ SERVICE PAGE LAYOUT ═══ */
.service-layout { display: grid; grid-template-columns: 1fr 340px; gap: 64px; max-width: var(--container); margin: 0 auto; }
.service-content h2 { font-size: clamp(22px,2.5vw,30px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 16px; margin-top: 48px; padding-top: 48px; border-top: 2px solid var(--grey-light); }
.service-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.service-content p { font-size: 16px; color: var(--grey-text); line-height: 1.75; margin-bottom: 16px; }
.service-content ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.service-content ul li { font-size: 15px; color: var(--grey-text); padding-left: 20px; position: relative; line-height: 1.6; }
.service-content ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; background: var(--red); }
.service-sidebar { position: sticky; top: 88px; height: fit-content; }
.sidebar-cta { background: var(--black); padding: 32px 28px; margin-bottom: 24px; }
.sidebar-cta h3 { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.sidebar-cta p { font-size: 13px; color: #777; margin-bottom: 20px; line-height: 1.6; }
.sidebar-cta .btn { width: 100%; margin-bottom: 10px; justify-content: center; }
.sidebar-services { background: var(--grey-light); padding: 24px; }
.sidebar-services h4 { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--grey-muted); margin-bottom: 14px; }
.sidebar-services ul { display: flex; flex-direction: column; }
.sidebar-services li a { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--grey-text); padding: 9px 0; border-bottom: 1px solid var(--grey-mid); transition: color var(--transition); }
.sidebar-services li:last-child a { border-bottom: none; }
.sidebar-services li a:hover { color: var(--red); }
.sidebar-services li a::before { content: '›'; color: var(--red); font-size: 16px; }

/* ═══ FAQ ═══ */
.faq-list { display: flex; flex-direction: column; gap: 2px; background: var(--grey-mid); margin: 32px 0; }
.faq-item { background: var(--white); padding: 28px 32px; border-left: 3px solid transparent; transition: border-color var(--transition); }
.faq-item:hover { border-left-color: var(--red); }
.faq-item h3 { font-size: 16px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 10px; }
.faq-item p { font-size: 14px; color: var(--grey-text); line-height: 1.65; }

/* ═══ BLOG ═══ */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--grey-mid); }
.blog-card { background: var(--white); display: flex; flex-direction: column; transition: background var(--transition); }
.blog-card:hover { background: #fafafa; }
.blog-card-thumb { height: 160px; background: var(--black); display: flex; align-items: center; justify-content: center; border-bottom: 3px solid var(--red); }
.blog-card-thumb-icon { font-size: 36px; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag { display: inline-block; background: var(--red); color: var(--white); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; margin-bottom: 12px; }
.blog-card h3 { font-size: 16px; font-weight: 800; letter-spacing: -.01em; line-height: 1.3; margin-bottom: 10px; }
.blog-card p { font-size: 13px; color: var(--grey-text); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.blog-card-meta { font-size: 11px; color: var(--grey-mid); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; border-top: 1px solid var(--grey-light); padding-top: 12px; }

/* ═══ BLOG POST ═══ */
.blog-post-content { max-width: 760px; }
.blog-post-content h2 { font-size: clamp(20px,2.5vw,28px); font-weight: 800; letter-spacing: -.02em; margin: 40px 0 14px; }
.blog-post-content h3 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; }
.blog-post-content p { font-size: 16px; color: var(--grey-text); line-height: 1.8; margin-bottom: 18px; }
.blog-post-content ul, .blog-post-content ol { margin-bottom: 20px; padding-left: 0; }
.blog-post-content ul li { font-size: 15px; color: var(--grey-text); padding: 6px 0 6px 20px; position: relative; line-height: 1.65; border-bottom: 1px solid var(--grey-light); }
.blog-post-content ul li::before { content: ''; position: absolute; left: 0; top: 13px; width: 7px; height: 7px; background: var(--red); }
.blog-post-content ol { counter-reset: list; }
.blog-post-content ol li { font-size: 15px; color: var(--grey-text); padding: 8px 0 8px 32px; position: relative; line-height: 1.65; counter-increment: list; }
.blog-post-content ol li::before { content: counter(list); position: absolute; left: 0; top: 6px; width: 20px; height: 20px; background: var(--red); color: var(--white); font-size: 10px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.blog-callout { background: var(--black); border-left: 4px solid var(--red); padding: 24px 28px; margin: 32px 0; }
.blog-callout p { color: #ccc !important; margin: 0 !important; }
.inline-cta { background: var(--grey-light); border-left: 4px solid var(--red); padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin: 40px 0; }
.inline-cta p { font-size: 15px; font-weight: 600; color: var(--black); margin: 0; }

/* ═══ FLOATING WHATSAPP BUTTON ═══ */
.wa-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 14px 22px;
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s, transform .18s, box-shadow .18s;
}
.wa-float-btn:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,.4); }
.wa-float-btn svg { flex-shrink: 0; }

/* ═══ MOBILE STICKY BAR ═══ */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; flex-direction: row; height: 58px; box-shadow: 0 -4px 20px rgba(0,0,0,.3); }
.mobile-cta-bar__wa { display: flex; align-items: center; justify-content: center; gap: 8px; flex: 1; background: #25D366; color: #fff; font-family: var(--font); font-size: 14px; font-weight: 800; text-decoration: none; transition: background .18s; }
.mobile-cta-bar__wa:hover { background: #1da851; }
.mobile-cta-bar__call { display: flex; align-items: center; justify-content: center; gap: 8px; flex: 1; background: var(--red); color: #fff; font-family: var(--font); font-size: 13px; font-weight: 800; text-decoration: none; border-left: 2px solid rgba(255,255,255,.2); transition: background .18s; }
.mobile-cta-bar__call:hover { background: var(--red-hover); }

/* ═══ FOOTER ═══ */
.site-footer { background: var(--black); border-top: 3px solid var(--red); padding: 64px 28px 40px; }
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-brand p { font-size: 13px; color: #555; line-height: 1.7; margin: 12px 0 16px; max-width: 280px; }
.footer-vco-tag { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #444; border: 1px solid #222; padding: 5px 12px; }
.footer-col h4 { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: #444; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 13px; color: #555; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid #1a1a1a; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: #333; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1080px) {
  .steps-grid { grid-template-columns: repeat(3,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .landlord-split { grid-template-columns: 1fr; }
  .landlord-split-left, .landlord-split-right { padding: 40px 32px; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-left, .contact-right { padding: 40px 32px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}
@media (max-width: 640px) {
  .section { padding: 64px 20px; }
  .hero { padding: 56px 20px 64px; }
  .page-hero { padding: 48px 20px; }
  .trust-bar { padding: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .trust-bar::-webkit-scrollbar { display: none; }
  .trust-bar-inner { flex-wrap: nowrap; justify-content: flex-start; min-width: max-content; padding: 0 16px; }
  .trust-item { flex: 0 0 auto; padding: 14px 16px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: none; font-size: 11px; }
  .trust-item:last-child { border-right: none; }
  .services-grid, .services-grid.cols-3 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { flex-direction: column; gap: 40px; }
  .hero-widget { width: 100%; flex: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { width: 100%; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px 32px; display: grid; grid-template-columns: 1fr 1fr; }
  .inline-cta { flex-direction: column; }
  .wa-float-btn { display: none !important; }
  .mobile-cta-bar { display: flex !important; }
  .site-footer { padding-bottom: 80px; }
}
