@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@400;500;600&display=swap');

/* ===================== VARIABLES ===================== */
:root {
  --blue:       #1B56A0;
  --blue-dark:  #0E3870;
  --blue-light: #E8F0FA;
  --gold:       #C9A84C;
  --gold-light: #F5EDD4;
  --white:      #FFFFFF;
  --gray-50:    #F6F7F9;
  --gray-100:   #EAECF0;
  --gray-400:   #9CA3AF;
  --gray-700:   #374151;
  --gray-900:   #111827;
  --radius:     8px;
  --shadow:     0 4px 24px rgba(27, 86, 160, 0.10);
  --transition: all 0.2s ease;
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
p { font-size: 1rem; color: var(--gray-700); }

/* ===================== UTILITY ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-blue { color: var(--blue); }
.text-gold { color: var(--gold); }

.section-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-title.white { color: var(--white); }

.star-divider {
  display: block;
  font-size: 1.4rem;
  color: var(--gold);
  margin: 0.75rem auto 1.5rem;
  letter-spacing: 0.4em;
}

.lead {
  font-size: 1.15rem;
  color: var(--gray-700);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.lead.white { color: rgba(255,255,255,0.85); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27,86,160,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--gray-900);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #b8923e;
  border-color: #b8923e;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

.btn-full { width: 100%; justify-content: center; }

/* ===================== UTILITY BAR ===================== */
.utility-bar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  padding: 0.45rem 0;
}
.utility-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.utility-bar a {
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.utility-bar a:hover { color: var(--gold); }
.utility-left { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.utility-left span { display: flex; align-items: center; gap: 0.35rem; }

/* ===================== NAVIGATION ===================== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--gold); margin-right: 0.3rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-links > li { position: relative; }

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--blue); background: var(--blue-light); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle svg { width: 14px; height: 14px; transition: transform 0.2s; }
.dropdown:hover .dropdown-toggle svg,
.dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border: 1px solid var(--gray-100);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 200;
}
.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  color: var(--gray-700);
  transition: var(--transition);
  border-bottom: 1px solid var(--gray-100);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--blue-light); color: var(--blue); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  transition: right 0.3s ease;
  padding: 1.5rem;
  box-shadow: -4px 0 24px rgba(0,0,0,0.15);
}

.nav-open .mobile-menu { right: 0; }
.nav-open .mobile-overlay { display: block; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-100);
}
.mobile-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-700);
  padding: 0.25rem;
}

.mobile-nav-links { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-links a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-nav-links a:hover { background: var(--blue-light); color: var(--blue); }
.mobile-services-links { padding-left: 1rem; margin-top: 0.25rem; border-left: 3px solid var(--blue-light); }
.mobile-services-links a { font-size: 0.9rem; padding: 0.5rem 0.75rem; }
.mobile-cta { margin-top: 1.5rem; }

/* ===================== HERO ===================== */
.hero {
  background: var(--blue);
  background-image:
    radial-gradient(circle at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%),
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 80px
    );
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-short {
  background: var(--blue);
  background-image:
    radial-gradient(circle at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 60%);
  min-height: 280px;
  display: flex;
  align-items: center;
  padding: 3.5rem 0;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-content .lead { margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===================== STATS BAR ===================== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--gray-100);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--gray-700);
  max-width: 180px;
  margin: 0 auto;
}

/* ===================== SERVICE CARDS ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
}

.card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 2rem;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27,86,160,0.15);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.card p { font-size: 0.93rem; line-height: 1.65; margin-bottom: 1.25rem; }
.card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.card-link:hover { gap: 0.6rem; }

/* ===================== ABOUT TEASER ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-placeholder {
  background: var(--blue-light);
  background-image:
    radial-gradient(circle at 30% 70%, rgba(27,86,160,0.15) 0%, transparent 60%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(27,86,160,0.04) 20px,
      rgba(27,86,160,0.04) 40px
    );
  border-radius: 16px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(27,86,160,0.1);
}

.about-img-placeholder .star-big {
  font-size: 4rem;
  color: var(--blue);
  opacity: 0.3;
}

.about-text h2 { margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; font-size: 0.97rem; }
.about-text .learn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.93rem;
  margin-top: 0.5rem;
  transition: gap 0.2s;
}
.about-text .learn-link:hover { gap: 0.7rem; }

/* ===================== WHY CHOOSE US ===================== */
.why-section {
  background: var(--blue);
  padding: 5rem 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.why-item {
  text-align: center;
  padding: 1.5rem 1rem;
}
.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.why-item h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.6rem; }
.why-item p { color: rgba(255,255,255,0.8); font-size: 0.88rem; }

/* ===================== CLIENT LOGOS ===================== */
.clients-section { background: var(--white); padding: 4rem 0; }
.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.client-badge {
  padding: 0.5rem 1.25rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}
.client-badge:hover {
  background: var(--blue-light);
  border-color: rgba(27,86,160,0.2);
  color: var(--blue);
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: var(--gold);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: rgba(0,0,0,0.65);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

/* ===================== CONTENT SECTIONS ===================== */
.bg-white { background: var(--white); }
.bg-gray { background: var(--gray-50); }
.bg-blue-light { background: var(--blue-light); }
.bg-blue { background: var(--blue); }
.bg-gold-light { background: var(--gold-light); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.two-col-center { align-items: center; }

/* ===================== PROBLEM LIST ===================== */
.odor-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.odor-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  font-size: 0.95rem;
}
.odor-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.05rem; }

/* ===================== PROCESS STEPS ===================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.6% + 1rem);
  right: calc(16.6% + 1rem);
  height: 2px;
  background: var(--blue-light);
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 64px;
  height: 64px;
  background: var(--blue);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; }

/* ===================== TIERS / PRICING CARDS ===================== */
.tiers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.tier-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 2px solid var(--gray-100);
  overflow: hidden;
  transition: var(--transition);
}
.tier-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(27,86,160,0.15); }
.tier-card.featured { border-color: var(--blue); }

