/* =============================================
   NORTHEAST DECORATIVE CONCRETE — MA SITE
   Premium Design System v2
   ============================================= */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors - Rich, Premium Palette */
  --gold: #B8860B;
  --gold-light: #D4A843;
  --gold-lighter: #E8CC84;
  --gold-dark: #8B6508;
  --gold-faint: rgba(184, 134, 11, 0.06);
  --gold-glow: rgba(184, 134, 11, 0.2);

  /* Deep Dark Palette */
  --noir: #0D0F12;
  --noir-light: #141820;
  --charcoal: #1A1E26;
  --charcoal-light: #232830;
  --slate: #2E343E;
  --slate-light: #3A414E;

  /* Refined Grays */
  --gray-700: #4A5060;
  --gray-600: #5C6272;
  --gray-500: #7A8090;
  --gray-400: #9CA2AF;
  --gray-300: #BFC4CD;
  --gray-200: #DDE0E6;
  --gray-100: #ECEEF2;
  --gray-50: #F5F6F8;
  --off-white: #FAFBFC;
  --white: #FFFFFF;

  /* Accent Colors */
  --emerald: #10B981;
  --emerald-faint: rgba(16, 185, 129, 0.08);
  --blue: #3B82F6;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing Scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.25rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;
  --s-32: 8rem;

  /* Layout */
  --max-w: 1180px;
  --max-w-sm: 720px;
  --header-h: 76px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 9999px;

  /* Shadows - Layered for Depth */
  --sh-xs: 0 1px 2px rgba(0,0,0,0.04);
  --sh-sm: 0 2px 8px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --sh-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --sh-lg: 0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
  --sh-xl: 0 16px 48px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --sh-gold: 0 8px 32px rgba(184,134,11,0.2);
  --sh-dark: 0 8px 32px rgba(0,0,0,0.3);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.2s var(--ease);
  --t-base: 0.35s var(--ease);
  --t-slow: 0.5s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); }
h4 { font-size: 1.0625rem; }

p { margin-bottom: var(--s-4); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: var(--s-6);
}

.eyebrow i { font-size: 0.625rem; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-6);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--s-8); }
}

.section {
  padding: var(--s-20) 0;
  position: relative;
}

@media (min-width: 768px) {
  .section { padding: var(--s-24) 0; }
}

.section--dark {
  background: var(--noir);
  color: var(--gray-300);
}

.section--muted {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  margin-bottom: var(--s-12);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: var(--s-4);
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Grids */
.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.grid-5 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
  .grid { gap: var(--s-8); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  padding: 0.8125rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: all var(--t-base);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn i { font-size: 0.8125rem; }

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--sh-gold);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--noir);
  color: var(--gray-400);
  font-size: 0.8125rem;
  padding: var(--s-2) 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}

.topbar__left span {
  display: none;
}

.topbar__left span:first-child { display: inline; }

@media (min-width: 768px) {
  .topbar__left span { display: inline; }
}

.topbar__left i {
  color: var(--gold);
  margin-right: var(--s-2);
  font-size: 0.6875rem;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.topbar__right a {
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: color var(--t-fast);
}

.topbar__right a:hover { color: var(--gold-light); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow var(--t-base);
}

.header.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.logo__mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.logo__text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo__text small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
}

/* Desktop Nav */
.nav {
  display: none;
  align-items: center;
  gap: var(--s-8);
}

@media (min-width: 900px) { .nav { display: flex; } }

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: var(--s-2) 0;
  position: relative;
}

.nav__link:hover { color: var(--charcoal); }

/* Dropdown */
.dropdown { position: relative; }

.dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: var(--s-2) 0;
}

.dropdown__trigger:hover { color: var(--charcoal); }

.dropdown__trigger .chevron {
  font-size: 0.5rem;
  transition: transform var(--t-fast);
}

.dropdown:hover .chevron { transform: rotate(180deg); }

.dropdown__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  max-height: 400px;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  padding: var(--s-2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--t-base);
  z-index: 200;
}

.dropdown:hover .dropdown__panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown__panel a {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
}

