:root {
  /* Brand Colors - Dark Cinematic aligned with Logo */
  --bg-color: #000000;
  --bg-surface: #0a0a0a;
  --bg-surface-2: #141414;
  --text-main: #f5f5f7;
  --text-muted: #86868b;
  
  /* Brand Accent Colors */
  --accent: #FF3B30; /* Vibrant Red */
  --accent-hover: #D70015; /* Darker Red */
  --accent-blue: #0A84FF; /* Vibrant Blue */
  --accent-blue-hover: #0066CC;
  
  --border-color: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(15, 15, 15, 0.6);
  --white: #FFFFFF;
  
  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing & Layout */
  --container-width: 1200px;
  --section-py: 12rem;
  
  /* Shadows & Easing */
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow-red: 0 0 30px rgba(255, 59, 48, 0.4);
  --shadow-glow-blue: 0 0 30px rgba(10, 132, 255, 0.4);
  --ease-apple: cubic-bezier(0.25, 0.1, 0.25, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-color);
}

body {
  font-family: var(--font-body);
  color: var(--text-muted);
  line-height: 1.5;
  background-color: var(--bg-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.05;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.04em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-apple);
}

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

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-py) 0;
}

.bg-light { background-color: var(--bg-surface); }
.bg-dark { background-color: var(--bg-color); color: var(--text-main); }
.bg-dark h2 { color: var(--text-main); }
.text-center { text-align: center; }
.text-white { color: var(--text-main); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 40px; /* Pill shape for modern look */
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.4s var(--ease-apple);
  cursor: pointer;
  border: 1px solid transparent;
}

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

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: scale(1.02);
  box-shadow: var(--shadow-glow-red);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--text-main);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  transform: scale(1.02);
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Nav - Floating Glass Pill */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1200px;
  z-index: 1000;
  background-color: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  transition: all 0.5s var(--ease-apple);
  padding: 1rem 2.5rem;
  box-shadow: var(--shadow-glass);
}

.nav.scrolled {
  padding: 0.75rem 2rem;
  width: 90%;
  max-width: 1000px;
  background-color: rgba(10, 10, 10, 0.85);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
  max-width: none;
  transition: transform 0.4s var(--ease-apple);
  transform-origin: left center;
}

.nav.scrolled .logo img {
  transform: scale(0.88);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

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

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown > a::after {
  content: '▾';
  font-size: 0.7rem;
  opacity: 0.7;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.75rem 0;
  min-width: 200px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  z-index: 999;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.dropdown-menu a:hover {
  color: #fff !important;
  background: rgba(255,255,255,0.06);
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-main);
  opacity: 0.8;
  letter-spacing: -0.01em;
}

.nav-links a:hover {
  opacity: 1;
}

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

.nav-phone {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-main);
  opacity: 0.8;
  white-space: nowrap;
}

.nav-phone:hover {
  opacity: 1;
}

.nav-actions .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background-color: var(--navy);
  transition: 0.3s;
}

/* Hero */
.hero {
  position: relative;
  z-index: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--bg-color);
  overflow: hidden;
}





.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  animation: bgDrift 40s linear infinite alternate;
  z-index: 0;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.75;
  mix-blend-mode: screen;
  z-index: 2; /* Restored over the overlay */
  animation: floatOrb 12s ease-in-out infinite alternate;
}

.orb-1 {
  width: 100vw; height: 100vh;
  background: var(--accent); /* Red */
  top: -20%; left: -20%;
  animation-delay: 0s;
}

.orb-2 {
  width: 100vw; height: 100vh;
  background: var(--accent-blue); /* Blue */
  bottom: -20%; right: -20%;
  animation-delay: -6s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15vw, 15vh) scale(1.1); }
  66% { transform: translate(-10vw, 20vh) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 60%, var(--bg-color) 100%);
  z-index: 1;
}

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

.trust-line {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 2rem;
  opacity: 1;
  /* Use filter drop-shadow instead of text-shadow */
  text-shadow: none;
  filter: drop-shadow(0 0 10px rgba(0,0,0,1)) drop-shadow(0 0 20px rgba(0,0,0,0.8));
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #ffffff;
  /* Use filter drop-shadow instead of text-shadow */
  text-shadow: none;
  filter: drop-shadow(0 0 15px rgba(0,0,0,1)) drop-shadow(0 0 30px rgba(0,0,0,0.8));
}

.hero-subhead {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 3.5rem;
  color: #ffffff;
  max-width: 700px;
  line-height: 1.6;
  font-weight: 500;
  /* Use filter drop-shadow instead of text-shadow */
  text-shadow: none;
  filter: drop-shadow(0 0 10px rgba(0,0,0,1)) drop-shadow(0 0 20px rgba(0,0,0,0.8));
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Trust Bar */
.trust-bar {
  background-color: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text-main);
  padding: 4rem 0;
  position: relative;
  z-index: 2;
  margin-top: -60px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.8);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-number, .trust-icon {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  line-height: 1;
  background: linear-gradient(180deg, #ffffff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-icon svg {
  width: 48px;
  height: 48px;
  color: var(--accent);
}

.trust-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--text-muted);
}

/* Solutions */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 3.5rem;
  text-align: center;
}

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

.solution-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  transition: all 0.5s var(--ease-apple);
  position: relative;
}

.solution-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 59, 48, 0.3); /* Red border on hover */
  box-shadow: var(--shadow-glow-red);
  z-index: 2;
}

.card-img {
  height: 240px;
  overflow: hidden;
}

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

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

.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}
.bg-navy { background-color: var(--navy); }

.card-content {
  padding: 2.5rem;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-content p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* 360 Control */
.control-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.control-text .section-title {
  text-align: left;
  margin-bottom: 1rem;
}

.control-text .section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-400);
  margin-bottom: 2.5rem;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--navy);
}

