/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --green:           #00d084;
  --green-dark:      #00a86b;
  --green-glow:      rgba(0, 208, 132, 0.25);
  --bg-dark:         #0b0f14;
  --bg-card:         #111827;
  --text-primary:    #ffffff;
  --text-dark:       #0f1720;
  --text-body:       #444444;
  --text-muted:      #9ca3af;
  --text-subtle:     #6b7280;
  --border:          rgba(0, 0, 0, 0.06);
  --border-light:    rgba(255, 255, 255, 0.1);
  --shadow-sm:       0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md:       0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg:       0 25px 60px rgba(0, 0, 0, 0.12);
  --radius-sm:       10px;
  --radius-md:       16px;
  --radius-lg:       20px;
  --radius-full:     999px;
  --transition:      0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
}

section {
  padding: 80px 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* ============================================================
   TYPOGRAPHY — SHARED SECTION HEADINGS
   ============================================================ */
.section-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.section-sub {
  font-size: 15px;
  color: #666;
  max-width: 500px;
  margin-bottom: 40px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #000;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-weight: 500;
  box-shadow: 0 8px 20px var(--green-glow);
  transition: opacity var(--transition);
}

.btn-primary:hover {
  opacity: 0.88;
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--border-light);
  padding: 14px 26px;
  border-radius: var(--radius-full);
  color: var(--text-primary);
  transition: border-color var(--transition);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
  background: rgba(10, 15, 20, 0.6);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
}

.logo span {
  color: var(--green);
}

/* ============================================================
   NAV BACKDROP (mobile dim overlay)
   ============================================================ */
.nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1040;
}

.nav-backdrop.active {
  display: block;
}

/* ============================================================
   NAV — Mobile drawer
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -320px;
  width: 300px;
  min-height: 70vh;
  background: #0b0f14;
  flex-direction: column;
  padding: 80px 24px 30px;
  gap: 0;
  z-index: 1050;
  display: flex;
  transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -8px 0 50px rgba(0, 0, 0, 0.85);
  overflow-y: auto;
  isolation: isolate;
}

.nav.active {
  right: 0;
}

.nav a,
.dropdown > span {
  color: #e2e8f0;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 14px 20px;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color var(--transition), padding-left var(--transition);
}

.nav a:hover,
.dropdown > span:hover {
  color: var(--green);
  padding-left: 6px;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 15px;
}

.dropdown-menu {
  position: static;
  background: rgba(255, 255, 255, 0.04);
  padding: 0 0 0 16px;
  border-radius: var(--radius-sm);
  display: none;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 8px 0;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 400;
  border-bottom: none;
  transition: color var(--transition), padding-left var(--transition);
}

.dropdown-menu a:hover {
  color: var(--green);
  padding-left: 4px;
}

/* Header right — hidden on mobile */
.header-right {
  display: none;
  align-items: center;
  gap: 20px;
}

.phone {
  color: #cbd5e1;
  font-size: 14px;
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1200;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile CTA inside drawer */
.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding-top: 80px;
  color: var(--text-primary);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 10, 15, 0.92) 20%,
    rgba(5, 10, 15, 0.6) 55%,
    rgba(5, 10, 15, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px 20px 130px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 11px;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-title span {
  color: var(--green);
}

.hero-sub {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
  max-width: 550px;
  margin-bottom: 24px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-outline {
  width: 100%;
  text-align: center;
}

.hero-stats {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}

.hero-stats div {
  padding: 14px;
  text-align: center;
  border-right: 1px solid var(--border-light);
}

.hero-stats div:nth-child(2n) {
  border-right: none;
}

.hero-stats h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.hero-stats p {
  font-size: 11px;
  color: var(--text-muted);
}

/* ============================================================
   SERVICES — Image cards with hover reveal
   ============================================================ */
.services-section {
  background: #f0f2f5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: inherit;
}

.service-card.big {
  grid-column: span 2;
  min-height: 220px;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.service-card:hover .service-card-bg {
  transform: scale(1.07);
}

.service-card.electrical .service-card-bg { background-image: url('/assets/images/electrical.jpg'); }
.service-card.carpentry  .service-card-bg { background-image: url('/assets/images/inspection.png'); }
.service-card.marble     .service-card-bg { background-image: url('/assets/images/inspection.png'); }
.service-card.tile       .service-card-bg { background-image: url('/assets/images/inspection.png'); }
.service-card.bathroom   .service-card-bg { background-image: url('/assets/images/inspection.png'); }
.service-card.pool       .service-card-bg { background-image: url('/assets/images/inspection.png'); }

.service-card-border {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  transition: border-color 0.35s ease;
  pointer-events: none;
  z-index: 3;
}

.service-card:hover .service-card-border {
  border-color: rgba(0, 208, 132, 0.45);
}

.card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  transition: background 0.4s ease;
}

.service-card:hover .card-content {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.62) 55%,
    rgba(0, 0, 0, 0.28) 100%
  );
}

