/* ======================================
   JETER'S HANDYMAN SERVICES — THEME
   ====================================== */

:root {
  --terracotta: #C4512C;
  --terracotta-dark: #9E3F1F;
  --slate: #1E1E1E;
  --slate-mid: #2D2D2D;
  --cream: #FAF8F5;
  --cream-dark: #F0EDE7;
  --gold: #D4A84B;
  --text: #1E1E1E;
  --text-light: #6B6B6B;
  --text-white: #FAF8F5;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  background: var(--slate);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 81, 44, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 81, 44, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 130%;
  background: radial-gradient(ellipse at center, rgba(196, 81, 44, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  padding: 80px 60px 80px 80px;
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid rgba(196, 81, 44, 0.4);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 120px);
  line-height: 0.92;
  color: var(--cream);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(250, 248, 245, 0.65);
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-pill {
  font-size: 12px;
  font-weight: 600;
  color: rgba(250, 248, 245, 0.5);
  border: 1px solid rgba(250, 248, 245, 0.15);
  padding: 5px 12px;
  border-radius: 20px;
}

/* Hero Visual Panel */
.hero-visual {
  position: relative;
  z-index: 2;
  flex: 0 0 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 80px 80px 40px;
}

.hero-tool-cluster {
  position: relative;
  width: 300px;
  height: 300px;
}

.tool-circle {
  position: absolute;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(196, 81, 44, 0.3);
  animation: float 6s ease-in-out infinite;
}

.tool-circle svg {
  width: 40px;
  height: 40px;
}

.tc-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.tc-2 { top: 30%; right: 0; animation-delay: 1.5s; }
.tc-3 { bottom: 30%; left: 0; animation-delay: 3s; }
.tc-4 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 4.5s; }

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

.tc-1 { transform: translateX(-50%); }
.tc-1:hover { transform: translateX(-50%) translateY(-12px); }
.tc-4 { transform: translateX(-50%); }
.tc-4:hover { transform: translateX(-50%) translateY(-12px); }

.hero-phone {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 81, 44, 0.9);
  padding: 10px 20px;
  border-radius: 30px;
  white-space: nowrap;
}

.phone-number {
  color: var(--cream);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

/* ---- MANIFESTO ---- */
.manifesto {
  background: var(--terracotta);
  padding: 80px 80px;
}

.manifesto-inner {
  max-width: 720px;
  position: relative;
}

.manifesto-quote-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 140px;
  line-height: 0.5;
  color: rgba(250, 248, 245, 0.15);
  position: absolute;
  top: -10px;
  left: -20px;
}

.manifesto blockquote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  color: var(--cream);
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.manifesto cite {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: rgba(250, 248, 245, 0.7);
  font-style: normal;
  display: block;
}

/* ---- SERVICES ---- */
.services {
  padding: 100px 80px;
  background: var(--cream);
}

.services-header {
  margin-bottom: 56px;
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.services-header h2,
.why-us-header h2,
.coverage-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  color: var(--slate);
  letter-spacing: 0.01em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  border: 1px solid rgba(0,0,0,0.06);
}

.service-card {
  background: var(--cream);
  padding: 40px 36px;
  transition: background 0.2s;
}

.service-card:hover {
  background: #fff;
}

.service-card-wide {
  grid-column: span 2;
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--slate);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

/* ---- COVERAGE ---- */
.coverage {
  background: var(--slate);
  padding: 100px 80px;
}

.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.coverage-text h2 {
  color: var(--cream);
  margin: 12px 0 20px;
}

.coverage-text p {
  font-size: 16px;
  color: rgba(250, 248, 245, 0.6);
  margin-bottom: 36px;
  max-width: 420px;
}

.coverage-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.coverage-county {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(250, 248, 245, 0.8);
}

.county-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

.coverage-map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverage-map svg {
  width: 100%;
  max-width: 300px;
}

/* ---- WHY US ---- */
.why-us {
  padding: 100px 80px;
  background: var(--cream-dark);
}

.why-us-header {
  margin-bottom: 60px;
}

.why-us-header h2 {
  margin-top: 12px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.why-item {
  padding: 40px 32px;
  border-right: 1px solid rgba(0,0,0,0.08);
}

.why-item:last-child {
  border-right: none;
}

.why-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--terracotta);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

