/*
Theme Name: Pyro Communications
Theme URI: https://pyrobpo.com
Author: Pyro Communications
Author URI: https://pyrobpo.com
Description: Custom bilingual (ES/EN) landing page theme for Pyro Communications BPO & Contact Center
Version: 1.0.0
Text Domain: pyro-theme
*/

/* ============================================
   FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,500;1,600&display=swap');

/* ============================================
   CSS VARIABLES (Design Tokens)
   ============================================ */
:root {
  --background:           hsl(32, 33%, 90%);
  --foreground:           hsl(40,  3%, 21%);
  --card:                 hsl(32, 28%, 94%);
  --primary:              hsl(148, 27%, 36%);
  --primary-foreground:   hsl(32,  33%, 90%);
  --secondary:            hsl(16,  68%, 52%);
  --secondary-foreground: hsl(32,  33%, 95%);
  --muted:                hsl(32,  18%, 84%);
  --muted-foreground:     hsl(40,   5%, 45%);
  --accent:               hsl(290, 22%, 72%);
  --lavender:             hsl(290, 22%, 72%);
  --border:               hsl(32,  15%, 78%);
  --radius:               0.75rem;
  --hero-gradient:        linear-gradient(135deg, hsl(148,27%,36%) 0%, hsl(148,30%,24%) 100%);
  --accent-gradient:      linear-gradient(135deg, hsl(16,68%,52%)  0%, hsl(10,72%,45%)  100%);
  --glass:                hsla(32, 33%, 90%, 0.85);
  --font-heading:         'Fira Sans', sans-serif;
  --font-body:            'Fira Sans', sans-serif;
  --font-display:         'Cormorant Garamond', serif;
}

/* ============================================
   BILINGUAL TOGGLE
   ============================================ */
.lang-en { display: none; }
html[data-lang="en"] .lang-en { display: inline; }
html[data-lang="en"] .lang-es { display: none; }

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

/* ============================================
   UTILITIES
   ============================================ */
.highlight {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
}
.hero-title .highlight { color: var(--lavender); }

.section-label {
  display: inline-block;
  background: var(--accent-gradient);
  color: var(--secondary-foreground);
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(32, 15%, 78%, 0.5);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px hsla(16, 68%, 52%, 0.2); }
  50%       { box-shadow: 0 0 40px hsla(16, 68%, 52%, 0.4); }
}
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-in-section.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-gradient);
  color: var(--secondary-foreground);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 32px -8px hsla(16, 68%, 52%, 0.3);
  transition: opacity 0.2s;
  animation: pulse-glow 2s ease-in-out infinite;
  border: none;
}
.btn-primary:hover { opacity: 0.9; }
.btn-secondary {
  display: inline-block;
  border: 1px solid rgba(232, 220, 204, 0.35);
  color: hsl(32, 33%, 90%);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(232, 220, 204, 0.1); }

