/* ============================================
   GreenCore Property Group — Custom Stylesheet
   ============================================ */

/* --- Variables --- */
:root {
  --bg: #0e1f16;
  --bg-card: #122a1c;
  --bg-card-alt: #1a3a2a;
  --fg: #f0ece4;
  --fg-muted: #a89f8a;
  --accent: #c4a882;
  --accent-dim: #9a7d5e;
  --accent-glow: rgba(196, 168, 130, 0.15);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
  --section-pad: 100px 24px;
  --max-w: 1140px;
  --border: 1px solid rgba(196, 168, 130, 0.2);
  --radius: 12px;
  --radius-sm: 6px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

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

/* --- Selection --- */
::selection { background: var(--accent); color: var(--bg); }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 3px; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--fg);
  margin-bottom: 48px;
  max-width: 640px;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14, 31, 22, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border);
  padding: 0 32px;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(74, 140, 92, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(196, 168, 130, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.hero-headline {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 440px;
}

/* --- Hero Visual --- */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
}

.mountain-art svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(196, 168, 130, 0.1);
  border: var(--border);
  border-radius: 40px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #6db87a;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

/* --- Services --- */
.services { padding: var(--section-pad); }

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

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

.service-card {
  background: var(--bg-card);
  border: var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: background 0.2s ease;
}

.service-card:hover { background: var(--bg-card-alt); }

.service-icon { margin-bottom: 20px; }

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--fg);
}