.dropdown__panel a:hover {
  background: var(--gold-faint);
  color: var(--gold-dark);
}

.dropdown__panel a i {
  font-size: 0.6875rem;
  color: var(--gray-400);
  width: 14px;
  text-align: center;
}

.dropdown__panel a:hover i { color: var(--gold); }

/* Mobile */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  cursor: pointer;
  padding: 4px 0;
}

@media (min-width: 900px) { .hamburger { display: none; } }

.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--t-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  overflow-y: auto;
  padding: var(--s-6);
  animation: fadeSlideDown 0.3s var(--ease);
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-4) 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav a:hover { color: var(--gold); }

.mobile-nav__label {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-400);
  padding-top: var(--s-6);
  padding-bottom: var(--s-2);
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: var(--s-16) 0 var(--s-20);
  background: var(--noir);
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { padding: var(--s-24) 0 var(--s-32); }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(184,134,11,0.08) 0%, transparent 100%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(184,134,11,0.04) 0%, transparent 100%);
  pointer-events: none;
}

/* Subtle grid pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Dark transparent overlay for hero background images */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 15, 18, 0.75) 0%,
    rgba(13, 15, 18, 0.8) 50%,
    rgba(13, 15, 18, 0.85) 100%
  );
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--s-16);
  }
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--s-6);
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.125rem;
  color: var(--gray-400);
  line-height: 1.75;
  margin-bottom: var(--s-10);
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-bottom: var(--s-12);
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  flex-wrap: wrap;
}

.hero__proof-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.875rem;
  color: var(--gray-400);
}

.hero__proof-item i {
  color: var(--emerald);
  font-size: 0.75rem;
}

/* Hero visual */
.hero__visual {
  position: relative;
}

.hero__card-stack {
  position: relative;
}

.hero__main-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-xl);
  padding: var(--s-10);
  position: relative;
  overflow: hidden;
}

.hero__main-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.hero__stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-8);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: var(--s-2);
}

.hero__stat-number .gold { color: var(--gold-light); }

.hero__stat-label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 500;
}

.hero__float {
  position: absolute;
  bottom: -16px;
  right: -8px;
  background: var(--gold);
  color: var(--white);
  padding: var(--s-4) var(--s-6);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-gold);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
}

.hero__float i { font-size: 1rem; }

/* ---------- Services ---------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: var(--gold-faint);
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-faint);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.125rem;
  margin-bottom: var(--s-5);
  transition: all var(--t-base);
}

.service-card:hover .service-card__icon {
  background: var(--gold);
  color: var(--white);
}

.service-card h3 { margin-bottom: var(--s-3); }

.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: var(--s-5);
  line-height: 1.7;
}

.service-card__link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  transition: gap var(--t-fast);
}

.service-card__link:hover { gap: var(--s-3); }
.service-card__link i { font-size: 0.625rem; }

/* Service card with background image */
.service-card--bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-color: transparent;
  min-height: 280px;
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,15,18,0.55) 0%, rgba(13,15,18,0.85) 100%);
  border-radius: inherit;
  transition: all var(--t-base);
  z-index: 1;
}

.service-card--bg:hover .service-card__overlay {
  background: linear-gradient(180deg, rgba(13,15,18,0.4) 0%, rgba(13,15,18,0.75) 100%);
}

.service-card__content {
  position: relative;
  z-index: 2;
}

.service-card--bg h3 { color: var(--white); }
.service-card--bg p { color: var(--gray-300); }

.service-card--bg .service-card__icon {
  background: rgba(255,255,255,0.12);
  color: var(--gold-light);
}

.service-card--bg:hover .service-card__icon {
  background: var(--gold);
  color: var(--white);
}

.service-card--bg .service-card__link { color: var(--gold-light); }

.service-card--bg:hover {
  border-color: rgba(184,134,11,0.3);
  box-shadow: var(--sh-dark);
  transform: translateY(-6px);
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--noir);
  padding: var(--s-14, 3.5rem) 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(184,134,11,0.08) 0%, transparent 40%),
    linear-gradient(315deg, rgba(184,134,11,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.stats-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-10, 2.5rem) var(--s-6);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .stats-bar__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.stats-bar__item {
  text-align: center;
  position: relative;
  padding: var(--s-4) var(--s-6);
}

/* Vertical dividers between items on desktop */
@media (min-width: 768px) {
  .stats-bar__item + .stats-bar__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(184,134,11,0.3), transparent);
  }
}