/* ============================================
   FORMS
   ============================================ */
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.375rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(148, 27%, 36%, 0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input[type="file"] { padding: 0.5rem; cursor: pointer; }
.form-submit {
  width: 100%;
  padding: 0.875rem;
  background: var(--accent-gradient);
  color: var(--secondary-foreground);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, background 0.3s;
  box-shadow: 0 8px 32px -8px hsla(16, 68%, 52%, 0.3);
}
.form-submit:hover { opacity: 0.9; }
.form-submit.success { background: var(--hero-gradient); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.navbar-logo img { height: 2.5rem; }
.navbar-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  opacity: 0.8;
  transition: color 0.2s, opacity 0.2s;
}
.navbar-links a:hover { color: var(--primary); opacity: 1; }
.navbar-cta {
  background: var(--accent-gradient) !important;
  color: var(--secondary-foreground) !important;
  padding: 0.5625rem 1.25rem !important;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 1 !important;
  box-shadow: 0 4px 16px -4px hsla(16, 68%, 52%, 0.35);
  transition: filter 0.2s !important;
}
.navbar-cta:hover { filter: brightness(1.05); }
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  opacity: 0.8;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.2s, opacity 0.2s;
  font-family: var(--font-body);
}
.lang-toggle:hover { color: var(--primary); opacity: 1; }
.navbar-mobile-controls { display: none; align-items: center; gap: 0.75rem; }
.mobile-menu-btn { background: none; border: none; color: var(--foreground); padding: 0.25rem; line-height: 0; }
.navbar-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 2rem 1.5rem;
  border-top: 1px solid var(--border);
  max-width: 1400px;
  margin: 0 auto;
}
.navbar-mobile.open { display: flex; }
.navbar-mobile a { font-size: 1rem; color: var(--foreground); opacity: 0.8; transition: color 0.2s; }
.navbar-mobile a:hover { color: var(--primary); opacity: 1; }
.navbar-cta-mobile {
  display: block;
  background: var(--accent-gradient);
  color: var(--secondary-foreground);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  opacity: 1;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-mobile-controls { display: flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: hsla(40, 3%, 21%, 0.72); }
.hero-content { position: relative; z-index: 10; padding: 7rem 2rem 5rem; max-width: 1400px; margin: 0 auto; width: 100%; }
.hero-inner { max-width: 52rem; }
.hero-badge {
  display: inline-block;
  background: rgba(194, 130, 85, 0.2);
  color: rgba(232, 220, 204, 0.92);
  padding: 0.375rem 1.25rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(232, 220, 204, 0.12);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fade-in 0.6s ease-out 0.2s both;
}
.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 700;
  color: hsl(32, 33%, 90%);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fade-in 0.6s ease-out 0.3s both;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(232, 220, 204, 0.8);
  margin-bottom: 2.5rem;
  max-width: 40rem;
  line-height: 1.75;
  animation: fade-in 0.6s ease-out 0.5s both;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 4rem; animation: fade-in 0.6s ease-out 0.7s both; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 28rem;
  animation: fade-in 0.6s ease-out 0.9s both;
}
.hero-stat {
  text-align: center;
  backdrop-filter: blur(4px);
  background: rgba(232, 220, 204, 0.06);
  border-radius: var(--radius);
  padding: 1rem 0.75rem;
  border: 1px solid rgba(232, 220, 204, 0.1);
}
.hero-stat-icon { color: var(--lavender); margin: 0 auto 0.5rem; display: block; }
.hero-stat-value { color: hsl(32, 33%, 90%); font-weight: 700; font-size: 1rem; display: block; }
.hero-stat-label { color: rgba(232, 220, 204, 0.6); font-size: 0.6875rem; display: block; }
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; height: 5rem; background: var(--background); clip-path: polygon(0 100%, 100% 100%, 100% 0); }

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-header { text-align: center; max-width: 48rem; margin: 0 auto 3.5rem; }
.section-title { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: var(--foreground); margin-bottom: 1rem; line-height: 1.2; }
.section-subtitle { font-size: 1.0625rem; color: var(--muted-foreground); line-height: 1.75; }

/* ============================================
   SERVICES — RICH ACCORDION
   ============================================ */
.services { padding: 6rem 0; background: var(--background); }
.services-accordion { max-width: 56rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

/* Category card */
.service-category {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid hsla(32, 15%, 78%, 0.5);
  border-radius: 1rem;
  overflow: hidden;
}
.service-category.open { border-color: hsla(148, 27%, 36%, 0.4); }

/* Category trigger (header button) */
.service-category-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.service-category-trigger:hover { background: hsla(148, 27%, 36%, 0.04); }

.service-category-header { display: flex; align-items: center; gap: 1rem; }
.service-category-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--hero-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-foreground);
}
.service-category-icon i { display: flex; }
.service-category-name { font-size: 1.0625rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.2rem; }
.service-category-subtitle { font-size: 0.875rem; color: var(--muted-foreground); }

.service-chevron { flex-shrink: 0; color: var(--primary); transition: transform 0.3s; }
.service-category.open .service-chevron { transform: rotate(180deg); }

/* Body */
.service-body[hidden] { display: none; }
.service-body-inner { padding: 0 1.5rem 1.5rem; border-top: 1px solid var(--border); }

.service-category-description {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  border-left: 4px solid var(--secondary);
  padding-left: 1rem;
  margin: 1.25rem 0;
}

/* Sub-services grid */
.service-sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.service-sub-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: hsla(32, 28%, 94%, 0.6);
  transition: background 0.2s;
  align-items: flex-start;
}
.service-sub-item:hover { background: var(--card); }
.service-sub-icon { color: var(--primary); flex-shrink: 0; margin-top: 0.1rem; display: flex; }
.service-sub-icon i { display: block; }
.service-sub-title { font-size: 0.875rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.2rem; }
.service-sub-desc  { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.5; }

