@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@300;400;500;600;700;800&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ============================================================
   ULTRA COMMERCIAL & CO. — REDESIGNED STYLESHEET
   Design System: Enterprise Gateway / Trust & Authority
   Colors: #2563EB (blue) · #F97316 (orange CTA) · #F8FAFC (bg)
   Fonts: Lexend (headings) · Source Sans 3 (body)
   ============================================================ */

/* ---- Tokens ---- */
:root {
  /* Brand */
  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --blue-light:  #3B82F6;
  --blue-tint:   #EFF6FF;
  --orange:      #F97316;
  --orange-dark: #EA580C;
  --orange-tint: #FFF7ED;

  /* Surfaces */
  --bg:          #F8FAFC;
  --bg-alt:      #F1F5F9;
  --bg-dark:     #0F172A;
  --bg-dark-mid: #1E293B;
  --white:       #FFFFFF;

  /* Text */
  --text:        #1E293B;
  --text-muted:  #64748B;
  --text-light:  #94A3B8;

  /* Borders */
  --border:      #E2E8F0;
  --border-dark: #334155;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.1),  0 4px 12px rgba(0,0,0,.06);
  --shadow-blue: 0 4px 20px rgba(37,99,235,.25);

  /* Shape */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --radius-pill:100px;

  /* Motion */
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur-fast: 150ms;
  --dur-base: 220ms;
  --dur-slow: 350ms;

  /* Type */
  --font-head: 'Lexend', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  /* Layout */
  --nav-h: 72px;
  --section-pad: 100px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
svg { flex-shrink: 0; }

/* ---- Focus ---- */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---- Utilities ---- */
.section-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-tint);
  border: 1px solid rgba(249,115,22,.25);
  color: var(--orange-dark);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.section-tag--light {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: rgba(255,255,255,.75);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.8vw, 2.75rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.text-accent { color: var(--blue); }
.body-text { font-size: 1rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  transition: background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow-blue);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 4px 20px rgba(249,115,22,.35);
}

.btn-ghost-white {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
}

.btn-full { width: 100%; justify-content: center; padding: 15px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--dur-base) var(--ease-out);
}

.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-wrap: wrap;
}

.nav-link {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
  cursor: pointer;
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--bg-alt);
}
.nav-link.active { color: var(--blue); font-weight: 600; background: var(--blue-tint); }

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-left: 8px;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

/* Dropdown */
.nav-item { position: relative; }
.dropdown-toggle { display: flex; align-items: center; gap: 4px; }
.dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 8px; height: 5px;
  background: url("data:image/svg+xml,%3Csvg width='8' height='5' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l3 3 3-3' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  transition: transform var(--dur-fast);
}
.nav-item:hover .dropdown-toggle::after { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  transform: translateX(-50%) translateY(-6px);
  z-index: 100;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: transparent;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: block;
  font-size: .88rem;
  color: var(--text-muted);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast), color var(--dur-fast);
  line-height: 1.4;
}
.dropdown-item:hover { background: var(--bg-alt); color: var(--text); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-fast);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--bg-dark) url('../images/HERO SECTION.webp') center center / cover no-repeat;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,23,42,.88) 0%,
    rgba(30,40,80,.75) 60%,
    rgba(15,23,42,.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 32px 120px;
  width: 100%;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 22px;
}

.hero-title-highlight {
  color: var(--orange);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.72);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.hero-stats-bar {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  padding: 20px 28px;
  max-width: fit-content;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0 28px;
}

.hstat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hstat-label {
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  letter-spacing: .03em;
  text-transform: uppercase;
}

.hstat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.6);
  animation: bounce 2.4s ease-in-out infinite;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.hero-scroll:hover { color: var(--white); border-color: rgba(255,255,255,.6); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   BRANDS BAR
   ============================================================ */
.brands-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  overflow: hidden;
}

.brands-label {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 20px;
}

.brands-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .brands-track { animation: none; } }

.brands-slide {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 0 24px;
}

.brands-slide img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: .85;
  filter: none;
  transition: opacity var(--dur-base);
}
.brands-slide img:hover { opacity: 1; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), border-color var(--dur-base);
  cursor: default;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: transparent;
}