.why-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--slate);
  margin-bottom: 12px;
}

.why-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

.estimator-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}

.estimator-link:hover { opacity: 0.7; }

/* ---- PRICING ESTIMATOR ---- */
.pricing-estimator {
  background: var(--cream);
  padding: 100px 80px;
}

.pe-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pe-left .section-label { margin-bottom: 10px; }

.pe-left h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.05;
  color: var(--slate);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.pe-sub {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 420px;
}

.pe-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

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

.pe-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

.pe-form-group select {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: var(--text);
  appearance: none;
  -webkit-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='%236B6B6B' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.pe-form-group select:focus {
  outline: none;
  border-color: var(--terracotta);
}

.pe-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--cream);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.pe-cta:hover { background: var(--terracotta-dark); }

/* Price card */
.pe-price-card {
  background: var(--slate);
  border-radius: 8px;
  padding: 48px 40px;
  text-align: center;
}

.pe-price-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.45);
  margin-bottom: 16px;
}

.pe-price-range {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: var(--cream);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.pe-price-note {
  font-size: 14px;
  color: rgba(250,248,245,0.4);
  line-height: 1.6;
}

/* ---- CLOSING ---- */
.closing {
  background: var(--cream);
  padding: 100px 80px;
}

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

.closing h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  color: var(--slate);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.closing p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 44px;
}

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

.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--cream);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.cta-phone:hover { background: var(--terracotta-dark); }

.cta-or {
  color: var(--text-light);
  font-size: 14px;
}

.cta-email {
  color: var(--terracotta);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 1px solid var(--terracotta);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}

.cta-email:hover { opacity: 0.7; }

/* ---- FOOTER ---- */
.footer {
  background: var(--slate);
  padding: 48px 80px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

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

.footer-logo-mark {
  width: 44px;
  height: 44px;
  background: var(--terracotta);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.footer-company {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(250, 248, 245, 0.4);
  margin-top: 2px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.footer-phone {
  color: var(--cream);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.footer-email {
  color: rgba(250, 248, 245, 0.4);
  font-size: 13px;
  text-decoration: none;
}

.footer-areas {
  width: 100%;
  font-size: 12px;
  color: rgba(250, 248, 245, 0.3);
  text-align: center;
  margin-top: 8px;
  border-top: 1px solid rgba(250, 248, 245, 0.08);
  padding-top: 16px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-inner { grid-template-columns: 1fr; }
}

/* ---- LEAD FORM ---- */
.lead-form-section {
  background: var(--slate-mid);
  padding: 100px 80px;
}

.lead-form-inner {
  max-width: 640px;
  margin: 0 auto;
}

.lead-form-section .section-label { color: rgba(250,248,245,0.5); }

.lead-form-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.05;
  color: var(--cream);
  letter-spacing: 0.01em;
  margin: 12px 0 16px;
}

.lead-form-sub {
  font-size: 16px;
  color: rgba(250,248,245,0.55);
  margin-bottom: 44px;
  line-height: 1.65;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(250,248,245,0.7);
  letter-spacing: 0.03em;
}

.required { color: var(--terracotta); }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(250,248,245,0.06);
  border: 1px solid rgba(250,248,245,0.12);
  border-radius: 4px;
  padding: 12px 14px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  color: var(--cream);
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250,248,245,0.25);
}

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

.form-group select {
  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='rgba(250,248,245,0.4)' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option { background: var(--slate-mid); color: var(--cream); }

.lead-submit-btn {
  background: var(--terracotta);
  color: var(--cream);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 15px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lead-submit-btn:hover:not(:disabled) { background: var(--terracotta-dark); }
.lead-submit-btn:disabled { opacity: 0.65; cursor: not-allowed; }

.form-error {
  font-size: 13px;
  color: #f87171;
  padding: 10px 14px;
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.25);
  border-radius: 4px;
}

.lead-success {
  text-align: center;
  padding: 48px 32px;
}

.lead-success svg { margin: 0 auto 20px; }

.lead-success h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--cream);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.lead-success p {
  font-size: 16px;
  color: rgba(250,248,245,0.55);
}

/* ---- ADMIN LEADS ---- */
.admin-leads-page { background: var(--cream); min-height: 100vh; }

.admin-leads-header {
  background: var(--slate);
  padding: 40px 60px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.admin-leads-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.admin-leads-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.admin-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1px solid rgba(196,81,44,0.4);
  padding: 4px 10px;
  border-radius: 2px;
}

.admin-leads-body { padding: 40px 60px; max-width: 1100px; margin: 0 auto; }

.admin-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}