@media (max-width: 600px) { .service-sub-grid { grid-template-columns: 1fr; } }

/* ============================================
   ABOUT
   ============================================ */
.about { padding: 6rem 0; background: var(--card); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* Text + values */
.about-text .section-title,
.about-text .section-subtitle { text-align: left; }
.about-text .section-subtitle { margin-bottom: 2.5rem; }

.about-value-row { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.about-value-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  background: var(--hero-gradient);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary-foreground);
}
.about-value-icon i { display: flex; }
.about-value-title { font-size: 0.9375rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.25rem; }
.about-value-text  { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* Image with floating badges */
.about-image-wrap { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 24px 60px -12px hsla(148, 27%, 36%, 0.2);
  filter: grayscale(1);
}
.about-badge-bl,
.about-badge-tr {
  position: absolute;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px -8px hsla(148, 27%, 36%, 0.2);
}
.about-badge-bl {
  bottom: -1.5rem; left: -1.5rem;
  background: var(--hero-gradient);
  color: var(--primary-foreground);
}
.about-badge-tr {
  top: -1rem; right: -1rem;
  background: var(--secondary);
  color: var(--secondary-foreground);
  box-shadow: 0 8px 32px -8px hsla(16, 68%, 52%, 0.35);
}
.about-badge-number { font-size: 1.75rem; font-weight: 800; line-height: 1; }
.about-badge-label  { font-size: 0.75rem; opacity: 0.85; margin-top: 0.25rem; }

/* ============================================
   PLANS
   ============================================ */
.plans { padding: 6rem 0; background: var(--card); }
.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; align-items: start; }
.plan-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1.5px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.plan-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px -12px hsla(148, 27%, 36%, 0.2); }
.plan-card.popular {
  background: var(--hero-gradient);
  border-color: transparent;
  box-shadow: 0 12px 40px -8px hsla(148, 27%, 36%, 0.4);
}
.plan-badge {
  position: absolute;
  top: 0;
  right: 1.25rem;
  transform: translateY(-50%);
  background: var(--accent-gradient);
  color: var(--secondary-foreground);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}
.plan-name { font-size: 1.375rem; font-weight: 800; color: var(--foreground); }
.plan-card.popular .plan-name { color: var(--primary-foreground); }
.plan-features { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.4;
}
.plan-feature-icon { flex-shrink: 0; width: 15px; height: 15px; margin-top: 1px; }
.plan-feature--yes .plan-feature-icon { color: var(--primary); }
.plan-feature--no  .plan-feature-icon { color: var(--muted-foreground); opacity: 0.45; }
.plan-feature-name { color: var(--foreground); }
.plan-feature--no  .plan-feature-name { color: var(--muted-foreground); }
.plan-card.popular .plan-feature--yes .plan-feature-icon { color: hsl(32, 33%, 90%); }
.plan-card.popular .plan-feature--no  .plan-feature-icon { color: hsla(32, 33%, 90%, 0.3); }
.plan-card.popular .plan-feature-name { color: hsla(32, 33%, 90%, 0.9); }
.plan-card.popular .plan-feature--no .plan-feature-name { color: hsla(32, 33%, 90%, 0.4); }
.plan-feature-note {
  display: inline-block;
  margin-left: 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent);
  background: hsla(290, 22%, 72%, 0.15);
  padding: 0.05rem 0.35rem;
  border-radius: 4px;
}
.plan-card.popular .plan-feature-note { background: hsla(290, 22%, 72%, 0.2); }
.plan-cta {
  display: block;
  padding: 0.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-align: center;
  background: hsla(40, 3%, 21%, 0.08);
  color: var(--foreground);
  border: 1.5px solid var(--border);
  transition: background 0.2s;
}
.plan-cta:hover { background: hsla(40, 3%, 21%, 0.16); }
.plan-card.popular .plan-cta {
  background: var(--accent-gradient);
  color: var(--secondary-foreground);
  border-color: transparent;
  box-shadow: 0 4px 16px -4px hsla(16, 68%, 52%, 0.35);
}
.plan-card.popular .plan-cta:hover { opacity: 0.9; }
.plans-bottom-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin: 3rem auto 0;
  padding: 1.5rem 2rem;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  max-width: 580px;
}
.plans-bottom-cta p { color: var(--foreground); font-size: 1rem; font-weight: 500; }
.plans-custom-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: gap 0.2s;
}
.plans-custom-link:hover { gap: 0.65rem; }