.service-card > p {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* --- Different --- */
.different {
  padding: var(--section-pad);
  background: var(--bg-card);
  border-top: var(--border);
  border-bottom: var(--border);
}

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

.different-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* --- Comparison Block --- */
.comparison-block {
  background: var(--bg);
  border: var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comp-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.vendor-chip {
  padding: 10px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
}

.vendor-1 { background: rgba(255,100,100,0.1); border: 1px solid rgba(255,100,100,0.3); color: #ff9999; }
.vendor-2 { background: rgba(100,200,255,0.1); border: 1px solid rgba(100,200,255,0.3); color: #99ccff; }
.vendor-3 { background: rgba(200,150,255,0.1); border: 1px solid rgba(200,150,255,0.3); color: #cc99ff; }
.vendor-4 { background: rgba(255,180,100,0.1); border: 1px solid rgba(255,180,100,0.3); color: #ffcc99; }
.vendor-single { background: rgba(74, 140, 92, 0.15); border: 1px solid rgba(74, 140, 92, 0.4); color: #6db87a; }

.comp-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}

.comp-arrow {
  display: flex;
  justify-content: center;
  opacity: 0.5;
}

/* --- Packages --- */
.packages { padding: var(--section-pad); }

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

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

.pkg-card {
  background: var(--bg-card);
  border: var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.pkg-card.pkg-featured {
  background: var(--bg-card-alt);
  border-color: rgba(196, 168, 130, 0.5);
}

.pkg-tag {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
  text-transform: uppercase;
}

.pkg-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pkg-header p {
  font-size: 14px;
  color: var(--fg-muted);
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pkg-from {
  font-size: 14px;
  color: var(--fg-muted);
}

.pkg-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.pkg-period {
  font-size: 16px;
  color: var(--fg-muted);
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pkg-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.pkg-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}

/* --- Testimonials --- */
.testimonials {
  padding: var(--section-pad);
  background: var(--bg-card);
  border-top: var(--border);
  border-bottom: var(--border);
}

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

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

.test-card {
  background: var(--bg);
  border: var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.test-quote {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.test-attr {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-initial {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card-alt);
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
  flex-shrink: 0;
}

.test-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.test-location {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* --- Closing --- */
.closing {
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(196, 168, 130, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.closing-content { max-width: 720px; }

.closing-headline {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 48px;
}

.closing-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.cstat { display: flex; flex-direction: column; gap: 4px; }

.cstat-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.cstat-label {
  font-size: 13px;
  color: var(--fg-muted);
}

/* --- Footer --- */
.footer {
  border-top: var(--border);
  padding: 48px 24px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
}

.footer-loc {
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--fg-muted);
}

.footer-sep { color: rgba(196, 168, 130, 0.3); }

.footer-link {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--fg); }

.footer-copy p {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding-top: 80px; }
  .hero-visual { align-items: flex-start; }
  .hero-visual svg { max-width: 320px; }
  .different-inner { grid-template-columns: 1fr; gap: 48px; }
  .packages-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 24px; }
  .closing-stats { gap: 32px; }
}

/* --- Service Areas --- */
.service-areas {
  padding: var(--section-pad);
}

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

.areas-intro {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 64px;
}

.area-section {
  border-top: var(--border);
  padding: 56px 0;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
}

.area-section:last-child { border-bottom: var(--border); }

.area-meta {}

.area-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.area-tagline {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

.area-cities {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.area-body {}

.area-desc {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 560px;
}

.area-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: var(--border);
  border-radius: 40px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.area-tag:hover { background: var(--bg-card-alt); color: var(--fg); }

.area-tag svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.area-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s;
}

.area-cta:hover { background: var(--accent-dim); }

/* Map placeholder */
.area-map {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border: var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 24px;
}

.area-map svg {
  width: 100%;
  height: 100%;
}

/* All-areas CTA */
.areas-closing {
  padding: 80px 24px;
  text-align: center;
}

.areas-closing-inner { max-width: 640px; margin: 0 auto; }

.areas-closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.areas-closing p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 36px;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--accent-dim); }

/* --- Turnover CTA Bar (apartment-turnovers landing) --- */
.turnover-cta-bar {
  background: var(--accent);
  color: var(--bg);
  padding: 64px 24px;
  border-top: 1px solid rgba(14, 31, 22, 0.1);
  border-bottom: 1px solid rgba(14, 31, 22, 0.1);
}

.turnover-cta-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.turnover-cta-bar-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--bg);
  letter-spacing: -0.02em;
}

.turnover-cta-bar-inner p {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--bg);
  opacity: 0.78;
  line-height: 1.55;
  max-width: 480px;
}

.turnover-cta-bar-inner .btn-primary {
  margin-top: 12px;
}

@media (max-width: 600px) {
  .turnover-cta-bar { padding: 48px 24px; }
  .turnover-cta-bar-inner .btn-primary { width: 100%; justify-content: center; }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: var(--border);
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover { background: var(--bg-card); color: var(--fg); }

.areas-phone {
  font-size: 15px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* --- Google Reviews Section --- */
.tm-google-reviews {
  padding: 80px 24px;
  background: var(--bg);
  border-top: var(--border);
}

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

.tm-google-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.tm-google-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.tm-google-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
}

.tm-google-rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--bg-card);
  border: var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  flex-shrink: 0;
}

.tm-google-stars {
  font-size: 20px;
  color: #fbbc04;
  letter-spacing: 2px;
}

.tm-google-score {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}

.tm-google-count {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* Widget container */
.tm-google-widget-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

.tm-google-widget {
  position: relative;
  border-radius: var(--radius);
  border: var(--border);
  background: var(--bg-card);
  overflow: hidden;
  min-height: 240px;
}

.tm-google-widget iframe {
  display: block;
}

.tm-google-widget-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 31, 22, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-google-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 24px;
  text-align: center;
}

.tm-google-overlay-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.tm-google-overlay-score {
  font-size: 28px;
  color: #fbbc04;
  letter-spacing: 2px;
}

.tm-google-overlay-label {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 500;
}

.tm-google-overlay-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.tm-google-review-btn {
  font-size: 14px;
  padding: 10px 20px;
}

/* CTA row */
.tm-google-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: var(--border);
}

.tm-google-cta-text {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 500;
}

.tm-google-leave-btn {
  font-size: 13px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 640px) {
  .tm-google-header { flex-direction: column; }
  .tm-google-rating-badge { flex-direction: row; align-items: center; gap: 10px; padding: 14px 20px; }
  .tm-google-stars { font-size: 16px; }
  .tm-google-score { font-size: 24px; }
}

/* --- Testimonials Page --- */
.tm-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}

.tm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 20%, rgba(196, 168, 130, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(74, 140, 92, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.tm-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
  width: 100%;
}

.tm-hero-headline {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tm-hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* Testimonials grid */
.tm-body {
  padding: var(--section-pad);
}

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

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

.tm-card {
  background: var(--bg-card);
  border: var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: background 0.2s;
}

.tm-card:hover { background: var(--bg-card-alt); }

.tm-quote-mark {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  color: var(--accent);
  line-height: 0.8;
  opacity: 0.4;
  height: 40px;
  display: block;
  margin-bottom: -8px;
}

.tm-quote {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.tm-attr {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: var(--border);
  padding-top: 20px;
}

.tm-initial {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card-alt);
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.tm-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}

.tm-role {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* Metrics bar */
.tm-metrics {
  padding: 48px 24px;
  background: var(--bg-card);
  border-top: var(--border);
  border-bottom: var(--border);
}

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

.tm-metrics-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.tm-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 8px 40px;
}

.tm-metric-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.tm-metric-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.tm-metric-label {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
  white-space: nowrap;
}

/* Certifications */
.tm-certs {
  padding: var(--section-pad);
}

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

.tm-certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.tm-cert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-card);
  border: var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: background 0.2s;
}

.tm-cert:hover { background: var(--bg-card-alt); }

.tm-cert-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(74, 140, 92, 0.15);
  border: 1px solid rgba(74, 140, 92, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #6db87a;
}

.tm-cert-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}

.tm-cert-sub {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* CTA Block */
.tm-cta {
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.tm-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(196, 168, 130, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.tm-cta-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.tm-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.tm-cta-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 36px;
}

.tm-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tm-cta-secondary {
  font-size: 14px;
  color: var(--fg-muted);
}

.tm-cta-secondary a {
  color: var(--accent);
  text-decoration: none;
}

.tm-cta-secondary a:hover { text-decoration: underline; }

.tm-cta-link {
  margin-top: 4px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  color: var(--fg-muted);
}

.tm-cta-link a {
  color: var(--accent);
  text-decoration: none;
}

.tm-cta-link a:hover { text-decoration: underline; }

/* --- Homepage Trust Bar --- */
.home-trust {
  padding: 48px 24px;
  background: var(--bg-card);
  border-bottom: var(--border);
}

.home-trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.ht-badges {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.ht-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.ht-badge-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.ht-sep {
  width: 1px;
  height: 28px;
  background: var(--border);
}

.ht-case-study {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ht-card {
  max-width: 560px;
  width: 100%;
  text-align: left;
}

.ht-case-stats {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--border);
}

.ht-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ht-stat-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.ht-stat-lbl {
  font-size: 12px;
  color: var(--fg-muted);
}

.ht-case-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.ht-case-link:hover {
  text-decoration: underline;
}

.ht-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg);
}

.ht-reviews-badge:hover {
  background: var(--bg-card-alt);
}

@media (max-width: 640px) {
  .ht-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .ht-badge {
    padding: 12px 16px;
    justify-content: center;
  }

  .ht-sep {
    display: none;
  }

  .ht-case-stats {
    gap: 16px;
  }
}

/* --- Trust Signals Bar (top of testimonials page) --- */
.tm-trust-bar {
  padding: 40px 24px;
  background: var(--bg-card);
  border-top: var(--border);
  border-bottom: var(--border);
}

.tm-trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.tm-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 48px;
}

.tm-trust-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.tm-trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tm-trust-stat {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.tm-trust-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
  white-space: nowrap;
}

.tm-trust-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* --- Star Ratings --- */
.tm-stars {
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

/* --- Results / Before-After --- */
.tm-results {
  padding: var(--section-pad);
  background: var(--bg-card);
  border-top: var(--border);
  border-bottom: var(--border);
}

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

.tm-results-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--fg);
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

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

.tm-case {
  background: var(--bg);
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background 0.2s;
}

.tm-case:hover { background: var(--bg-card-alt); }

.tm-case-images {
  display: flex;
  align-items: center;
  gap: 0;
  height: 180px;
}

.tm-case-img {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-before { background: #1a2a1e; }
.tm-after { background: #142218; }

.tm-case-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.tm-case-placeholder span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(196, 168, 130, 0.4);
}

.tm-case-placeholder-after span { color: rgba(109, 184, 122, 0.5); }

.tm-case-arrow {
  width: 32px;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--fg-muted);
  text-align: center;
}

.tm-case-body { padding: 24px; }

.tm-case-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.tm-case-meta { margin-bottom: 12px; }

.tm-case-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  line-height: 1.4;
}

.tm-case-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.tm-case-result {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: var(--border);
}

.tm-case-result-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
}

