@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Hanken+Grotesk:wght@400;500;600;700;800&display=swap');

/* ============================================================
   AKS Logistics — styles.css
   Shared foundation loaded on every page: design tokens, reset,
   typography, buttons, header/nav, footer, page hero, and the
   components reused across pages (cards, CTA, galleries, stats).
   ============================================================ */

:root { --navy:        #0a1f44;
  --navy-dark:   #061330;
  --navy-deep:   #04102a;
  --navy-light:  #14305f;
  --navy-steel:  #2d4a7a;
  --red:         #c0392b;
  --red-dark:    #9c2c20;
  --red-light:   #e0533f;

  
  --ink:         #1e2a38;   
  --ink-soft:    #46535f;   
  --muted:       #6c7682;   
  --white:       #ffffff;
  --paper:       #f6f2ea;   
  --paper-2:     #efe9dd;   
  --cream:       #fbf8f2;
  --line:        #e3dccd;   
  --line-soft:   #ece6da;

  
  --off-white:   var(--paper);
  --gray-100:    var(--line-soft);
  --gray-200:    var(--line);
  --gray-300:    #b4ab98;
  --gray-500:    var(--ink-soft);
  --gray-700:    var(--ink);
  --black:       #0b0e14;

  
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-heading: 'Hanken Grotesk', system-ui, sans-serif; 
  --font-body:    'Hanken Grotesk', system-ui, sans-serif;

  
  --section-pad-y: 112px;
  --section-pad-x: 6%;
  --header-height: 84px;
  --maxw: 1240px;

  
  --transition-fast: 0.18s ease;
  --transition-med:  0.34s cubic-bezier(.22,.7,.25,1);
  --transition-slow: 0.6s  cubic-bezier(.22,.7,.25,1);

  
  --shadow-sm:  0 1px 2px rgba(10,31,68,.06), 0 4px 12px rgba(10,31,68,.05);
  --shadow-md:  0 10px 30px rgba(10,31,68,.10);
  --shadow-lg:  0 24px 60px rgba(10,31,68,.16);
  --shadow-xl:  0 36px 80px rgba(10,31,68,.20);

  
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body { font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }

ul, ol { list-style: none; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.01em; }

::selection { background: var(--navy); color: var(--white); }

.container { width: 90%; max-width: var(--maxw); margin: 0 auto; }

.section-label { display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  padding-left: 46px;
  position: relative; }

.section-label::before { content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 34px; height: 1.5px;
  background: var(--red);
  transform: translateY(-50%); }

.section-label::after { content: '';
  position: absolute;
  left: 34px; top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red);
  transform: translate(2px, -50%); }

.section-title { font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.06;
  color: var(--navy);
  margin-bottom: 20px; }

.section-subtitle { font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.75; }

.btn { display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--transition-med), color var(--transition-med),
              transform var(--transition-med), box-shadow var(--transition-med),
              border-color var(--transition-med);
  position: relative; }

.btn-primary { background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(192,57,43,.22); }

.btn-primary::after { content: '\2192'; font-weight: 600; transition: transform var(--transition-med); }

.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(192,57,43,.30); }

.btn-primary:hover::after { transform: translateX(4px); }

.btn-outline { background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.45); }

.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-2px); }

.btn-navy { background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(10,31,68,.22); }

.btn-navy::after { content: '\2192'; transition: transform var(--transition-med); }

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

.btn-navy:hover::after { transform: translateX(4px); }

.btn-cta-light { background: var(--white);
  color: var(--navy); }

.btn-cta-light::after { content: '\2192'; transition: transform var(--transition-med); }

.btn-cta-light:hover { background: var(--cream); transform: translateY(-2px); }

.btn-cta-light:hover::after { transform: translateX(4px); }

.route-rule { display: flex; align-items: center; gap: 0;
  width: 120px; height: 12px; }

.header { position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: height var(--transition-med), background var(--transition-med), box-shadow var(--transition-med);
  background: transparent; }

.header::before { content: '';
  position: absolute; inset: 0 0 auto 0; height: 140px;
  background: linear-gradient(180deg, rgba(4,12,32,.55), transparent);
  pointer-events: none;
  transition: opacity var(--transition-med); }

.header.scrolled { background: rgba(8,22,52,.92);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), var(--shadow-md);
  height: 70px; }

.header.scrolled::before { opacity: 0; }

.header.nav-open { background: rgba(8,22,52,.96);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1); }

.header.nav-open::before { opacity: 0; }

.header .container { width: 94%;
  max-width: 1560px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1; }

