:root {
  /* Premium Light Theme Colors */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-700: #334155;
  --slate-800: #0f172a;
  --slate-950: #020617;
  
  --primary: var(--slate-800);
  --primary-light: var(--slate-700);
  --paper: #ffffff;
  --paper-offset: var(--slate-50);
  --ink: var(--slate-800);
  --muted: #475569;
  --line: var(--slate-200);
  
  /* Brand Accent: High-Tech Electric Blue & Light Cyan */
  --brand: #0284c7;
  --brand-strong: #0369a1;
  --brand-light: #e0f2fe;
  --fresh: #10b981;
  --fresh-strong: #047857;
  --sun: #eab308;
  
  /* Glassmorphism & Visual Effects */
  --backdrop: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.06), 0 4px 6px -4px rgba(15, 23, 42, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  
  --radius-xl: 2rem;
  --radius-lg: 1.25rem;
  --radius-md: 0.75rem;
  --radius-sm: 0.375rem;
  --max-w: 1200px;
}

/* Premium Dark Theme Override */
body.dark {
  --primary: #ffffff;
  --primary-light: #cbd5e1;
  --paper: #020617;
  --paper-offset: #090d16;
  --ink: #f8fafc;
  --muted: #94a3b8;
  --line: #1e293b;
  
  --backdrop: rgba(2, 6, 23, 0.85);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -4px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
}

/* Base Rules & Resets */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Apply color transitions only to interactive elements, not all elements */
a, button, input, select, textarea,
.btn, .glass-card, .navbar a, .mobile-nav-links a,
.form-input, .footer-column ul a, .silo-list li a,
.top-bar-links a, .footer-legal-links a, .card-link {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  color: var(--ink);
  background-color: var(--paper);
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--primary);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  margin-bottom: 0.75rem;
}

/* Header & Top Bar */
.top-bar {
  background-color: var(--slate-950);
  color: var(--slate-300);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-links a {
  margin-left: 1.5rem;
}

.top-bar-links a:hover {
  color: #ffffff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--backdrop);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1;
}

.logo-badge {
  background: linear-gradient(135deg, var(--brand), #06b6d4);
  color: #ffffff;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  font-weight: 950;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.logo-text small {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand);
  font-weight: 700;
  margin-top: 0.15rem;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
}

.navbar a:hover, .navbar a[aria-current="page"] {
  color: var(--brand);
  background-color: var(--brand-light);
}

body.dark .navbar a:hover, body.dark .navbar a[aria-current="page"] {
  color: #ffffff;
  background-color: rgba(2, 132, 199, 0.15);
}

.navbar .btn-header-cta {
  background-color: var(--brand);
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
}

.navbar .btn-header-cta:hover {
  background-color: var(--brand-strong);
  color: #ffffff;
}

/* Theme Toggle Button */
.btn-toggle-theme {
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.btn-toggle-theme:hover {
  background-color: var(--paper-offset);
  transform: translateY(-1px);
}

/* Responsive Hamburger Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--ink);
  border-radius: 2px;
  transition: 0.2s ease;
}

/* Mobile Nav Drawer overlay */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--paper);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--ink);
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-links a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--muted);
  padding: 0.5rem;
  border-radius: var(--radius-md);
}

.mobile-nav-links a:hover {
  color: var(--brand);
  background-color: var(--brand-light);
}

/* Backdrop Filter Mobile Overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  display: none;
}

.drawer-overlay.active {
  display: block;
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background-color: var(--brand);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.25);
}

.btn-primary:hover {
  background-color: var(--brand-strong);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.35);
}

.btn-secondary {
  background-color: var(--slate-950);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.15);
}

.btn-secondary:hover {
  background-color: var(--slate-800);
  transform: translateY(-2px);
}

.btn-ghost {
  background: none;
  border: 2px solid var(--line);
  color: var(--ink);
  box-shadow: none;
}

.btn-ghost:hover {
  background-color: var(--paper-offset);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--paper);
  padding: 4rem 1rem 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(2, 132, 199, 0.08), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-tagline {
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tagline::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--brand);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--brand);
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--primary-light);
}

.hero-benefit svg {
  color: var(--fresh);
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* 3D Floating Compositing */
.hero-visual-container {
  position: relative;
  perspective: 1000px;
}

