/* --- ABOUT HERO --- */
.about-hero {
  background: var(--navy);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -6%;
  width: 500px; height: 500px;
  background: rgba(192,57,43,0.05);
  border-radius: 50%;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--navy-light));
}
.about-hero .container { position: relative; z-index: 2; }
.about-hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 20px;
}
.about-hero-breadcrumb a { color: rgba(255,255,255,0.5); }
.about-hero-breadcrumb a:hover { color: white; }
.about-hero-breadcrumb .sep { font-size: 10px; }
.about-hero-content { max-width: 680px; }
.about-hero-label {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(192,57,43,0.15);
  color: rgba(255,255,255,0.85);
  padding: 5px 14px; border-radius: 20px;
  font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 18px;
  border: 1px solid rgba(192,57,43,0.2);
}
.about-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 44px; font-weight: 800;
  color: white; line-height: 1.12;
  margin-bottom: 18px; letter-spacing: -1px;
}
.about-hero h1 span { color: var(--red); }
.about-hero p {
  font-size: 17px; color: rgba(255,255,255,0.5);
  line-height: 1.75; max-width: 560px;
}


/* --- MISSION / OUR STORY --- */
.story-section {
  padding: 80px 0;
  background: var(--white);
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-visual {
  position: relative;
}
.story-card-stack {
  position: relative;
  height: 400px;
}
.story-card-bg {
  position: absolute;
  width: 88%;
  height: 88%;
  bottom: 0; right: 0;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
}
.story-card-front {
  position: absolute;
  width: 88%;
  height: 88%;
  top: 0; left: 0;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.story-card-front::before {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 250px; height: 250px;
  background: rgba(192,57,43,0.08);
  border-radius: 50%;
}
.story-card-front .big-stat {
  font-family: 'Outfit', sans-serif;
  font-size: 72px; font-weight: 800;
  color: var(--red);
  line-height: 1; margin-bottom: 8px;
  position: relative; z-index: 1;
}
.story-card-front .stat-label {
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.6);
  position: relative; z-index: 1;
  margin-bottom: 28px;
}
.story-card-front .stat-divider {
  width: 40px; height: 3px;
  background: var(--red); border-radius: 3px;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.story-card-front .mission-quote {
  font-size: 16px; color: rgba(255,255,255,0.75);
  line-height: 1.65; font-style: italic;
  position: relative; z-index: 1;
  max-width: 300px;
}

.story-text {}
.story-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.story-eyebrow .dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; }
.story-eyebrow span { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--red); }
.story-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 32px; font-weight: 700;
  color: var(--navy); line-height: 1.2;
  margin-bottom: 18px; letter-spacing: -0.3px;
}
.story-text p {
  font-size: 15px; color: var(--gray-500);
  line-height: 1.8; margin-bottom: 16px;
}
.story-text p strong { color: var(--navy); font-weight: 600; }


/* --- VALUES --- */
.values-section {
  padding: 80px 0;
  background: var(--off-white);
}
.values-header {
  text-align: center;
  margin-bottom: 48px;
}
.values-header .label {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--red); margin-bottom: 8px;
}
.values-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 32px; font-weight: 700; color: var(--navy);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  flex-wrap: nowrap !important;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.value-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.value-card:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.value-icon svg { width: 26px; height: 26px; color: white; }
.value-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--navy);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 14px; color: var(--gray-500); line-height: 1.75;
}


/* --- WHY CHOOSE US (differentiators) --- */
.differentiators {
  padding: 80px 0;
  background: var(--white);
}
.diff-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.diff-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 32px; font-weight: 700; color: var(--navy);
  margin-bottom: 16px;
}
.diff-text > p {
  font-size: 15px; color: var(--gray-500);
  line-height: 1.75; margin-bottom: 28px;
}
.diff-list {}
.diff-item {
  display: flex; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
}
.diff-item:last-child { border-bottom: none; }
.diff-item .d-num {
  width: 36px; height: 36px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 700; color: var(--red);
}
.diff-item .d-content h4 {
  font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.diff-item .d-content p {
  font-size: 13.5px; color: var(--gray-500); line-height: 1.6; margin: 0;
}

.diff-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.stat-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}
.stat-card:hover { box-shadow: var(--shadow-sm); border-color: var(--gray-200); }
.stat-card .stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 38px; font-weight: 800; color: var(--red);
  line-height: 1; margin-bottom: 6px;
}
.stat-card .stat-text {
  font-size: 13px; color: var(--gray-500);
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.8px;
}


