/* =========================================================
   Nelson Enterprizes, LLC - Global Stylesheet
   Modern, Professional, Conversion-Focused
   ========================================================= */

/* ---------- Google Fonts Import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy:       #0D1B2A;
  --navy-mid:   #1B2E44;
  --navy-light: #243B55;
  --teal:       #00C2CB;
  --teal-dark:  #009BA3;
  --teal-light: #E0F9FA;
  --accent:     #0EA5E9;
  --accent-dark:#0284C7;
  --emerald:    #10B981;
  --white:      #FFFFFF;
  --off-white:  #F8FAFC;
  --gray-50:    #F9FAFB;
  --gray-100:   #F3F4F6;
  --gray-200:   #E5E7EB;
  --gray-300:   #D1D5DB;
  --gray-400:   #9CA3AF;
  --gray-500:   #6B7280;
  --gray-600:   #4B5563;
  --gray-700:   #374151;
  --gray-800:   #1F2937;
  --gray-900:   #111827;
  --gradient-hero: linear-gradient(135deg, #0D1B2A 0%, #1B3A4B 50%, #0D2D3E 100%);
  --gradient-teal: linear-gradient(135deg, #00C2CB 0%, #0EA5E9 100%);
  --gradient-card: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.08);
  --shadow-teal: 0 8px 30px rgba(0,194,203,0.25);
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans:  'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { line-height: 1.75; color: var(--gray-600); }

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--gray-500);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-label.white {
  color: var(--teal);
  background: rgba(0,194,203,0.15);
}

/* ---------- Layout ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-dark {
  background: var(--gradient-hero);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p,
.section-dark .lead {
  color: rgba(255,255,255,0.75);
}

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

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

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,194,203,0.35);
  opacity: 0.95;
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn-ghost {
  color: var(--teal);
  padding: 0;
  font-weight: 600;
  font-size: 0.9rem;
  gap: 6px;
  border-radius: 0;
}
.btn-ghost:hover {
  gap: 10px;
  color: var(--teal-dark);
}

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

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---------- Header / Navigation ---------- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(13, 27, 42, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1180px;
  margin: 0 auto;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-size: 0.65rem;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.main-nav > li > a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-family: var(--font-sans);
}

.main-nav > li > a:hover,
.main-nav > li > a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Dropdown */
.has-dropdown > a::after {
  content: '▾';
  font-size: 0.7rem;
  margin-left: 4px;
  opacity: 0.6;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 240px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--gray-700);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.dropdown a:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.dropdown-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-phone:hover { color: var(--white); }

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
}

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

.mobile-menu a:not(.btn) {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-family: var(--font-sans);
}

.mobile-menu a:not(.btn):hover { color: var(--teal); }

.mobile-menu .mobile-sub {
  padding-left: 16px;
}

.mobile-menu .mobile-sub a:not(.btn) {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  padding: 10px 0;
}

.mobile-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-cta .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* ---------- Hero Section ---------- */
.hero {
  background: var(--gradient-hero);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,194,203,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14,165,233,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,194,203,0.12);
  border: 1px solid rgba(0,194,203,0.25);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  background: var(--gradient-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lead {
  color: rgba(255,255,255,0.75);
  font-size: 1.125rem;
  margin-bottom: 36px;
  max-width: 520px;
}

/* Trust Bar */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
}

.trust-badge svg { width: 14px; height: 14px; color: var(--teal); fill: var(--teal); }

/* Hero Dashboard Visual */
.hero-visual {
  position: relative;
}

.dashboard-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(10px);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dashboard-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.dashboard-dots {
  display: flex;
  gap: 5px;
}

.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #28CA41; }

.kpi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.kpi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 16px;
}

.kpi-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.kpi-value {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.kpi-change {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 6px;
}

.kpi-change.up { color: var(--emerald); }
.kpi-change.down { color: #F87171; }

/* Mini Bar Chart */
.mini-chart {
  margin-bottom: 20px;
}

.chart-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}

.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(255,255,255,0.15);
  transition: var(--transition);
}

.bar.active { background: var(--gradient-teal); }

.bar-labels {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.bar-label {
  flex: 1;
  text-align: center;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.35);
}

/* Floating metric chips */
.metric-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  animation: float 3s ease-in-out infinite;
}

.metric-float-1 {
  top: -20px;
  right: -20px;
  animation-delay: 0s;
}

.metric-float-2 {
  bottom: -16px;
  left: -16px;
  animation-delay: 1.5s;
}

.metric-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.metric-icon.green { background: rgba(16,185,129,0.12); }
.metric-icon.blue  { background: rgba(14,165,233,0.12); }

.metric-text { line-height: 1.2; }
.metric-num  { font-size: 1rem; font-weight: 800; color: var(--navy); }
.metric-desc { font-size: 0.68rem; color: var(--gray-400); font-weight: 500; }

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

/* ---------- Trust/Stats Strip ---------- */
.stats-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 28px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 28px;
}

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

