/*
Theme Name: Detroit AI Consultants Steampunk
Theme URI: https://detroitaiconsultants.com
Author: Jay Griggs
Description: A premium steampunk-themed AI consulting WordPress theme for Detroit AI Consultants.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: detroit-ai-consultants
Tags: dark, custom-background, custom-logo, custom-menu, featured-images
*/

:root {
  --bg-0: #0a0a0f;
  --bg-1: #111118;
  --bg-2: #151522;
  --gold-0: #d4a843;
  --gold-1: #c5942a;
  --copper-0: #b87333;
  --copper-1: #cd7f32;
  --brass-0: #c9a961;
  --brass-1: #e8c872;
  --text-0: #f5f0e6;
  --text-1: #c8bfae;
  --text-2: #9a9180;
  --line-0: rgba(212, 168, 67, 0.35);
  --line-1: rgba(184, 115, 51, 0.35);
  --glass: rgba(23, 18, 12, 0.6);
  --glass-strong: rgba(26, 20, 13, 0.78);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --glow: 0 0 30px rgba(212, 168, 67, 0.2);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --border: 1px solid rgba(212, 168, 67, 0.2);
  --border-strong: 1px solid rgba(212, 168, 67, 0.45);
  --grad-gold: linear-gradient(120deg, #d4a843, #b87333, #e8c872);
  --grad-dark: linear-gradient(160deg, #0a0a0f 0%, #111118 45%, #1b1821 100%);
  --grad-metal: linear-gradient(135deg, rgba(212, 168, 67, 0.2), rgba(184, 115, 51, 0.1), rgba(232, 200, 114, 0.25));
  --font-title: "Impact", "Haettenschweiler", "Arial Narrow Bold", "Franklin Gothic", "Arial", sans-serif;
  --font-body: "Segoe UI", "Tahoma", "Geneva", "Verdana", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-0);
  background: var(--grad-dark);
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brass-1);
  outline-offset: 3px;
}

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

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section--tight {
  padding: 50px 0;
}

.section-title {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin: 0 0 20px;
  color: var(--brass-1);
  text-shadow: 0 0 18px rgba(232, 200, 114, 0.25);
}

.section-subtitle {
  color: var(--text-1);
  max-width: 720px;
  margin-bottom: 40px;
}

.steampunk-divider {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-0), var(--copper-0), transparent);
  position: relative;
  margin: 20px 0 50px;
}

.steampunk-divider::before,
.steampunk-divider::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold-0);
  background: var(--bg-1);
  transform: rotate(45deg);
  top: -9px;
}

.steampunk-divider::before {
  left: 0;
}

.steampunk-divider::after {
  right: 0;
}

.glass-card {
  background: var(--glass);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(212, 168, 67, 0.12), transparent 60%);
  pointer-events: none;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.35);
  color: var(--brass-1);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--grad-gold);
  color: #1a1208;
  box-shadow: 0 12px 30px rgba(212, 168, 67, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(232, 200, 114, 0.6);
  color: var(--brass-1);
  background: rgba(26, 20, 13, 0.4);
}

.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232, 200, 114, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.88);
  border-bottom: 1px solid rgba(212, 168, 67, 0.12);
  backdrop-filter: blur(12px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 18px;
}

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

.brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212, 168, 67, 0.4));
  transition: filter 0.3s ease;
}

.brand-logo:hover {
  filter: drop-shadow(0 0 14px rgba(212, 168, 67, 0.7));
}

.brand-mark {
  display: none;
}

.brand-name {
  font-family: var(--font-title);
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-1);
}

.nav-links ul {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--grad-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  text-transform: uppercase;
  margin: 12px 0 18px;
  line-height: 1.05;
  color: var(--text-0);
  text-shadow: 0 0 40px rgba(212, 168, 67, 0.2);
}

.hero p {
  color: var(--text-1);
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-panel {
  background: var(--glass-strong);
  padding: 34px;
  border-radius: var(--radius-lg);
  border: var(--border-strong);
  box-shadow: var(--shadow);
}

.hero-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-panel li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--text-1);
}

.hero-panel li span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad-gold);
}

.gear-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gear {
  position: absolute;
  opacity: 0.3;
  filter: drop-shadow(0 0 12px rgba(212, 168, 67, 0.3));
  animation: spin 22s linear infinite;
}

