/* ============================================================
   SUPERB CLEANING SOLUTIONS LLC — OFFICIAL STYLESHEET
   Aesthetics: Pristine Pure White & Emerald Fresh
   Clean, luminous, eco-vitality palette tailored for sparkling purity.
   ============================================================ */

/* ===== DESIGN TOKENS ===== */
:root {
  /* Brand Green Shades: Emerald, Forest, Jade & Fresh Mint */
  --clr-emerald: #059669;
  --clr-emerald-bright: #10b981;
  --clr-emerald-deep: #065f46;
  --clr-emerald-dark: #064e3b;
  --clr-forest: #047857;
  --clr-mint: #10b981;
  --clr-mint-light: #34d399;
  --clr-mint-pale: #ecfdf5;
  --clr-mint-subtle: #f0fdf4;
  --clr-emerald-glow: rgba(16, 185, 129, 0.35);
  --clr-emerald-subtle: rgba(16, 185, 129, 0.08);

  /* Light Theme Backgrounds & Surfaces */
  --clr-bg-page: #f8fafc;
  --clr-bg-white: #ffffff;
  --clr-bg-tint: #f0fdf4;
  --clr-bg-panel: #ffffff;
  --clr-bg-panel-hover: #ffffff;
  --clr-bg-panel-subtle: #f8fafc;
  
  /* Borders */
  --clr-border: rgba(16, 185, 129, 0.2);
  --clr-border-subtle: #e2e8f0;
  --clr-border-highlight: #10b981;
  --clr-border-chrome: #cbd5e1;

  /* Typography */
  --clr-text-main: #0f172a;
  --clr-text-heading: #064e3b;
  --clr-text-secondary: #475569;
  --clr-text-muted: #64748b;
  --clr-text-highlight: #059669;

  /* Gradients */
  --grad-emerald: linear-gradient(135deg, #10b981 0%, #059669 50%, #047857 100%);
  --grad-emerald-light: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  --grad-heading: linear-gradient(135deg, #064e3b 0%, #059669 60%, #10b981 100%);
  --grad-card-top: linear-gradient(180deg, rgba(16, 185, 129, 0.06) 0%, rgba(255, 255, 255, 0) 100%);

  /* Dimensions */
  --nav-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 10px 30px -5px rgba(5, 150, 105, 0.07), 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-card-hover: 0 18px 40px -8px rgba(16, 185, 129, 0.2), 0 6px 16px rgba(0, 0, 0, 0.04);
  --shadow-emerald-glow: 0 0 25px rgba(16, 185, 129, 0.3);
  --shadow-inner-glow: inset 0 1px 0 rgba(255, 255, 255, 0.9);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--clr-bg-page);
  background-image: 
    radial-gradient(ellipse 90% 50% at 50% -5%, rgba(16, 185, 129, 0.12) 0%, transparent 65%),
    radial-gradient(circle 600px at 95% 25%, rgba(5, 150, 105, 0.06) 0%, transparent 55%),
    radial-gradient(circle 700px at 5% 70%, rgba(16, 185, 129, 0.05) 0%, transparent 55%);
  background-attachment: fixed;
  color: var(--clr-text-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, .nav-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-text-heading);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #059669, #10b981);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: #047857; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

/* Headers */
.section-badge-wrap {
  text-align: center;
  margin-bottom: 14px;
}

.section-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--clr-emerald);
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  background: #ecfdf5;
  border: 1px solid rgba(16, 185, 129, 0.35);
  box-shadow: 0 2px 10px rgba(16, 185, 129, 0.12);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  text-align: center;
  margin-bottom: 16px;
  background: var(--grad-heading);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
  font-size: 1.05rem;
  color: var(--clr-text-secondary);
}

/* Panels */
.glass-panel {
  background: var(--clr-bg-panel);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.glass-panel:hover {
  border-color: var(--clr-border-highlight);
  box-shadow: var(--shadow-card-hover);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--grad-emerald);
  color: #ffffff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 22px rgba(16, 185, 129, 0.38);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.5);
  filter: brightness(1.05);
  color: #ffffff;
}

.btn-secondary {
  background: #ffffff;
  color: var(--clr-emerald-dark);
  border: 1.5px solid var(--clr-border-chrome);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: #f0fdf4;
  border-color: var(--clr-emerald);
  color: var(--clr-emerald);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.15);
}

.btn-outline {
  border: 1.5px solid var(--clr-emerald);
  color: var(--clr-emerald);
  background: rgba(16, 185, 129, 0.05);
}