.stats-bar__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184,134,11,0.15), rgba(184,134,11,0.05));
  border: 1px solid rgba(184,134,11,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-4);
  font-size: 1.125rem;
  color: var(--gold-light);
  transition: all 0.3s ease;
}

.stats-bar__item:hover .stats-bar__icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark, #9a7209));
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(184,134,11,0.35);
}

.stats-bar__num {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #f5d680 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--s-2);
  letter-spacing: -0.02em;
}

.stats-bar__plus {
  font-size: 0.65em;
  opacity: 0.8;
}

.stats-bar__label {
  font-size: 0.8125rem;
  color: var(--gray-400, #9ca3af);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Trust Points ---------- */
.trust-card {
  display: flex;
  gap: var(--s-5);
  padding: var(--s-6);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  transition: all var(--t-base);
}

.trust-card:hover {
  border-color: var(--gold-faint);
  box-shadow: var(--sh-md);
}

.trust-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gold-faint);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9375rem;
}

.trust-card h4 { margin-bottom: var(--s-1); font-weight: 600; }

.trust-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---------- Facebook Section ---------- */
.fb-section {
  padding: var(--s-16) 0;
  background: linear-gradient(135deg, #0D1117 0%, #101820 50%, #0D1117 100%);
  position: relative;
  overflow: hidden;
}

.fb-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 10% 50%, rgba(24,119,242,0.08) 0%, transparent 100%);
  pointer-events: none;
}

.fb-card {
  display: flex;
  align-items: center;
  gap: var(--s-12);
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .fb-card {
    flex-direction: column;
    text-align: center;
  }
}

.fb-card__icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1877F2 0%, #0D65D9 100%);
  border-radius: var(--r-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(24,119,242,0.3);
}

.fb-card__content h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--s-3);
}

.fb-card__content p {
  color: var(--gray-400);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: var(--s-6);
  max-width: 560px;
}

@media (max-width: 767px) {
  .fb-card__content p { margin-left: auto; margin-right: auto; }
}

.fb-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}

@media (max-width: 767px) {
  .fb-card__features { justify-content: center; }
}

.fb-card__features span {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  background: rgba(24,119,242,0.1);
  border: 1px solid rgba(24,119,242,0.15);
  border-radius: var(--r-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.fb-card__features span i {
  color: #4599F7;
  font-size: 0.6875rem;
}

.btn--fb {
  background: #1877F2;
  color: var(--white);
  border-color: #1877F2;
  border-radius: var(--r-full);
  padding: 0.8125rem 1.75rem;
}

.btn--fb:hover {
  background: #0D65D9;
  border-color: #0D65D9;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(24,119,242,0.35);
}

/* ---------- Process ---------- */
.process-card {
  text-align: center;
  padding: var(--s-8) var(--s-6);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--t-base);
  position: relative;
}

.process-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184,134,11,0.2);
  transform: translateY(-4px);
}

.process-card__num {
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: var(--s-5);
}

.process-card h3 {
  color: var(--white);
  margin-bottom: var(--s-3);
}

.process-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ---------- Reviews ---------- */
.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  background: var(--noir);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.8125rem;
  flex-shrink: 0;
}

.review-card__meta h4 {
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.review-card__meta span {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.review-card__stars {
  color: var(--gold);
  font-size: 0.6875rem;
  display: flex;
  gap: 2px;
  margin-top: var(--s-1);
}

.review-card__stars .empty { color: var(--gray-200); }

.review-card blockquote {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.75;
  flex: 1;
  margin-bottom: var(--s-5);
}

.review-card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: var(--s-1) var(--s-3);
  background: var(--gold-faint);
  color: var(--gold-dark);
  border-radius: var(--r-full);
}

/* ---------- Areas ---------- */
.area-chip {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-4);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  transition: all var(--t-fast);
}