.gear.large {
  width: 220px;
  height: 220px;
  top: -40px;
  left: -40px;
}

.gear.medium {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 10%;
  animation-duration: 18s;
}

.gear.small {
  width: 90px;
  height: 90px;
  top: 25%;
  right: 35%;
  animation-duration: 14s;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

.service-card h3,
.cards-grid h3 {
  margin-top: 10px;
  font-size: 1.2rem;
  color: var(--brass-1);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 168, 67, 0.2);
  display: grid;
  place-items: center;
  color: var(--brass-1);
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

.pricing-card {
  border: var(--border-strong);
  border-radius: var(--radius-md);
  padding: 28px;
  background: rgba(18, 14, 10, 0.7);
}

.pricing-card h3 {
  margin-top: 0;
  color: var(--brass-1);
}

.pricing-card ul {
  padding-left: 18px;
  color: var(--text-1);
}

.workflow {
  display: grid;
  gap: 24px;
}

.workflow-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.workflow-card {
  border-radius: var(--radius-md);
  padding: 24px;
  background: rgba(20, 15, 12, 0.8);
  border: var(--border);
  position: relative;
  overflow: hidden;
}

.workflow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(212, 168, 67, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.workflow-label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}

.workflow-connector {
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 168, 67, 0.2), rgba(232, 200, 114, 0.6), rgba(212, 168, 67, 0.2));
  position: relative;
  margin: 16px 0;
}

.workflow-connector::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--brass-1);
}

.testimonial {
  position: relative;
  border: var(--border);
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(15, 12, 9, 0.7);
}

.testimonial strong {
  display: block;
  color: var(--brass-1);
  margin-top: 12px;
}

.cta-banner {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, rgba(212, 168, 67, 0.3), rgba(184, 115, 51, 0.2));
  border: 1px solid rgba(232, 200, 114, 0.4);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer {
  background: #0b0b12;
  border-top: 1px solid rgba(212, 168, 67, 0.2);
  padding: 50px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  color: var(--text-2);
}

.footer .brand-name {
  font-size: 1.1rem;
}

.page-hero {
  padding: 90px 0 60px;
  background: radial-gradient(circle at 20% 20%, rgba(212, 168, 67, 0.12), transparent 60%);
}

.page-hero h1 {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.contact-card {
  background: rgba(18, 14, 11, 0.8);
  padding: 26px;
  border-radius: var(--radius-md);
  border: var(--border);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232, 200, 114, 0.35);
  background: rgba(12, 10, 8, 0.8);
  color: var(--text-0);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.workflow-visual {
  display: grid;
  gap: 18px;
}

.workflow-lane {
  background: rgba(13, 10, 8, 0.8);
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(232, 200, 114, 0.25);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.workflow-step {
  background: rgba(212, 168, 67, 0.08);
  border: 1px dashed rgba(212, 168, 67, 0.35);
  padding: 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text-1);
  position: relative;
}

.workflow-step::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 8px;
  height: 2px;
  background: rgba(232, 200, 114, 0.6);
}

.workflow-step:last-child::after {
  display: none;
}

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

  .hero {
    padding-top: 100px;
  }

  .hero-panel {
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Services page spectacle */
.services-page {
  position: relative;
  overflow: hidden;
}

.services-page .section {
  position: relative;
  z-index: 2;
}

.services-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.services-ambient .particle {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: conic-gradient(from 45deg, #d4a843, #b87333, #e8c872, #d4a843);
  box-shadow: 0 0 18px rgba(212, 168, 67, 0.25);
  opacity: 0.45;
  animation: float-gear 22s linear infinite;
}

.services-ambient .particle::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #1a1208;
}

.services-ambient .p1 { left: 8%; bottom: -10%; animation-delay: 0s; }
.services-ambient .p2 { left: 18%; bottom: -30%; animation-delay: -6s; transform: scale(0.7); }
.services-ambient .p3 { left: 38%; bottom: -20%; animation-delay: -12s; transform: scale(1.2); }
.services-ambient .p4 { left: 55%; bottom: -15%; animation-delay: -9s; transform: scale(0.9); }
.services-ambient .p5 { left: 68%; bottom: -25%; animation-delay: -14s; transform: scale(0.6); }
.services-ambient .p6 { left: 78%; bottom: -12%; animation-delay: -3s; transform: scale(1.1); }
.services-ambient .p7 { left: 88%; bottom: -18%; animation-delay: -10s; transform: scale(0.8); }
.services-ambient .p8 { left: 28%; bottom: -35%; animation-delay: -18s; transform: scale(0.5); }

@keyframes float-gear {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.45; }
  100% { transform: translateY(-140vh) rotate(360deg); opacity: 0; }
}