.btn-outline:hover {
  background: var(--clr-emerald);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
  transform: translateY(-1px);
}

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(16, 185, 129, 0.4);
  color: var(--clr-emerald);
  background: #f0fdf4;
  transition: var(--transition);
}

.btn-outline-sm:hover {
  background: var(--clr-emerald);
  color: #ffffff;
  border-color: var(--clr-emerald);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-block { width: 100%; }

.pulse-glow { animation: pulseGlow 2.5s infinite alternate; }

@keyframes pulseGlow {
  0% { box-shadow: 0 4px 18px rgba(16, 185, 129, 0.3); }
  100% { box-shadow: 0 6px 30px rgba(16, 185, 129, 0.55), 0 0 10px rgba(255, 255, 255, 0.6); }
}

/* Ambient glow */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 1;
}

.glow-top {
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 480px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.14) 0%, rgba(5, 150, 105, 0.06) 50%, transparent 80%);
}

.glow-mid {
  top: 45%;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 100;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 185, 129, 0.16);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.nav-container {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-wrapper {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 2px 14px rgba(16, 185, 129, 0.25);
  transition: all var(--transition);
  overflow: hidden;
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nav-logo:hover .logo-wrapper {
  border-color: var(--clr-emerald);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.45);
  transform: scale(1.06);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--clr-emerald-dark);
  line-height: 1;
}

.nav-sub {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--clr-emerald);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--clr-text-secondary);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--clr-emerald);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover, .nav-link.active { color: var(--clr-emerald-dark); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-emerald-dark);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: #ecfdf5;
  border: 1px solid rgba(16, 185, 129, 0.3);
  transition: var(--transition);
}

.nav-phone-icon {
  width: 16px;
  height: 16px;
  color: var(--clr-emerald);
}

.nav-phone-pill:hover {
  background: #d1fae5;
  border-color: var(--clr-emerald);
  color: var(--clr-emerald-deep);
}

.btn-nav {
  padding: 10px 22px;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--clr-emerald-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 88vh;
  padding-top: calc(var(--nav-height) + 50px);
  padding-bottom: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
}

.hero-canvas-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#hero-sparkles-canvas {
  width: 100%;
  height: 100%;
}

.hero-radial-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(16, 185, 129, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(16, 185, 129, 0.05) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  background: #ecfdf5;
  border: 1.5px solid rgba(16, 185, 129, 0.4);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--clr-emerald);
  margin-bottom: 24px;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.16);
}

.badge-sparkle {
  color: #10b981;
  font-size: 1.1rem;
  animation: spinSlow 6s linear infinite;
}

@keyframes spinSlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.hero-line { color: #0f172a; }

.highlight-gradient {
  background: var(--grad-heading);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 14px rgba(16, 185, 129, 0.25));
}

.silver-gradient {
  color: var(--clr-emerald-dark);
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-emerald);
  min-height: 32px;
  margin-bottom: 18px;
  text-align: center;
  transition: opacity 0.3s ease;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--clr-text-secondary);
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 34px auto;
  text-align: center;
}

.hero-stats-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px 32px;
  margin: 0 auto 36px auto;
  width: 100%;
  max-width: 760px;
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px -4px rgba(5, 150, 105, 0.1);
}

.stat-cell { text-align: center; }

.stat-number-wrap {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--clr-emerald-dark);
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.stat-symbol {
  color: var(--clr-emerald);
  font-size: 1.25rem;
  margin-left: 2px;
}

.stat-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.stat-separator {
  width: 1px;
  height: 40px;
  background: #e2e8f0;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-direct-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.direct-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: #ffffff;
  border: 1.5px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-text-main);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.direct-pill svg {
  width: 16px;
  height: 16px;
  color: var(--clr-emerald);
}

.direct-pill:hover {
  background: #f0fdf4;
  border-color: var(--clr-emerald);
  color: var(--clr-emerald-dark);
  transform: translateY(-1px);
}

.hero-trust-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text-secondary);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.trust-mini-pill span {
  color: var(--clr-emerald);
  font-weight: bold;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  padding: 40px 0;
  background: #f0fdf4;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
  position: relative;
  z-index: 2;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: #ffffff;
  border: 1.5px solid rgba(16, 185, 129, 0.35);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-emerald);
}

.trust-icon-box svg { width: 24px; height: 24px; }

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  font-size: 0.95rem;
  color: var(--clr-emerald-dark);
  line-height: 1.3;
}