.service-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--green);
  color: #000;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  width: fit-content;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.service-card:hover .service-tag {
  opacity: 1;
  transform: translateY(0);
}

.card-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.25;
}

.service-card.big .card-content h3 {
  font-size: 22px;
}

.short {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin: 0;
  max-height: 44px;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.2s ease, max-height 0.3s ease;
}

.full {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.3s ease 0.1s;
}

.service-card:hover .short {
  opacity: 0;
  max-height: 0;
}

.service-card:hover .full {
  max-height: 120px;
  opacity: 1;
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
  width: fit-content;
}

.service-arrow svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-card:hover .service-arrow svg {
  transform: translateX(3px);
}

/* ============================================================
   VALUE / FEATURES
   ============================================================ */
.value-section {
  background: #fff;
}

.value-grid {
  display: grid;
  gap: 40px;
}

.section-left {
  padding: 30px;
  color: #111;
  background: linear-gradient(180deg, #f8fbfa, #eef6f3);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}

.section-description {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 28px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-line {
  width: 3px;
  min-width: 3px;
  height: 34px;
  background: var(--green);
  border-radius: 2px;
  margin-top: 4px;
}

.feature-content h4 {
  font-size: 17px;
  margin-bottom: 4px;
}

.feature-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.value-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.video-card {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.image-row {
  display: flex;
  gap: 14px;
}

.value-img {
  flex: 1;
  height: 150px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f1f5f9;
  position: relative;
}

.value-img img,
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.value-img:hover img,
.video-card:hover video {
  transform: scale(1.04);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  background: #fff;
  padding: 0;
}

.cta-wrapper {
  display: grid;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 50px 24px;
  background: var(--bg-dark);
  color: var(--text-primary);
}

.cta-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.cta-title {
  font-size: 30px;
  line-height: 1.25;
  margin-bottom: 16px;
}

.cta-text {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 500px;
}

.cta-link {
  color: var(--green);
  font-weight: 500;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
  background: radial-gradient(circle at top, #f8fafc, #fff);
}

.process-header {
  text-align: center;
  margin-bottom: 50px;
}

.process-header h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--text-dark);
}

.process-header p {
  margin-top: 10px;
  color: var(--text-subtle);
  font-size: 15px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}

.process-card {
  position: relative;
  z-index: 1;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(0, 208, 132, 0.15), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1), 0 10px 25px var(--green-glow);
}

.process-card:hover::before {
  opacity: 1;
}

.step-number {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 12px 25px var(--green-glow), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 18px;
  border: 1px solid rgba(0, 208, 132, 0.2);
}

.process-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.process-card p {
  font-size: 14px;
  color: var(--text-subtle);
  line-height: 1.65;
}

/* ============================================================
   INSPECT / CARD SLIDER
   ============================================================ */
.inspect-section {
  background: #fff;
}

.inspect-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.inspect-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.inspect-image img:hover {
  transform: scale(1.02);
}

.inspect-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.inspect-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  margin-top: 12px;
  background: linear-gradient(to right, var(--green), transparent);
  border-radius: 10px;
}

.inspect-subtext {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-subtle);
  margin-bottom: 24px;
}

