/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #0D0D0D;
  --red:     #C1272D;
  --red-dk:  #8B0000;
  --white:   #FFFFFF;
  --gray-lt: #F5F5F5;
  --gray-md: #888888;
  --gray-dk: #2A2A2A;
  --gray-bd: #1A1A1A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Calibri', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ── Utility ──────────────────────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
.text-red   { color: var(--red); }
.text-white { color: var(--white); }
.text-gray  { color: var(--gray-md); }
.bg-black   { background: var(--black); }
.bg-gray    { background: var(--gray-lt); }

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dk);
  border-color: var(--red-dk);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Navigation ───────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 2px solid var(--red);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--red); }

.nav-cta .btn { padding: 0.6rem 1.4rem; font-size: 0.8rem; }

/* Mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193,39,45,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.hero-content { max-width: 720px; }

.hero-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(193,39,45,0.4);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 span { color: var(--red); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-md);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-badges {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  flex-direction: column;
}

.hero-badge-label {
  font-size: 0.75rem;
  color: var(--gray-md);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Montserrat', sans-serif;
}

.hero-badge-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 600;
  margin-top: 0.2rem;
}

/* ── Section Shared ───────────────────────────────────────────────────────── */
section { padding: 90px 0; }

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-md);
  max-width: 580px;
  line-height: 1.75;
}

/* ── Services ─────────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid #E8E8E8;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.service-card p {
  color: var(--gray-md);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-list li {
  font-size: 0.88rem;
  color: var(--gray-dk);
  padding-left: 1rem;
  position: relative;
}

.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
}

/* ── Why IP ───────────────────────────────────────────────────────────────── */
.why-ip {
  background: var(--black);
  position: relative;
}

.why-ip::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.why-item { text-align: center; }

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.why-item h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--gray-md);
  line-height: 1.7;
}

/* ── Kaizen Banner ────────────────────────────────────────────────────────── */
.kaizen-banner {
  background: var(--red);
  padding: 60px 0;
  text-align: center;
}

.kaizen-banner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.kaizen-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ── Contact ──────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3.5rem;
  align-items: start;
}

.contact-info { }

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.contact-info p {
  color: var(--gray-md);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--gray-dk);
}

.contact-detail span:first-child { font-size: 1.2rem; }

.contact-form { background: var(--gray-lt); padding: 2.5rem; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-dk);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #D8D8D8;
  background: var(--white);
  font-family: 'Inter', 'Calibri', sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--red); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { width: 100%; padding: 1rem; margin-top: 0.5rem; }

/* ── About Page ───────────────────────────────────────────────────────────── */
.about-hero {
  background: var(--black);
  padding: 140px 0 80px;
  position: relative;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  padding: 2rem;
  border-top: 3px solid var(--red);
  background: var(--gray-lt);
}

.value-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  color: var(--black);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray-md);
  line-height: 1.65;
}

/* ── Services Page ────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.pricing-card {
  border: 1px solid #E0E0E0;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.25s;
}

.pricing-card.featured {
  border-color: var(--red);
  border-width: 2px;
}

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--gray-md); }

.pricing-desc {
  font-size: 0.88rem;
  color: var(--gray-md);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E8E8E8;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--gray-dk);
  padding-left: 1.25rem;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 3px solid var(--red);
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img { height: 36px; margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray-md);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--gray-md);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--gray-md);
}

.footer-bottom .veteran {
  font-size: 0.82rem;
  color: var(--red);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.05em;
}

/* ── Page Hero (inner pages) ──────────────────────────────────────────────── */
.page-hero {
  background: var(--black);
  padding: 130px 0 70px;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}

.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.8rem); }
.page-hero p  { color: var(--gray-md); font-size: 1.05rem; margin-top: 1rem; max-width: 560px; line-height: 1.75; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--black);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-btns    { flex-direction: column; }
  .hero-badges  { gap: 1.25rem; }
}
