/* Automotion — Bold dark theme with electric orange */

:root {
  --bg: #0A0A0F;
  --surface: #13131A;
  --surface2: #1A1A24;
  --border: #2A2A38;
  --text: #F4F4F6;
  --text-muted: #8888A0;
  --accent: #FF4D00;
  --accent-dim: rgba(255,77,0,0.12);
  --accent-glow: rgba(255,77,0,0.25);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* — NAV — */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,15,0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* — HERO — */
.hero {
  padding: 80px 40px 100px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(255,77,0,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-headline br { display: none; }
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-visual {
  display: flex;
  align-items: center;
  gap: 0;
}
.visual-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  flex: 1;
}
.vc-1 { border-right: none; border-top-right-radius: 0; border-bottom-right-radius: 0; }
.vc-2 { border-left: none; border-top-left-radius: 0; border-bottom-left-radius: 0; }
.visual-divider { display: flex; align-items: center; padding: 0 2px; }
.vc-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 14px;
}
.vc-items { display: flex; flex-wrap: wrap; gap: 8px; }
.vc-tag {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

/* — PROBLEM — */
.problem {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.problem-inner { max-width: 1100px; margin: 0 auto; }
.problem-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 48px;
  color: var(--text);
}
.problem-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  margin-bottom: 48px;
  align-items: start;
}
.stat { padding: 0 32px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 220px;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}
.problem-closing {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.7;
}

/* — SERVICES — */
.services { padding: 90px 40px; max-width: 1100px; margin: 0 auto; }
.services-header { margin-bottom: 56px; }
.services-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 12px;
}
.services-sub { font-size: 16px; color: var(--text-muted); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}
.service-card {
  background: var(--surface);
  padding: 40px;
}
.service-card-right { background: var(--surface2); }
.sc-icon { margin-bottom: 20px; }
.sc-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text);
  margin-bottom: 12px;
}
.sc-desc { font-size: 15px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.sc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sc-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.sc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.services-cta {
  text-align: center;
}
.cta-line {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.3px;
}

/* — INDUSTRIES — */
.industries {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 40px;
}
.industries-inner { max-width: 1100px; margin: 0 auto; }
.ind-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 12px;
}
.ind-sub { font-size: 16px; color: var(--text-muted); margin-bottom: 48px; }
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ind-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.ind-icon { color: var(--accent); flex-shrink: 0; }

/* — CLOSING — */
.closing {
  padding: 90px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.closing-inner {
  display: grid;
  grid-template-columns: 1fr 1px 1.4fr;
  gap: 60px;
  align-items: center;
}
.cs-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 10px;
}
.cs-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cs-sub { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.closing-divider { background: var(--border); height: 140px; width: 1px; }
.cv-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
}
.cv-sub { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* — FOOTER — */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.footer-tagline { font-size: 13px; color: var(--text-muted); }
.footer-copy { font-size: 13px; color: var(--text-muted); margin-left: auto; }

/* — RESPONSIVE — */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px 70px; }
  .hero-visual { flex-direction: column; }
  .vc-1 { border-right: 1px solid var(--border); border-radius: 16px; }
  .vc-2 { border-left: 1px solid var(--border); border-radius: 16px; }
  .visual-divider { display: none; }
  .problem-stats { grid-template-columns: 1fr; gap: 32px; }
  .stat-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .closing-inner { grid-template-columns: 1fr; gap: 40px; }
  .closing-divider { display: none; }
  .footer-inner { flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 38px; }
  .hero-headline br { display: block; }
  .ind-grid { grid-template-columns: 1fr; }
  .services, .industries, .closing { padding: 60px 24px; }
  .problem { padding: 60px 24px; }
  .footer { padding: 32px 24px; }
  .nav { padding: 16px 24px; }
}