@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: 88px 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: 88px; max-width: 1280px; margin: 0 auto; }

/* Logo */
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 90px; width: auto; object-fit: contain; flex-shrink: 0; filter: brightness(0) invert(1); }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.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: 2px; }
.header-nav a { color: #bbb; font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 8px 10px; 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: 230px; 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 22px !important; font-size: 12px !important; font-weight: 700 !important; border-radius: 50px !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::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--red) 0%, var(--red) 40%, transparent 40%); }
.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; animation: pulse 1.8s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.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; }

/* ═══ 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-align: center; transition: background .2s; }
.review-card-footer:hover { background: #161616; }

/* ═══ TRUST BAR ═══ */
.trust-bar { background: var(--black); border-top: 3px solid var(--red); padding: 0 28px; overflow-x: auto; }
.trust-bar-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: stretch; justify-content: space-between; min-width: 600px; }
.trust-item { display: flex; align-items: center; gap: 7px; color: #bbb; font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 14px 0; flex: 1; justify-content: center; border-right: 1px solid #1e1e1e; }
.trust-item:last-child { border-right: none; }
.trust-check { color: var(--red); font-size: 13px; font-weight: 900; flex-shrink: 0; }
.trust-icon { font-size: 15px; flex-shrink: 0; }

/* ═══ LOGO ═══ */
.logo-wrap { background: none; padding: 0; border-radius: 0; }
.site-logo { height: 90px; width: auto; object-fit: contain; display: block; flex-shrink: 0; filter: brightness(0) invert(1); }
.logo-text-wrap { display: none; }

/* ═══ HERO TRUST LINE ═══ */
.hero-trust-line { font-size: 12px; color: #aaa; letter-spacing: .04em; margin-bottom: 36px; line-height: 1.6; }

/* ═══ PLATFORM RATINGS ═══ */
.platform-ratings { background: #0d0d0d; padding: 4px 20px 8px; }
.platform-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.platform-logo-wrap { display: flex; align-items: center; gap: 10px; }
.platform-name { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.platform-score-wrap { display: flex; align-items: center; gap: 10px; }
.platform-score { font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -.04em; line-height: 1; }
.platform-stars { display: flex; flex-direction: column; gap: 2px; }
.platform-count { font-size: 11px; color: #666; letter-spacing: .02em; }
.platform-see-all { display: block; font-size: 12px; font-weight: 600; color: #4285F4; padding: 4px 0 10px; transition: opacity .2s; }
.platform-see-all:hover { opacity: .75; }
.platform-divider { height: 1px; background: #1e1e1e; margin: 0; }

/* ═══ 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-accent { width: 32px; height: 3px; background: var(--red); margin-bottom: 18px; }
.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; }

/* ═══ WHO WE SERVE ═══ */
.serve-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--grey-mid); }
.serve-card { background: var(--white); padding: 40px 36px; border-top: 3px solid transparent; transition: border-color var(--transition), background var(--transition); }
.serve-card:hover { border-top-color: var(--red); background: #fafafa; }
.serve-card-icon { font-size: 36px; margin-bottom: 18px; }
.serve-card h3 { font-size: 20px; font-weight: 900; letter-spacing: -.02em; margin-bottom: 12px; }
.serve-card p { font-size: 14px; color: var(--grey-text); line-height: 1.7; margin-bottom: 20px; }

/* ═══ SPLIT LAYOUT ═══ */
.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; }

/* ═══ STEPS ═══ */
.steps-grid { display: grid; grid-template-columns: repeat(4,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(4,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); }
.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); }

/* ═══ 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; }

/* ═══ MAP SECTION ═══ */
.map-section { background: var(--black); padding: 64px 28px; border-top: 1px solid #1a1a1a; }
.map-inner { max-width: var(--container); margin: 0 auto; }
.map-label { text-align: center; margin-bottom: 32px; }
.map-label h2 { font-size: clamp(20px,3vw,28px); font-weight: 900; color: var(--white); letter-spacing: -.02em; margin-bottom: 8px; }
.map-label p { font-size: 15px; color: #666; line-height: 1.7; }
.map-embed { border-radius: 4px; overflow: hidden; border: 1px solid #222; }
.map-embed iframe { display: block; }
.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); }
.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: 260px; 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: #fff; margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.65; font-weight: 500; }
.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-muted); 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-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; }

/* ═══ AGENT LOGOS ═══ */
.agent-logos-section { background: var(--white); padding: 48px 28px; border-bottom: 1px solid var(--grey-mid); }
.agent-logos-inner { max-width: var(--container); margin: 0 auto; }
.agent-logos-text { text-align: center; margin-bottom: 36px; }
.agent-logos-text h2 { font-size: clamp(18px,2.5vw,26px); font-weight: 900; letter-spacing: -.02em; color: var(--black); margin-bottom: 10px; }
.agent-logos-text p { font-size: 15px; color: var(--grey-text); max-width: 620px; margin: 0 auto; line-height: 1.65; }
.agent-logos-strip { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; padding: 20px 0; }
.agent-logo { height: 40px; width: auto; max-width: 140px; object-fit: contain; filter: none; opacity: .85; transition: opacity .2s; }
.agent-logo:hover { opacity: 1; }

/* ═══ SERVE CARD LABEL ═══ */
.serve-card-label { font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; display: inline-block; border-left: 3px solid var(--red); padding-left: 8px; }

/* ═══ TRUST / ACCREDITATION SECTION ═══ */
.trust-contractor-section { background: var(--grey-light); padding: 72px 28px; }
.trust-contractor-inner { max-width: var(--container); margin: 0 auto; }
.trust-contractor-text { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.trust-contractor-text p { font-size: 17px; color: var(--grey-text); line-height: 1.75; margin-top: 16px; }
.trust-logos-row { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; padding: 36px; background: var(--white); border-top: 3px solid var(--red); }
.trust-logo-item { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.trust-logo { height: 52px; width: auto; object-fit: contain; display: block; }
.trust-logo-item span { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--grey-muted); }
.trust-logo-item--text { }
.trust-text-badge { height: 52px; min-width: 90px; background: var(--black); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; color: var(--white); letter-spacing: .06em; padding: 0 16px; }
.trust-logo-placeholder { height: 56px; min-width: 100px; background: #eee; border: 2px dashed var(--grey-mid); display: flex; align-items: center; justify-content: center; }
.trust-logo-placeholder span { font-size: 10px; color: #aaa; font-weight: 700; text-transform: uppercase; }
.chas-note { font-size: 12px; color: var(--grey-muted); margin-top: 8px; font-style: italic; }

/* ═══ FOOTER ═══ */
.site-footer { background: #080808; padding: 72px 28px 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid #161616; }
.footer-brand { }
.footer-logo-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.footer-logo-img { height: 52px; width: auto; object-fit: contain; background: none; border-radius: 0; padding: 0; filter: brightness(0) invert(1); }
.footer-logo-text { display: none; }
.footer-brand > p { font-size: 13px; color: #aaa; line-height: 1.7; margin-bottom: 12px; max-width: 280px; }
.footer-brand a { color: #aaa; font-size: 13px; transition: color .2s; }
.footer-brand a:hover { color: #fff; }
.footer-trust-row { display: flex; align-items: center; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.footer-trust-badge { display: flex; align-items: center; gap: 8px; background: #111; padding: 8px 12px; border: 1px solid #1e1e1e; }
.footer-trust-badge img { height: 28px; width: auto; object-fit: contain; }
.footer-chas-logo { height: 28px; width: auto; object-fit: contain; display: block; }
.footer-trust-badge span { font-size: 10px; font-weight: 700; line-height: 1.3; letter-spacing: .06em; color: #aaa; }
.footer-trust-badge--text { }
.footer-trust-text-badge { font-size: 11px; font-weight: 900; color: var(--white); letter-spacing: .06em; background: #1a1a1a; padding: 4px 8px; }
.footer-vco-tag { display: inline-block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--red); border: 1px solid rgba(225,6,0,.3); padding: 4px 10px; margin-top: 14px; }
.footer-col h4 { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #777; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 0; }
.footer-col ul li a { display: block; font-size: 13px; color: #bbb; padding: 6px 0; border-bottom: 1px solid #1e1e1e; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li:last-child a { border-bottom: none; }
.footer-bottom { border-top: 1px solid #111; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 12px; color: #888; }

/* ═══ FLOATING WHATSAPP ═══ */
.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; }

/* ═══ AREAS ═══ */
.area-card--cta { border-left-color: var(--red) !important; }

/* ═══ 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, .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, .mobile-cta-bar__wa:hover { background: #1da851; }
.mobile-cta-bar-call, .mobile-cta-bar__call { display: flex; align-items: center; justify-content: center; gap: 8px; flex: 1; background: var(--black); color: #fff; font-family: var(--font); font-size: 14px; font-weight: 800; text-decoration: none; border-right: 1px solid #222; transition: background .18s; }
.mobile-cta-bar-call:hover, .mobile-cta-bar__call:hover { background: #1a1a1a; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; gap: 40px; }
  .hero-widget { width: 100%; flex: unset; }
  .landlord-split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .serve-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(3,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 52px 20px 64px; }
  .section { padding: 60px 20px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2,1fr); }
  .trust-bar-inner { justify-content: flex-start; }
  .wa-float-btn { display: none; }
  .mobile-cta-bar { display: flex; }
  .landlord-split-left, .landlord-split-right { padding: 40px 24px; }
  .contact-left, .contact-right { padding: 40px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo-row { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 640px) {
  .agent-logos-strip { gap: 24px; display: grid; grid-template-columns: repeat(3,1fr); justify-items: center; }
  .agent-logo { height: 28px; }
}
@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .logo-img, .site-logo { height: 48px; }
  .trust-logos-row { gap: 24px; }
}

/* ═══ TRUST CARDS SECTION ═══ */
.trust-cards-section { background: var(--black); padding: 80px 40px; }
.trust-cards-inner { max-width: 1200px; margin: 0 auto; }
.trust-cards-header { text-align: center; margin-bottom: 56px; }
.trust-cards-header .section-title { color: #fff; }
.trust-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: #1e1e1e; }
.trust-card { background: #111; padding: 48px 36px; display: flex; flex-direction: column; gap: 16px; }
.trust-card-top { height: 80px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.trust-card-logo { max-height: 60px; max-width: 120px; object-fit: contain; filter: brightness(0) invert(1); }
.trust-card-top--stat { }
.trust-card-stat { font-size: 52px; font-weight: 900; color: var(--red); letter-spacing: -.04em; line-height: 1; }
.trust-card-stat sup { font-size: 24px; vertical-align: super; }
.trust-card-top--text { }
.trust-card-reg-label { font-size: 22px; font-weight: 900; color: #fff; letter-spacing: .02em; text-align: center; border: 2px solid var(--red); padding: 10px 20px; }
.trust-card h3 { color: #fff; font-size: 20px; font-weight: 800; margin: 0; }
.trust-card p { color: #888; font-size: 15px; line-height: 1.65; margin: 0; }

/* ═══ TRUSTPILOT SECTION ═══ */
.trustpilot-section { background: #f8f8f8; padding: 64px 40px; border-bottom: 1px solid #eee; }
.trustpilot-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.trustpilot-label { min-width: 220px; }
.trustpilot-label p { color: #555; font-size: 15px; margin: 8px 0 0; }
.trustpilot-widget-wrap { flex: 1; min-width: 280px; }
.trustpilot-placeholder { background: #fff; border: 1px solid #e0e0e0; border-radius: 4px; padding: 32px; text-align: center; color: #888; font-size: 15px; }
.trustpilot-link { display: inline-block; margin-top: 12px; color: var(--red); font-weight: 700; text-decoration: none; font-size: 14px; }
.trustpilot-link:hover { text-decoration: underline; }
.eyebrow-light { color: var(--red); }

/* ═══ TRUST CARDS RESPONSIVE ═══ */
@media (max-width: 768px) {
  .trust-cards-section { padding: 60px 20px; }
  .trust-cards-grid { grid-template-columns: 1fr; }
  .trust-card { padding: 36px 28px; }
  .trustpilot-section { padding: 48px 20px; }
  .trustpilot-inner { flex-direction: column; gap: 28px; align-items: flex-start; }
}

/* ═══ CONTACT FORM ═══ */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.cf-row { display: flex; gap: 16px; }
.cf-row-2 > .cf-field { flex: 1; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #888; }
.cf-input { background: #1a1a1a; border: 1px solid #2e2e2e; color: #fff; font-family: var(--font); font-size: 15px; padding: 13px 16px; border-radius: 3px; outline: none; transition: border .18s; width: 100%; box-sizing: border-box; }
.cf-input:focus { border-color: var(--red); }
.cf-input::placeholder { color: #555; }
.cf-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: pointer; }
.cf-select option { background: #1a1a1a; color: #fff; }
.cf-textarea { resize: vertical; min-height: 110px; }
.cf-submit { background: var(--red); color: #fff; font-family: var(--font); font-size: 16px; font-weight: 800; border: none; padding: 16px 32px; cursor: pointer; letter-spacing: .01em; transition: background .18s; text-align: center; }
.cf-submit:hover { background: #c00; }
.cf-note { font-size: 12px; color: #555; margin: 0; line-height: 1.6; }
@media (max-width: 640px) {
  .cf-row-2 { flex-direction: column; }
}

/* ═══ TRUSTPILOT BAND ═══ */
.tp-band { background: #fff; border-top: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8; padding: 36px 40px; }
.tp-band-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.tp-band-left { display: flex; flex-direction: column; gap: 10px; }
.tp-logo-wrap { display: flex; align-items: center; gap: 10px; }
.tp-star-svg { flex-shrink: 0; }
.tp-wordmark { font-size: 26px; font-weight: 700; color: #191919; letter-spacing: -.02em; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
.tp-stars-row { display: flex; gap: 4px; }
.tp-star { width: 32px; height: 32px; flex-shrink: 0; }
.tp-rating-line { font-size: 15px; color: #333; margin: 0; }
.tp-rating-line strong { font-weight: 800; color: #191919; }
.tp-score { font-weight: 700; color: #00b67a; }
.tp-review-link { color: #191919; text-decoration: underline; font-weight: 600; }
.tp-review-link:hover { color: #00b67a; }
.tp-band-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.tp-cta-btn { background: #00b67a; color: #fff; font-family: var(--font); font-size: 15px; font-weight: 800; padding: 13px 28px; text-decoration: none; letter-spacing: .01em; transition: background .18s; }
.tp-cta-btn:hover { background: #009e6a; }
.tp-note { font-size: 12px; color: #888; margin: 0; }
.tp-live-widget { min-height: 0; }
@media (max-width: 768px) {
  .tp-band { padding: 32px 20px; }
  .tp-band-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .tp-band-right { align-items: flex-start; }
}