.feature-list .check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--blue);
  color: var(--white);
  border-radius: 50%;
  margin-right: 1.25rem;
  font-size: 0.875rem;
}

.control-graphic img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* Analytics */
.analytics-header {
  text-align: center;
  margin-bottom: 4rem;
}

.analytics-camera img {
  max-width: 240px;
  margin: 0 auto;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4));
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.analytic-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1.75rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: var(--white);
  transition: all 0.3s;
}

.analytic-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Industries */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: center;
}

@media (max-width: 900px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

.industry-card {
  padding: 0 0 2rem 0;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: all 0.5s var(--ease-apple);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.industry-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: var(--shadow-glow-blue);
  border-color: rgba(10, 132, 255, 0.3); /* Blue border on hover */
  background: rgba(30, 30, 30, 0.8);
}

.industry-card .card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

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

.industry-card:hover .card-img img {
  transform: scale(1.1);
}

.industry-card h3 {
  font-size: 1.25rem;
}

/* Process */
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-step {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}

.step-dot {
  width: 60px;
  height: 60px;
  background-color: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 10px rgba(46, 125, 246, 0.1);
}

.timeline-line {
  flex: 1;
  height: 3px;
  background-color: var(--gray-200);
  margin-top: 30px;
  z-index: 1;
}

.timeline-step h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.timeline-step p {
  font-size: 0.95rem;
  color: var(--gray-800);
}

/* Marquee */
.trusted-by {
  padding: 4rem 0 3rem;
}

.trusted-title {
  color: var(--gray-400);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  font-weight: 700;
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
}

.marquee-container::before, .marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-color) 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-color) 0%, transparent 100%);
}

.marquee-content {
  display: inline-block;
  animation: marquee 40s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0 4rem;
  margin: 0;
  box-shadow: none;
  vertical-align: middle;
}

.client-logo {
  height: 65px;
  max-width: 200px;
  object-fit: contain;
  /* brightness(0) turns to black, invert(0.6) turns black to 60% white (gray) */
  filter: brightness(0) invert(0.6);
  transition: all 0.4s var(--ease-apple);
}

.marquee-item:hover .client-logo {
  /* Restores full color on hover */
  filter: brightness(1) invert(0) drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
  transform: scale(1.1);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.02);
  padding: 4rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.contact-form-wrapper h2 {
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
  color: var(--text-main);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s var(--ease-apple);
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
}

.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-glow-red);
}

.info-card {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  padding: 4rem 3rem;
  border-radius: 24px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.info-card h3 {
  color: var(--text-main);
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.speak-to {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

.speak-to a {
  color: var(--accent-blue);
  font-weight: 700;
  font-size: 1.5rem;
  display: block;
  margin-top: 0.5rem;
  transition: all 0.3s var(--ease-apple);
}

.speak-to a:hover {
  color: var(--white);
  text-shadow: var(--shadow-glow-blue);
}

.info-block {
  margin-bottom: 2rem;
}

.info-block strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-main);
  font-size: 1.125rem;
}

.info-block p {
  color: var(--text-muted);
}

/* Footer */
.footer {
  background-color: var(--charcoal);
  color: var(--gray-400);
  padding: 5rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  height: 48px;
  margin-bottom: 1.5rem;
  filter: invert(1) hue-rotate(180deg) brightness(1.2) saturate(2.5);
}

.social-icons {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
}

.social-icons a {
  color: var(--gray-400);
}

.social-icons a:hover {
  color: var(--white);
}

.footer h4 {
  color: var(--white);
  margin-bottom: 1.75rem;
  font-size: 1.125rem;
}

.footer-links a {
  display: block;
  margin-bottom: 1rem;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-contact p {
  margin-bottom: 1rem;
}

.bbb-seal {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--gray-400);
  border-radius: 6px;
  font-weight: 700;
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2.5rem;
  text-align: center;
  font-size: 0.875rem;
}

/* Animations & Utilities */
@keyframes bgDrift {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.1) translate(-2%, 2%); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.fade-up {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 1.2s var(--ease-apple), transform 1.2s var(--ease-apple);
  will-change: opacity, transform;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }
.stagger-8 { transition-delay: 0.8s; }

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3.5rem; }
  .trust-bar { margin: -40px 1.5rem 0; width: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: -2.5rem;
    right: -2.5rem;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    gap: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-radius: 0 0 20px 20px;
  }
  .nav-links.mobile-open .nav-dropdown > a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.mobile-open .dropdown-menu {
    display: none;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    margin: 0.25rem 0 0.5rem;
    padding: 0.5rem 0;
  }
  .nav-links.mobile-open .nav-dropdown.mobile-expanded .dropdown-menu {
    display: block;
  }
  .nav-actions.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 1px);
    left: -2.5rem;
    right: -2.5rem;
    background: rgba(5,5,5,0.98);
    padding: 1rem 2rem 2rem;
    gap: 0.75rem;
    border-radius: 0 0 20px 20px;
    margin-top: 200px;
  }
  .mobile-menu-btn { display: flex; }
  .hero h1 { font-size: 2.75rem; }
  .hero-ctas { flex-direction: column; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .control-grid { grid-template-columns: 1fr; }
  .timeline { flex-direction: column; align-items: flex-start; padding-left: 1rem; }
  .timeline-line { width: 3px; height: 40px; margin: 0 0 0 28px; }
  .timeline-step { margin-bottom: 0; text-align: left; display: flex; align-items: flex-start; gap: 1.5rem; padding: 0; }
  .step-dot { margin: 0; flex-shrink: 0; }
  .timeline-step h3 { margin-top: 0.5rem; }
  .contact-form-wrapper { padding: 2rem; }
  .info-card { padding: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