.trust-text span {
  font-size: 0.82rem;
  color: var(--clr-text-secondary);
}

/* ===== ABOUT DUAL FOCUS ===== */
.about-dual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.about-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 185, 129, 0.22);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.about-card:hover { 
  transform: translateY(-4px); 
  border-color: var(--clr-emerald);
  box-shadow: var(--shadow-card-hover);
}

.commercial-border:hover {
  border-color: var(--clr-emerald);
}

.residential-border:hover {
  border-color: var(--clr-emerald-bright);
}

.about-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.commercial-badge {
  background: var(--clr-emerald-dark);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.3);
}

.residential-badge {
  background: var(--clr-forest);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.3);
}

.about-card-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.about-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-card:hover .about-card-img { transform: scale(1.05); }

.img-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(to top, #ffffff 0%, transparent 100%);
}

.about-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
}

.about-card-body h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: var(--clr-emerald-dark);
}

.about-card-body p {
  color: var(--clr-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.about-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--clr-text-main);
}

.about-feature-list li span {
  color: var(--clr-emerald);
  font-weight: bold;
}

.about-card-link {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--clr-emerald);
  margin-top: auto;
}

.about-card-link:hover {
  color: var(--clr-emerald-dark);
  text-decoration: underline;
}

/* ===== SERVICES GRID ===== */
.service-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.service-tab-btn {
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--clr-text-secondary);
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-tab-btn:hover {
  color: var(--clr-emerald);
  border-color: var(--clr-emerald);
  background: #f0fdf4;
}

.service-tab-btn.active {
  background: var(--grad-emerald);
  color: #ffffff;
  font-weight: 700;
  border-color: var(--clr-emerald);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--clr-emerald);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.service-badge-pill {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: #ecfdf5;
  color: var(--clr-emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.service-badge-pill.res-badge {
  background: #f0fdf4;
  color: var(--clr-forest);
  border-color: rgba(4, 120, 87, 0.3);
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #ecfdf5;
  border: 1.5px solid rgba(16, 185, 129, 0.35);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-emerald);
  margin-bottom: 20px;
}

.service-icon-wrap svg { width: 28px; height: 28px; }

.service-icon-wrap.res-icon {
  background: #f0fdf4;
  border-color: rgba(4, 120, 87, 0.35);
  color: var(--clr-forest);
}

.service-card-title {
  font-size: 1.25rem;
  color: var(--clr-emerald-dark);
  margin-bottom: 10px;
}

.service-card-desc {
  font-size: 0.92rem;
  color: var(--clr-text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
}

.service-card-checklist {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.service-card-checklist li {
  font-size: 0.88rem;
  color: var(--clr-text-main);
  position: relative;
  padding-left: 18px;
}

.service-card-checklist li::before {
  content: '•';
  color: var(--clr-emerald);
  font-size: 1.3rem;
  position: absolute;
  left: 0;
  top: -3px;
}

.service-card .btn-outline-sm { margin-top: auto; }

/* ===== PRICING SECTION ===== */
.pricing-section {
  position: relative;
}

.pricing-bg-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(5, 150, 105, 0.04) 60%, transparent 80%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.pricing-plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  padding-top: 18px;
}

.pricing-plan-card {
  padding: 34px 24px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.22);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
}

.pricing-plan-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-emerald);
  box-shadow: var(--shadow-card-hover);
}

.pricing-plan-card.featured-plan {
  border: 2px solid var(--clr-emerald);
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(16, 185, 129, 0.18), 0 4px 15px rgba(0, 0, 0, 0.04);
}

.plan-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-emerald);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
  z-index: 10;
  white-space: nowrap;
}

.plan-header {
  margin-bottom: 20px;
}

.plan-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clr-emerald);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.plan-name {
  font-size: 1.35rem;
  color: var(--clr-emerald-dark);
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 0.86rem;
  color: var(--clr-text-secondary);
  line-height: 1.5;
  min-height: 48px;
}

.plan-price-box {
  background: #f0fdf4;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
  text-align: center;
}

.price-prefix {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-figure {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin: 6px 0;
  min-height: 42px;
}

.price-currency {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--clr-emerald);
}

.price-val {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--clr-emerald-dark);
  line-height: 1;
}

.price-custom {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--clr-emerald-dark);
  line-height: 1.2;
}

.price-unit {
  font-size: 0.86rem;
  color: var(--clr-text-secondary);
  font-weight: 600;
}