.tm-case-result-val {
  font-size: 13px;
  color: var(--fg);
  font-weight: 500;
}

@media (max-width: 900px) {
  .tm-grid { grid-template-columns: 1fr; }
  .tm-certs-grid { grid-template-columns: repeat(2, 1fr); }
  .tm-metrics-grid { gap: 24px; }
  .tm-metric-divider { display: none; }
  .tm-results-grid { grid-template-columns: 1fr; }
  .tm-trust-item { padding: 8px 24px; }
  .tm-trust-sep { display: none; }
}

@media (max-width: 600px) {
  .tm-certs-grid { grid-template-columns: 1fr; }
  .tm-cta-actions { flex-direction: column; }
  .tm-metric { padding: 8px 24px; }
}

/* --- Estimate Form Section --- */
.estimate-form-section {
  padding: 100px 24px;
  background: var(--bg-card);
  border-top: var(--border);
}

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

.estimate-heading {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--fg);
  margin: 12px 0 16px;
  line-height: 1.15;
}

.estimate-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.estimate-detail {
  display: flex;
  align-items: center;
  gap: 10px;
}

.estimate-phone {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.estimate-phone:hover { color: var(--accent-dim); }

.estimate-or {
  font-size: 14px;
  color: var(--fg-muted);
}

/* Form */
.estimate-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ef-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.ef-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

.ef-group .req { color: var(--accent); }

.ef-group input,
.ef-group select,
.ef-group textarea {
  background: var(--bg-card-alt);
  border: var(--border);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.ef-group select { cursor: pointer; }
.ef-group select option { background: var(--bg-card-alt); }

.ef-group input::placeholder,
.ef-group textarea::placeholder { color: #5a7060; }

.ef-group input:focus,
.ef-group select:focus,
.ef-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.ef-group textarea { resize: vertical; min-height: 80px; }

.ef-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  width: 100%;
  margin-top: 4px;
}

.ef-submit:hover { background: var(--accent-dim); transform: translateY(-1px); }
.ef-submit:active { transform: translateY(0); }
.ef-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.ef-btn-loading { display: inline-flex; align-items: center; gap: 8px; }

.ef-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(74, 140, 92, 0.15);
  border: 1px solid rgba(74, 140, 92, 0.3);
  border-radius: var(--radius-sm);
  color: #7acc8a;
  font-size: 14px;
  font-weight: 500;
}

.ef-error {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(196, 100, 80, 0.12);
  border: 1px solid rgba(196, 100, 80, 0.25);
  border-radius: var(--radius-sm);
  color: #d97070;
  font-size: 14px;
}

.ef-error a { color: #d97070; text-decoration: underline; }

/* Hero CTA */
.hero-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  margin-top: 8px;
  width: fit-content;
}

.hero-cta:hover { background: var(--accent-dim); transform: translateY(-1px); }

@media (max-width: 600px) {
  .hero-headline { font-size: 40px; }
  .closing-headline { font-size: 30px; }
  .pkg-amount { font-size: 36px; }
  .section-heading { font-size: 26px; }
  .footer-links { flex-direction: column; align-items: flex-start; }
  .footer-sep { display: none; }
  .stat-row { flex-wrap: wrap; gap: 24px; }
  .area-section { grid-template-columns: 1fr; gap: 24px; }
  .estimate-inner { grid-template-columns: 1fr; gap: 40px; }
  .ef-row { grid-template-columns: 1fr; }
  .afaq-q { font-size: 15px; padding: 16px 20px; }
  .afaq-a { padding: 0 20px 16px; }
}

/* --- Apartment FAQ --- */
.apartment-faq {
  padding: 80px 24px;
  background: var(--bg-card);
  border-top: var(--border);
  border-bottom: var(--border);
}

.apartment-faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.afaq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.afaq-item {
  background: var(--bg);
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: background 0.2s;
}

.afaq-item[open] {
  background: var(--bg-card-alt);
}

.afaq-q {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.afaq-q::-webkit-details-marker { display: none; }
.afaq-q::after {
  content: '+';
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.2s;
}
.afaq-item[open] .afaq-q::after {
  content: '×';
}

.afaq-a {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
}

.afaq-a p { margin: 0; }

.afaq-cta {
  text-align: center;
  margin-top: 36px;
}

.afaq-cta .btn-primary {
  display: inline-flex;
  margin-top: 0;
}

/* --- How It Works Timeline (apartment-turnovers) --- */
.how-it-works {
  padding: 64px 24px 56px;
  background: var(--bg);
  border-top: 1px solid rgba(196, 168, 130, 0.2);
}

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

.how-it-works-inner .section-heading {
  text-align: center;
  margin-bottom: 12px;
}

.how-it-works-intro {
  text-align: center;
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 40px;
}

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

.how-card {
  position: relative;
  background: var(--bg-card);
  border: var(--border);
  border-top: 3px solid var(--accent-green, #6db87a);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.how-card svg {
  display: block;
}

.how-step-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
}

.how-card p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 720px) {
  .how-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .how-card {
    border-top: var(--border);
    border-left: 3px solid var(--accent-green, #6db87a);
    padding-left: 24px;
  }
}

/* --- Cross-nav tile strip (service landing pages) --- */
.cross-nav {
  padding: 64px 24px 56px;
  background: var(--bg-card);
  border-top: var(--border);
  border-bottom: var(--border);
}

.cross-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.cross-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.cross-nav-card {
  display: block;
  background: rgba(18, 42, 28, 0.45);
  border: 1px solid rgba(196, 168, 130, 0.2);
  border-radius: 8px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}

.cross-nav-card:hover {
  border-color: var(--accent-green, #6db87a);
  transform: translateY(-2px);
}

.cross-nav-eyebrow {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin: 0 0 8px;
}

.cross-nav-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent, #c4a882);
  margin: 0 0 12px;
}

.cross-nav-pitch {
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 0 16px;
}

.cross-nav-cta {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent-green, #6db87a);
  display: inline-block;
  transition: transform 0.2s;
}

.cross-nav-card:hover .cross-nav-cta {
  transform: translateX(4px);
}

@media (max-width: 880px) {
  .cross-nav-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 24px auto 0;
  }
}