/* ============================================
   CAREERS
   ============================================ */
.careers { padding: 6rem 0; background: var(--card); }
.careers-about-box {
  max-width: 56rem;
  margin: 0 auto 3rem;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--secondary);
}
.careers-about-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.875rem; }
.careers-about-icon { color: var(--secondary); flex-shrink: 0; }
.careers-about-box h3 { font-size: 1rem; font-weight: 700; color: var(--foreground); }
.careers-about-box p { font-size: 0.9375rem; color: var(--muted-foreground); line-height: 1.7; }
.careers-jobs-title { font-size: 1.5rem; font-weight: 700; color: var(--foreground); text-align: center; margin-bottom: 2rem; }
.careers-jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 56rem; margin: 0 auto 4rem; }
.job-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: calc(var(--radius) * 1.5);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.job-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px -8px hsla(148, 27%, 36%, 0.2); }
.job-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--hero-gradient);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary-foreground);
  flex-shrink: 0;
}
.job-card h4 { font-size: 0.9375rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.75rem; }
.job-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.65; flex: 1; }
.job-apply-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.2s, gap 0.2s;
}
.job-apply-link:hover { color: var(--secondary); gap: 0.55rem; }
.careers-form-wrap { max-width: 42rem; margin: 0 auto; }
.careers-form-box {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px -8px hsla(148, 27%, 36%, 0.12);
}
.careers-form-box h3 { font-size: 1.25rem; font-weight: 700; color: var(--foreground); margin-bottom: 1.5rem; text-align: center; }
.cv-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1rem;
  background: var(--background);
  cursor: pointer;
  transition: border-color 0.2s;
}
.cv-upload:hover { border-color: hsla(148, 27%, 36%, 0.5); }
.cv-upload-icon { color: var(--muted-foreground); }
.cv-upload-text { font-size: 0.875rem; color: var(--muted-foreground); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ============================================
   CONTACT
   ============================================ */
.contact { padding: 6rem 0; background: var(--background); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-info-header { margin-bottom: 2rem; }
.contact-info-header h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--foreground); margin-bottom: 0.75rem; }
.contact-info-header p { color: var(--muted-foreground); line-height: 1.7; }
.contact-detail { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); margin-bottom: 0.875rem; transition: transform 0.2s; }
.contact-detail:hover { transform: translateX(4px); }
.contact-detail-icon { width: 3rem; height: 3rem; background: var(--hero-gradient); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.2s; }
.contact-detail:hover .contact-detail-icon { transform: scale(1.1); }
.contact-detail-icon svg { color: var(--primary-foreground); }
.contact-detail-label { display: block; font-size: 0.75rem; color: var(--muted-foreground); margin-bottom: 0.125rem; }
.contact-detail-value { display: block; font-size: 0.9375rem; font-weight: 600; color: var(--foreground); }
.contact-form-box { background: var(--glass); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: calc(var(--radius) * 1.5); padding: 2.5rem; border: 1px solid var(--border); box-shadow: 0 8px 32px -8px hsla(148, 27%, 36%, 0.1); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--foreground); color: hsl(32, 33%, 90%); padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 2.5rem; filter: brightness(0) invert(1); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; color: rgba(232, 220, 204, 0.65); line-height: 1.75; }
.footer-nav h4, .footer-links h4 { font-weight: 700; margin-bottom: 1.25rem; font-size: 0.9375rem; }
.footer-nav ul, .footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-nav a, .footer-links a { font-size: 0.875rem; color: rgba(232, 220, 204, 0.65); transition: color 0.2s; }
.footer-nav a:hover, .footer-links a:hover { color: hsl(32, 33%, 90%); }
.footer-bottom { border-top: 1px solid rgba(232, 220, 204, 0.1); padding-top: 2rem; text-align: center; font-size: 0.875rem; color: rgba(232, 220, 204, 0.45); }

/* ============================================
   WORDPRESS ADMIN BAR FIX
   ============================================ */