.stat-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 24px 28px;
  border-radius: 6px;
  min-width: 140px;
}

.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.05em;
}

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

.leads-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 6px;
}

.leads-table th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.leads-table td {
  padding: 16px;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  vertical-align: top;
}

.leads-table tr:last-child td { border-bottom: none; }
.leads-table tr:hover td { background: var(--cream); }

.td-name { font-weight: 600; }
.td-phone, .td-email { color: var(--text-light); font-size: 13px; }

.service-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(196,81,44,0.1);
  color: var(--terracotta);
  padding: 3px 8px;
  border-radius: 3px;
}

.td-desc { color: var(--text-light); font-size: 13px; max-width: 280px; }

.td-timing { color: var(--text-light); font-size: 13px; }

.td-date { font-size: 12px; color: var(--text-light); white-space: nowrap; }

.empty-state {
  text-align: center;
  padding: 64px 32px;
  color: var(--text-light);
}

.empty-state p { margin-top: 12px; font-size: 15px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero-inner,
  .manifesto,
  .services,
  .coverage,
  .why-us,
  .pricing-estimator,
  .closing,
  .footer,
  .lead-form-section,
  .gallery,
  .how-we-work {
    padding-left: 32px;
    padding-right: 32px;
  }

  .pe-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pe-controls {
    grid-template-columns: 1fr;
  }

  .pricing-estimator {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-inner { padding-top: 60px; padding-bottom: 60px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: span 1; }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-contact { align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }
  .lead-form-section { padding-top: 80px; padding-bottom: 80px; }

  .admin-leads-header { padding: 32px 32px 28px; }
  .admin-leads-body { padding: 32px; }
  .admin-leads-header-inner { flex-direction: column; }
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: var(--cream);
  padding: 100px 80px;
}

.testimonials-header {
  margin-bottom: 56px;
}

.testimonials-header h2 {
  margin-top: 12px;
}

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

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 6px;
  padding: 36px 32px 28px;
  position: relative;
  overflow: hidden;
}

.testimonial-quote-mark {
  font-family: 'Bebas Neue', serif;
  font-size: 120px;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.12;
  position: absolute;
  top: 8px;
  left: 20px;
  pointer-events: none;
  user-select: none;
}

.testimonial-stars {
  margin-bottom: 16px;
}

.star {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

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

.author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--slate);
}

.author-location {
  font-size: 13px;
  color: var(--text-light);
}

@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .testimonials {
    padding-left: 32px;
    padding-right: 32px;
  }

  .testimonials-grid { grid-template-columns: 1fr; }

  .gallery {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .before-after-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .ba-hero,
  .ba-cta { padding: 48px 32px; }

  .ba-filters { padding: 32px 32px 0; }

  .ba-grid {
    grid-template-columns: 1fr;
    padding: 24px 32px 48px;
  }

  .how-we-work {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-left: 1px solid rgba(0,0,0,0.08);
  }

  .process-step {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 32px 28px;
  }

  .process-step:last-child { border-bottom: none; }

  .why-list { grid-template-columns: 1fr; }
}

/* ---- GALLERY ---- */
.gallery {
  padding: 100px 80px;
  background: var(--cream);
}

.gallery-header { margin-bottom: 56px; }

.gallery-header h2 { margin-top: 12px; }

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.ba-pair {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ba-slot {
  border: 2px dashed rgba(0,0,0,0.15);
  border-radius: 6px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}

.ba-slot-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.3);
  position: absolute;
  top: 10px;
  left: 12px;
}

.ba-caption {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  margin-top: 4px;
}

.ba-caption strong {
  color: var(--slate);
  font-weight: 600;
}

/* ---- BEFORE / AFTER PAGE ---- */
.ba-hero {
  background: var(--slate);
  padding: 80px;
  position: relative;
  overflow: hidden;
}

