@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --black: #0A0A0A;
  --dark: #111418;
  --dark2: #1C2128;
  --mid: #2A3140;
  --orange: #E85C0D;
  --orange2: #FF7A2F;
  --amber: #F4A832;
  --white: #F5F2ED;
  --gray: #8A9099;
  --light: #F0EDE8;
  --border: rgba(255,255,255,0.08);
  --border-light: rgba(0,0,0,0.1);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-accent: 'Oswald', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: #2A2A2A;
  background: #FAFAF8;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.01em;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; font-weight: 700; }

p, li, span, a, td, th, label, blockquote { overflow-wrap: break-word; }

a { color: inherit; text-decoration: none; }
img, video, svg, canvas { max-width: 100%; height: auto; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.section-padding { padding: 100px 0; }
.text-center { text-align: center; }

/* ═══════════════════ NAV ═══════════════════ */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  padding: 0;
  width: 100%;
  border-bottom: 2px solid var(--orange);
}

.nav-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
}

.nav-logo .logo-icon {
  width: 32px;
  height: 32px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: stretch;
  padding: 0;
  margin: 0;
}

.nav-links li { list-style: none; display: flex; align-items: stretch; }

.nav-links a {
  text-decoration: none;
  color: rgba(245,242,237,0.65);
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 14px;
  display: flex;
  align-items: center;
  transition: color 0.2s, background 0.2s;
  border-right: 1px solid rgba(255,255,255,0.06);
  white-space: nowrap;
}

.nav-links a:hover { color: var(--white); background: rgba(232,92,13,0.15); }
.nav-links a.active { color: var(--orange); }

.nav-toggle-checkbox { display: none; }
.nav-toggle-label { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle-label span { width: 25px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ═══════════════════ HERO ═══════════════════ */
.hero-section {
  background: var(--dark);
  color: var(--white);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.018) 80px,
      rgba(255,255,255,0.018) 81px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.018) 80px,
      rgba(255,255,255,0.018) 81px
    );
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--amber) 50%, var(--orange) 100%);
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-section h1 { color: var(--white); margin-bottom: 24px; text-transform: uppercase; }
.hero-section h1 em { color: var(--orange); font-style: normal; }

.hero-section .subtext {
  font-size: 1.15rem;
  opacity: 0.75;
  max-width: 640px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-bg-text {
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
}

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange2);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  clip-path: none;
  border-radius: 0;
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--mid);
  transform: translateY(-2px);
}

/* ═══════════════════ CARDS ═══════════════════ */
.card {
  background: var(--white);
  padding: 36px;
  border: 1px solid var(--border-light);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  min-width: 0;
  width: 100%;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}

.card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.12); }
.card:hover::before { transform: scaleY(1); }

.card-dark {
  background: var(--dark2);
  color: var(--white);
  border-color: var(--border);
}

.card-dark::before { background: var(--orange); }

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(232,92,13,0.1);
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* ═══════════════════ STATS ═══════════════════ */
.stats-section {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber), var(--orange));
}

.stat {
  text-align: center;
  padding: 24px;
  border-right: 1px solid var(--border);
}

.stat:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.stat p {
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 180px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ═══════════════════ GRIDS ═══════════════════ */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 0; }
.grid-2 > *, .grid-3 > *, .grid-4 > * { min-width: 0; }

/* ═══════════════════ SECTION HEADER ═══════════════════ */
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }

.section-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label.centered { justify-content: center; }

.section-label::before,
.section-label.centered::after {
  content: '';
  height: 1px;
  background: var(--orange);
  opacity: 0.5;
}

.section-label::before { width: 32px; flex-shrink: 0; }
.section-label.centered::before { width: 32px; }
.section-label.centered::after { width: 32px; }

.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: #555; max-width: 620px; }
.section-header.centered p { margin: 0 auto; }

/* ═══════════════════ TESTIMONIALS ═══════════════════ */
.testimonial-card {
  background: var(--dark2);
  padding: 36px;
  position: relative;
  color: var(--white);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245,242,237,0.85);
  font-style: italic;
  margin-bottom: 20px;
  padding-top: 24px;
}