.header-logo a { display: flex; align-items: center; }

.header-logo img { width: 250px;
  height: auto;
  max-width: 100%;
  border-radius: 6px;
  transition: width var(--transition-med); }

.header.scrolled .header-logo img { width: 212px; }

.nav-links { display: flex; align-items: center; gap: 2px; }

.nav-links a { position: relative;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  letter-spacing: 0.01em;
  border-radius: 6px;
  transition: color var(--transition-fast); }

.nav-links a::after { content: '';
  position: absolute;
  bottom: 6px; left: 18px; right: 18px;
  height: 1.5px;
  background: var(--red-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-med); }

.nav-links a:hover { color: var(--white); }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-links a.active { color: var(--white); }

.nav-dropdown { position: relative; display: flex; align-items: center; }

.nav-dropdown-menu { position: absolute;
  top: 100%; left: 50%; transform: translate(-50%, 8px);
  min-width: 250px;
  background: var(--navy-deep);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  padding: 8px;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--transition-med), transform var(--transition-med), visibility var(--transition-med);
  box-shadow: var(--shadow-lg);
  z-index: 300; }

.nav-dropdown-menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0); }

.nav-dropdown-menu a { padding: 11px 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.78);
  border-radius: 6px;
  white-space: nowrap; }

.nav-dropdown-menu a::after { display: none; }

.nav-dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,.07); }

.hamburger { display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none; }

.hamburger span { display: block; width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-med); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }

.hamburger.active span:nth-child(2) { opacity: 0; }

.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav-overlay { position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: rgba(8,22,52,.97);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity .26s ease, transform .26s cubic-bezier(.22,.7,.25,1), visibility .26s; }

.header.scrolled ~ .mobile-nav-overlay { top: 70px; }

.mobile-nav-overlay.active { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }

.mobile-nav-overlay a { font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  color: rgba(255,255,255,.86);
  padding: 15px 8%;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition-fast), background var(--transition-fast); }

.mobile-nav-overlay a:last-child { border-bottom: none; }

.mobile-nav-overlay a:hover,
.mobile-nav-overlay a.active { color: var(--red-light); background: rgba(255,255,255,.04); }

@keyframes heroRise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.page-hero { position: relative;
  width: 100%;
  padding: 180px 0 96px;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 58%, var(--navy-light) 120%);
  overflow: hidden;
  text-align: center; }

.page-hero::before { content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(120% 80% at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none; }

.page-hero::after { content: ''; position: absolute; inset: 0;
  background-image: var(--grain); opacity: .05; mix-blend-mode: overlay; pointer-events: none; }

.page-hero h1 { font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  position: relative; z-index: 1; }

.page-hero p,
.page-hero .page-hero-subtitle { font-size: 1.12rem;
  color: rgba(255,255,255,.7);
  max-width: 600px;
  margin: 0 auto;
  position: relative; z-index: 1; }

.page-hero .breadcrumb { margin-top: 26px;
  display: flex; justify-content: center; gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.45);
  position: relative; z-index: 1; }

.page-hero .breadcrumb a { color: var(--red-light); }

.page-hero .breadcrumb a:hover { color: var(--white); }

.page-hero-content { position: relative; z-index: 1; }

.page-hero-overlay { display: none; }

.footer { background: var(--navy-deep);
  color: rgba(255,255,255,.65);
  position: relative;
  overflow: hidden; }

.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: rgba(255,255,255,.1); }

.footer::after { content: ''; position: absolute; inset: 0;
  background-image: var(--grain); opacity: .04; mix-blend-mode: overlay; pointer-events: none; }

.footer-main { padding: 78px var(--section-pad-x) 56px;
  display: grid;
  grid-template-columns: repeat(5, auto);
  justify-content: space-between;
  gap: 40px;
  align-items: start;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative; z-index: 1; }

.footer-brand p { font-size: 0.92rem; line-height: 1.8; margin-top: 20px; max-width: 320px; color: rgba(255,255,255,.6); }

.footer-brand .footer-logo { width: 230px; max-width: 100%;
  background: var(--white);
  padding: 9px 14px;
  border-radius: 7px; }

.footer-col h4 { font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  margin-bottom: 22px;
  padding-bottom: 14px;
  position: relative; }

.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0;
  width: 26px; height: 2px; background: var(--red); }

.footer-col ul li { margin-bottom: 12px; }

.footer-col ul li a { font-size: 0.92rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-flex; align-items: center; gap: 9px; }