.price-note {
  display: block;
  font-size: 0.74rem;
  color: var(--clr-emerald);
  font-weight: 600;
}

.plan-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.plan-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--clr-text-main);
  line-height: 1.4;
}

.plan-feature-list li span {
  color: var(--clr-emerald);
  font-weight: bold;
}

.plan-cta-btn {
  margin-top: auto;
  width: 100%;
}

/* Pricing Factors Breakdown Panel */
.pricing-factors-panel {
  padding: 40px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: var(--shadow-card);
}

.factors-intro {
  margin-bottom: 30px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.factors-intro h3 {
  font-size: 1.6rem;
  color: var(--clr-emerald-dark);
  margin-bottom: 8px;
}

.factors-intro p {
  font-size: 0.95rem;
  color: var(--clr-text-secondary);
  line-height: 1.6;
}

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

.factor-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
}

.factor-icon-wrap {
  font-size: 1.8rem;
  line-height: 1;
}

.factor-content strong {
  display: block;
  font-size: 1rem;
  color: var(--clr-emerald-dark);
  margin-bottom: 6px;
}

.factor-content p {
  font-size: 0.88rem;
  color: var(--clr-text-secondary);
  line-height: 1.5;
}

.factors-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 30px;
  background: #ecfdf5;
  border: 1.5px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}

.factors-cta-text h4 {
  font-size: 1.15rem;
  color: var(--clr-emerald-dark);
  margin-bottom: 4px;
}

.factors-cta-text p {
  font-size: 0.88rem;
  color: var(--clr-text-secondary);
}

.factors-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== SHOWCASE SECTION ===== */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.showcase-card {
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: var(--transition);
}

.showcase-card:hover {
  border-color: var(--clr-emerald);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.showcase-img-wrap {
  position: relative;
  width: 100%;
  height: 280px;
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(6, 78, 59, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.showcase-details { 
  padding: 24px; 
  background: #ffffff;
}

.showcase-details h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--clr-emerald-dark);
}

.showcase-details p {
  font-size: 0.92rem;
  color: var(--clr-text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.showcase-metrics {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.metric-pill {
  padding: 5px 14px;
  background: #ecfdf5;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--clr-emerald);
}

/* ===== AREAS SECTION ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 30px;
}

.area-group { 
  padding: 32px; 
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.area-icon { font-size: 2rem; margin-bottom: 12px; }
.area-group h3 { font-size: 1.35rem; color: var(--clr-emerald-dark); margin-bottom: 10px; }
.area-group p { font-size: 0.92rem; color: var(--clr-text-secondary); margin-bottom: 20px; }

.city-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.city-pill {
  padding: 6px 14px;
  background: #f0fdf4;
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--clr-emerald-dark);
  transition: var(--transition);
}

.city-pill:hover {
  background: var(--clr-emerald);
  color: #ffffff;
}

.area-banner {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #ecfdf5;
  border: 1.5px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
}

.area-banner-content h4 { font-size: 1.15rem; color: var(--clr-emerald-dark); margin-bottom: 6px; }
.area-banner-content p { font-size: 0.92rem; color: var(--clr-text-secondary); }

/* ===== FAQ ACCORDION ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--clr-emerald);
}

.faq-item.open {
  border-color: var(--clr-emerald);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.12);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-emerald-dark);
}

.faq-toggle-icon {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--clr-emerald);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 250px;
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--clr-text-secondary);
  line-height: 1.65;
}

/* ===== CONTACT & FORM ===== */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
}

.contact-info-card { 
  padding: 36px; 
  background: #f0fdf4;
  border: 1.5px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.contact-brand-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.contact-logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(16, 185, 129, 0.5);
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
  transition: all var(--transition);
}

.contact-brand-header h3 { font-size: 1.3rem; color: var(--clr-emerald-dark); }
.contact-brand-header p {
  font-size: 0.82rem;
  color: var(--clr-emerald);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: inherit;
}

.info-row:not(.static):hover .info-value { color: var(--clr-emerald); }

.info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: #ffffff;
  border: 1.5px solid rgba(16, 185, 129, 0.35);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-emerald);
}

.info-icon svg { width: 20px; height: 20px; }

.info-details { display: flex; flex-direction: column; }
.info-label {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.info-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-emerald-dark);
  transition: var(--transition);
}

.info-subtext {
  font-size: 0.78rem;
  color: var(--clr-emerald);
  font-weight: 600;
  margin-top: 2px;
}