body.admin-bar .navbar { top: 32px; }
@media (max-width: 782px) { body.admin-bar .navbar { top: 46px; } }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .about-inner,
  .contact-inner   { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-wrap { margin-top: 2rem; }
  .about-badge-bl  { bottom: -1rem; left: 0; }
  .about-badge-tr  { top: -0.5rem; right: 0; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .footer-brand    { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .container        { padding: 0 1.25rem; }
  .services, .about, .plans, .careers, .contact { padding: 4rem 0; }
  .site-footer      { padding: 4rem 0 2rem; }
  .services-grid    { grid-template-columns: 1fr; }
  .about-values     { grid-template-columns: 1fr; }
  .plans-grid       { grid-template-columns: repeat(2, 1fr); }
  .careers-jobs-grid { grid-template-columns: 1fr; }
  .contact-inner    { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-grid-2      { grid-template-columns: 1fr; }
  .hero-ctas        { flex-direction: column; align-items: flex-start; }
  .footer-grid      { grid-template-columns: 1fr; }
  .hero-content     { padding: 5.5rem 1.25rem 3rem; }
  .hero-stats       { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; max-width: 100%; }
  .hero-stat        { padding: 0.75rem 0.5rem; }
  .hero-stat-value  { font-size: 0.875rem; }
  .section-header   { margin-bottom: 2.5rem; }
  .navbar-inner     { padding: 0.875rem 1.25rem; }
}
/* ============================================
   SAVINGS CALCULATOR
   ============================================ */
.calculator { padding: 6rem 0; background: var(--background); }
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 68rem;
  margin: 0 auto 1.5rem;
  align-items: start;
}
/* Controls panel */
.calc-controls {
  border-radius: calc(var(--radius) * 1.5);
  padding: 2.25rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.calc-group-label { font-size: 0.8125rem; font-weight: 600; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.875rem; }
/* Stepper */
.calc-stepper { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.calc-step-btn {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--background);
  font-size: 1.25rem; font-weight: 700;
  color: var(--foreground);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  line-height: 1;
}
.calc-step-btn:hover { border-color: var(--primary); background: hsla(148,27%,36%,0.06); color: var(--primary); }
.calc-step-display { flex: 1; text-align: center; }
.calc-step-num { font-size: 2.75rem; font-weight: 900; color: var(--primary); line-height: 1; display: block; }
.calc-step-unit { font-size: 0.8125rem; color: var(--muted-foreground); }
.calc-slider { width: 100%; accent-color: var(--primary); cursor: pointer; margin-bottom: 0.25rem; }
.calc-slider-ends { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--muted-foreground); }
/* Country pills */
.calc-pills { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
.calc-pill { cursor: pointer; user-select: none; }
.calc-pill input { display: none; }
.calc-pill span {
  display: block; text-align: center;
  padding: 0.625rem 0.5rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.875rem; font-weight: 500;
  color: var(--muted-foreground);
  background: var(--background);
  transition: all 0.2s;
}
.calc-pill:has(input:checked) span {
  border-color: var(--primary);
  color: var(--primary);
  background: hsla(148,27%,36%,0.07);
  font-weight: 700;
}
/* Role tiles */
.calc-role-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
.calc-role-tile { cursor: pointer; user-select: none; }
.calc-role-tile input { display: none; }
.calc-role-tile > svg,
.calc-role-tile > span { pointer-events: none; }
.calc-role-tile {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem; padding: 0.875rem 0.5rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 500; text-align: center;
  color: var(--muted-foreground);
  background: var(--background);
  transition: all 0.2s;
}
.calc-role-tile:has(input:checked) {
  border-color: var(--primary);
  color: var(--primary);
  background: hsla(148,27%,36%,0.07);
}
.calc-role-tile svg { transition: color 0.2s; }
/* Results panel */
.calc-results {
  background: var(--hero-gradient);
  border-radius: calc(var(--radius) * 1.5);
  padding: 2.25rem;
  color: var(--primary-foreground);
  display: flex; flex-direction: column; gap: 1.5rem;
  position: sticky; top: 5.5rem;
}
/* Big % ring */
.calc-pct-ring {
  display: flex; flex-direction: column; align-items: center;
  background: hsla(32,33%,90%,0.1);
  border: 2px solid hsla(32,33%,90%,0.2);
  border-radius: 50%;
  width: 10rem; height: 10rem;
  margin: 0 auto;
  justify-content: center;
  gap: 0.125rem;
}
.calc-pct-num { font-size: 2.75rem; font-weight: 900; line-height: 1; }
.calc-pct-label { font-size: 0.75rem; opacity: 0.7; }
/* Cost metrics */
.calc-metrics { display: flex; align-items: center; gap: 0.75rem; }
.calc-metric { flex: 1; }
.calc-metric-label { font-size: 0.7rem; opacity: 0.65; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.25rem; display: block; }
.calc-metric-value { font-size: 1.375rem; font-weight: 800; display: block; }
.calc-metric-local { opacity: 0.55; text-decoration: line-through; text-decoration-thickness: 2px; }
.calc-metric-pyro { color: hsl(32,33%,90%); }
.calc-metric-divider { font-size: 0.875rem; font-weight: 700; opacity: 0.5; flex-shrink: 0; }
/* Bar */
.calc-bar-wrap { display: flex; flex-direction: column; gap: 0.4rem; }
.calc-bar-track { height: 8px; background: hsla(32,33%,90%,0.15); border-radius: 999px; overflow: hidden; }
.calc-bar-fill { height: 100%; background: var(--accent-gradient); border-radius: 999px; transition: width 0.4s cubic-bezier(0.4,0,0.2,1); }
.calc-bar-labels { display: flex; justify-content: space-between; font-size: 0.7rem; opacity: 0.6; }
/* Annual callout */
.calc-annual-box {
  background: hsla(32,33%,90%,0.12);
  border: 1px solid hsla(32,33%,90%,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.calc-annual-label { font-size: 0.75rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 0.05em; }
.calc-annual-value { font-size: 2rem; font-weight: 900; }
/* Monthly row */
.calc-monthly-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.9375rem; opacity: 0.85; }
.calc-monthly-row strong { font-size: 1.125rem; font-weight: 800; }
/* CTA */
.calc-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1rem;
  background: var(--accent-gradient);
  color: var(--secondary-foreground);
  border-radius: var(--radius);
  font-weight: 700; font-size: 0.9375rem;
  transition: opacity 0.2s;
}
.calc-cta:hover { opacity: 0.9; }
.calc-country-note { font-size: 0.8rem; color: var(--muted-foreground); margin-top: 0.625rem; }
.calc-country-note a { color: var(--primary); font-weight: 600; }
.calc-country-note a:hover { text-decoration: underline; }
.calc-disclaimer { font-size: 0.75rem; font-weight: 700; color: var(--foreground); text-align: center; line-height: 1.6; max-width: 48rem; margin: 0 auto; }

/* Calculator mobile — must come AFTER base calc styles to win the cascade */
@media (max-width: 768px) {
  .calc-wrapper   { grid-template-columns: 1fr; max-width: 100%; }
  .calc-results   { position: static; padding: 1.5rem 1rem; }
  .calc-controls  { padding: 1.5rem 1rem; }
  .calc-pills     { grid-template-columns: repeat(2, 1fr); }
  .calc-role-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .plans-grid       { grid-template-columns: 1fr; }
  .hero-stats       { grid-template-columns: 1fr 1fr 1fr; }
  .btn-primary,
  .btn-secondary    { width: 100%; justify-content: center; text-align: center; }
  .hero-title       { font-size: clamp(1.75rem, 8vw, 2.25rem); overflow-wrap: break-word; }
  .calc-controls    { padding: 1.25rem 0.875rem; }
  .calc-results     { padding: 1.25rem 0.875rem; }
  .calc-role-grid   { grid-template-columns: repeat(2, 1fr); }
  .container        { padding: 0 1rem; }
  .careers-form-box { padding: 1.5rem 1rem; }
  .contact-form-box { padding: 1.5rem 1rem; }
}

/* Prevent horizontal overflow on mobile */
html, body { overflow-x: hidden; max-width: 100%; }
.hero { overflow-x: hidden; }

/* ── Legal Pages ─────────────────────────────────────────────── */
.legal-page { padding: 4rem 0 5rem; }
.legal-header { text-align: center; margin-bottom: 3rem; }
.legal-header h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 0.5rem; }
.legal-updated { font-size: 0.875rem; color: var(--muted-foreground); }
.legal-body { max-width: 48rem; margin: 0 auto; }
.legal-body h2 { font-size: 1.25rem; font-weight: 700; margin: 2rem 0 0.75rem; color: var(--foreground); border-bottom: 1px solid var(--border); padding-bottom: 0.375rem; }
.legal-body h3 { font-size: 1.05rem; font-weight: 700; margin: 1.5rem 0 0.5rem; color: var(--foreground); }
.legal-body p { font-size: 0.9375rem; line-height: 1.75; color: var(--muted-foreground); margin-bottom: 1rem; }
.legal-body ul { margin: 0 0 1rem 1.25rem; }
.legal-body ul li { font-size: 0.9375rem; line-height: 1.75; color: var(--muted-foreground); margin-bottom: 0.375rem; }
.legal-body a { color: var(--primary); font-weight: 600; }
.legal-body a:hover { text-decoration: underline; }
.legal-body strong { color: var(--foreground); }

/* ── Form consent checkbox ───────────────────────────────────── */
.form-consent { margin-bottom: 1rem; }
.consent-label { display: flex; align-items: flex-start; gap: 0.625rem; cursor: pointer; }
.consent-label input[type="checkbox"] { flex-shrink: 0; margin-top: 0.2rem; width: 1rem; height: 1rem; accent-color: var(--primary); cursor: pointer; }
.consent-label span { font-size: 0.8125rem; line-height: 1.5; color: var(--muted-foreground); }
.consent-label a { color: var(--primary); font-weight: 600; }
.consent-label a:hover { text-decoration: underline; }

/* ── Footer legal links ──────────────────────────────────────── */
.footer-bottom { flex-wrap: wrap; gap: 0.5rem; }
.footer-legal-links { display: inline-flex; flex-wrap: wrap; gap: 0 1.25rem; margin-left: 1rem; }
.footer-legal-links a { color: var(--muted-foreground); font-size: 0.8125rem; transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--primary); }


/* ============================================
   NAVBAR — FREIGHT LINK
   ============================================ */
.navbar-freight-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--secondary) !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  border: 1.5px solid hsla(16, 68%, 52%, 0.35);
  padding: 0.3rem 0.75rem !important;
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s !important;
  font-size: 0.875rem;
}
.navbar-freight-link:hover,
.navbar-freight-link.active {
  background: hsla(16, 68%, 52%, 0.1);
  border-color: var(--secondary);
  color: var(--secondary) !important;
}
.navbar-mobile .navbar-freight-link {
  display: block;
  border: none;
  padding: 0 !important;
  font-size: 1rem;
  opacity: 0.9 !important;
}

