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

:root {
  --primary: #C73E1D;
  --primary-dark: #8B2912;
  --primary-deep: #5C1A0B;
  --accent: #FFB627;
  --accent-dark: #E89A0E;
  --charcoal: #1F2937;
  --charcoal-mid: #111827;
  --slate: #374151;
  --mid-grey: #6B7280;
  --light-grey: #D1D5DB;
  --border: #E5E7EB;
  --off-white: #F5F2ED;
  --white: #FFFFFF;
  --text: #1F2937;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: 'Barlow', sans-serif; font-weight: 800; color: var(--charcoal); line-height: 1.15; letter-spacing: -0.3px; }

.icon { width: 32px; height: 32px; flex-shrink: 0; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-bottom: 2px solid var(--primary);
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.55rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255,255,255,0.85);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.topbar-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  display: inline-block;
  transform: rotate(45deg);
}
.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.4px;
}
.topbar-phone svg { width: 13px; height: 13px; }

/* ---- NAV ---- */
.nav {
  background: var(--white);
  border-bottom: 4px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(31, 41, 55, 0.08);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.logo-mark {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(255,182,39,0.35) 50%);
}
.logo-mark span {
  position: relative;
  z-index: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  color: var(--white);
  font-size: 1.35rem;
  letter-spacing: 1px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text-top {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.logo-text-bottom {
  font-family: 'Barlow', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: -0.4px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.25rem; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.92rem;
  font-family: 'Barlow', sans-serif;
}
.nav-phone svg { color: var(--primary); width: 16px; height: 16px; }

.btn-nav {
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(199, 62, 29, 0.3);
}
.btn-nav:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(199, 62, 29, 0.4);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--charcoal);
  border-radius: 1px;
}
.nav-mobile {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.75rem;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; }
.nav-mobile ul li a {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--charcoal);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 0.85rem 0;
  display: block;
  border-bottom: 1px solid var(--border);
}
.nav-mobile .btn-nav { margin-top: 1.25rem; display: inline-block; }
.nav-mobile-phone {
  display: block;
  margin-top: 1rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  color: var(--primary);
  font-size: 1rem;
}

/* ---- BUTTONS ---- */
.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2.4rem;
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-block;
  box-shadow: 0 4px 14px rgba(199, 62, 29, 0.3);
}
.btn-primary:hover { background: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(199, 62, 29, 0.45); }
.btn-accent {
  background: var(--accent);
  color: var(--charcoal);
  padding: 1rem 2.4rem;
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-accent:hover { background: var(--accent-dark); color: var(--charcoal); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.4rem;
  border-radius: 2px;
  border: 2px solid rgba(255,255,255,0.45);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline-white:hover { border-color: var(--accent); background: rgba(255,182,39,0.12); color: var(--white); }
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  padding: 1rem 2.4rem;
  border-radius: 2px;
  border: 2px solid var(--charcoal);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline-dark:hover { background: var(--charcoal); color: var(--white); }

/* ---- HERO ---- */
.hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 110px 1.5rem 150px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 70px), 0 100%);
  margin-bottom: -70px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(199, 62, 29, 0.92) 0%, rgba(139, 41, 18, 0.85) 55%, rgba(31, 41, 55, 0.95) 100%);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 182, 39, 0.06) 0,
      rgba(255, 182, 39, 0.06) 2px,
      transparent 2px,
      transparent 22px
    ),
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 18px
    );
  z-index: 0;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero-shape-1 {
  width: 320px;
  height: 320px;
  background: var(--accent);
  opacity: 0.12;
  top: -80px;
  right: -80px;
  transform: rotate(20deg);
  border-radius: 14px;
}
.hero-shape-2 {
  width: 220px;
  height: 220px;
  border: 4px solid var(--accent);
  opacity: 0.16;
  bottom: 40px;
  left: -60px;
  transform: rotate(-15deg);
  border-radius: 8px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 182, 39, 0.18);
  border: 1px solid rgba(255, 182, 39, 0.4);
  color: var(--accent);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 1.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-eyebrow::before { content: ''; width: 8px; height: 8px; background: var(--accent); transform: rotate(45deg); }
