/* =========================================================
   APEX CUT — Shared Stylesheet
   ========================================================= */

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

:root {
  --black: #0C0C0C;
  --black-mid: #141414;
  --black-card: #1A1A1A;
  --yellow: #FFD000;
  --yellow-dark: #E0B800;
  --yellow-dim: rgba(255, 208, 0, 0.08);
  --white: #F2F2F2;
  --grey: #888888;
  --grey-dark: #555555;
  --border: #2A2A2A;
  --danger: #FF3B30;
  --heading: 'Bebas Neue', 'Impact', sans-serif;
  --subheading: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --body: 'Barlow', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Accessibility: visible focus for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ===== HAZARD STRIPES ===== */
.hazard-stripe {
  height: 6px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0, var(--yellow) 10px, var(--black) 10px, var(--black) 20px);
}
.hazard-stripe-thin {
  height: 3px;
  background: repeating-linear-gradient(-45deg, var(--yellow) 0, var(--yellow) 8px, var(--black) 8px, var(--black) 16px);
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--yellow);
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
}
.logo img { height: 42px; width: auto; display: block; }
.logo-text {
  font-family: var(--heading);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}
.logo-text span { color: var(--yellow); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--grey);
  text-decoration: none;
  font-family: var(--subheading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 0.55rem 1.5rem !important;
  font-weight: 800 !important;
  transition: all 0.2s !important;
  clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%) !important;
}
.nav-cta:hover { background: var(--yellow-dark) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--yellow);
  transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--subheading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
}
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.btn-primary svg { stroke-width: 2.5; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--white);
  font-family: var(--subheading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--yellow); color: var(--yellow); }

/* ===== HERO (homepage) ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 70% at 80% 40%, rgba(255, 208, 0, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, var(--black) 0%, #111 100%);
}
.hero-lines {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.03;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px, var(--white) 40px, var(--white) 41px);
}
.hero .container { position: relative; z-index: 2; }
.hero-label {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--subheading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1.25rem;
  margin-bottom: 1.75rem;
  clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
  opacity: 0;
  animation: slideIn 0.5s ease forwards 0.2s;
}
.hero-logo {
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: slideIn 0.5s ease forwards 0.35s;
}
.hero-logo img {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
}
.hero h1 {
  font-family: var(--heading);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  max-width: 900px;
  opacity: 0;
  animation: slideIn 0.5s ease forwards 0.4s;
}
.hero h1 .yellow { color: var(--yellow); }
.hero-body {
  font-size: 1.15rem;
  color: var(--grey);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 500;
  opacity: 0;
  animation: slideIn 0.5s ease forwards 0.5s;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  opacity: 0;
  animation: slideIn 0.5s ease forwards 0.65s;
}
.hero-badges {
  display: flex;
  gap: 2rem;
  opacity: 0;
  animation: slideIn 0.5s ease forwards 0.8s;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: var(--black-card);
  border-left: 3px solid var(--yellow);
}
.hero-badge-label {
  font-family: var(--subheading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}
.hero-badge-name {
  font-family: var(--heading);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.hero-badge-desc {
  font-size: 0.8rem;
  color: var(--grey);
  font-weight: 500;
}

/* ===== PAGE HERO (subpages) ===== */
.page-hero {
  padding: 8rem 0 4rem;
  background: var(--black);
  position: relative;
}
.page-hero .hero-label {
  animation: none; opacity: 1;
}
.page-hero h1 {
  font-family: var(--heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.page-hero h1 .yellow { color: var(--yellow); }
.page-hero .lead {
  font-size: 1.15rem;
  color: var(--grey);
  max-width: 700px;
  line-height: 1.7;
  font-weight: 500;
}
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  font-family: var(--subheading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--grey); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--grey-dark); }
.breadcrumb .current { color: var(--yellow); }

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 1.5rem 0;
  background: var(--black-mid);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--subheading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}
.trust-item svg { width: 20px; height: 20px; stroke: var(--yellow); fill: none; stroke-width: 2; }

