/* =========================================
   THE AUTO SKUS GROUP — Global Styles
   Bold & Industrial / Dark Palette
   ========================================= */

:root {
  --bg: #0e0e10;
  --bg-alt: #17171a;
  --bg-card: #1c1c20;
  --ink: #f4f4f5;
  --ink-dim: #a1a1aa;
  --ink-muted: #71717a;
  --accent: #ff5a1f;
  --accent-hover: #ff7846;
  --line: #2a2a2f;
  --radius: 4px;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg); color: var(--ink);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* LAYOUT */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }

/* ——— NAV ——— */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14,14,16,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.logo { display: inline-flex; align-items: center; text-decoration: none; height: 36px; }
.logo svg { height: 36px; width: auto; display: block; }
.logo:hover { opacity: 0.92; }
/* Footer mark (full primary lockup) */
.footer-logo svg { height: 64px; width: auto; display: block; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  color: var(--ink-dim); font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  background: var(--accent); color: #fff; padding: 10px 20px;
  border-radius: var(--radius); font-weight: 600; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.05em; transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-hover); }

/* MOBILE NAV */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  margin: 5px 0; transition: 0.3s;
}

/* ——— BUTTONS ——— */
.btn-primary, .btn-secondary {
  padding: 16px 28px; border-radius: var(--radius); font-weight: 600;
  font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em;
  display: inline-flex; align-items: center; gap: 10px; transition: all 0.2s;
  border: none; cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-secondary { border: 1px solid var(--line); color: var(--ink); background: transparent; }
.btn-secondary:hover { border-color: var(--ink); }

/* ——— EYEBROW ——— */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 28px; font-weight: 600;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--accent); }

/* ——— SECTION HEADERS ——— */
.section-eyebrow {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 16px;
}
.section-header { max-width: 720px; margin-bottom: 60px; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
h2.section-title {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.02em;
}
h2.section-title + .section-desc { margin-top: 20px; font-size: 18px; color: var(--ink-dim); }

/* ——— PAGE HERO ——— */
.page-hero {
  padding: 100px 0 80px;
  background:
    radial-gradient(ellipse at top right, rgba(255,90,31,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.page-hero::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: 48px 48px; pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero .lead { font-size: 19px; color: var(--ink-dim); max-width: 620px; }

/* ——— TRUSTED BAR ——— */
.trusted { padding: 60px 0; border-bottom: 1px solid var(--line); }
.trusted-label {
  text-align: center; font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-dim); margin-bottom: 28px;
}
.trusted-logos {
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 40px;
  align-items: center;
}
.trusted-logos div {
  color: var(--ink-dim); font-weight: 700; font-size: 20px;
  letter-spacing: 0.05em; opacity: 0.6;
}

/* ——— GRID CARDS ——— */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.card {
  background: var(--bg-alt); padding: 40px 32px; transition: background 0.2s;
}
.card:hover { background: var(--bg); }
.card-num {
  font-size: 12px; letter-spacing: 0.2em; color: var(--accent);
  font-weight: 700; margin-bottom: 20px;
}
.card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.card p { color: var(--ink-dim); font-size: 15px; }

/* ——— BORDERED CARDS ——— */
.bordered-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.bordered-card {
  border: 1px solid var(--line); padding: 32px 28px;
  border-radius: var(--radius); transition: all 0.2s;
}
.bordered-card:hover { border-color: var(--accent); }
.bordered-card .tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.15em; color: var(--accent); margin-bottom: 16px;
}
.bordered-card h3 { font-size: 20px; margin-bottom: 8px; }
.bordered-card p { color: var(--ink-dim); font-size: 14px; }

/* ——— STANDARD SECTIONS ——— */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ——— FINAL CTA ——— */
.final-cta {
  padding: 120px 0; text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(255,90,31,0.15), transparent 70%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.final-cta h2 { max-width: 800px; margin: 0 auto 24px; }
.final-cta p { max-width: 560px; margin: 0 auto 40px; font-size: 18px; color: var(--ink-dim); }

/* ——— FORMS ——— */
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--ink-dim); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius); color: var(--ink);
  font-size: 15px; font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ——— FOOTER ——— */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0; color: var(--ink-dim); font-size: 13px;
}
.footer-inner {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--ink-dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--ink); }

/* ——— RESPONSIVE ——— */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .section { padding: 60px 0; }
  .page-hero { padding: 60px 0 50px; }
  .form-row { grid-template-columns: 1fr; }
  .final-cta { padding: 80px 0; }
}
