/* ============================================================
   PreciseForce Technologies Incorporated — styles.css
   Brand: PANTONE 2925 C (#009CDE) / PANTONE Cool Gray 10 C (#63666A)
   Type:  Jost (free Avant Garde alternative), Century Gothic fallback
   ============================================================ */

:root {
  --blue: #009cde;
  --blue-dark: #0077ad;
  --blue-tint: #e5f5fc;
  --gray: #63666a;
  --gray-light: #9a9da1;
  --ink: #2b2e31;
  --bg: #ffffff;
  --bg-alt: #f4f7f9;
  --line: #e2e6e9;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(43, 46, 49, 0.08);
  --font: "Jost", "Century Gothic", "Avant Garde", "Trebuchet MS", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

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

section { padding: 84px 0; }

h1, h2, h3 { line-height: 1.2; font-weight: 600; letter-spacing: 0.01em; }

h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 0.5rem; }

.section-intro {
  max-width: 640px;
  color: var(--gray);
  margin-bottom: 3rem;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  font-family: inherit;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-ghost { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn-ghost:hover { background: var(--blue-tint); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand img { display: block; width: 197px; height: auto; }

.site-nav { display: flex; align-items: center; gap: 1.9rem; }

.site-nav a {
  text-decoration: none;
  color: var(--gray);
  font-weight: 500;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--blue); }

.site-nav .btn { padding: 0.55rem 1.4rem; color: #fff; }
.site-nav .btn:hover { color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--gray);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background: linear-gradient(180deg, #fbfdfe 0%, #eef6fa 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  margin-bottom: 1.2rem;
}
.hero h1 .accent { color: var(--blue); }

.hero p.lead {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 2.2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.6rem;
}
.hero-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

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

.hero-art { text-align: center; }
.hero-art svg { width: min(420px, 100%); height: auto; }

/* ---------- Stats bar ---------- */
.stats {
  padding: 0;
  background: var(--bg);
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transform: translateY(-52px);
  box-shadow: var(--shadow);
}
.stat {
  background: #fff;
  text-align: center;
  padding: 1.7rem 1rem;
}
.stat .num {
  font-size: 2rem;
  font-weight: 600;
  color: var(--blue);
  display: block;
  line-height: 1.1;
}
.stat .label {
  color: var(--gray);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- About ---------- */
.about { padding-top: 20px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-copy p { margin-bottom: 1.1rem; color: #3d4145; }

.about-points { list-style: none; margin-top: 1.4rem; }
.about-points li {
  padding-left: 1.9rem;
  position: relative;
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.95em;
  height: 0.95em;
  border-radius: 50%;
  background: var(--blue-tint);
  border: 2px solid var(--blue);
}

/* Image placeholder (replace with real photography) */
.img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 380px;
  border: 2px dashed var(--gray-light);
  border-radius: var(--radius);
  background: repeating-linear-gradient(
    45deg, #f6f8fa, #f6f8fa 14px, #eef1f4 14px, #eef1f4 28px);
  color: var(--gray);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.95rem;
}
.img-placeholder strong { color: var(--ink); letter-spacing: 0.05em; }

/* ---------- Services ---------- */
.services { background: var(--bg-alt); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.card .icon svg { width: 28px; height: 28px; stroke: var(--blue); }
.card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.card p { color: var(--gray); font-size: 0.97rem; }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.8rem 1.4rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--blue);
  opacity: 0.35;
  margin-bottom: 0.4rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.step p { color: var(--gray); font-size: 0.95rem; }

/* ---------- Why ---------- */
.why { background: var(--gray); color: #fff; }
.why .eyebrow { color: #8ed8f5; }
.why h2 { color: #fff; }
.why .section-intro { color: #d3d5d8; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.why-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.7rem;
}
.why-item h3 { color: #8ed8f5; font-size: 1.1rem; margin-bottom: 0.4rem; }
.why-item p { color: #d3d5d8; font-size: 0.97rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-side p { color: var(--gray); margin-bottom: 1.4rem; }
.contact-side .promise {
  border-left: 4px solid var(--blue);
  background: var(--blue-tint);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.3rem;
  font-weight: 500;
  color: var(--ink);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-weight: 500;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}
.field .req { color: var(--blue); }
.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fbfcfd;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 156, 222, 0.15);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 140px; }

/* Honeypot — hidden from humans, bots fill it in */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-note { font-size: 0.85rem; color: var(--gray-light); margin-top: 0.9rem; }

.form-status {
  display: none;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.form-status.show { display: block; }
.form-status.ok { background: #e7f6ec; color: #1e7c3d; border: 1px solid #bfe5cc; }
.form-status.err { background: #fdeeee; color: #b3372f; border: 1px solid #f2c9c6; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #b9bcbf;
  padding: 2.6rem 0;
  font-size: 0.93rem;
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-brand { font-weight: 600; color: #fff; letter-spacing: 0.03em; }
.footer-brand .f-blue { color: var(--blue); }
.site-footer a { color: #d3d5d8; text-decoration: none; }
.site-footer a:hover { color: var(--blue); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  section { padding: 64px 0; }
  .hero { padding: 70px 0 90px; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art svg { width: min(280px, 70%); }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .stats .container { grid-template-columns: 1fr; transform: translateY(-36px); }

  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 1.2rem 0 1.6rem;
    gap: 1.1rem;
    display: none;
  }
  .site-nav.open { display: flex; }
}

@media (max-width: 560px) {
  .card-grid, .process-grid, .why-grid, .form-row { grid-template-columns: 1fr; }
  .brand img { width: 165px; }
  .contact-form { padding: 1.5rem; }
}
