/* ================================================
   EVOTECH DARK THEME - "DRAKE" STYLE
   ================================================
   This stylesheet overrides styles.css to apply
   the bold dark theme from the index page.
   ================================================ */

/* --- CSS Variables Override --- */
:root {
  --primary: #0a0a0b;
  --accent: #0066ff;
  --accent-glow: rgba(0, 102, 255, 0.4);
  --secondary: #71717a;
  --surface: #18181b;
  --border: rgba(255, 255, 255, 0.08);
  --gradient-accent: linear-gradient(135deg, #0066ff 0%, #00d4ff 50%, #7c3aed 100%);
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --text-body: #e4e4e7;
  --text-muted: #a1a1aa;
  --text-dark: #71717a;
  --light: #18181b;
  --dark: #0a0a0b;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-display);
  background: var(--primary);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: white;
}

/* --- Typography Overrides --- */
h1, h2, h3, h4 {
  color: #ffffff;
  font-weight: 800;
  line-height: 1.1;
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* --- Gradient Text --- */
.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}

/* --- Section Backgrounds --- */
.section-padding {
  padding: 100px 0;
  background: var(--primary);
}

.section-gray {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* --- Navbar Dark Theme --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
}

.navbar.scrolled {
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  letter-spacing: -1px;
}

.logo .accent {
  color: var(--accent);
  font-size: 2rem;
}

/* --- Nav Phones --- */
.nav-phones {
  display: flex;
  gap: 20px;
  margin-left: auto;
  margin-right: 30px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a1a1aa;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-phone i {
  color: var(--accent);
  font-size: 0.8rem;
}

.nav-phone:hover {
  color: white;
}

@media (max-width: 992px) {
  .nav-phones { display: none; }
}

.nav-menu {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: #a1a1aa;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  background: var(--accent) !important;
  color: white !important;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.nav-cta:hover {
  background: #0052cc !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.bar {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px auto;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Dropdown Dark Theme --- */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(24, 24, 27, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  color: #a1a1aa;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  border-left: none;
}

.dropdown-menu li a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 16px;
  border-left: none;
}

/* --- Hero Section Dark Theme --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: var(--primary);
}

.hero-inner {
  min-height: 60vh;
  height: auto;
  padding: 140px 0 100px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 102, 255, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 10% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--primary) 0%, var(--surface) 100%);
}

.hero-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-inner h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-inner p {
  max-width: 700px;
  margin: 0 auto;
  color: #a1a1aa;
  font-size: 1.2rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* --- Buttons Dark Theme --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  background: #0052cc;
  transform: translateY(-3px);
  box-shadow: 0 10px 40px var(--accent-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid var(--border);
  margin-left: 0;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* --- Service Cards Dark Theme --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-8px);
  border-color: rgba(0, 102, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.service-card p {
  color: #71717a;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.service-card a {
  color: var(--accent);
  font-weight: 700;
  display: inline-block;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.service-card a:hover {
  color: #00d4ff;
}

/* --- Icon Box Dark Theme --- */
.icon-box {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(124, 58, 237, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
  color: var(--accent);
  transition: all 0.4s ease;
}

.service-card:hover .icon-box {
  background: var(--accent);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 10px 30px var(--accent-glow);
}

/* --- Content Block Dark Theme --- */
.content-block h2 {
  color: white;
}

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

/* --- Check List Dark Theme --- */
.check-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #d4d4d8;
}

.check-list i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* --- About Image / Tech Cards Dark Theme --- */
.about-image {
  position: relative;
  height: 400px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  width: 160px;
  transition: all 0.4s ease;
}

.tech-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
}

.tech-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.tech-card h3 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 4px;
}

.tech-card p {
  font-size: 0.9rem;
  color: #71717a;
  margin: 0;
}

.tech-card.floating {
  position: absolute;
  top: 20%;
  right: -20px;
  animation: float 6s ease-in-out infinite;
}

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

/* --- Logo Grid Dark Theme --- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  align-items: center;
  justify-items: center;
  margin-top: 40px;
}

.logo-item {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-item:hover {
  border-color: rgba(0, 102, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.logo-item img {
  max-width: 140px;
  max-height: 60px;
  object-fit: contain;
  opacity: 1;
  transition: all 0.3s ease;
}

.logo-item:hover img {
  opacity: 0.5;
  filter: grayscale(100%);
  transform: scale(1.05);
}

/* --- Provider Grid Dark Theme --- */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  align-items: stretch;
  justify-items: stretch;
  margin-top: 40px;
  padding: 0;
}

.provider-grid .logo-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.provider-grid .logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.25);
}

.provider-grid .logo-card img {
  max-width: 130px;
  max-height: 45px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.provider-grid.compact {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.provider-grid.compact .logo-card {
  padding: 16px 20px;
  min-height: 65px;
}

.provider-grid.compact .logo-card img {
  max-width: 100px;
  max-height: 35px;
}

/* --- Market Grid Dark Theme --- */
.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.market-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 25px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s ease;
}

.market-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 102, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.market-card i {
  font-size: 1.5rem;
  color: var(--accent);
}

.market-card h4 {
  margin: 0;
  font-size: 1rem;
  color: white;
}

/* --- Benefits Grid Dark Theme --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.benefit-icon {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(124, 58, 237, 0.1));
  color: var(--accent);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.benefit-text h4 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}

.benefit-text p {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
  color: #71717a;
}

/* --- CTA Card Dark Theme --- */
.cta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 60px 40px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  margin: 0 auto;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 102, 255, 0.1);
  color: var(--accent);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 102, 255, 0.2);
}