/* ============================================
   FREIGHT PAGE — HERO OVERRIDE
   ============================================ */
.freight-hero-overlay {
  background: hsla(210, 50%, 10%, 0.62) !important;
}

/* ============================================
   FREIGHT PAGE — EQUIPMENT GRID
   ============================================ */
.freight-equipment { padding: 6rem 0; background: var(--card); }
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.equipment-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.equipment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px -12px hsla(16, 68%, 52%, 0.2);
  border-color: hsla(16, 68%, 52%, 0.4);
}
.equipment-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 1rem;
  background: var(--accent-gradient);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--secondary-foreground);
}
.equipment-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.equipment-desc {
  font-size: 0.8rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}

@media (max-width: 900px)  { .equipment-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .equipment-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================
   FREIGHT PAGE — TMS SECTION
   ============================================ */
.freight-tms { padding: 6rem 0; background: var(--background); }
.tms-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.tms-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.tms-feature-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.875rem 1rem;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.tms-feature-row:hover { border-color: hsla(148, 27%, 36%, 0.4); }
.tms-feature-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 0.625rem;
  background: var(--hero-gradient);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--primary-foreground);
}
.tms-feature-title { font-size: 0.9rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.2rem; }
.tms-feature-desc  { font-size: 0.8rem; color: var(--muted-foreground); line-height: 1.5; }