.hero h1 {
  font-family: 'Barlow', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 1.4rem;
  color: var(--white);
  text-transform: uppercase;
}
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 2.5rem;
  max-width: 720px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--charcoal-mid);
  padding: 2.5rem 1.5rem;
  position: relative;
  z-index: 3;
  border-top: 4px solid var(--accent);
}
.stats-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {
  position: relative;
  padding: 0 1rem;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 0.6rem;
  background: rgba(199, 62, 29, 0.18);
  border: 1.5px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.stat-icon svg { width: 22px; height: 22px; color: var(--accent); }
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* ---- SECTION ---- */
.section { padding: 100px 1.5rem; }
.section-tight { padding: 70px 1.5rem; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.75rem; max-width: 760px; margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transform: translateY(-50%);
}
.section-dark .eyebrow { color: var(--accent); }
.section-dark .eyebrow::before { background: var(--accent); }
.section h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: -0.8px;
  line-height: 1.12;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.section-dark h2 { color: var(--white); }
.section h2 em { color: var(--primary); font-style: normal; }
.section-dark h2 em { color: var(--accent); }
.section p.lead {
  font-size: 1.05rem;
  color: var(--mid-grey);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400;
}
.section-dark p.lead { color: rgba(255,255,255,0.78); }

/* ---- INDUSTRIES GRID ---- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.industry-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 32px rgba(199, 62, 29, 0.14);
  transform: translateY(-4px);
}
.industry-card:hover::before { transform: scaleX(1); }
.industry-card:hover .industry-icon { background: var(--primary); color: var(--white); }
.industry-icon {
  width: 56px;
  height: 56px;
  background: rgba(199, 62, 29, 0.1);
  color: var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.25s, color 0.25s;
}
.industry-icon svg { width: 32px; height: 32px; }
.industry-card h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: -0.2px;
}
.industry-card p {
  font-size: 0.92rem;
  color: var(--mid-grey);
  line-height: 1.65;
  font-weight: 400;
}

/* ---- WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}
.why-card {
  text-align: left;
  padding: 1.25rem 0;
  position: relative;
}
.why-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border-radius: 4px;
  position: relative;
}
.why-icon::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 14px;
  height: 14px;
  background: var(--accent);
}
.why-icon svg { width: 32px; height: 32px; }
.why-card h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: -0.2px;
}
.why-card p {
  font-size: 0.92rem;
  color: var(--mid-grey);
  line-height: 1.65;
  font-weight: 400;
}

/* ---- HOW WE WORK (numbered steps) ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.step-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  position: relative;
  border-top: 4px solid var(--primary);
  box-shadow: 0 6px 20px rgba(31, 41, 55, 0.07);
}
.step-num {
  font-family: 'Barlow', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.18;
  letter-spacing: -2px;
}
.step-card h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 0.55rem;
  text-transform: uppercase;
  letter-spacing: -0.2px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--mid-grey);
  line-height: 1.65;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--charcoal);
  color: var(--white);
  padding: 80px 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, transparent 0%, var(--primary) 50%, var(--primary-dark) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.95;
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 182, 39, 0.04) 0,
    rgba(255, 182, 39, 0.04) 1px,
    transparent 1px,
    transparent 24px
  );
  pointer-events: none;
}
.cta-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-banner h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.8px;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.cta-banner h2 em { color: var(--accent); font-style: normal; }
.cta-banner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 0;
  max-width: 540px;
}
.cta-banner-actions { display: flex; flex-direction: column; gap: 0.85rem; align-items: flex-start; }
.cta-banner-actions .btn-accent { width: 100%; text-align: center; }
.cta-banner-actions .btn-outline-white { width: 100%; text-align: center; }

/* ---- PAGE HERO ---- */
.page-hero {
  background: var(--charcoal);
  color: var(--white);
  padding: 64px 1.5rem 96px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 0 100%);
  margin-bottom: -50px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(199, 62, 29, 0.92) 0%, rgba(139, 41, 18, 0.82) 60%, rgba(31, 41, 55, 0.92) 100%);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,182,39,0.06) 0, rgba(255,182,39,0.06) 2px, transparent 2px, transparent 22px);
  pointer-events: none;
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-family: 'Barlow', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.08;
}
.page-hero h1 em { color: var(--accent); font-style: normal; }
.page-hero p { color: rgba(255,255,255,0.88); font-size: 1.05rem; max-width: 640px; line-height: 1.7; }