.gear-divider {
  display: flex;
  justify-content: center;
  margin: 24px 0 50px;
}

.gear-divider svg {
  width: min(340px, 70vw);
  height: auto;
  filter: drop-shadow(0 0 12px rgba(212, 168, 67, 0.35));
}

.divider-gear {
  transform-box: fill-box;
  transform-origin: center;
  animation: gear-spin 10s linear infinite;
}

.divider-gear.gear-b {
  animation-direction: reverse;
  animation-duration: 12s;
}

.divider-gear.gear-c {
  animation-duration: 8s;
}

@keyframes gear-spin {
  to { transform: rotate(360deg); }
}

.services-page .service-card {
  border: 1px solid rgba(212, 168, 67, 0.2);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: border 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  background: linear-gradient(140deg, rgba(22, 16, 12, 0.9), rgba(12, 10, 8, 0.8));
}

.services-page .service-card::after {
  z-index: 0;
}

.services-page .service-card:hover {
  border-color: rgba(232, 200, 114, 0.7);
  box-shadow: 0 18px 40px rgba(212, 168, 67, 0.3);
  transform: translateY(-4px);
}

.services-page .service-card .service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 30%, rgba(232, 200, 114, 0.9), rgba(184, 115, 51, 0.7));
  border: 1px solid rgba(232, 200, 114, 0.6);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(212, 168, 67, 0.2);
  position: relative;
  z-index: 2;
}

.services-page .service-card .service-icon svg {
  width: 38px;
  height: 38px;
}

.service-panel {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(212, 168, 67, 0.25), rgba(184, 115, 51, 0.2));
  transform: translateX(-102%);
  transition: transform 0.5s ease;
  z-index: 1;
}

.service-card:hover .service-panel {
  transform: translateX(0);
}

.service-steam {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 140px;
  height: 140px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.service-steam::before,
.service-steam::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(232, 200, 114, 0.35), transparent 60%);
  animation: steam-rise 2.6s ease-in-out infinite;
  opacity: 0.6;
}

.service-steam::after {
  animation-delay: -1.2s;
  transform: scale(0.7);
}

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

@keyframes steam-rise {
  0% { transform: translateY(30px) scale(0.6); opacity: 0; }
  40% { opacity: 0.6; }
  100% { transform: translateY(-40px) scale(1.1); opacity: 0; }
}

.services-page .service-card h3,
.services-page .service-card p {
  position: relative;
  z-index: 2;
}

.counters-section {
  background: radial-gradient(circle at 20% 20%, rgba(212, 168, 67, 0.15), transparent 60%);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 46px auto 0;
  padding: 0 12px;
  justify-content: center;
}

.stat-card {
  position: relative;
  padding: 30px 22px 26px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(20, 14, 10, 0.9), rgba(10, 8, 6, 0.95));
  border: 1px solid rgba(212, 168, 67, 0.35);
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.stat-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle at 30% 30%, rgba(248, 226, 160, 0.5), rgba(34, 22, 12, 0.9) 65%);
  border: 2px solid #d4a843;
  box-shadow: inset 0 0 20px rgba(212, 168, 67, 0.35), 0 0 24px rgba(212, 168, 67, 0.25);
}

.stat-ring::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(212, 168, 67, 0.35);
  box-shadow: 0 0 18px rgba(212, 168, 67, 0.2);
}

.stat-ring::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(120, 80, 30, 0.7);
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.6);
}

.stat-label {
  color: var(--text-1);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
}

.stat-number {
  font-family: var(--font-title);
  font-size: clamp(3rem, 4vw, 3.6rem);
  color: #d4a843;
  font-weight: 700;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 22px rgba(232, 200, 114, 0.55);
}

.stat-number span {
  display: inline-block;
}

@property --count {
  syntax: "<integer>";
  inherits: false;
  initial-value: 0;
}