.ba-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,81,44,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ba-hero-inner {
  max-width: 660px;
  z-index: 2;
  position: relative;
}

.ba-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1.0;
  color: var(--cream);
  margin: 20px 0 16px;
  letter-spacing: 0.01em;
}

.ba-hero p {
  color: rgba(250,248,245,0.7);
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
}

.ba-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 48px 80px 0;
  background: var(--cream);
}

.ba-filter-btn {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate);
  background: transparent;
  border: 2px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.ba-filter-btn:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.ba-filter-btn.is-active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 32px 80px 80px;
  background: var(--cream);
}

.ba-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ba-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-light);
  padding: 48px 0;
}

.ba-cta {
  background: var(--slate);
  padding: 64px 80px;
  text-align: center;
}

.ba-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--cream);
  margin: 0 0 24px;
  letter-spacing: 0.01em;
}

/* ---- HOW WE WORK ---- */
.how-we-work {
  padding: 100px 80px;
  background: var(--cream-dark);
}

.how-we-work-header { margin-bottom: 56px; }
.how-we-work-header h2 { margin-top: 12px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 64px;
}

.process-step {
  padding: 40px 32px;
  border-right: 1px solid rgba(0,0,0,0.08);
}

.process-step:last-child { border-right: none; }

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--terracotta);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 20px;
}

.process-step h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--slate);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-light);
}

.how-we-work-why {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 6px;
  padding: 40px 48px;
}

.how-we-work-why h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.05em;
  color: var(--slate);
  margin-bottom: 24px;
}

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

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

.why-list li::before {
  content: '✓';
  color: var(--terracotta);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- SERVICE AREAS PAGE ---- */
.sa-nav {
  background: var(--slate);
  padding: 16px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sa-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--cream);
  letter-spacing: 0.08em;
  text-decoration: none;
}

.sa-home-link {
  font-size: 14px;
  color: rgba(250,248,245,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.sa-home-link:hover { color: rgba(250,248,245,0.8); }

/* SA Hero */
.sa-hero {
  background: var(--slate);
  padding: 80px 80px 100px;
  position: relative;
  overflow: hidden;
}

.sa-hero::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 50%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(196, 81, 44, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.sa-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.sa-hero .section-label { color: rgba(250,248,245,0.5); margin-bottom: 16px; display: block; }

.sa-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.sa-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(250, 248, 245, 0.6);
  max-width: 560px;
  margin-bottom: 40px;
}

.sa-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: var(--cream);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.sa-cta:hover { background: var(--terracotta-dark); }

/* SA Counties */
.sa-counties {
  background: var(--cream);
  padding: 100px 80px;
}

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

.sa-county-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 6px;
  padding: 36px 32px 32px;
}

.sa-county-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.sa-county-icon {
  width: 44px;
  height: 44px;
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 2px;
}

.sa-county-icon svg {
  width: 100%;
  height: 100%;
}

.sa-county-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 4px;
}

.sa-county-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--slate);
}

.sa-county-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 20px;
}

.sa-city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.sa-city-list li {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--cream-dark);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
}

.sa-city-list li .sa-city-link {
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.15s ease;
}

.sa-city-list li .sa-city-link:hover {
  color: var(--slate);
  text-decoration: underline;
}

/* SA Neighborhoods (city page only) */
.sa-neighborhoods {
  background: var(--cream);
  padding: 80px;
}

.sa-neighborhoods-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.sa-neighborhoods-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  color: var(--slate);
  letter-spacing: 0.01em;
  margin: 16px auto 20px;
}

.sa-neighborhoods-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-light);
  max-width: 720px;
  margin: 0 auto 32px;
}

.sa-neighborhoods-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  list-style: none;
}

.sa-neighborhoods-list li {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  background: var(--cream-dark);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
}

/* SA Why */
.sa-why {
  background: var(--cream-dark);
  padding: 100px 80px;
}

.sa-why-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}

.sa-why-left .section-label { display: block; margin-bottom: 16px; }

.sa-why-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 52px);
  line-height: 1.05;
  color: var(--slate);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.sa-why-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 28px;
}