.tier-header {
  padding: 2rem;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.tier-card.featured .tier-header { background: var(--blue); }
.tier-header h3 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.tier-card.featured .tier-header h3 { color: var(--white); }
.tier-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  background: var(--gold);
  color: var(--gray-900);
  border-radius: 100px;
  margin-top: 0.5rem;
}
.tier-body { padding: 2rem; }
.tier-features { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.75rem; }
.tier-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
}
.tier-feature .check { color: var(--blue); font-size: 1rem; flex-shrink: 0; }

/* ===================== VALUES ===================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-100);
}
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.92rem; }

/* ===================== INDUSTRIES ===================== */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.industry-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  font-size: 0.95rem;
  font-weight: 500;
}
.industry-item span { font-size: 1.25rem; }

/* ===================== MISSION SECTION ===================== */
.mission-section {
  background: var(--blue);
  padding: 5rem 0;
  text-align: center;
}
.mission-section h2 { color: var(--white); margin-bottom: 1.25rem; }
.mission-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 700px; margin: 0 auto; }

/* ===================== CONTACT ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-card {
  background: var(--blue-light);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(27,86,160,0.1);
}
.contact-info-card h3 { margin-bottom: 1.5rem; color: var(--blue); }

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text { font-size: 0.93rem; }
.contact-detail-text strong { display: block; margin-bottom: 0.25rem; }
.contact-detail-text a { color: var(--blue); font-weight: 500; }
.contact-detail-text a:hover { text-decoration: underline; }

.free-consult {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--gold-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  font-size: 0.9rem;
  color: var(--gray-700);
}

/* Form */
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
}
.form-card h3 { margin-bottom: 1.75rem; color: var(--gray-900); }

.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}
input, select, textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,86,160,0.1);
}
textarea { resize: vertical; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

#success-message {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
#success-message h3 { color: var(--blue); margin-bottom: 0.75rem; }
#success-message p { color: var(--gray-700); }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
  padding: 4.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.footer-contact-item span:first-child { color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }
.footer-contact-item a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ===================== INNER PAGE EXTRAS ===================== */
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--gold); }

.page-hero-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .utility-bar .utility-right { display: none; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .stat-item:last-child { border-bottom: none; }
  .about-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero { min-height: 400px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3.5rem 0; }
}