.area-chip:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-faint);
}

.area-chip i {
  font-size: 0.5rem;
  color: var(--gold);
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--s-5) 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  cursor: pointer;
  transition: color var(--t-fast);
  line-height: 1.4;
}

.faq-btn:hover { color: var(--gold); }

.faq-btn .icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  color: var(--gold);
  transition: all var(--t-fast);
  flex-shrink: 0;
  margin-left: var(--s-4);
}

.faq-item.open .faq-btn .icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.open .faq-body {
  max-height: 300px;
  padding-bottom: var(--s-5);
}

.faq-body p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.8;
}

/* ---------- CTA Banner ---------- */
.cta {
  padding: var(--s-16) 0;
  background: var(--noir);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(184,134,11,0.12) 0%, transparent 100%);
  pointer-events: none;
}

.cta__inner { position: relative; z-index: 1; }

.cta h2 {
  color: var(--white);
  margin-bottom: var(--s-4);
}

.cta p {
  font-size: 1.0625rem;
  color: var(--gray-400);
  margin-bottom: var(--s-8);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: var(--s-4);
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--noir);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: var(--s-16) 0 var(--s-8);
  color: var(--gray-500);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
  margin-bottom: var(--s-10);
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer h4 {
  color: var(--white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-5);
}

.footer__about p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: var(--s-4);
}

.footer__stars {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  color: var(--gold);
  font-size: 0.75rem;
  margin-bottom: var(--s-5);
}

.footer__stars span {
  color: var(--gray-500);
  font-size: 0.8125rem;
  margin-left: var(--s-2);
}

.footer__social {
  display: flex;
  gap: var(--s-3);
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: all var(--t-fast);
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.footer__links a:hover { color: var(--gold-light); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--s-8);
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-600);
}

/* ---------- Floating Phone ---------- */
.fab-phone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: var(--r-full);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: var(--sh-gold);
  transition: all var(--t-base);
  animation: fab-pulse 2.5s ease-in-out infinite;
}

.fab-phone:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 40px rgba(184,134,11,0.35);
}

@media (max-width: 899px) { .fab-phone { display: flex; } }

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(184,134,11,0.25); }
  50% { box-shadow: 0 4px 32px rgba(184,134,11,0.45); }
}

/* ---------- Scroll Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- Utilities ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

@media (max-width: 899px) { .hide-mobile { display: none !important; } }
@media (min-width: 900px) { .desktop-hide { display: none !important; } }

/* ---------- Page Hero ---------- */
.page-hero {
  background: var(--noir);
  padding: var(--s-16) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(184,134,11,0.08) 0%, transparent 100%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--s-4);
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: var(--gray-400);
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow { position: relative; z-index: 1; }

/* ---------- Contact Layout ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1.4fr 1fr; gap: var(--s-12); }
}

/* ---------- Forms ---------- */
.form-group {
  margin-bottom: var(--s-5);
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--s-2);
  letter-spacing: 0.01em;
}

.form-group label .required {
  color: var(--gold);
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  transition: all var(--t-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-input::placeholder {
  color: var(--gray-400);
}

textarea.form-input {
  min-height: 140px;
  resize: vertical;
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235C6272' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  padding: var(--s-10);
  box-shadow: var(--sh-md);
}

.form-card h2 {
  margin-bottom: var(--s-2);
}

.form-card > p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin-bottom: var(--s-8);
}

/* ---------- Contact Sidebar ---------- */
.contact-info-card {
  background: var(--noir);
  border-radius: var(--r-xl);
  padding: var(--s-10);
  color: var(--gray-400);
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: var(--s-8);
}

.info-item {
  display: flex;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
}

.info-item:last-child { margin-bottom: 0; }

.info-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(184,134,11,0.12);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.875rem;
}

.info-item__text h4 {
  color: var(--white);
  font-size: 0.9375rem;
  margin-bottom: 2px;
}

.info-item__text p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.info-item__text a {
  color: var(--gold-light);
}

.info-item__text a:hover { color: var(--gold-lighter); }

.contact-social {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.9375rem;
  transition: all var(--t-fast);
}