.inspect-slider {
  position: relative;
  width: 100%;
  max-width: 850px;
  overflow: hidden;
  padding-top: 12px;
  padding-left: 12px;
  margin-top: -12px;
  padding-bottom: 20px;
  margin-bottom: -20px;
}

.inspect-slider::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.95));
  pointer-events: none;
  z-index: 2;
}

.inspect-card-stack {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.inspect-card {
  min-width: 280px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.inspect-card:not(.active):hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 208, 132, 0.2);
}

.inspect-card.active {
  background: linear-gradient(145deg, #0d1f18 0%, #0b1a14 50%, #091510 100%);
  border-color: rgba(0, 208, 132, 0.25);
  position: relative;
  overflow: visible;
}

.inspect-card.active::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(
    ellipse at 10% 10%,
    rgba(0, 208, 132, 0.18) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.inspect-card.active::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(0, 208, 132, 0.1), transparent 65%);
  pointer-events: none;
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #eef2f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #94a3b8;
  font-size: 18px;
}

.inspect-card.active .icon {
  background: var(--green);
  border-color: var(--green-dark);
  color: #000;
  box-shadow: 0 6px 16px rgba(0, 208, 132, 0.35);
}

.inspect-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.inspect-card.active h3 {
  color: #ffffff;
}

.inspect-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-subtle);
  flex-grow: 1;
}

.inspect-card.active p {
  color: rgba(255, 255, 255, 0.65);
}

.inspect-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  background: #edf2f7;
  color: #111;
  font-size: 13px;
  font-weight: 500;
  width: fit-content;
  transition: transform 0.25s ease, background var(--transition);
}

.inspect-card.active a {
  background: var(--green);
  color: #000;
}

.inspect-card a:hover {
  transform: translateY(-1px);
}