.sa-why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sa-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.sa-check {
  color: var(--terracotta);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* SA Contact Card */
.sa-contact-card {
  background: var(--slate);
  border-radius: 8px;
  padding: 40px 36px;
}

.sa-contact-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.45);
  margin-bottom: 20px;
}

.sa-contact-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-weight: 700;
  font-size: 24px;
  text-decoration: none;
  margin-bottom: 10px;
}

.sa-contact-email {
  display: block;
  font-size: 14px;
  color: rgba(250,248,245,0.5);
  text-decoration: none;
  margin-bottom: 32px;
  word-break: break-all;
}

.sa-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--terracotta);
  color: var(--cream);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.sa-cta-dark:hover { background: var(--terracotta-dark); }

/* SA FAQ */
.sa-faq {
  background: var(--cream);
  padding: 100px 80px;
}

.sa-faq-inner { max-width: 900px; }

.sa-faq-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: var(--slate);
  letter-spacing: 0.01em;
  margin-bottom: 56px;
}

.sa-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
}

.sa-faq-item {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 24px;
}

.sa-faq-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--slate);
  margin-bottom: 10px;
}

.sa-faq-item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light);
}

/* SA Responsive */
@media (max-width: 1024px) {
  .sa-counties-grid { grid-template-columns: 1fr; }
  .sa-why-inner { grid-template-columns: 1fr; }
  .sa-why-right { max-width: 420px; }
}

@media (max-width: 768px) {
  .sa-nav { padding: 16px 32px; }
  .sa-hero, .sa-counties, .sa-why, .sa-faq { padding-left: 32px; padding-right: 32px; }
  .sa-faq-grid { grid-template-columns: 1fr; }
}

/* ---- ABOUT ---- */

.ab-hero {
  background: var(--slate);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
  padding: 80px;
  position: relative;
  overflow: hidden;
}

.ab-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,81,44,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ab-hero-inner {
  flex: 1;
  max-width: 660px;
  z-index: 2;
}

.ab-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1.0;
  color: var(--cream);
  margin: 20px 0 16px;
  letter-spacing: 0.01em;
}

.ab-hero p {
  color: rgba(250,248,245,0.7);
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
}

.ab-photo-placeholder {
  width: 260px;
  height: 320px;
  flex-shrink: 0;
  border: 2px dashed rgba(196,81,44,0.4);
  border-radius: 4px;
  background: var(--slate-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(250,248,245,0.35);
  font-size: 13px;
  letter-spacing: 0.05em;
  z-index: 2;
}

.ab-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px;
  background: var(--cream);
}

.ab-story-text p + p {
  margin-top: 16px;
}

.ab-story-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.ab-pullquote {
  background: var(--slate);
  color: var(--cream);
  border-left: 4px solid var(--terracotta);
  padding: 32px 28px;
  border-radius: 2px;
  position: relative;
  align-self: start;
}

.ab-pullquote::before {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--terracotta);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.ab-pullquote p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250,248,245,0.85);
}

.ab-pullquote-attr {
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(250,248,245,0.5) !important;
}

.ab-diff {
  padding: 80px;
  background: var(--cream-dark);
}

.ab-diff-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ab-diff-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--slate);
  letter-spacing: 0.01em;
  margin-bottom: 48px;
  margin-top: 8px;
}

.ab-diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
}

.ab-diff-item {
  background: var(--cream);
  padding: 28px 24px;
  border-radius: 2px;
}

.ab-diff-item h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.03em;
  color: var(--slate);
  margin-bottom: 8px;
}

.ab-diff-item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-light);
}

.ab-cta {
  background: var(--slate);
  padding: 80px;
  text-align: center;
}

.ab-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--cream);
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.ab-cta-phone {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--terracotta);
  letter-spacing: 0.05em;
  text-decoration: none;
  margin-bottom: 28px;
  transition: opacity 0.15s;
}

.ab-cta-phone:hover { opacity: 0.8; }

.ab-cta-btn {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  padding: 16px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.15s;
}