.stat-500 { --to: 500; --suffix: "+"; }
.stat-10m { --to: 10; --suffix: "M+"; }
.stat-uptime { --to: 99; --suffix: ".9%"; }
.stat-247 { --to: 24; --suffix: "/7"; }

@supports (animation-timeline: view()) {
  .stat-number span {
    opacity: 0;
  }

  .stat-number::after {
    counter-reset: num var(--count);
    content: counter(num) var(--suffix);
  }

  .stat-card {
    animation: gauge-glow 1.2s ease-out both;
    animation-timeline: view();
    animation-range: entry 15% cover 35%;
  }

  .stat-card .stat-number {
    animation: count-up 2.6s steps(40, end) both;
    animation-timeline: view();
    animation-range: entry 10% cover 40%;
  }
}

@keyframes count-up {
  from { --count: 0; }
  to { --count: var(--to); }
}

@keyframes gauge-glow {
  from { box-shadow: 0 0 0 rgba(212, 168, 67, 0); }
  to { box-shadow: 0 0 30px rgba(212, 168, 67, 0.3); }
}

.mega-cta {
  padding-top: 100px;
  padding-bottom: 120px;
}

.mega-cta-inner {
  position: relative;
  border-radius: 30px;
  border: 1px solid rgba(232, 200, 114, 0.4);
  background: linear-gradient(120deg, rgba(18, 12, 8, 0.9), rgba(24, 16, 10, 0.9));
  padding: 60px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.mega-cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.mega-cta h2 {
  font-family: var(--font-title);
  text-transform: uppercase;
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin: 16px 0;
  color: var(--brass-1);
}

.mega-cta p {
  color: var(--text-1);
  margin-bottom: 28px;
}

.mega-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.mega-hire {
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  padding: 16px 34px;
  border-radius: 14px;
  text-transform: uppercase;
  background: linear-gradient(120deg, #d4a843, #b87333, #f0d28c);
  border: 1px solid rgba(232, 200, 114, 0.8);
  box-shadow: 0 16px 30px rgba(212, 168, 67, 0.35);
}

.mega-hire:active {
  transform: translateY(3px) scale(0.98);
  box-shadow: 0 10px 18px rgba(212, 168, 67, 0.3);
}

.cta-phone {
  font-family: var(--font-title);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--brass-1);
}

.cta-energy {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.25) 0, rgba(212, 168, 67, 0) 60%);
  animation: energy-pulse 3.2s ease-in-out infinite;
  z-index: 0;
}

.cta-energy::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 2px solid rgba(232, 200, 114, 0.35);
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.35);
  animation: ring-pulse 2.8s ease-in-out infinite;
}

@keyframes energy-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(0.85); opacity: 0.4; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-gears {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.cta-gear {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(from 45deg, #d4a843, #b87333, #e8c872, #d4a843);
  opacity: 0.25;
  animation: gear-float 14s linear infinite;
}

.cta-gear::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #1a1208;
}

.cta-gear.g1 { top: 10%; left: 8%; animation-duration: 16s; }
.cta-gear.g2 { bottom: 15%; right: 12%; animation-duration: 20s; }
.cta-gear.g3 { top: 25%; right: 20%; animation-duration: 18s; }
.cta-gear.g4 { bottom: 20%; left: 30%; animation-duration: 22s; }

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

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

  .mega-cta-inner {
    padding: 40px;
  }
}

@media (max-width: 600px) {
  .counters-section {
    padding: 60px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .mega-cta-inner {
    padding: 32px;
  }

  .mega-cta-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Floating Airship — left to right, smaller */
.airship-float {
  position: fixed;
  top: 100px;
  left: -250px;
  width: 220px;
  z-index: 1;
  pointer-events: none;
  animation: airship-drift 25s linear infinite;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.5)) drop-shadow(0 0 12px rgba(212,168,67,0.15));
  opacity: 0.8;
}

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

@keyframes airship-drift {
  0%   { transform: translateX(0) translateY(0); }
  50%  { transform: translateX(calc(100vw + 250px)) translateY(15px); }
  50.01% { transform: translateX(0) translateY(0); opacity: 0; }
  51%  { opacity: 0.8; transform: translateX(0) translateY(0); }
  100% { transform: translateX(calc(100vw + 250px)) translateY(10px); }
}

@media (max-width: 768px) {
  .airship-float {
    width: 150px;
    top: 70px;
    opacity: 0.6;
  }
}