.contact-social a:hover {
  background: var(--gold);
  color: var(--white);
}

/* ---------- Success Message ---------- */
.form-success {
  background: var(--emerald-faint);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-6);
  color: var(--emerald);
  font-weight: 500;
  font-size: 0.9375rem;
  display: none;
}

/* ---------- About Us Page ---------- */

/* Story Section - Two Column */
.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
  align-items: start;
}

@media (min-width: 768px) {
  .about-story {
    grid-template-columns: 1.3fr 0.7fr;
    gap: var(--s-12);
  }
}

.about-story__text h2 {
  margin-bottom: var(--s-6);
}

.about-story__text p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.about-story__text strong {
  color: var(--charcoal);
  font-weight: 600;
}

/* Highlight Quote Card */
.about-highlight-card {
  background: var(--noir);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--s-6);
}

.about-highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.about-highlight-card__top {
  margin-bottom: var(--s-5);
}

.about-highlight-card__top i {
  font-size: 1.5rem;
  color: var(--gold-light);
  opacity: 0.5;
}

.about-highlight-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--gray-300);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: var(--s-6);
}

.about-highlight-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 0.9375rem;
}

.about-highlight-card__role {
  font-size: 0.8125rem;
  color: var(--gold-light);
}

/* Credentials List */
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.about-credential {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-4);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  transition: all var(--t-fast);
}

.about-credential:hover {
  border-color: var(--gold-faint);
  box-shadow: var(--sh-sm);
}

.about-credential i {
  color: var(--gold);
  font-size: 0.875rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.about-credential span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* Value Cards */
.value-card {
  display: flex;
  gap: var(--s-5);
  padding: var(--s-8);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  transition: all var(--t-base);
}

.value-card:hover {
  border-color: var(--gold-faint);
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}

.value-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--gold-faint);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  transition: all var(--t-base);
}

.value-card:hover .value-card__icon {
  background: var(--gold);
  color: var(--white);
}

.value-card__content h3 {
  margin-bottom: var(--s-3);
}

.value-card__content p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.75;
}

@media (max-width: 639px) {
  .value-card {
    flex-direction: column;
    gap: var(--s-4);
    padding: var(--s-6);
  }
}

/* Differentiator Cards (dark section) */
.differentiator-card {
  text-align: center;
  padding: var(--s-8) var(--s-6);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--t-base);
}

.differentiator-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184,134,11,0.2);
  transform: translateY(-4px);
}

.differentiator-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(184,134,11,0.12);
  border-radius: var(--r-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.25rem;
  margin-bottom: var(--s-5);
  transition: all var(--t-base);
}

.differentiator-card:hover .differentiator-card__icon {
  background: var(--gold);
  color: var(--white);
}

.differentiator-card h3 {
  color: var(--white);
  margin-bottom: var(--s-3);
}

.differentiator-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* About Process - Timeline Style */
.about-process {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.about-process::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), var(--gold-light));
  border-radius: 2px;
}

@media (max-width: 639px) {
  .about-process::before {
    left: 19px;
  }
}

.about-process__step {
  display: flex;
  align-items: flex-start;
  gap: var(--s-6);
  padding: var(--s-6) 0;
  position: relative;
}

.about-process__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  box-shadow: 0 0 0 6px var(--white), var(--sh-sm);
  position: relative;
  z-index: 1;
}

@media (max-width: 639px) {
  .about-process__num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.about-process__content h3 {
  margin-bottom: var(--s-2);
  font-size: 1.125rem;
}

.about-process__content p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ---------- Credential Cards ---------- */
.credential-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  text-align: center;
  transition: all var(--t-base);
}

.credential-card:hover {
  border-color: var(--gold-faint);
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}

.credential-card__icon {
  width: 56px;
  height: 56px;
  background: var(--gold-faint);
  border-radius: var(--r-lg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: var(--s-5);
  transition: all var(--t-base);
}

.credential-card:hover .credential-card__icon {
  background: var(--gold);
  color: var(--white);
}

.credential-card h3 { margin-bottom: var(--s-3); }

.credential-card p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.75;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-5);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: all var(--t-fast);
}