/* TMS Visual — mock UI card */
.tms-visual { position: relative; }
.tms-card-main {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px -12px hsla(148, 27%, 36%, 0.15);
}
.tms-card-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.875rem 1.25rem;
  background: var(--foreground);
}
.tms-card-dot {
  width: 0.75rem; height: 0.75rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.tms-dot-red    { background: #ff5f57; }
.tms-dot-yellow { background: #febc2e; }
.tms-dot-green  { background: #28c840; }
.tms-card-title {
  font-size: 0.75rem;
  color: rgba(232, 220, 204, 0.5);
  margin-left: 0.5rem;
  font-family: monospace;
}
.tms-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.tms-load-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; }
.tms-load-label { color: var(--muted-foreground); font-size: 0.8rem; }
.tms-load-val   { font-weight: 600; color: var(--foreground); }
.tms-status-badge {
  display: inline-block;
  background: hsla(148, 27%, 36%, 0.15);
  color: var(--primary);
  border: 1px solid hsla(148, 27%, 36%, 0.35);
  padding: 0.2rem 0.625rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}
.tms-progress-wrap { margin-top: 0.5rem; }
.tms-progress-track {
  height: 6px;
  background: var(--muted);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.35rem;
}
.tms-progress-fill { height: 100%; background: var(--accent-gradient); border-radius: 999px; }
.tms-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--muted-foreground);
}

/* Floating badges */
.tms-badge-fmcsa,
.tms-badge-carriers {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 8px 32px -8px hsla(148, 27%, 36%, 0.25);
}
.tms-badge-fmcsa {
  background: var(--hero-gradient);
  color: var(--primary-foreground);
  bottom: -1.5rem; left: -1.5rem;
}
.tms-badge-carriers {
  background: var(--secondary);
  color: var(--secondary-foreground);
  top: -1rem; right: -1rem;
}
.tms-badge-main { font-size: 0.875rem; font-weight: 700; line-height: 1.2; }
.tms-badge-sub  { font-size: 0.7rem; opacity: 0.8; }

@media (max-width: 1024px) {
  .tms-inner { grid-template-columns: 1fr; gap: 3rem; }
  .tms-badge-fmcsa { bottom: -1rem; left: 0; }
  .tms-badge-carriers { top: -0.5rem; right: 0; }
}

/* ============================================
   FREIGHT PAGE — WHY PYRO GRID
   ============================================ */
.freight-why { padding: 6rem 0; background: var(--card); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px -12px hsla(148, 27%, 36%, 0.18);
}
.why-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  background: var(--hero-gradient);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-foreground);
  margin-bottom: 1.25rem;
}
.why-title { font-size: 1rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.625rem; }
.why-desc  { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.65; }

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================
   FREIGHT PAGE — BACK TO BPO LINK
   ============================================ */