.inspect-controls {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.inspect-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.inspect-controls button:hover {
  background: var(--green);
  color: #000;
  border-color: var(--green);
  transform: translateY(-2px);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  background: linear-gradient(180deg, #f9fafb, #f3f4f6);
}

.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.reviews-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote-icon {
  width: 52px;
  min-width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 10px 25px var(--green-glow);
}

.reviews-title h2 {
  font-size: 28px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
}

.reviews-btn {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  font-weight: 500;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.reviews-btn:hover {
  background: var(--green);
  color: #000;
  transform: translateY(-2px);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.review-card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 28px;
  width: 32px;
  height: 2px;
  background: linear-gradient(to right, var(--green), transparent);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.review-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
  margin-top: 20px;
  margin-bottom: 24px;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-name {
  font-weight: 600;
  color: #111;
}

.review-stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 14px;
}

/* ============================================================
   INSIGHTS / BLOG SLIDER
   ============================================================ */
.insights-section {
  background: #fff;
}

.insights-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.insights-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: #111;
}

.insights-header p {
  margin-top: 6px;
  color: #666;
  max-width: 520px;
  font-size: 15px;
}

.insights-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  background: #111;
  color: #fff;
  font-size: 14px;
  transition: background var(--transition), color var(--transition);
}

.insights-btn:hover {
  background: var(--green);
  color: #000;
}

.insights-slider {
  overflow: hidden;
  position: relative;
}

.insights-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.insight-card {
  min-width: 85%;
  max-width: 85%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.insight-card:hover .card-image img {
  transform: scale(1.05);
}

.card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-body a {
  font-size: 14px;
  color: var(--green);
  font-weight: 500;
  margin-top: auto;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: linear-gradient(180deg, #fff, #f9fafb);
}

.faq-grid {
  display: grid;
  gap: 40px;
}

.faq-left h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.faq-left p {
  color: var(--text-subtle);
  margin-bottom: 24px;
  line-height: 1.6;
}

.faq-btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: #111;
  color: #fff;
  transition: background var(--transition), color var(--transition);
}

.faq-btn:hover {
  background: var(--green);
  color: #000;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item.active {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.faq-item:hover {
  border-color: rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.2px;
  color: var(--text-dark);
}

.faq-question span {
  font-size: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 8px 0 20px;
  font-size: 14px;
  color: var(--text-subtle);
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

/* ============================================================
   MEDIA QUERIES
   600px  → 2-col grids, wider cards
   900px  → full desktop layout
   ============================================================ */

@media (min-width: 600px) {
  .services-grid                { grid-template-columns: repeat(3, 1fr); }
  .service-card.big             { grid-column: span 2; }
  .process-grid                 { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid                 { grid-template-columns: repeat(2, 1fr); }
  .insight-card                 { min-width: 280px; max-width: 280px; }
  .inspect-card                 { min-width: 320px; }
}

@media (min-width: 900px) {

  section                       { padding: 110px 0; }
  .section-title                { font-size: 48px; }
  .section-sub                  { margin-bottom: 50px; }

  /* Header */
  .header                       { padding: 15px 0; }
  .logo a                       { font-size: 22px; }
  .header-right                 { display: flex; }
  .menu-toggle                  { display: none; }
  .mobile-cta                   { display: none; }
  .nav-backdrop                 { display: none !important; }

  /* Nav resets to horizontal desktop bar */
  .nav {
    position: static;
    top: auto;
    bottom: auto;
    right: auto;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    padding: 0;
    gap: 30px;
    transition: none;
    box-shadow: none;
    overflow: visible;
    isolation: auto;
  }

  .nav a,
  .dropdown > span {
    font-size: 15px;
    color: #cbd5e1;
    padding: 0;
    border-bottom: none;
    font-weight: 400;
  }

  .nav a:hover,
  .dropdown > span:hover {
    color: var(--green);
    padding-left: 0;
  }

  .dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    min-width: 240px;
    background: var(--bg-card);
    padding: 8px 0;
    border-radius: var(--radius-sm);
    display: none;
  }

  .dropdown:hover .dropdown-menu  { display: block; }
  .dropdown.open .dropdown-menu   { display: none; }
  .dropdown-menu a                { padding: 10px 20px; border-bottom: none; }

  /* Hero */
  .hero-content {
    max-width: 1200px;
    padding: 0 60px 130px;
  }

  .hero-badge                   { margin-top: 50px; font-size: 12px; }
  .hero-title                   { font-size: 80px; }
  .hero-sub                     { font-size: 16px; margin-bottom: 30px; }
  .hero-buttons                 { flex-direction: row; }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline    { width: auto; }

  .hero-stats                   { grid-template-columns: repeat(4, 1fr); }
  .hero-stats div               { padding: 20px; }
  .hero-stats div:nth-child(2n) { border-right: 1px solid var(--border-light); }
  .hero-stats div:last-child    { border-right: none; }
  .hero-stats h3                { font-size: 28px; }
  .hero-stats p                 { font-size: 12px; }

  /* Services */
  .services-grid                { grid-template-columns: repeat(3, 1fr); }
  .service-card                 { min-height: 240px; }
  .service-card.big             { min-height: 280px; }
  .card-content h3              { font-size: 20px; }
  .service-card.big .card-content h3 { font-size: 26px; }

  /* Value */
  .value-grid                   { grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
  .section-left                 { padding: 30px 50px; }
  .video-card                   { height: 360px; }
  .value-img                    { height: 180px; }

  /* CTA */
  .cta-wrapper                  { grid-template-columns: 1.2fr 1fr; }
  .cta-title                    { font-size: 40px; }
  .cta-content {
    padding: 50px 100px;
    background: linear-gradient(
      to right,
      var(--bg-dark) 70%,
      rgba(11, 15, 20, 0.8) 85%,
      rgba(11, 15, 20, 0.4) 95%,
      transparent 100%
    );
  }

  /* Process */
  .process-grid                 { grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .process-header h2            { font-size: 40px; }

  .process-grid::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 6%;
    width: 88%;
    height: 2px;
    background: linear-gradient(to right, transparent, rgba(0, 208, 132, 0.25), transparent);
    z-index: 0;
  }

  /* Inspect */
  .inspect-wrap                 { flex-direction: row; align-items: center; gap: 70px; }
  .inspect-title                { font-size: 36px; }

  /* Reviews */
  .reviews-header               { flex-direction: row; justify-content: space-between; align-items: center; margin-bottom: 50px; }
  .reviews-title h2             { font-size: 36px; }
  .reviews-grid                 { grid-template-columns: repeat(3, 1fr); gap: 30px; }

  /* Insights */
  .insights-header              { flex-direction: row; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
  .insights-header h2           { font-size: 36px; }

  /* FAQ */
  .faq-grid                     { grid-template-columns: 1fr 1.3fr; gap: 60px; }
  .faq-left                     { position: sticky; top: 120px; height: fit-content; }
  .faq-left h2                  { font-size: 36px; }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--bg-dark);
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
}

.footer-cta {
  background: linear-gradient(135deg, #0d1a12 0%, #0b1510 100%);
  border-top: 1px solid rgba(0, 208, 132, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 0;
}

.footer-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-cta-eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.footer-cta-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  max-width: 480px;
}

.footer-cta-title span {
  color: var(--green);
}

.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #000;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: opacity var(--transition);
}

.footer-btn-primary:hover {
  opacity: 0.85;
}

.footer-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  transition: border-color var(--transition);
}

.footer-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-main {
  padding: 60px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: inline-block;
}

.footer-logo span {
  color: var(--green);
}

.footer-brand-desc {
  font-size: 13.5px;
  color: var(--text-subtle);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: var(--green);
}

.footer-contact-item span {
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}

.footer-social:hover {
  background: var(--green);
  border-color: var(--green);
}

.footer-social svg {
  width: 15px;
  height: 15px;
  stroke: #9ca3af;
  fill: none;
  stroke-width: 1.8px;
  transition: stroke var(--transition);
}

.footer-social:hover svg {
  stroke: #000;
}

.footer-col-title {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--text-subtle);
  display: flex;
  align-items: center;
  gap: 0;
  transition: color var(--transition), gap var(--transition);
  position: relative;
}

.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.25s ease;
  display: inline-block;
  flex-shrink: 0;
}

.footer-links a:hover {
  color: var(--green);
  gap: 8px;
}

.footer-links a:hover::before {
  width: 10px;
}

.footer-badge {
  display: inline-block;
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(0, 208, 132, 0.15);
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-left: 6px;
  vertical-align: middle;
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-hours-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-hours-day {
  font-size: 13.5px;
  font-weight: 500;
  color: #fff;
}

.footer-hours-time {
  font-size: 13px;
  color: var(--text-subtle);
}

.footer-hours-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green);
  transition: gap var(--transition);
}

.footer-hours-cta svg {
  stroke: var(--green);
  transition: transform var(--transition);
}

.footer-hours-cta:hover {
  gap: 10px;
}

.footer-hours-cta:hover svg {
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-copy {
  font-size: 12.5px;
  color: #4b5563;
}

.footer-copy span {
  color: var(--green);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal a {
  font-size: 12.5px;
  color: #4b5563;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--text-muted);
}

@media (min-width: 600px) {
  .footer-grid                  { grid-template-columns: repeat(2, 1fr); }
  .footer-brand                 { grid-column: span 2; }
  .footer-bottom-inner          { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 900px) {
  .footer-cta-inner             { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-cta-title             { font-size: 30px; }
  .footer-grid                  { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-brand                 { grid-column: span 1; }
}