.trust-badge:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.trust-badge i {
  color: var(--emerald);
  font-size: 0.75rem;
}

/* ---------- Reputation Highlights ---------- */
.reputation-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .reputation-highlights { grid-template-columns: repeat(4, 1fr); }
}

.reputation-stat {
  text-align: center;
  padding: var(--s-6);
  background: var(--gold-faint);
  border-radius: var(--r-lg);
  border: 1px solid rgba(184,134,11,0.1);
}

.reputation-stat__stars {
  color: var(--gold);
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: var(--s-3);
}

.reputation-stat__icon {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: var(--s-3);
}

.reputation-stat__num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: var(--s-2);
}

.reputation-stat__label {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* ---------- Social Media Cards ---------- */
.social-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  transition: all var(--t-base);
}

.social-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: var(--sh-dark);
}

.social-card__header {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}

.social-card__header h3 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 2px;
}

.social-card__handle {
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0.7;
}

.social-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
}

.social-card__icon--fb { background: linear-gradient(135deg, #1877F2, #0D65D9); box-shadow: 0 4px 16px rgba(24,119,242,0.3); }
.social-card__icon--ig { background: linear-gradient(135deg, #E4405F, #C13584, #833AB4); box-shadow: 0 4px 16px rgba(228,64,95,0.3); }
.social-card__icon--pin { background: linear-gradient(135deg, #E60023, #BD001E); box-shadow: 0 4px 16px rgba(230,0,35,0.3); }
.social-card__icon--yt { background: linear-gradient(135deg, #FF0000, #CC0000); box-shadow: 0 4px 16px rgba(255,0,0,0.3); }

.social-card--fb .social-card__handle { color: #4599F7; }
.social-card--ig .social-card__handle { color: #E4405F; }
.social-card--pin .social-card__handle { color: #E67C8A; }
.social-card--yt .social-card__handle { color: #FF6666; }

.social-card p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: var(--s-5);
}

.social-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-bottom: var(--s-6);
}

.social-card__features span {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-1) var(--s-3);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}

.social-card__features span i {
  font-size: 0.625rem;
  opacity: 0.7;
}

.social-card--fb .social-card__features span i { color: #4599F7; }
.social-card--ig .social-card__features span i { color: #E4405F; }
.social-card--pin .social-card__features span i { color: #E67C8A; }
.social-card--yt .social-card__features span i { color: #FF6666; }

/* Social card buttons */
.social-card__btn {
  border-radius: var(--r-full);
  padding: 0.6875rem 1.5rem;
  font-size: 0.875rem;
  color: var(--white);
  border: 2px solid transparent;
}

.social-card__btn--ig { background: #E4405F; border-color: #E4405F; }
.social-card__btn--ig:hover { background: #C13584; border-color: #C13584; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(228,64,95,0.35); }

.social-card__btn--pin { background: #E60023; border-color: #E60023; }
.social-card__btn--pin:hover { background: #BD001E; border-color: #BD001E; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(230,0,35,0.35); }

.social-card__btn--yt { background: #FF0000; border-color: #FF0000; }
.social-card__btn--yt:hover { background: #CC0000; border-color: #CC0000; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,0,0,0.35); }

/* ---------- Homepage Form Section ---------- */
.home-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
}

@media (min-width: 768px) {
  .home-form-grid {
    grid-template-columns: 1.4fr 0.6fr;
    gap: var(--s-12);
    align-items: start;
  }
}

.home-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: var(--s-8);
}

@media (min-width: 640px) {
  .home-form-card { padding: var(--s-10); }
}

/* Dark form overrides */
.home-form-card label {
  color: var(--gray-300);
}

.home-form-card .form-input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
  color: var(--white);
}

.home-form-card .form-input::placeholder {
  color: var(--gray-600);
}

.home-form-card .form-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.15);
}

.home-form-card .form-input option {
  background: var(--noir);
  color: var(--white);
}

.home-form-card .required {
  color: var(--gold-light);
}

/* Trust sidebar */
.home-form-trust {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

@media (max-width: 767px) {
  .home-form-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-4);
  }
}

.home-form-trust__item {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-lg);
  transition: all var(--t-fast);
}

.home-form-trust__item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(184,134,11,0.2);
}

.home-form-trust__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(184,134,11,0.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.875rem;
}

.home-form-trust__item h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.home-form-trust__item p {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.4;
}

.home-form-trust__item a {
  text-decoration: none;
  font-weight: 600;
}

/* ---------- Service Detail Cards ---------- */
.service-detail {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  margin-bottom: var(--s-8);
  transition: all var(--t-base);
}

@media (min-width: 640px) {
  .service-detail { padding: var(--s-10); }
}

.service-detail:hover {
  border-color: rgba(184,134,11,0.2);
}

.service-detail__header {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  margin-bottom: var(--s-6);
}

.service-detail__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: 0 4px 16px rgba(184,134,11,0.3);
}

.service-detail__header h3 {
  color: var(--white);
  font-size: 1.375rem;
  margin-bottom: 4px;
}

.service-detail__tag {
  display: inline-block;
  padding: 2px 10px;
  background: rgba(184,134,11,0.15);
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: var(--r-full);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-detail__body {
  margin-bottom: var(--s-6);
}

.service-detail__content p {
  color: var(--gray-400);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: var(--s-4);
}

.service-detail__features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-2);
  margin: var(--s-5) 0;
}

@media (min-width: 640px) {
  .service-detail__features { grid-template-columns: 1fr 1fr; }
}

.service-detail__features li {
  display: flex;
  align-items: baseline;
  gap: var(--s-3);
  color: var(--gray-300);
  font-size: 0.875rem;
  line-height: 1.6;
}

.service-detail__features li i {
  color: var(--emerald);
  font-size: 0.625rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.service-detail__pricing {
  padding: var(--s-4) var(--s-5);
  background: rgba(184,134,11,0.08);
  border: 1px solid rgba(184,134,11,0.15);
  border-radius: var(--r-md);
  color: var(--gray-300);
  font-size: 0.875rem;
}

.service-detail__pricing strong {
  color: var(--gold-light);
}

.service-detail__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}

/* ---------- Pricing Cards ---------- */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-base);
  position: relative;
}

.pricing-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(184,134,11,0.15);
}

.pricing-card--featured:hover {
  box-shadow: 0 12px 40px rgba(184,134,11,0.25);
}

.pricing-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 0 var(--r-xl) 0 var(--r-lg);
}

.pricing-card__header {
  padding: var(--s-8) var(--s-8) var(--s-5);
  text-align: center;
}

.pricing-card__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  margin-bottom: var(--s-3);
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-500);
}

.pricing-card__body {
  padding: 0 var(--s-8) var(--s-8);
}

.pricing-card__body p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: var(--s-5);
  text-align: center;
}

.pricing-card__body ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.pricing-card__body li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.875rem;
  color: var(--charcoal);
  padding: var(--s-2) 0;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-card__body li:last-child { border-bottom: 0; }

.pricing-card__body li i {
  color: var(--emerald);
  font-size: 0.625rem;
  flex-shrink: 0;
}

/* Pricing note */
.pricing-note {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-md);
  padding: var(--s-5) var(--s-6);
}

.pricing-note p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* ---------- Benefit Cards (2-col) ---------- */
.benefit-card {
  display: flex;
  gap: var(--s-6);
  padding: var(--s-8);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark));
  border-radius: 4px 0 0 4px;
  transition: height 0.4s ease;
}

