     :root {
      --bg: #0f172a;
      --bg-alt: #020617;
      --accent: #e11d48;
      --accent-soft: #f97373;
      --text-main: #0f172a;
      --text-muted: #64748b;
      --card-bg: #ffffff;
      --border-soft: #e2e8f0;
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      margin: 0;
      padding: 0;
      background: linear-gradient(135deg, #020617 0%, #0f172a 40%, #111827 100%);
      color: var(--text-main);
    }

    header {
      background: radial-gradient(circle at top left, #1e293b 0%, #020617 60%);
      color: #f9fafb;
      border-bottom: 1px solid rgba(148, 163, 184, 0.4);
    }

    .header-inner {
      max-width: 1000px;
      margin: 0 auto;
      padding: 18px 20px 14px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    header h1 {
      margin: 0;
      font-size: 1.6rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      font-weight: 700;
      display: flex;
      align-items: baseline;
      gap: 0.35em;
    }

    header h1 span {
      font-size: 0.8rem;
      font-weight: 500;
      opacity: 0.9;
    }

    nav {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    nav a {
      color: #e5e7eb;
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      padding: 6px 10px;
      border-radius: 999px;
      border: 1px solid transparent;
      transition: background 0.2s ease, color 0.2s ease, border 0.2s ease, transform 0.1s ease;
    }

    nav a:hover,
    nav a:focus-visible {
      background: rgba(248, 250, 252, 0.08);
      border-color: rgba(248, 250, 252, 0.3);
      transform: translateY(-1px);
    }

    /* Base nav link styles – already present */
	nav a {
	  color: #e5e7eb;
	  text-decoration: none;
	  font-weight: 600;
	  font-size: 0.95rem;
	  padding: 6px 10px;
	  border-radius: 999px;
	  border: 1px solid transparent;
	  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease, transform 0.1s ease;
	}

	/* Currently active page link */
	nav a.current {
	  background: #f9fafb;
	  color: #0f172a;
	  border-color: rgba(248, 250, 252, 0.9);
	}

    main {
      max-width: 1000px;
      margin: 26px auto 26px;
      padding: 0 16px 40px;
    }

    .layout-grid {
      display: grid;
      grid-template-columns: minmax(0, 2fr) minmax(0, 1.1fr);
      gap: 22px;
      align-items: flex-start;
    }

    @media (max-width: 800px) {
      .layout-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .card {
      background: var(--card-bg);
      border-radius: 12px;
      border: 1px solid var(--border-soft);
      box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.45),
        0 0 0 1px rgba(15, 23, 42, 0.4);
      padding: 18px 20px 20px;
    }

    .card-secondary {
      background: #020617;
      border-radius: 12px;
      border: 1px solid rgba(148, 163, 184, 0.4);
      box-shadow:
        0 16px 30px rgba(15, 23, 42, 0.7),
        0 0 0 1px rgba(15, 23, 42, 0.7);
      padding: 18px 20px 20px;
      color: #e5e7eb;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 9px;
      border-radius: 999px;
      background: rgba(248, 250, 252, 0.9);
      color: #0f172a;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 0.7rem;
      font-weight: 700;
      border: 1px solid var(--border-soft);
      margin-bottom: 12px;
    }

    .hero-badge span {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.45);
    }

    .hero-heading {
      margin: 0 0 6px;
      font-size: 1.65rem;
      letter-spacing: 0.03em;
    }

    .hero-subheading {
      margin: 0 0 14px;
      font-size: 0.98rem;
      line-height: 1.7;
      color: var(--text-muted);
    }

    .hero-highlight {
      display: inline-block;
      margin-top: 4px;
      padding: 5px 9px;
      border-radius: 999px;
      background: rgba(248, 250, 252, 0.95);
      border: 1px solid var(--border-soft);
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 600;
      color: var(--text-main);
    }

    h2, h3 {
      margin-top: 0;
      color: #0f172a;
    }

    .card-secondary h3 {
      color: #f9fafb;
      margin-bottom: 10px;
    }

    p {
      margin-top: 0;
      margin-bottom: 10px;
      line-height: 1.7;
      font-size: 0.97rem;
      color: var(--text-main);
    }

    .card-secondary p {
      color: #e5e7eb;
      margin-bottom: 12px;
      font-size: 0.95rem;
    }

    ul {
      margin: 0;
      padding-left: 18px;
    }

    li {
      margin-bottom: 5px;
      font-size: 0.95rem;
      color: var(--text-main);
    }

    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 8px;
    }

    .tag {
      font-size: 0.76rem;
      padding: 3px 8px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      color: var(--text-muted);
      background: rgba(248, 250, 252, 0.9);
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .btn-primary,
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 0.92rem;
      font-weight: 600;
      text-decoration: none;
      cursor: pointer;
      border: 1px solid transparent;
      transition: background 0.18s ease, color 0.18s ease, border 0.18s ease, transform 0.1s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, #f97316, #dc2626);
      color: #f9fafb;
      border-color: rgba(248, 250, 252, 0.2);
      box-shadow: 0 10px 22px rgba(248, 113, 113, 0.45);
    }

    .btn-primary:hover,
    .btn-primary:focus-visible {
      background: linear-gradient(135deg, #fb923c, #ef4444);
      transform: translateY(-1px);
    }

    .btn-secondary {
      background: transparent;
      color: var(--accent-soft);
      border-color: rgba(248, 250, 252, 0.5);
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      background: rgba(15, 23, 42, 0.3);
      transform: translateY(-1px);
    }

    .contact-item {
      margin-bottom: 6px;
      font-size: 0.94rem;
    }

    .contact-item strong {
      font-weight: 600;
    }

    a {
      color: var(--accent-soft);
    }

    a:hover {
      text-decoration: underline;
    }

    footer {
      border-top: 1px solid rgba(148, 163, 184, 0.5);
      background: var(--bg-alt);
      color: #9ca3af;
    }

    .footer-inner {
      max-width: 1000px;
      margin: 0 auto;
      padding: 12px 16px 18px;
      font-size: 0.85rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 10px;
    }

    .footer-col {
      min-width: 220px;
    }

    .footer-heading {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #e5e7eb;
      margin-bottom: 4px;
    }

    .footer-address {
      font-style: normal;
      line-height: 1.6;
    }

	.footer-bottom {
		text-align: right;
		flex: 1;
		align-self: flex-end;
		font-size: 0.8rem;
		color: #f9fafb;  /* Keep for spans */
		font-weight: 500;
	}

	.footer-bottom p {
		color: #9ca3af !important;  /* Force override */
	}

	.footer-bottom a {
		color: #e5e7eb !important;  /* Force link color */
	}


    .footer-bottom span {
      opacity: 0.8;
    }
	
	.parts-table {
	  width: 100%;
	  border-collapse: collapse;
	  margin-top: 10px;
	  font-size: 0.9rem;
	}

	/* Outer border around the whole table */
	.parts-table {
	  border: 1px solid #cbd5f5;
	}

	/* Grid lines between cells */
	.parts-table th,
	.parts-table td {
	  border: 1px solid #cbd5f5;
	  padding: 6px 8px;
	}

	/* Header row styling */
	.parts-table thead th {
	  background: #0f172a;
	  color: #f9fafb;
	  text-align: left;
	}
	
	.customer-form {
  margin-top: 20px;
  padding: 20px;
  background: rgba(248,250,252,0.5);
  border-radius: 8px;
  border: 1px solid var(--border-soft);
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.form-row label {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.9rem;
}

.customer-form input,
.customer-form textarea {
  margin-top: 4px;
  padding: 8px 12px;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  font-size: 0.95rem;
}

.customer-form input:focus,
.customer-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249,115,115,0.1);
}

.consent {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 12px 0;
}

.customer-form h3 {
  margin: 0 0 16px;
  color: var(--text-main);
  font-size: 1.1rem;
}