.footer-col ul li a::before { content: ''; display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid var(--red-light);
  border-bottom: 1.5px solid var(--red-light);
  transform: rotate(-45deg);
  transition: transform var(--transition-fast); }

.footer-col ul li a:hover { color: var(--white); transform: translateX(3px); }

.footer-col ul li a:hover::before { transform: rotate(-45deg) translate(1px, 1px); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 26px var(--section-pad-x); position: relative; z-index: 1; }

.footer-bottom-inner { max-width: var(--maxw);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 22px; }

.footer-bottom-left { display: flex; align-items: center; gap: 22px; }

.footer-bottom-left .footer-logo-small { width: 188px; max-width: 100%;
  background: var(--white);
  padding: 7px 12px;
  border-radius: 6px; }

.footer-bottom-left .footer-address { font-size: 0.82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  border-left: 1px solid rgba(255,255,255,.14);
  padding-left: 22px; }

.footer-social { display: flex; align-items: center; gap: 12px; }

.footer-social a { width: 42px; height: 42px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition-med);
  color: rgba(255,255,255,.7);
  position: relative; overflow: hidden; }

.footer-social a::before { content: ''; position: absolute; inset: 0;
  background: var(--red);
  transform: translateY(101%);
  transition: transform var(--transition-med); }

.footer-social a:hover { border-color: var(--red); color: var(--white); }

.footer-social a:hover::before { transform: translateY(0); }

.footer-social a svg { width: 17px; height: 17px; position: relative; z-index: 1; }

.footer-legal { display: flex; align-items: center; gap: 22px; }

.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,.42); transition: color var(--transition-fast); white-space: nowrap; }

.footer-legal a:hover { color: var(--red-light); }

.footer-copy { max-width: var(--maxw);
  margin: 18px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  font-size: 0.78rem;
  color: rgba(255,255,255,.38);
  text-align: center;
  letter-spacing: 0.02em; }

.about-stats { padding: 84px var(--section-pad-x); background: var(--navy); position: relative; overflow: hidden; }

.about-stats::after { content: ''; position: absolute; inset: 0;
  background-image: var(--grain); opacity: .05; mix-blend-mode: overlay; pointer-events: none; }

.stats-grid { display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1080px;
  margin: 0 auto;
  position: relative; z-index: 1; }

.stat-card { text-align: center;
  padding: 18px 24px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255,255,255,.12);
  box-shadow: none; }

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

.stat-card h3,
.stat-card .stat-number { font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: 3.1rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em; }

.stat-card h3 span,
.stat-card .stat-number span { color: var(--red-light); }

.stat-card p,
.stat-card .stat-label { font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.6);
  margin-top: 12px; }

.cta-section { padding: 96px var(--section-pad-x);
  background: var(--red-dark);
  text-align: center;
  position: relative;
  overflow: hidden; }

.cta-section::before { content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(100% 100% at 50% 0%, #000, transparent 72%);
          mask-image: radial-gradient(100% 100% at 50% 0%, #000, transparent 72%);
  pointer-events: none; }

.cta-section::after { content: ''; position: absolute; inset: 0;
  background-image: var(--grain); opacity: .05; mix-blend-mode: overlay; pointer-events: none; }

.cta-section h2 { font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  position: relative; z-index: 1; }

.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,.86);
  max-width: 540px; margin: 0 auto 34px; line-height: 1.7;
  position: relative; z-index: 1; }

.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

.reveal { opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22,.7,.25,1), transform .7s cubic-bezier(.22,.7,.25,1); }

.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card { border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 28px; }
  .stat-card:nth-child(3), .stat-card:nth-child(4) { border-bottom: none; }
}