/* --- WHO WE SERVE --- */
.industries-section {
  padding: 70px 0;
  background: var(--off-white);
}
.industries-header {
  text-align: center; margin-bottom: 44px;
}
.industries-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 8px;
}
.industries-header p { font-size: 15px; color: var(--gray-500); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.25s;
  cursor: default;
}
.industry-card:hover { border-color: var(--red); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.industry-icon {
  width: 48px; height: 48px;
  background: var(--gray-50);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  transition: all 0.25s;
}
.industry-card:hover .industry-icon { background: var(--red-light); }
.industry-icon svg { width: 22px; height: 22px; color: var(--navy); transition: color 0.25s; }
.industry-card:hover .industry-icon svg { color: var(--red); }
.industry-card span {
  font-size: 12.5px; font-weight: 600; color: var(--navy);
  display: block; line-height: 1.35;
}


/* --- OUR PROMISE --- */
.promise-section {
  padding: 70px 0;
  background: var(--red);
  position: relative;
  overflow: hidden;
}
.promise-section::before {
  content: '';
  position: absolute; top: -40%; right: -8%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.promise-header {
  text-align: center; margin-bottom: 40px; position: relative; z-index: 2;
}
.promise-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 30px; font-weight: 700; color: white; margin-bottom: 8px;
}
.promise-header p { font-size: 15px; color: rgba(255,255,255,0.6); }
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative; z-index: 2;
}
.promise-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: all 0.3s;
}
.promise-card:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); }
.promise-card .p-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.promise-card .p-icon svg { width: 22px; height: 22px; color: white; }
.promise-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 700; color: white; margin-bottom: 6px;
}
.promise-card p { font-size: 12.5px; color: rgba(255,255,255,0.6); line-height: 1.6; }


/* --- BRANDS WE CARRY --- */
.brands-section {
  padding: 60px 0;
  background: var(--white);
}
.brands-header { text-align: center; margin-bottom: 36px; }
.brands-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 8px;
}
.brands-header p { font-size: 14px; color: var(--gray-500); }
.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.brand-pill {
  padding: 16px 32px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: all 0.25s;
}
.brand-pill:hover { border-color: var(--gray-300); box-shadow: var(--shadow-sm); }
.brand-pill .b-name {
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--navy);
  text-align: center;
}
.brand-pill .b-sub { font-size: 11px; color: var(--gray-400); text-align: center; margin-top: 2px; }


/* --- BOTTOM CTA --- */
.about-cta {
  padding: 64px 0;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-cta::before {
  content: '';
  position: absolute; bottom: -50%; left: -5%;
  width: 350px; height: 350px;
  background: rgba(192,57,43,0.05);
  border-radius: 50%;
}
.about-cta .container { position: relative; z-index: 2; }
.about-cta h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 32px; font-weight: 700; color: white; margin-bottom: 12px;
}
.about-cta p { font-size: 16px; color: rgba(255,255,255,0.5); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.about-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-red {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: white;
  padding: 15px 30px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; border: none; cursor: pointer;
  transition: all 0.25s;
}
.btn-red:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,57,43,0.3); }
.btn-red svg { width: 16px; height: 16px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: white;
  padding: 15px 30px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600;
  border: 2px solid rgba(255,255,255,0.2); cursor: pointer;
  transition: all 0.25s;
}
.btn-ghost:hover { border-color: white; transform: translateY(-2px); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .story-layout { grid-template-columns: 1fr; gap: 40px; }
  .story-card-stack { height: 320px; }
  .diff-layout { grid-template-columns: 1fr; gap: 40px; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .about-hero h1 { font-size: 30px; }
  .values-grid { grid-template-columns: 1fr; }
  .diff-stats { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-grid { grid-template-columns: 1fr; }
  .brands-row { gap: 16px; }
  .brand-pill { padding: 14px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .top-strip-sep { display: none; }
  .top-strip-inner { gap: 10px; }
}