.promise-box {
  background: #ffffff;
  border: 1.5px solid rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.promise-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-emerald-dark);
  margin-bottom: 6px;
}

.promise-box p {
  font-size: 0.86rem;
  color: var(--clr-text-secondary);
  line-height: 1.5;
}

.contact-form-panel { 
  padding: 36px; 
  background: #ffffff;
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.contact-form-panel h3 {
  font-size: 1.5rem;
  color: var(--clr-emerald-dark);
  margin-bottom: 6px;
}

.form-intro {
  font-size: 0.92rem;
  color: var(--clr-text-secondary);
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

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

.form-group.full-width { grid-column: span 2; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-emerald-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  color: var(--clr-text-main);
  font-family: inherit;
  font-size: 0.92rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-emerald);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
  background: #ffffff;
}

.form-terms {
  font-size: 0.76rem;
  color: var(--clr-text-muted);
  text-align: center;
  margin-top: 12px;
}

.form-feedback {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.form-feedback.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.form-feedback.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ===== INTERNAL TOAST NOTIFICATION ===== */
.toast-notification {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 999999;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 320px;
  max-width: 450px;
  padding: 16px 20px;
  background: #ffffff;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid var(--clr-emerald);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.15), 0 0 20px rgba(16, 185, 129, 0.2);
  color: var(--clr-text-main);
  transform: translateX(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.toast-notification.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #ecfdf5;
  border: 1.5px solid var(--clr-emerald);
  color: var(--clr-emerald);
}

.toast-icon-wrap svg {
  width: 18px;
  height: 18px;
}

.toast-notification.toast-error .toast-icon-wrap {
  background: #fef2f2;
  border-color: #ef4444;
  color: #ef4444;
}

.toast-notification.toast-error {
  border-color: #ef4444;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.12), 0 0 20px rgba(239, 68, 68, 0.2);
}

.toast-body {
  flex: 1;
}

.toast-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-emerald-dark);
  margin-bottom: 3px;
  line-height: 1.2;
}

.toast-msg {
  font-size: 0.83rem;
  color: var(--clr-text-secondary);
  line-height: 1.45;
}

.toast-close {
  background: transparent;
  border: none;
  color: var(--clr-text-muted);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.2s ease;
}

.toast-close:hover {
  color: var(--clr-emerald-dark);
}

@media (max-width: 640px) {
  .toast-notification {
    top: 14px;
    right: 14px;
    left: 14px;
    min-width: auto;
    max-width: none;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #04261b;
  border-top: 2px solid #10b981;
  padding-top: 70px;
  color: #f8fafc;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(52, 211, 153, 0.5);
  background: #ffffff;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.4);
}

.footer-brand-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  display: block;
}

.footer-brand-sub {
  font-size: 0.74rem;
  font-weight: 700;
  color: #34d399;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.footer-motto {
  font-size: 0.88rem;
  color: #6ee7b7;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2.5px;
  background: #10b981;
  border-radius: 2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #cbd5e1;
}

.footer-links a:hover {
  color: #34d399;
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  font-size: 0.88rem;
  color: #cbd5e1;
  display: flex;
  flex-direction: column;
}

.footer-contact-list strong {
  color: #6ee7b7;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.footer-contact-list a { color: #ffffff; }
.footer-contact-list a:hover { color: #34d399; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-tagline { color: #34d399; }

/* ===== MOBILE FLOATING ACTION BAR ===== */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1.5px solid rgba(16, 185, 129, 0.3);
  z-index: 99;
  padding: 10px 16px;
  justify-content: space-around;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.mob-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--clr-emerald-dark);
  font-size: 0.75rem;
  font-weight: 700;
}

.mob-btn svg { width: 22px; height: 22px; }
.mob-call svg { color: #059669; }
.mob-email svg { color: #10b981; }
.mob-quote svg { color: #047857; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .pricing-plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-title { align-items: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-stats-strip { margin-left: auto; margin-right: auto; }
  .hero-cta-group, .hero-direct-strip { justify-content: center; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .about-dual-grid { grid-template-columns: 1fr; }
  .factors-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .contact-layout-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
  
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 2px solid var(--clr-emerald);
    padding: 30px 24px;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  .pricing-plans-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full-width { grid-column: span 1; }
  .footer-container { grid-template-columns: 1fr; }
  .mobile-action-bar { display: flex; }
  body { padding-bottom: 60px; }
  .factors-cta-bar { flex-direction: column; align-items: flex-start; }
}