@media (max-width: 820px) {
  :root { --section-pad-y: 76px; --header-height: 70px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-bottom-left { flex-direction: column; text-align: center; }
  .footer-bottom-left .footer-address { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,.1); padding-top: 14px; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .header-logo img { width: 210px; }
  .header.scrolled .header-logo img { width: 196px; }
}

@media (max-width: 560px) {
  :root { --section-pad-y: 58px; --section-pad-x: 7%; }
  .btn { padding: 13px 26px; font-size: .88rem; }
  .footer-main { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { border-right: none; }
  .page-hero { padding: 140px 0 64px; }
  .footer-bottom-left .footer-logo-small { width: 168px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-delay: 0s !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

.why-section .section-header,
.process-section .section-header,
.industries-section .section-header,
.testimonials-section .section-header { text-align: center;
  max-width: 720px;
  margin: 0 auto 56px; }

.why-section .section-label,
.process-section .section-label,
.industries-section .section-label,
.testimonials-section .section-label { padding-left: 0; justify-content: center; }

.why-section .section-label::before,  .why-section .section-label::after,
.process-section .section-label::before, .process-section .section-label::after,
.industries-section .section-label::before, .industries-section .section-label::after,
.testimonials-section .section-label::before, .testimonials-section .section-label::after { display: none; }

.why-section .section-subtitle,
.process-section .section-subtitle,
.industries-section .section-subtitle,
.testimonials-section .section-subtitle { margin: 0 auto; }

.intro-band { padding: var(--section-pad-y) var(--section-pad-x); background: var(--white); }

.intro-inner { max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center; }

.intro-text .section-title { margin-bottom: 22px; }

.intro-text p { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 20px; max-width: 560px; }

.intro-text .btn { margin-top: 12px; }

.intro-points { border-top: 1px solid var(--line); }

.intro-points li { position: relative; padding: 22px 0 22px 28px; border-bottom: 1px solid var(--line); }

.intro-points li::before { content: ''; position: absolute; left: 0; top: 27px;
  width: 9px; height: 9px; border: 1.5px solid var(--red); border-radius: 50%; }

.intro-points strong { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: 3px; }

.intro-points span { font-size: 0.92rem; color: var(--ink-soft); }

.stats-band {  }

@media (max-width: 1024px) {
  .intro-inner { grid-template-columns: 1fr; gap: 40px; }
}

.story-section .section-header,
.values-section .section-header,
.coverage-section .section-header,
.modes-section .section-header,
.valueadd-section .section-header,
.locations-section .section-header,
.depts-section .section-header { text-align: center;
  max-width: 720px;
  margin: 0 auto 56px; }

.story-section .section-label,    .values-section .section-label,
.coverage-section .section-label, .modes-section .section-label,
.valueadd-section .section-label, .locations-section .section-label,
.depts-section .section-label { padding-left: 0; justify-content: center; }

.story-section .section-label::before, .story-section .section-label::after,
.values-section .section-label::before, .values-section .section-label::after,
.coverage-section .section-label::before, .coverage-section .section-label::after,
.modes-section .section-label::before, .modes-section .section-label::after,
.valueadd-section .section-label::before, .valueadd-section .section-label::after,
.locations-section .section-label::before, .locations-section .section-label::after,
.depts-section .section-label::before, .depts-section .section-label::after { display: none; }

.story-section .section-subtitle,    .values-section .section-subtitle,
.coverage-section .section-subtitle,  .modes-section .section-subtitle,
.valueadd-section .section-subtitle,  .locations-section .section-subtitle,
.depts-section .section-subtitle { margin: 0 auto; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; max-width: var(--maxw); margin: 0 auto; }

.feature-card { background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med); }

.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-soft); }

.feature-icon { width: 52px; height: 52px; border-radius: 8px;
  background: var(--paper); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--navy);
  transition: background var(--transition-med), color var(--transition-med), border-color var(--transition-med); }

.feature-icon svg { width: 24px; height: 24px; }

.feature-card:hover .feature-icon { background: var(--navy); border-color: var(--navy); color: var(--white); }

.feature-card h3 { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 9px; letter-spacing: -0.01em; }

.feature-card p { font-size: 0.93rem; color: var(--ink-soft); line-height: 1.7; }

.valueadd-section { padding: var(--section-pad-y) var(--section-pad-x); background: var(--paper); }

.valueadd-inner { max-width: var(--maxw); margin: 0 auto; }

.sector-gallery { padding: 100px var(--section-pad-x);
  background: var(--navy-deep);
  position: relative; }

.sector-gallery-eyebrow { text-align: center;
  font-family: var(--font-heading);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 18px; }

.sector-gallery-grid { max-width: 940px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  align-items: start; }

.sector-photo-tile { position: relative; overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 3 / 2;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow-lg); }

.sector-photo-tile:nth-child(2) { margin-top: 74px; }

.sector-photo-tile::before { content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px; }

.sector-photo-tile img { position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.12) contrast(1.03) brightness(.92); }

.sector-photo-tile.no-photo::after { content: ''; position: absolute; inset: 0; z-index: 1;
  background: no-repeat center / 50px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='m21 15-5-5L5 21'/%3E%3C/svg%3E");
  opacity: .22; }

@media (max-width: 700px) {
  .sector-gallery { padding: 64px var(--section-pad-x); }
  .sector-gallery-grid { grid-template-columns: 1fr; gap: 18px; max-width: 460px; }
  .sector-photo-tile:nth-child(2) { margin-top: 0; }
}