.testimonial-card .author {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ═══════════════════ PULL QUOTE ═══════════════════ */
.pull-quote {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.3;
  border-left: 4px solid var(--orange);
  padding-left: 20px;
  margin: 24px 0;
}

.attribution {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ═══════════════════ DROPCAP ═══════════════════ */
.dropcap {
  float: left;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.75;
  margin: 8px 12px 0 0;
  color: var(--orange);
}

/* ═══════════════════ FEATURED SPREAD ═══════════════════ */
.featured-spread { margin: 48px 0; }

.placeholder-block {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 50%, var(--dark2) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-block::before {
  content: '▶ FEATURED COVERAGE MAP';
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.2);
}

.featured-spread figcaption {
  padding: 16px 0;
  font-size: 0.88rem;
  color: #666;
  border-top: 1px solid var(--border-light);
  margin-top: 12px;
}

/* ═══════════════════ CTA SECTION ═══════════════════ */
.cta-section {
  background: var(--orange);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'ROLL';
  position: absolute;
  right: -20px;
  top: -20px;
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 900;
  color: rgba(0,0,0,0.08);
  line-height: 1;
  pointer-events: none;
}

.cta-section h2 { color: var(--white); text-transform: uppercase; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; max-width: 560px; }

.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.contact-details {
  margin-top: 28px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.contact-details a { color: rgba(255,255,255,0.9); text-decoration: underline; }

/* ═══════════════════ FOOTER ═══════════════════ */
.site-footer {
  background: var(--black);
  color: var(--gray);
  padding: 72px 0 0;
  border-top: 3px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.footer-description { font-size: 0.92rem; line-height: 1.7; opacity: 0.7; max-width: 340px; }

.site-footer h4 {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--gray); transition: color 0.2s; font-size: 0.92rem; }
.footer-links a:hover { color: var(--white); }

.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li { margin-bottom: 12px; font-size: 0.92rem; }
.contact-label { font-weight: 600; color: rgba(245,242,237,0.6); display: block; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 2px; }
.footer-contact-list a { color: var(--gray); transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.45;
}

/* ═══════════════════ PAGE HERO VARIANTS ═══════════════════ */
.page-hero {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--orange);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(255,255,255,0.015) 80px,
    rgba(255,255,255,0.015) 81px
  );
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.page-hero h1 em { color: var(--orange); font-style: normal; }

.page-hero .subhead {
  font-size: 1.1rem;
  opacity: 0.7;
  max-width: 680px;
  margin-top: 16px;
  line-height: 1.7;
}

/* ═══════════════════ ABOUT PAGE ═══════════════════ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-intro .lead-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
}

.about-values { list-style: none; padding: 0; margin-top: 24px; }
.about-values li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  gap: 16px;
  align-items: start;
}

.about-values li:last-child { border-bottom: none; }

.value-marker {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 3px;
}

.value-text h4 { margin-bottom: 4px; }
.value-text p { font-size: 0.92rem; color: #666; }

.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--amber));
}

.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.timeline-item .year {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 4px;
}

.timeline-item h4 { margin-bottom: 6px; font-size: 1rem; }
.timeline-item p { font-size: 0.9rem; color: #666; line-height: 1.6; }

/* ═══════════════════ SERVICES PAGE ═══════════════════ */
.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-light);
}

.services-col {
  padding: 52px;
}

.services-col:first-child {
  border-right: 1px solid var(--border-light);
}

.services-col h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.services-col h2 .col-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 8px;
  font-weight: 500;
}

.service-list { list-style: none; padding: 0; margin-top: 28px; }
.service-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  gap: 14px;
  align-items: start;
  font-size: 0.95rem;
}

.service-list li::before {
  content: '▸';
  color: var(--orange);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ═══════════════════ OPERATIONS PAGE ═══════════════════ */
.ops-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
}

.ops-step:last-child { border-bottom: none; }

.ops-number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(232,92,13,0.15);
  line-height: 1;
  text-align: right;
}

.ops-content h3 { margin-bottom: 8px; }
.ops-content .eyebrow {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}

.ops-content p { font-size: 0.95rem; color: #555; }

/* ═══════════════════ ONBOARDING PAGE ═══════════════════ */
.step-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 32px;
  position: relative;
}

.step-num {
  position: absolute;
  top: -1px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  background: var(--orange);
  color: var(--white);
  padding: 4px 12px;
  font-weight: 700;
}

.step-card h3 { margin-bottom: 12px; }
.step-card ul { list-style: none; padding: 0; }
.step-card ul li {
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  gap: 10px;
  align-items: center;
  color: #555;
}