.ab-cta-btn:hover { background: #b8461e; }

@media (max-width: 768px) {
  .ab-hero { flex-direction: column; padding: 40px 32px; gap: 32px; }
  .ab-photo-placeholder { width: 100%; height: 200px; }
  .ab-story { grid-template-columns: 1fr; padding: 48px 32px; }
  .ab-diff { padding: 48px 32px; }
  .ab-diff-grid { grid-template-columns: 1fr; }
  .ab-cta { padding: 48px 32px; }
}

/* ---- TESTIMONIALS PAGE ---- */
.tr-hero {
  background: var(--slate);
  color: var(--cream);
  padding: 80px;
}

.tr-hero-inner {
  max-width: 720px;
}

.tr-hero h1 {
  color: var(--cream);
  margin-top: 12px;
  margin-bottom: 20px;
}

.tr-hero p {
  color: rgba(245, 240, 230, 0.82);
  font-size: 17px;
  line-height: 1.65;
  max-width: 620px;
}

.tr-google-badge {
  background: var(--cream);
  padding: 60px 80px;
  text-align: center;
}

.tr-badge-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  padding: 40px;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.tr-badge-headline {
  font-size: 28px;
  color: var(--slate);
  margin: 12px 0 8px;
}

.tr-badge-sub {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 24px;
}

.tr-badge-btn {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.15s;
}

.tr-badge-btn:hover { background: #b8461e; }

.tr-google-embed {
  background: var(--cream-dark, #ede8db);
  padding: 60px 80px;
  text-align: center;
}

.tr-embed-inner {
  max-width: 720px;
  margin: 0 auto;
}

.tr-embed-grid {
  margin-top: 24px;
  text-align: left;
}

.tr-embed-aggregate {
  margin-top: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--text-light);
}

.tr-embed-placeholder {
  border: 2px dashed rgba(0,0,0,0.18);
  border-radius: 6px;
  padding: 48px 32px;
  margin-top: 24px;
  background: rgba(255,255,255,0.4);
}

.tr-embed-coming-soon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--slate);
  margin-bottom: 8px;
}

.tr-embed-note {
  color: var(--text-light);
  font-size: 15px;
}

.tr-cta {
  background: var(--slate);
  color: var(--cream);
  padding: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.tr-cta h2 {
  color: var(--cream);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .tr-hero { padding: 48px 32px; }
  .tr-google-badge { padding: 48px 32px; }
  .tr-google-embed { padding: 48px 32px; }
  .tr-cta { padding: 48px 32px; }
}

/* ---- PRICING PAGE ---- */

.pr-hero {
  background: var(--slate);
  color: var(--cream);
  padding: 100px 80px;
  text-align: center;
}

.pr-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.pr-hero h1 {
  color: var(--cream);
}

.pr-hero p {
  color: rgba(242, 235, 220, 0.8);
  font-size: 18px;
  margin-top: 12px;
}

.pr-grid-section {
  background: var(--cream);
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.pr-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 48px 36px;
  position: relative;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
}

.pr-card--featured {
  border-top: 3px solid var(--terracotta);
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.pr-badge {
  display: inline-block;
  background: var(--terracotta);
  color: var(--cream);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.pr-plan-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--slate);
  margin: 0 0 8px;
}

.pr-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--terracotta);
  line-height: 1;
  margin: 0 0 24px;
}

.pr-price-unit {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-light);
}

.pr-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  font-size: 14px;
  line-height: 1.7;
  flex: 1;
}

.pr-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
}

.pr-feature::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  min-width: 14px;
  margin-top: 3px;
  background-color: var(--terracotta);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M1 6l3.5 3.5L11 2' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M1 6l3.5 3.5L11 2' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}

.pr-cta-btn {
  display: block;
  background: var(--terracotta);
  color: var(--cream);
  text-align: center;
  padding: 14px 24px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.2s;
  margin-top: auto;
}

.pr-cta-btn:hover {
  opacity: 0.88;
}

.pr-fine-print {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  padding: 0 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .pr-hero { padding: 48px 32px; }
  .pr-grid { grid-template-columns: 1fr; padding: 32px; }
  .pr-fine-print { padding: 0 32px 48px; }
}