.stat-number {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-number span { color: var(--teal); }

.stat-desc {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* ---------- Problem/Solution Section ---------- */
.problem-solution {
  padding: 96px 0;
  background: var(--gray-50);
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.ps-column-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid;
}

.ps-column-title.problem { color: #EF4444; border-color: #EF4444; }
.ps-column-title.solution { color: var(--emerald); border-color: var(--emerald); }

.pain-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 14px;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.pain-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(239,68,68,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.solution-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 14px;
  border: 1px solid rgba(16,185,129,0.2);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.solution-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(16,185,129,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.card-content h4 { font-size: 0.95rem; margin-bottom: 4px; }
.card-content p  { font-size: 0.85rem; line-height: 1.6; }

/* ---------- Service Cards ---------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-teal);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(0,194,203,0.2);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gradient-card);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.service-card h3 { font-size: 1.15rem; }

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  flex: 1;
}

/* ---------- Why Choose ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0,194,203,0.2);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.why-item p  { font-size: 0.85rem; }

/* ---------- Process Steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--gradient-teal);
  opacity: 0.3;
}

.step-item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-teal);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-teal);
}

.step-item h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step-item p  { font-size: 0.875rem; }

/* ---------- Industries ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.industry-card:hover {
  border-color: rgba(0,194,203,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.industry-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.industry-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.industry-card p  { font-size: 0.82rem; }

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--gradient-hero);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,194,203,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 { color: var(--white); margin-bottom: 20px; }
.cta-section p  { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto 36px; font-size: 1.05rem; }

/* ---------- Local SEO Section ---------- */
.local-section {
  background: var(--white);
  padding: 80px 0;
}

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

.location-card {
  background: var(--gradient-hero);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: var(--white);
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.loc-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,194,203,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.loc-text { line-height: 1.4; }
.loc-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; }
.loc-value { font-size: 0.95rem; color: var(--white); font-weight: 600; }
.loc-value a { color: var(--teal); }

/* Keywords */
.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.keyword-tag {
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--gradient-hero);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,194,203,0.08) 0%, transparent 70%);
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255,255,255,0.75); max-width: 640px; }
.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: var(--teal); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.3); }

/* ---------- Feature List ---------- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-100);
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(16,185,129,0.1);
  color: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
}

.feature-item h4 { font-size: 0.9rem; margin-bottom: 2px; }
.feature-item p  { font-size: 0.82rem; }

/* ---------- Content Blocks ---------- */
.content-block {
  padding: 80px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-intro {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 56px;
}

.section-intro h2 { margin-bottom: 16px; }
.section-intro p   { font-size: 1.05rem; }

/* ---------- Contact Form ---------- */
.contact-form-section {
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 20px; }
.contact-info p  { margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-text .label { font-size: 0.75rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.contact-detail-text .value { font-size: 0.95rem; font-weight: 600; color: var(--navy); }
.contact-detail-text a { color: var(--teal); }

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

.form-title {
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 28px;
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  font-family: var(--font-sans);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-700);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,194,203,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
  margin-top: 12px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success .success-icon {
  width: 64px;
  height: 64px;
  background: rgba(16,185,129,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
}

/* ---------- Footer ---------- */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-contact a:hover { color: var(--teal); }

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-sans);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--teal); }

.footer-cta-box {
  background: rgba(0,194,203,0.08);
  border: 1px solid rgba(0,194,203,0.2);
  border-radius: var(--radius-md);
  padding: 20px;
}

.footer-cta-box p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

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

.footer-legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal a {
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer-legal a:hover { color: var(--teal); }

.footer-legal-links {
  display: flex;
  gap: 20px;
}

/* ---------- Mobile Float CTA ---------- */
.mobile-cta-float {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 990;
  width: calc(100% - 40px);
  max-width: 420px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: 10px;
  align-items: center;
}

.mobile-cta-float a {
  flex: 1;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 12px;
  border-radius: 12px;
  font-family: var(--font-sans);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb-nav {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.breadcrumb-inner a { color: var(--teal); font-weight: 500; }
.breadcrumb-inner span { color: var(--gray-300); }

/* ---------- Image Placeholder Styles ---------- */
.img-placeholder {
  background: var(--gradient-card);
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  min-height: 300px;
}

.img-placeholder span {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.img-placeholder p {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* ---------- Pulsing badge ---------- */
.pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  position: relative;
}

.pulse::after {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--emerald);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.8); }
}

/* ---------- Scroll Reveal Utility ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s 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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-content  { grid-template-columns: 1fr; }
  .hero-visual   { display: none; }
  .grid-4        { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section       { padding: 64px 0; }
  .section-sm    { padding: 44px 0; }
  .grid-2        { grid-template-columns: 1fr; }
  .grid-3        { grid-template-columns: 1fr; }
  .grid-4        { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .ps-grid       { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .local-inner   { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .two-col       { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .form-card     { padding: 28px 20px; }
  .industry-grid { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .main-nav, .header-phone, .header-cta .btn { display: none; }
  .mobile-toggle { display: flex; }
  .stats-inner   { gap: 20px; }
  .stat-divider  { display: none; }
  .hero          { padding: 120px 0 72px; }
  .page-hero     { padding: 110px 0 56px; }
}

@media (max-width: 480px) {
  .btn-group { flex-direction: column; align-items: flex-start; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .trust-bar { gap: 8px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
}