.svc-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.svc-icon--blue { background: var(--blue-tint); color: var(--blue); }
.svc-icon--orange { background: var(--orange-tint); color: var(--orange); }

.svc-body { flex: 1; }
.svc-body h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.svc-body p { font-size: .92rem; color: var(--text-muted); line-height: 1.65; }

.svc-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--text-muted);
  margin-top: auto;
  align-self: flex-start;
  transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-base) var(--ease-out);
}
.service-card:hover .svc-arrow {
  background: var(--blue);
  color: var(--white);
  transform: translateX(3px);
}

/* Tier cards */
.shipper-tiers { margin-top: 8px; }

.tiers-heading {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.tier-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  cursor: pointer;
  transition: box-shadow var(--dur-base), border-color var(--dur-base), transform var(--dur-base) var(--ease-out);
}
.tier-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tier-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--blue-tint);
  color: var(--blue);
  flex-shrink: 0;
}

.tier-body { flex: 1; min-width: 0; }
.tier-body strong {
  display: block;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.tier-body p { font-size: .8rem; color: var(--text-muted); line-height: 1.4; }

.tier-chevron {
  color: var(--text-light);
  transition: color var(--dur-fast), transform var(--dur-base) var(--ease-out);
  flex-shrink: 0;
}
.tier-card:hover .tier-chevron { color: var(--blue); transform: translateX(3px); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 80%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 52%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.about-years-badge {
  position: absolute;
  top: 50%; left: -24px;
  transform: translateY(-50%);
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-blue);
  z-index: 2;
}

.badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.3;
  opacity: .85;
  letter-spacing: .02em;
}

.about-content { display: flex; flex-direction: column; align-items: flex-start; }

.about-feats-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 32px;
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feat-check {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}

.about-feat strong {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.about-feat p { font-size: .88rem; color: var(--text-muted); }

/* ============================================================
   SPECIALIST SERVICES
   ============================================================ */
.specialist-section {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.specialist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.spec-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--dur-base), transform var(--dur-base) var(--ease-out), border-color var(--dur-base);
}
.spec-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--blue);
}

.spec-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--border);
  letter-spacing: -.04em;
  line-height: 1;
}

.spec-card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.spec-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.spec-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: 4px;
  transition: gap var(--dur-fast);
}
.spec-link:hover { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-content { display: flex; flex-direction: column; align-items: flex-start; }

.why-feats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 28px 0 36px;
}

.why-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-feat-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--blue-tint);
  color: var(--blue);
  flex-shrink: 0;
}