/* ---- ABOUT LAYOUT ---- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p {
  font-size: 0.98rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  font-weight: 400;
}
.about-feature-block {
  background: var(--off-white);
  border-left: 5px solid var(--primary);
  padding: 1.75rem 1.5rem;
  border-radius: 0 4px 4px 0;
}
.about-feature-block h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: -0.2px;
  margin-bottom: 0.5rem;
}
.about-feature-block p { font-size: 0.92rem; color: var(--mid-grey); line-height: 1.6; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.value-box {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  border-radius: 4px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.value-box:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 10px 28px rgba(199,62,29,0.12);
}
.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: rgba(255, 182, 39, 0.18);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg { width: 32px; height: 32px; }
.value-box h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  color: var(--charcoal);
  margin-bottom: 0.45rem;
}
.value-box p { font-size: 0.88rem; color: var(--mid-grey); line-height: 1.6; }

/* ---- SERVICES (page) ---- */
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.service-row {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.25rem;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2rem;
  align-items: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.service-row:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 28px rgba(199,62,29,0.12);
  transform: translateX(4px);
}
.service-row-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  color: var(--white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.service-row-icon::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  background: var(--accent);
}
.service-row-icon svg { width: 40px; height: 40px; }
.service-row-text h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin-bottom: 0.5rem;
}
.service-row-text p {
  font-size: 0.95rem;
  color: var(--mid-grey);
  line-height: 1.7;
}
.service-row-cta {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.service-row-cta::after {
  content: '\2192';
  transition: transform 0.2s;
}
.service-row:hover .service-row-cta::after { transform: translateX(4px); }

/* ---- COMPLIANCE STRIP ---- */
.compliance-strip {
  background: var(--off-white);
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.compliance-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.compliance-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.compliance-items {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.compliance-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--charcoal);
}
.compliance-item svg { width: 20px; height: 20px; color: var(--primary); }

/* ---- CONTACT LAYOUT ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-aside { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
  border-left: 4px solid var(--primary);
}
.contact-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--primary);
  margin-bottom: 0.6rem;
}
.contact-card p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
  font-weight: 500;
}
.contact-card a {
  color: var(--primary);
  font-weight: 700;
}
.contact-card a:hover { text-decoration: underline; }

.form-embed-container {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  min-height: 700px;
}
.form-embed-container iframe { width: 100%; height: 700px; border: none; }

/* ---- FOOTER ---- */
.footer {
  background: var(--charcoal-mid);
  color: rgba(255,255,255,0.78);
  padding: 4.5rem 1.5rem 1.75rem;
  border-top: 4px solid var(--primary);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.2rem; }
.footer-brand .logo-text-top { color: var(--accent); }
.footer-brand .logo-text-bottom { color: var(--white); }
.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 0.75rem;
  font-weight: 400;
}
.footer-hours {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.85rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.footer-hours svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-family: 'Barlow', sans-serif;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.7rem;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: var(--accent);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col ul li a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s, padding-left 0.2s;
  font-weight: 400;
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0.55rem;
}
.footer-contact-line svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.footer-contact-line a { color: rgba(255,255,255,0.85); }
.footer-contact-line a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.55); font-weight: 400; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:not(:last-child)::after { display: none; }
  .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cta-banner::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar-inner { flex-direction: column; gap: 0.5rem; padding: 0.65rem 1rem; }
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { height: 70px; }
  .hero { padding: 80px 1.25rem 120px; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%); margin-bottom: -40px; }
  .hero h1 { font-size: 2.25rem; letter-spacing: -1px; }
  .hero p { font-size: 1rem; }
  .hero-shape-1, .hero-shape-2 { display: none; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .industries-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 1rem; text-align: left; }
  .service-row-icon { width: 60px; height: 60px; }
  .service-row-cta { justify-content: flex-start; }
  .compliance-strip-inner { flex-direction: column; align-items: flex-start; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 70px 1.25rem; }
  .section h2 { font-size: 2rem; }
  .page-hero h1 { font-size: 2.1rem; }
  .cta-banner h2 { font-size: 1.9rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.95rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-primary, .hero-btns .btn-outline-white { width: 100%; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .section h2 { font-size: 1.7rem; }
}