.bpo-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.2s, color 0.2s;
}
.bpo-back-link:hover { gap: 0.75rem; color: var(--secondary); }

/* ============================================
   SERVICE SELECTION POPUP
   ============================================ */
.service-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: hsla(40, 3%, 10%, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fade-in 0.35s ease-out both;
}
.service-popup-overlay[hidden] { display: none; }

.service-popup-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  max-width: 680px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px -16px hsla(40, 3%, 10%, 0.35);
  animation: fade-in 0.4s ease-out 0.1s both;
}
.service-popup-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}
.service-popup-title {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.service-popup-sub {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Option cards */
.service-popup-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.popup-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.75rem 1.25rem;
  border-radius: 1rem;
  border: 2px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  font-family: var(--font-body);
}
.popup-option:hover {
  transform: translateY(-4px);
}
.popup-option--bpo:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px -8px hsla(148, 27%, 36%, 0.2);
}
.popup-option--freight:hover {
  border-color: var(--secondary);
  box-shadow: 0 12px 40px -8px hsla(16, 68%, 52%, 0.25);
}
.popup-option-icon {
  width: 4rem; height: 4rem;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.popup-option--bpo    .popup-option-icon { background: var(--hero-gradient);   color: var(--primary-foreground); }
.popup-option--freight .popup-option-icon { background: var(--accent-gradient); color: var(--secondary-foreground); }
.popup-option-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--foreground);
  margin: 0;
}
.popup-option-desc {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.55;
  margin: 0;
}
.popup-option-cta {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-top: 0.25rem;
}
.popup-option--bpo    .popup-option-cta { color: var(--primary); }
.popup-option--freight .popup-option-cta { color: var(--secondary); }

/* Skip button */
.service-popup-skip {
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-size: 0.8125rem;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
}
.service-popup-skip:hover { color: var(--foreground); text-decoration: underline; }

@media (max-width: 540px) {
  .service-popup-options { grid-template-columns: 1fr; }
  .service-popup-card { padding: 2rem 1.25rem; }
}