.hero-3d-composition {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-8deg) rotateX(3deg);
  transition: transform 0.5s ease;
}

.hero-3d-composition:hover {
  transform: rotateY(-2deg) rotateX(1deg);
}

.hero-3d-image {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-xl);
}

.glass-badge {
  position: absolute;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(2, 6, 23, 0.88));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.85rem 1.3rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.06) inset;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float-badge 6s infinite ease-in-out;
}

.glass-badge-1 {
  top: 10%;
  left: -5%;
  animation-delay: 0s;
  border-left: 3px solid #10b981;
}

.glass-badge-2 {
  bottom: 15%;
  right: -5%;
  animation-delay: 3s;
  border-left: 3px solid #0284c7;
}

.badge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(16, 185, 129, 0.1));
  border: 1.5px solid rgba(16, 185, 129, 0.5);
  color: #10b981;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.05rem;
}

.glass-badge-2 .badge-icon {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.25), rgba(2, 132, 199, 0.1));
  border-color: rgba(2, 132, 199, 0.5);
  color: #38bdf8;
}

.badge-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.badge-text span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffffff;
  font-weight: 700;
  opacity: 0.92;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

@keyframes float-badge {
  0% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(1deg); }
  100% { transform: translateY(0) rotate(0); }
}

/* Trust Stats Bar */
.stats-strip {
  background-color: var(--paper-offset);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 1rem;
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: 2rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.stat-subtext {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

/* Service / Scrap / District Sections */
.section {
  padding: 6rem 1rem;
}

.section-offset {
  background-color: var(--paper-offset);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-title {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-title h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  margin-top: 0.5rem;
}

.section-title p {
  font-size: 1.15rem;
  margin-top: 0.75rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Sleek Premium Card component */
.glass-card {
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--brand);
  transition: height 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 38, 38, 0.15);
  box-shadow: var(--shadow-xl), 0 12px 30px rgba(220, 38, 38, 0.04);
}

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

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background-color: var(--paper-offset);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.glass-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.glass-card p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-link {
  font-weight: 800;
  color: var(--brand);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.card-link svg {
  transition: transform 0.2s ease;
}

.glass-card:hover .card-link svg {
  transform: translateX(4px);
}

/* Contact / Scrapping Form Section */
.contact-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1.25rem;
}

.info-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--brand-light);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

body.dark .info-icon {
  background-color: rgba(220, 38, 38, 0.2);
}

.info-details strong {
  display: block;
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 0.15rem;
}

.info-details span, .info-details a {
  font-size: 1rem;
  color: var(--muted);
}

.info-details a:hover {
  color: var(--brand);
}

/* Premium Form Card */
.form-card {
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
}

.form-title {
  margin-bottom: 2rem;
}

.form-title h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

.form-input {
  background-color: var(--paper-offset);
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
}

.form-input:focus {
  border-color: var(--brand);
  background-color: var(--paper);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-checkbox input {
  margin-top: 0.25rem;
}

.form-checkbox label {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.form-checkbox a {
  color: var(--brand);
  font-weight: 700;
}

/* Post-Action Form Success Overlay */
.form-success-container {
  display: none;
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(34, 197, 94, 0.1);
  color: var(--fresh);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
}

.form-success-container h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.form-success-container p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto 2rem;
}

/* Accordion FAQ Component */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.75rem;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.3;
}

.faq-icon {
  width: 24px;
  height: 24px;
  background-color: var(--paper-offset);
  border-radius: 50%;
  color: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-content-inner {
  padding: 0 1.75rem 1.5rem;
  border-top: 1px solid transparent;
}

.faq-item.active {
  border-color: rgba(220, 38, 38, 0.15);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-content {
  max-height: 500px;
}

.faq-item.active .faq-content-inner {
  border-top-color: var(--line);
}

/* Footer Section */
.footer {
  background-color: var(--slate-950);
  color: var(--slate-300);
  padding: 5rem 1rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column ul a {
  color: var(--slate-400);
  font-weight: 500;
}

.footer-column ul a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-about p {
  color: var(--slate-400);
  margin-top: 1rem;
  font-size: 0.95rem;
}

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal-links a {
  margin-left: 1.5rem;
  color: var(--slate-400);
  font-size: 0.88rem;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

/* Silo & SEO Internal Linking Grid */
.silo-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  list-style: none;
  margin-top: 2rem;
}

.silo-list li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: var(--paper-offset);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  font-weight: 700;
  color: var(--primary-light);
}

.silo-list li a:hover {
  border-color: var(--brand);
  background-color: var(--brand-light);
  color: var(--brand);
}

body.dark .silo-list li a:hover {
  color: #ffffff;
  background-color: rgba(220, 38, 38, 0.15);
}



/* Media Queries */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-tagline {
    justify-content: center;
  }
  .hero-benefits {
    justify-content: center;
  }
  .hero-benefit {
    justify-content: center;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .hero-visual-container {
    max-width: 480px;
    margin: 0 auto;
  }
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .navbar {
    display: none;
  }
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-card {
    padding: 2rem 1.5rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-full {
    grid-column: span 1;
  }
}

/* Floating Action Sidebar - Google 2026 Sleek Glassmorphism */
.floating-sidebar {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%) translateX(100px);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-sidebar.visible {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.floating-item {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--backdrop);
  border: 1px solid var(--glass-border);
  color: var(--brand);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.floating-phone {
  background: linear-gradient(135deg, var(--brand), #0284c7);
  color: #ffffff;
  border: none;
}

.floating-contact {
  background: linear-gradient(135deg, var(--paper), var(--paper-offset));
  color: var(--ink);
}

.floating-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  border: none;
}

.floating-item:hover {
  transform: scale(1.15) translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: #ffffff;
}

.floating-contact:hover {
  color: var(--brand);
  border-color: var(--brand);
}

.floating-label {
  position: absolute;
  right: 64px;
  background-color: var(--slate-950);
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.floating-item:hover .floating-label {
  opacity: 1;
  transform: translateX(0);
}

/* Responsiveness for small screens: align beautifully vertically on the right side without taking too much screen width */
@media (max-width: 768px) {
  .floating-sidebar {
    right: 0.75rem;
    gap: 0.5rem;
  }
  .floating-item {
    width: 46px;
    height: 46px;
  }
  .floating-item svg {
    width: 18px;
    height: 18px;
  }
  .floating-label {
    display: none; /* Hide labels on mobile to avoid overlapping */
  }
}

/* --- Expert & Local Business Boost Card --- */
.expert-boost {
  background: linear-gradient(135deg, var(--slate-950), #0f172a);
  color: #ffffff;
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.expert-boost-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 4rem;
  align-items: center;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 99px;
  background: rgba(2, 132, 199, 0.15); /* Electric Blue matching Essen */
  border: 1px solid rgba(2, 132, 199, 0.3);
  color: #bae6fd;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.expert-boost-content h2 {
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.expert-boost-content h2 span {
  color: var(--brand);
}

.expert-boost-content p {
  color: var(--slate-300);
  font-size: 1.1rem;
}

.expert-features-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.expert-feature-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.feature-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: var(--brand);
}

.feature-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.feature-info h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.feature-info p {
  color: var(--slate-400);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.expert-boost-visual {
  width: 100%;
}

.expert-boost-visual .visual-3d-wrapper {
  position: relative;
}

.expert-boost-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2xl);
  max-width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .expert-boost-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .expert-boost-visual {
    max-width: 500px;
    margin: 0 auto;
  }
}