.trust-statement {
  font-size: 1.5rem;
  color: var(--text-body);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 30px;
}

.highlight {
  color: white;
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
}

.divider {
  height: 2px;
  width: 100px;
  background: var(--gradient-accent);
  margin: 0 auto 30px auto;
}

/* --- Path to Clarity Dark Theme --- */
.clarity-process {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clarity-header .section-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--accent);
}

.clarity-header h2 {
  font-size: 2.4rem;
  margin-bottom: 0;
  color: white;
}

.clarity-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  position: relative;
}

.clarity-steps::before {
  content: '';
  position: absolute;
  top: 46px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
}

.clarity-step-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-mono);
}

.clarity-node {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #71717a;
  margin: 10px auto 18px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.clarity-step:hover .clarity-node {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.1);
}

.clarity-step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin: 0 0 8px;
}

.clarity-step-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #71717a;
  line-height: 1.6;
}

/* --- Process Section Dark Theme --- */
.process-section {
  background: var(--surface);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.process-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.timeline-line {
  background: linear-gradient(180deg, transparent 0%, var(--border) 5%, var(--border) 95%, transparent 100%);
}

.timeline-node {
  background: var(--surface);
  border: 4px solid var(--accent);
  box-shadow: 0 2px 15px var(--accent-glow);
}

.timeline-node::before {
  background: var(--accent);
}

.step-label {
  color: var(--accent);
  font-family: var(--font-mono);
}

.process-content h3 {
  color: white;
}

.process-content p {
  color: #71717a;
}

.process-icon {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.15), rgba(124, 58, 237, 0.1));
}

.process-icon i {
  color: var(--accent);
}

.process-item:hover .process-icon {
  background: var(--accent);
}

.process-item:hover .process-icon i {
  color: white;
}

/* --- Assessment Form Dark Theme --- */
.assessment-form-wrapper {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-top: 3px solid var(--accent);
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-body);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--primary);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-body);
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #52525b;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a1a1aa' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--surface);
  color: var(--text-body);
}

.form-note {
  font-size: 0.9rem;
  color: #71717a;
  text-align: center;
  margin-top: 20px;
  display: block;
}

/* --- Step Strip Dark Theme --- */
.step-strip {
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
  position: relative;
  flex-wrap: wrap;
  gap: 20px;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  min-width: 140px;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: var(--surface);
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
  z-index: 2;
  position: relative;
  transition: all 0.4s ease;
}

.step-item:hover .step-icon {
  background: var(--accent);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 10px 30px var(--accent-glow);
}

.step-item h4 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 8px;
}

.step-item p {
  font-size: 0.9rem;
  color: #71717a;
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 768px) {
  .step-strip::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: var(--border);
    z-index: 1;
  }
}

/* --- Footer Dark Theme --- */
.footer {
  background: var(--primary);
  padding: 100px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-col p {
  color: #71717a;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: #71717a;
  font-size: 0.95rem;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  color: #52525b;
  font-size: 0.9rem;
  margin: 0;
}

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

.footer-links a {
  color: #52525b;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  padding: 0;
}

.footer-links a:hover {
  color: white;
  transform: none;
}

/* --- Footer Grid Structure --- */
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.footer-brand p {
  color: #71717a;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-brand .location {
  font-size: 0.9rem;
  color: #52525b;
}

.footer-phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a1a1aa;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-phone i {
  color: var(--accent);
  font-size: 0.85rem;
}

.footer-phone:hover {
  color: white;
}

.footer-cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.footer-cta-box h4 {
  margin-bottom: 12px;
}

.footer-cta-box p {
  color: #a1a1aa;
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-cta-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  background: var(--accent) !important;
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.footer-cta-btn:hover {
  background: #0052cc !important;
  color: #ffffff !important;
}

/* Footer CTA Button Fix */
.footer .btn-primary,
.footer-col .btn-primary {
  color: white !important;
  background: var(--accent) !important;
}

/* --- Contact Wrapper Dark Theme --- */
.contact-wrapper {
  display: flex;
  justify-content: center;
}

.contact-content {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 600px;
}

/* --- Section Header Dark Theme --- */
.section-header h2 {
  color: white;
}

.section-header p {
  color: #71717a;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Grid-2 Dark Theme --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* --- Partner Tags Dark Theme --- */
.partner-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 18px;
  text-align: center;
  border-radius: 12px;
  font-weight: 600;
  color: #71717a;
  transition: all 0.4s ease;
}

.partner-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* --- Trusted Logos Dark Theme --- */
.trusted-logos .provider-grid img {
  filter: brightness(0) invert(1);
  opacity: 0.4;
}

.trusted-logos .provider-grid img:hover {
  opacity: 0.9;
}

/* --- Responsive Dark Theme --- */
@media (max-width: 1200px) {
  .footer-content,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 11, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
  }

  .hero-inner {
    padding: 120px 20px 80px;
  }

  .hero-inner h1 {
    font-size: 2rem;
    letter-spacing: -1px;
  }

  .hero-inner p {
    font-size: 1rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-content,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .clarity-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .clarity-steps::before {
    display: none;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    padding: 10px 0 10px 20px;
    box-shadow: none;
  }

  .dropdown-menu li a {
    color: #71717a;
    padding: 10px 0;
  }

  .dropdown-menu li a:hover {
    background: transparent;
    color: var(--accent);
  }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

/* --- Utility Classes --- */
.text-center {
  text-align: center;
}

.text-center .icon-box {
  margin-left: auto;
  margin-right: auto;
}

/* --- Background Net Override (Light Pattern -> Dark Pattern) --- */
.bg-net {
  background-color: var(--surface);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