/* ---- FAQ PAGE ---- */
.faq-hero {
  background: var(--slate);
  color: var(--cream);
  padding: 80px;
}
.faq-hero-inner { max-width: 720px; }
.faq-hero .section-label { color: rgba(250,248,245,0.5); margin-bottom: 16px; display: block; }
.faq-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1.0;
  color: var(--cream);
  margin: 20px 0 16px;
  letter-spacing: 0.01em;
}
.faq-hero p {
  color: rgba(250,248,245,0.7);
  font-size: 17px;
  line-height: 1.65;
  max-width: 620px;
}

.faq-list { background: var(--cream); padding: 80px; }
.faq-list-inner { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-q {
  display: flex;
  gap: 16px;
  align-items: baseline;
  cursor: pointer;
  list-style: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 19px;
  letter-spacing: 0.04em;
  color: var(--slate);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  margin-left: auto;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 24px;
  color: var(--terracotta);
  transition: transform 0.2s;
}
.faq-item[open] .faq-q::after { content: '\2212'; }
.faq-num {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--terracotta);
  min-width: 24px;
  letter-spacing: 0.08em;
}
.faq-q-text { flex: 1; }
.faq-a {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin-top: 14px;
  padding-left: 40px;
}

.faq-related { background: var(--cream-dark, #ede8db); padding: 60px 80px; }
.faq-related-inner { max-width: 800px; margin: 0 auto; }
.faq-related .section-label { display: block; margin-bottom: 12px; color: var(--text-light); letter-spacing: 0.08em; }
.faq-related-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--slate);
  margin-bottom: 20px;
}
.faq-related-list { list-style: none; padding: 0; margin: 0; }
.faq-related-list li {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 14px 0;
}
.faq-related-list li:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-related-list a {
  color: var(--slate);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.15s;
}
.faq-related-list a:hover { color: var(--terracotta); }

.faq-cta {
  background: var(--slate);
  padding: 80px;
  text-align: center;
}
.faq-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  color: var(--cream);
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.faq-cta-phone, .faq-cta-btn { display: inline-block; }
.faq-cta-phone {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--terracotta);
  letter-spacing: 0.05em;
  text-decoration: none;
  margin-bottom: 24px;
}
.faq-cta-btn {
  background: var(--terracotta);
  color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  padding: 16px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.15s;
}
.faq-cta-btn:hover { background: #b8461e; }
.faq-cta-secondary {
  margin-top: 20px;
  color: rgba(250,248,245,0.65);
  font-size: 14px;
}
.faq-cta-secondary a { color: var(--cream); text-decoration: underline; }

/* ---- CONTACT PAGE ---- */
.cn-hero {
  background: var(--slate);
  color: var(--cream);
  padding: 80px;
  text-align: center;
}
.cn-hero-inner { max-width: 640px; margin: 0 auto; }
.cn-hero .section-label { color: rgba(250,248,245,0.5); margin-bottom: 16px; display: block; }
.cn-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1.0;
  color: var(--cream);
  margin: 20px 0 16px;
  letter-spacing: 0.01em;
}
.cn-hero p {
  color: rgba(250,248,245,0.7);
  font-size: 17px;
  line-height: 1.65;
}
.cn-hero-phone { color: var(--terracotta); text-decoration: none; font-weight: 600; }
.cn-hero-phone:hover { text-decoration: underline; }

/* ---- CONTACT: TRUST BADGES ---- */
.cn-trust {
  background: var(--cream);
  padding: 60px 80px;
  text-align: center;
}
.cn-trust-inner { max-width: 960px; margin: 0 auto; }
.cn-trust .section-label { display: block; margin-bottom: 12px; color: var(--text-light); }
.cn-trust h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  color: var(--slate);
  margin-bottom: 36px;
}
.cn-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cn-trust-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  padding: 32px 24px;
  text-align: center;
}
.cn-trust-icon { color: var(--terracotta); margin-bottom: 16px; }
.cn-trust-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--slate);
  margin-bottom: 10px;
}
.cn-trust-card p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}
.cn-trust-phone { color: var(--terracotta); font-weight: 600; text-decoration: none; }
.cn-trust-phone:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .faq-hero, .faq-list, .faq-related, .faq-cta, .cn-hero { padding: 48px 32px; }
  .cn-trust { padding: 48px 32px; }
  .cn-trust-grid { grid-template-columns: 1fr; }
  .faq-a { padding-left: 0; }
}