.step-card ul li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ═══════════════════ COVERAGE PAGE ═══════════════════ */
.region-card {
  background: var(--dark2);
  color: var(--white);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.region-card::before {
  content: attr(data-region);
  position: absolute;
  right: -10px;
  bottom: -16px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.region-card h3 { color: var(--white); margin-bottom: 8px; }
.region-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 3px 10px;
  margin-bottom: 14px;
}

.region-card p { font-size: 0.92rem; color: rgba(245,242,237,0.65); line-height: 1.6; }
.region-card ul { list-style: none; padding: 0; margin-top: 14px; }
.region-card ul li { font-size: 0.85rem; color: rgba(245,242,237,0.55); padding: 4px 0; }
.region-card ul li::before { content: '→ '; color: var(--orange); }

/* ═══════════════════ PRICING PAGE ═══════════════════ */
.pricing-tier {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 40px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-tier.featured {
  background: var(--dark);
  color: var(--white);
  border-color: var(--orange);
  z-index: 1;
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}

.tier-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
}

.tier-label {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.tier-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-tier.featured .tier-price { color: var(--white); }

.tier-price-note { font-size: 0.85rem; color: #888; margin-bottom: 24px; }
.pricing-tier.featured .tier-price-note { color: rgba(255,255,255,0.55); }

.tier-features { list-style: none; padding: 0; margin-bottom: 32px; flex: 1; }
.tier-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 0.92rem;
  display: flex;
  gap: 10px;
}

.pricing-tier.featured .tier-features li { border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }
.tier-features li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ═══════════════════ CARRIERS PAGE ═══════════════════ */
.toolkit-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: start;
}

.toolkit-item:last-child { border-bottom: none; }

.toolkit-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,92,13,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.toolkit-item h4 { margin-bottom: 4px; }
.toolkit-item p { font-size: 0.9rem; color: #666; }

/* ═══════════════════ INSIGHTS PAGE ═══════════════════ */
.insight-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all 0.3s;
}

.insight-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

.insight-image {
  height: 200px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.insight-tag {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 4px 10px;
}

.insight-body { padding: 28px; }
.insight-body h3 { margin-bottom: 10px; font-size: 1.3rem; }
.insight-body p { font-size: 0.92rem; color: #666; line-height: 1.65; margin-bottom: 20px; }

.insight-meta {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  display: flex;
  gap: 16px;
}

/* ═══════════════════ CONTACT PAGE ═══════════════════ */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #555;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-bottom: 2px solid #ddd;
  background: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--black);
  transition: border-color 0.25s;
  border-radius: 0;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: transparent;
  border-bottom-color: var(--orange);
}

.contact-form textarea { min-height: 160px; resize: vertical; }

/* ═══════════════════ ACCENT BAR ═══════════════════ */
.accent-bar {
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin-bottom: 20px;
}

/* ═══════════════════ STRIPED SECTION ═══════════════════ */
.section-alt { background: var(--light); }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(245,242,237,0.7); }
.section-dark .section-header p { color: rgba(245,242,237,0.6); }

/* ═══════════════════ EDITORIAL COLUMNS ═══════════════════ */
.editorial-columns {
  column-count: 2;
  column-gap: 48px;
  column-rule: 1px solid var(--border-light);
}

.editorial-columns p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 1.2em;
}

.kicker {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
  margin-bottom: 24px;
  break-after: avoid;
}

.serif-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 24px;
}

/* ═══════════════════ IMAGE BLOCKS ═══════════════════ */
.image-block {
  height: 200px;
  background: linear-gradient(135deg, var(--dark2), var(--mid));
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.image-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  opacity: 0.5;
}

/* ═══════════════════ PROTOCOL TABLE ═══════════════════ */
.protocol-table { width: 100%; border-collapse: collapse; }
.protocol-table th {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--orange);
  padding: 14px 20px;
  text-align: left;
}

.protocol-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
  color: #444;
}

.protocol-table tr:last-child td { border-bottom: none; }
.protocol-table tr:nth-child(even) td { background: rgba(0,0,0,0.02); }

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .services-split { grid-template-columns: 1fr; }
  .services-col:first-child { border-right: none; border-bottom: 1px solid var(--border-light); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle-label { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 8px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border-top: 2px solid var(--orange);
    z-index: 999;
    height: auto;
  }
  .nav-links li { width: 100%; display: block; }
  .nav-links a { display: block; width: 100%; padding: 14px 28px; font-size: 0.85rem; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-toggle-checkbox:checked ~ .nav-links { display: flex; }
  .nav-container { height: 54px; }

  .hero-section { padding: 80px 0 60px; }
  .hero-bg-text { display: none; }
  .section-padding { padding: 64px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-4 .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .editorial-columns { column-count: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .pricing-tier.featured { transform: none; }
  .container { padding: 0 20px; }
  .ops-step { grid-template-columns: 1fr; }
  .ops-number { font-size: 2rem; text-align: left; }
}

@media (max-width: 480px) {
  .hero-section { padding: 60px 0 48px; }
  .section-padding { padding: 48px 0; }
  .btn { padding: 13px 24px; font-size: 0.78rem; }
  .card { padding: 24px; }
  .services-col { padding: 32px 24px; }
  .cta-section::before { display: none; }
}