.why-feat strong {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.why-feat p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

.why-images {
  position: relative;
  height: 480px;
}

.why-img-main {
  position: absolute;
  top: 0; right: 0;
  width: 80%;
  height: 75%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.why-img-secondary {
  position: absolute;
  bottom: 0; left: 0;
  width: 54%;
  height: 50%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  padding: var(--section-pad) 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(37,99,235,.18) 0%, transparent 70%);
  pointer-events: none;
}

.stats-header { text-align: center; margin-bottom: 64px; }

.stats-title { color: var(--white); }
.stats-highlight { color: var(--orange); }
.stats-sub { color: rgba(255,255,255,.55); margin: 0 auto; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.stat-card {
  background: rgba(255,255,255,.03);
  padding: 44px 32px;
  text-align: center;
  transition: background var(--dur-base);
}
.stat-card:hover { background: rgba(255,255,255,.06); }

.stat-icon-wrap {
  color: var(--blue-light);
  opacity: .75;
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.stat-value {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.03em;
  display: inline-block;
}

.stat-unit {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  display: inline-block;
  vertical-align: top;
}

.stat-label-text {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  display: block;
  margin-top: 12px;
}

/* ============================================================
   DIRECTOR
   ============================================================ */
.director-section {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.director-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

.director-img-wrap {
  position: relative;
}

.director-img-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.director-content { display: flex; flex-direction: column; gap: 0; }

.director-quote-block {
  margin: 20px 0 28px;
  padding: 28px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.quote-icon {
  color: var(--blue);
  opacity: .12;
  position: absolute;
  top: 16px; right: 20px;
}

blockquote {
  font-size: 1.12rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.75;
}

.director-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.director-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.director-role {
  font-size: .88rem;
  color: var(--text-muted);
}

/* ============================================================
   NEWS
   ============================================================ */
.news-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-base), transform var(--dur-base) var(--ease-out);
}
.news-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.news-img-wrap {
  position: relative;
  overflow: hidden;
}

.news-card--featured .news-img-wrap { aspect-ratio: 16 / 10; }
.news-card:not(.news-card--featured) .news-img-wrap { aspect-ratio: 16 / 9; }

.news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.news-card:hover .news-img-wrap img { transform: scale(1.04); }

.news-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.news-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.news-date {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.news-body h3 {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.news-body p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: 6px;
  transition: gap var(--dur-fast);
}
.news-link:hover { gap: 10px; }

/* ============================================================
   QUOTE / CONTACT
   ============================================================ */
.quote-section {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--blue-tint);
  color: var(--blue);
  flex-shrink: 0;
}

.contact-detail-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.contact-detail-item p { font-size: .88rem; color: var(--text-muted); line-height: 1.5; }

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.form-card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .01em;
}
.form-group label span { color: var(--orange); }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  width: 100%;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { cursor: pointer; }

.form-note {
  font-size: .82rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: 56px 0;
  background: var(--bg-dark-mid);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-text h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.newsletter-text p { font-size: .95rem; color: rgba(255,255,255,.55); }

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.newsletter-form input {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  width: 280px;
  outline: none;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form input:focus {
  border-color: var(--blue);
  background: rgba(255,255,255,.12);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  padding: 72px 0 0;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-logo { height: 44px; width: auto; margin-bottom: 16px; }

.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.08);
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.social-link:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.footer-links h4 {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color var(--dur-fast);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 32px;
  max-width: 1240px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
  text-align: center;
}

.footer-bottom strong { color: rgba(255,255,255,.5); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-blue);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--dur-base), visibility var(--dur-base), transform var(--dur-base) var(--ease-out);
  z-index: 900;
  cursor: pointer;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--blue-dark); transform: translateY(-2px); }

/* ============================================================
   AOS TWEAKS
   ============================================================ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .tiers-grid { grid-template-columns: repeat(2, 1fr); }
  .specialist-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid,
  .why-grid { grid-template-columns: 1fr; gap: 48px; }

  .about-images { height: 400px; order: -1; }
  .why-images { height: 380px; }

  .director-grid { grid-template-columns: 300px 1fr; gap: 48px; }

  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card--featured { grid-column: span 2; }

  .quote-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-container { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 64px; --nav-h: 64px; }

  .section-container { padding: 0 20px; }

  /* Nav */
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    max-height: calc(100svh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 10px 16px; }
  .nav-cta { text-align: center; margin: 8px 0 0; }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: 1px solid var(--border);
    margin-top: 4px;
  }

  /* Hero */
  .hero-stats-bar {
    flex-direction: column;
    max-width: 100%;
    gap: 12px;
    padding: 20px;
  }
  .hstat-divider { width: 40px; height: 1px; }
  .hero-stat { padding: 0; align-items: center; }
  .hstat-num { font-size: 1.5rem; }
  .hero-cta-row { flex-direction: column; }
  .btn-ghost-white, .btn-orange { width: 100%; justify-content: center; }

  /* Grids */
  .services-grid,
  .tiers-grid,
  .specialist-grid,
  .stats-grid,
  .news-grid { grid-template-columns: 1fr; }
  .news-card--featured { grid-column: span 1; }

  /* About */
  .about-images { height: 320px; }
  .about-years-badge { left: 8px; }

  /* Why */
  .why-images { height: 280px; }

  /* Director */
  .director-grid { grid-template-columns: 1fr; }
  .director-img-wrap img { aspect-ratio: 4 / 3; }

  /* Footer */
  .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { padding: 20px; }

  /* Newsletter */
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { width: 100%; flex-direction: column; }
  .newsletter-form input { width: 100%; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero-trust-row { gap: 8px; }
  .trust-pill { font-size: .72rem; padding: 5px 11px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .hero-scroll { animation: none; }
}