/* ===== SECTION STYLING ===== */
section { padding: 6rem 0; }
.section-label {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--subheading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  margin-bottom: 1.25rem;
  clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
}
.section-title {
  font-family: var(--heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.section-title .yellow { color: var(--yellow); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 600px;
  line-height: 1.7;
  font-weight: 500;
}
h2 {
  font-family: var(--heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
h2 .yellow { color: var(--yellow); }
h3 {
  font-family: var(--heading);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

/* ===== SERVICES GRID (homepage) ===== */
#services { background: var(--black); position: relative; }
.services-header { margin-bottom: 3.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--black-card);
  padding: 2.25rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  border-bottom-color: var(--yellow);
  background: #1E1E1E;
}
.service-card:hover .service-number { color: var(--yellow); }
.service-number {
  font-family: var(--heading);
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
.service-card h3 {
  font-family: var(--heading);
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.service-tag {
  padding: 0.3rem 0.65rem;
  background: rgba(255, 208, 0, 0.06);
  border: 1px solid var(--border);
  font-family: var(--subheading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--grey);
  text-transform: uppercase;
}

/* ===== EQUIPMENT ===== */
#equipment { background: var(--black-mid); }
.equip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 3.5rem;
}
.equip-feature {
  padding: 2.5rem;
  background: var(--black-card);
  border-left: 4px solid var(--yellow);
}
.equip-badge {
  display: inline-block;
  font-family: var(--subheading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.equip-feature h3 {
  font-family: var(--heading);
  font-size: 2.25rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.equip-feature p {
  color: var(--grey);
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.equip-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--border);
  margin-top: 0.5rem;
}
.equip-stat-value {
  font-family: var(--heading);
  font-size: 2.25rem;
  color: var(--yellow);
  line-height: 1;
}
.equip-stat-label {
  font-family: var(--subheading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.3rem;
}

/* ===== WHY APEX ===== */
#why { background: var(--black); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 3rem;
}
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.why-item:first-child { padding-top: 0; }
.why-marker {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}
.why-marker svg { width: 20px; height: 20px; stroke: var(--black); fill: none; stroke-width: 2.5; }
.why-item h4 {
  font-family: var(--subheading);
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}
.why-item p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
  font-weight: 500;
}

.why-cta-box {
  background: var(--black-card);
  border-left: 4px solid var(--yellow);
  padding: 2.5rem;
  position: sticky;
  top: 5rem;
}
.why-cta-box h3 {
  font-family: var(--heading);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.why-cta-box p {
  color: var(--grey);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--border);
}
.contact-detail:last-of-type { margin-bottom: 1.75rem; }
.contact-detail svg { width: 18px; height: 18px; stroke: var(--yellow); fill: none; stroke-width: 2; flex-shrink: 0; }
.contact-detail span { font-size: 0.95rem; font-weight: 600; }
.contact-detail a { color: var(--white); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.contact-detail a:hover { color: var(--yellow); }

/* ===== INDUSTRIES ===== */
#industries { background: var(--black-mid); }
.industries-flex {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.industry-pill {
  padding: 0.65rem 1.5rem;
  background: var(--black);
  border: 2px solid var(--border);
  font-family: var(--subheading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--grey);
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: default;
}
.industry-pill:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: var(--yellow-dim);
}

/* ===== SERVICE AREAS ===== */
#areas { background: var(--black); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 2.5rem;
}
.area-item {
  padding: 1.25rem;
  background: var(--black-card);
  text-align: center;
  font-family: var(--subheading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  color: var(--grey);
}
.area-item:hover {
  background: var(--yellow-dim);
  color: var(--yellow);
}
.area-primary {
  color: var(--yellow);
  border-bottom: 3px solid var(--yellow);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 7rem 0;
  text-align: center;
  background: var(--black-mid);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.025;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px, var(--yellow) 40px, var(--yellow) 41px);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section .section-title { max-width: 800px; margin: 0 auto 1.25rem; }
.cta-section .section-subtitle { margin: 0 auto 2.5rem; text-align: center; }
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-bar {
  padding: 4rem 0;
  background: var(--black-mid);
  text-align: center;
  border-top: 2px solid var(--border);
}
.cta-bar h2 { margin-bottom: 0.75rem; }
.cta-bar p { color: var(--grey); font-size: 1rem; font-weight: 500; margin-bottom: 2rem; }

/* ===== SERVICE PAGE CONTENT GRID ===== */
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.content-main p {
  color: var(--grey);
  line-height: 1.8;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}
.content-main p strong { color: var(--white); font-weight: 700; }
.sidebar-cta {
  background: var(--black-card);
  border-left: 4px solid var(--yellow);
  padding: 2rem;
  position: sticky;
  top: 5rem;
}
.sidebar-cta h3 { margin-bottom: 0.75rem; }
.sidebar-cta p {
  color: var(--grey);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ===== APPLICATIONS / STATS / ADVANTAGES ===== */
.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2rem;
}
.app-card {
  background: var(--black-card);
  padding: 1.75rem 1.5rem;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.app-card:hover { border-bottom-color: var(--yellow); }
.app-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.app-card p { color: var(--grey); font-size: 0.9rem; line-height: 1.6; font-weight: 500; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 2rem;
}
.stat-card { background: var(--black-card); padding: 2rem 1.5rem; text-align: center; }
.stat-value { font-family: var(--heading); font-size: 2.5rem; color: var(--yellow); line-height: 1; }
.stat-label {
  font-family: var(--subheading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 0.4rem;
}

.adv-list { display: flex; flex-direction: column; gap: 0; margin-top: 2rem; }
.adv-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.adv-marker {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}
.adv-marker svg { width: 20px; height: 20px; stroke: var(--black); fill: none; stroke-width: 2.5; }
.adv-item h4 {
  font-family: var(--subheading);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}
.adv-item p { font-size: 0.9rem; color: var(--grey); line-height: 1.6; font-weight: 500; }

/* ===== FORMS ===== */
.quote-form-section { padding: 0 0 5rem; }
.quote-form { max-width: 800px; }

.form-group-header {
  background: var(--black-card);
  border-left: 4px solid var(--yellow);
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  margin-top: 2.5rem;
  font-family: var(--subheading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.form-group-header:first-of-type { margin-top: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-row.full { grid-template-columns: 1fr; }

.form-field label {
  display: block;
  font-family: var(--subheading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.5rem;
}
.form-field label .required { color: var(--yellow); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--yellow); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--grey-dark); }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%23FFD000' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
  padding-right: 2.5rem;
}
.form-field select option { background: var(--black-card); color: var(--white); }
.form-field textarea { min-height: 140px; resize: vertical; }

.checkbox-group { margin-bottom: 1.25rem; }
.checkbox-group-label {
  font-family: var(--subheading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
  display: block;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  padding: 0.5rem 0.75rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.checkbox-item:hover { border-color: var(--yellow); }
.checkbox-item input[type="checkbox"] {
  appearance: none;
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  background: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.checkbox-item input[type="checkbox"]:checked {
  background: var(--yellow);
  border-color: var(--yellow);
}
.checkbox-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px; top: 1px;
  width: 5px; height: 9px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-item span { font-size: 0.85rem; color: var(--grey); }
.checkbox-item:has(input:checked) span { color: var(--white); }

.form-submit { margin-top: 2.5rem; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 3rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--subheading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
  transition: all 0.2s;
}
.btn-submit:hover { background: var(--yellow-dark); }
.btn-submit:disabled { opacity: 0.6; cursor: wait; }

.form-success { display: none; text-align: center; padding: 4rem 2rem; }
.form-success.show { display: block; }
.form-success h2 { font-family: var(--heading); font-size: 2.5rem; margin-bottom: 1rem; }
.form-success p {
  color: var(--grey);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 780px; padding: 1rem 0 4rem; }
.legal-content h2 {
  font-family: var(--heading);
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.legal-content h2:first-of-type { margin-top: 1.5rem; }
.legal-content p {
  color: var(--grey);
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.legal-content ul {
  color: var(--grey);
  line-height: 1.8;
  font-weight: 500;
  margin: 0 0 1.25rem 1.5rem;
}
.legal-content a { color: var(--yellow); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
footer {
  padding: 3.5rem 0 1.5rem;
  background: var(--black);
  border-top: 2px solid var(--yellow);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: var(--grey);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 500;
  margin-top: 1rem;
  max-width: 300px;
}
.footer-brand .logo img { height: 50px; width: auto; }
.footer-col h4 {
  font-family: var(--subheading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  color: var(--grey);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--grey-dark);
}
.footer-bottom a { color: var(--grey-dark); text-decoration: none; }
.footer-bottom a:hover { color: var(--grey); }

/* ===== ANIMATIONS ===== */
@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .equip-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-badges { flex-direction: column; gap: 0.75rem; }
  .content-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--black-mid);
    border-bottom: 2px solid var(--yellow);
    padding: 1.5rem 2rem;
    gap: 1rem;
  }
  section { padding: 4.5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-items { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero { min-height: auto; padding: 7rem 0 4rem; }
  .hero-logo img { max-width: 320px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-badges { gap: 0.5rem; }
  .hero-badge { padding: 1rem; }
  .app-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
}