.benefit-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
  border-color: rgba(184,134,11,0.15);
}

.benefit-card:hover::before {
  height: 100%;
}

.benefit-card__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(184,134,11,0.1), rgba(184,134,11,0.04));
  border: 1px solid rgba(184,134,11,0.12);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.375rem;
  transition: all var(--t-base);
}

.benefit-card:hover .benefit-card__icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184,134,11,0.3);
  border-color: transparent;
}

.benefit-card__content h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: var(--s-3);
  line-height: 1.4;
}

.benefit-card__content p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 640px) {
  .benefit-card {
    flex-direction: column;
    gap: var(--s-4);
    padding: var(--s-6);
  }
  .benefit-card__icon {
    width: 48px;
    height: 48px;
    font-size: 1.125rem;
  }
}

/* ===== PREMIUM TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--s-6) 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: 3px;
}
.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: var(--s-8);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.visible .timeline-item {
  opacity: 1;
  transform: translateY(0);
}
.visible .timeline-item:nth-child(1) { transition-delay: 0.05s; }
.visible .timeline-item:nth-child(2) { transition-delay: 0.1s; }
.visible .timeline-item:nth-child(3) { transition-delay: 0.15s; }
.visible .timeline-item:nth-child(4) { transition-delay: 0.2s; }
.visible .timeline-item:nth-child(5) { transition-delay: 0.25s; }
.visible .timeline-item:nth-child(6) { transition-delay: 0.3s; }
.visible .timeline-item:nth-child(7) { transition-delay: 0.35s; }

.timeline-node {
  position: absolute;
  left: 14px;
  top: 0;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--noir);
  box-shadow: 0 0 0 4px var(--off-white), 0 4px 12px rgba(0,0,0,0.15);
  z-index: 2;
}
.timeline-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-6);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.timeline-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.timeline-card__phase {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(191,155,48,0.08);
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-bottom: var(--s-2);
}
.timeline-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--noir);
  margin-bottom: var(--s-2);
}
.timeline-card p {
  font-size: 0.925rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}
.timeline-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(191,155,48,0.1), rgba(191,155,48,0.05));
  color: var(--gold);
  font-size: 0.95rem;
  margin-right: var(--s-3);
  flex-shrink: 0;
}
.timeline-card__header {
  display: flex;
  align-items: center;
  margin-bottom: var(--s-2);
}
.timeline-card__header h3 {
  margin-bottom: 0;
}
.timeline-end {
  position: relative;
  padding-left: 80px;
}
.timeline-end .timeline-node {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  width: 38px;
  height: 38px;
  font-size: 1rem;
  color: var(--white);
}
.timeline-end__text {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--noir);
  padding-top: var(--s-2);
}
.timeline-end__text span {
  font-weight: 400;
  font-size: .875rem;
  color: var(--gray-500);
}

@media (max-width: 600px) {
  .timeline::before { left: 20px; }
  .timeline-node { left: 2px; width: 34px; height: 34px; font-size: 0.8rem; }
  .timeline-item { padding-left: 56px; }
  .timeline-card { padding: var(--s-4); }
  .timeline-end { padding-left: 56px; }
  .timeline-end .timeline-node { width: 34px; height: 34px; left: 2px; }
}

/* ===== PATIO REVIEWS ===== */
.patio-reviews {
  background: linear-gradient(170deg, var(--noir) 0%, #1a1a1f 100%);
  padding: var(--s-16) 0;
}
.patio-reviews .section-header p {
  color: var(--gray-400);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.review-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.review-card__quote {
  position: absolute;
  top: var(--s-5);
  right: var(--s-5);
  font-size: 1.5rem;
  color: rgba(191,155,48,0.2);
}
.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--s-3);
}
.review-card__stars i {
  color: #FACC15;
  font-size: 0.85rem;
}
.review-card__text {
  font-size: 0.925rem;
  color: var(--gray-300);
  line-height: 1.75;
  margin-bottom: var(--s-5);
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--s-4);
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--noir);
  flex-shrink: 0;
}
.review-card__info strong {
  display: block;
  color: var(--white);
  font-family: var(--ff-heading);
  font-size: 0.9rem;
  font-weight: 600;
}
.review-card__info span {
  font-size: 0.8rem;
  color: var(--gray-500);
}
.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-6);
  margin-top: var(--s-8);
  padding: var(--s-5) var(--s-8);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.review-summary__score {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.review-summary__detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-summary__detail .review-card__stars {
  margin-bottom: 0;
}
.review-summary__detail span {
  font-size: 0.8rem;
  color: var(--gray-400);
}
@media (max-width: 900px) {
  .review-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .review-grid { grid-template-columns: 1fr; }
  .review-summary { flex-direction: column; text-align: center; padding: var(--s-5); }
}
