/* =========================================================
   Combined Freight Intl. — Master Stylesheet
   Pure CSS3, mobile-first, no frameworks.
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --c-primary: #0B3B6F;
  --c-primary-dark: #082a52;
  --c-primary-light: #1a5aa3;
  --c-accent: #F26522;
  --c-accent-dark: #d4541a;
  --c-white: #FFFFFF;
  --c-bg: #F5F7FA;
  --c-bg-alt: #EDF1F7;
  --c-text: #1A1A1A;
  --c-muted: #6B7280;
  --c-border: #E5E7EB;
  --c-success: #10B981;
  --c-error: #EF4444;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 6px 18px rgba(11,59,111,.10);
  --shadow-lg: 0 14px 40px rgba(11,59,111,.18);

  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head: 'Poppins', 'Manrope', var(--font-body);

  --container: 1200px;
  --nav-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--c-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-accent); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul { padding-left: 1.2rem; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .6em;
  color: var(--c-text);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; color: var(--c-muted); }

:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: var(--space-9) 0; }
.section-sm { padding: var(--space-7) 0; }
.section-title { text-align: center; max-width: 760px; margin: 0 auto var(--space-7); }
.section-title .eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--c-accent); margin-bottom: .6rem;
}
.section-title h2 { margin-bottom: .4em; }
.section-title p { font-size: 1.05rem; }

.grid-2 { display: grid; gap: var(--space-6); grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: var(--space-5); grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: var(--space-5); grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.bg-light { background: var(--c-bg); }
.bg-dark  { background: var(--c-primary); color: #d9e3f1; }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #fff; }
.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.5rem;
  font-weight: 600; font-size: .95rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary { background: var(--c-accent); color: #fff; }
.btn-primary:hover { background: var(--c-accent-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--c-primary); color: #fff; }
.btn-secondary:hover { background: var(--c-primary-dark); color: #fff; transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: currentColor; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--c-primary); }
.btn-ghost { background: transparent; color: var(--c-primary); border-color: var(--c-border); }
.btn-ghost:hover { background: var(--c-primary); color: #fff; }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1rem; font-size: .85rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--c-primary-dark);
  color: #cfd8e3;
  font-size: .82rem;
  padding: .5rem 0;
}
.topbar a { color: #cfd8e3; }
.topbar a:hover { color: var(--c-accent); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.topbar-left a { display: inline-flex; align-items: center; gap: .4rem; }
.topbar-right { display: flex; gap: 1rem; align-items: center; }
.lang button { color: #cfd8e3; padding: 0 .35rem; font-size: .8rem; }
.lang button.active { color: var(--c-accent); font-weight: 600; }
.socials { display: inline-flex; gap: .6rem; }
.socials a { display: inline-flex; }
.socials svg { width: 16px; height: 16px; }

@media (max-width: 640px) { .hide-sm { display: none; } }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); border-color: var(--c-border); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.logo { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--c-primary); }
.logo:hover { color: var(--c-primary); }
.logo em { color: var(--c-accent); font-style: normal; }
.logo-mark { width: 32px; height: 32px; flex: 0 0 32px; }

.nav-links {
  display: none; align-items: center; gap: 1.5rem;
}
.nav-links > a, .nav-links .has-dropdown > a {
  font-weight: 500; color: var(--c-text); font-size: .95rem;
  position: relative; padding: .4rem 0;
}
.nav-links > a:not(.btn)::after, .nav-links .has-dropdown > a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--c-accent);
  transition: width .25s;
}
.nav-links > a:not(.btn):hover::after, .nav-links .has-dropdown:hover > a::after { width: 100%; }
.nav-links > a:hover, .nav-links .has-dropdown > a:hover { color: var(--c-primary); }
.nav-cta { color: #fff; }

.has-dropdown { position: relative; }
.has-dropdown .dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: .6rem; min-width: 230px;
  opacity: 0; visibility: hidden; transition: all .2s;
  z-index: 10;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block; padding: .55rem .8rem; color: var(--c-text);
  border-radius: var(--radius-sm); font-size: .9rem;
}
.dropdown a:hover { background: var(--c-bg); color: var(--c-primary); }

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  padding: .5rem; border-radius: var(--radius-sm);
}
.hamburger span {
  display: block; width: 24px; height: 2.5px; background: var(--c-text);
  border-radius: 2px; transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

/* mobile drawer */
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(320px, 85vw);
  background: #fff;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 200;
  padding: 5rem 1.5rem 2rem;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer a {
  display: block; padding: .8rem 0;
  color: var(--c-text); font-weight: 500;
  border-bottom: 1px solid var(--c-border);
}
.nav-drawer a:hover { color: var(--c-primary); }
.nav-drawer .btn { margin-top: 1.5rem; width: 100%; justify-content: center; }
.nav-drawer .drawer-section-title {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--c-muted); margin-top: 1rem; padding: .5rem 0;
}
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.4);
  z-index: 150;
  opacity: 0; visibility: hidden; transition: opacity .25s;
}
.drawer-backdrop.open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex; align-items: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(8,42,82,.85), rgba(11,59,111,.6)), url('https://picsum.photos/seed/portcargo/1920/1080') center/cover no-repeat;
  padding: 5rem 0 4rem;
}
.hero h1 { color: #fff; max-width: 800px; margin-bottom: .5em; }
.hero .hero-eyebrow {
  display: inline-block; padding: .35rem .9rem;
  background: rgba(242,101,34,.18); color: #ffd6c1;
  border: 1px solid rgba(242,101,34,.5);
  border-radius: var(--radius-pill);
  font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero p.lead {
  max-width: 620px; font-size: 1.15rem; color: #d9e3f1; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.track-box {
  display: flex; gap: .5rem; padding: .5rem;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-pill);
  max-width: 520px;
  backdrop-filter: blur(10px);
}
.track-box input {
  flex: 1; background: transparent; border: none; color: #fff;
  padding: .6rem 1rem; font-size: .95rem;
}
.track-box input::placeholder { color: #b9c8de; }
.track-box input:focus { outline: none; }
.track-box .btn { padding: .65rem 1.3rem; }

/* page hero (smaller, for inner pages) */
.page-hero {
  background: linear-gradient(135deg, rgba(8,42,82,.9), rgba(11,59,111,.75)), url('https://picsum.photos/seed/freight/1920/600') center/cover no-repeat;
  color: #fff;
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: .4em; }
.page-hero p { color: #cfd8e3; max-width: 720px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb {
  display: inline-flex; gap: .5rem; font-size: .85rem; color: #d9e3f1;
  margin-bottom: 1rem; align-items: center; justify-content: center;
}
.breadcrumb a { color: #d9e3f1; }
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb .sep { opacity: .5; }

/* ---------- Stats ---------- */
.stats-bar {
  background: var(--c-primary);
  color: #fff;
  padding: 3rem 0;
}
.stats-bar .stats-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media (min-width: 768px) { .stats-bar .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item .stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800; color: var(--c-accent);
  display: block; line-height: 1;
}
.stat-item .stat-label {
  font-size: .9rem; color: #cfd8e3;
  margin-top: .5rem; letter-spacing: .04em;
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(11,59,111,.08); color: var(--c-primary);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  transition: background .25s, color .25s;
}
.card:hover .card-icon { background: var(--c-accent); color: #fff; }
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .95rem; margin-bottom: 1rem; }
.card .card-link {
  font-weight: 600; font-size: .9rem; color: var(--c-accent);
  display: inline-flex; align-items: center; gap: .3rem;
}
.card .card-link::after { content: '→'; transition: transform .25s; }
.card .card-link:hover::after { transform: translateX(4px); }

/* feature card (Why choose us) */
.feature {
  text-align: center;
  padding: 1.5rem;
}
.feature .feature-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  color: #fff;
  border-radius: 50%;
}
.feature .feature-icon svg { width: 32px; height: 32px; }

/* ---------- About preview / two-col ---------- */
.two-col {
  display: grid; gap: 3rem; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; } }
.two-col .col-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.two-col .col-img img { width: 100%; height: 100%; object-fit: cover; }
.two-col .col-img.has-accent::before {
  content: ''; position: absolute; top: -20px; left: -20px;
  width: 80px; height: 80px; background: var(--c-accent);
  border-radius: var(--radius-md);
  z-index: -1;
}
.two-col ul { list-style: none; padding: 0; }
.two-col ul li {
  padding: .5rem 0 .5rem 2rem;
  position: relative;
  color: var(--c-text);
}
.two-col ul li::before {
  content: '✓'; position: absolute; left: 0; top: .55rem;
  width: 22px; height: 22px;
  background: var(--c-accent); color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700;
}

/* ---------- Process timeline ---------- */
.process {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 768px) { .process { grid-template-columns: repeat(5, 1fr); } }
.process-step {
  text-align: center; position: relative;
  padding: 1rem;
}
.process-step .step-num {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  background: var(--c-white);
  border: 2px solid var(--c-accent);
  color: var(--c-accent);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
  position: relative; z-index: 2;
}
.process-step h4 { margin-bottom: .3rem; }
.process-step p { font-size: .9rem; }
@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: ''; position: absolute; top: 28px; right: -50%;
    width: 100%; height: 2px;
    background: repeating-linear-gradient(to right, var(--c-border) 0 8px, transparent 8px 14px);
    z-index: 1;
  }
}

/* ---------- Industries strip ---------- */
.industries-strip {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .industries-strip { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .industries-strip { grid-template-columns: repeat(6, 1fr); } }
.industry-chip {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem; text-align: center;
  transition: all .25s;
}
.industry-chip:hover { border-color: var(--c-accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.industry-chip svg { width: 36px; height: 36px; margin: 0 auto .6rem; color: var(--c-primary); }
.industry-chip span { font-weight: 600; font-size: .9rem; color: var(--c-text); }

/* ---------- Testimonials ---------- */
.testimonials {
  position: relative;
  max-width: 880px; margin: 0 auto;
}
.testimonial-track {
  position: relative;
  overflow: hidden;
}
.testimonial {
  display: none;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  animation: fadeIn .5s ease;
}
.testimonial.active { display: block; }
.testimonial .stars { color: var(--c-accent); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: .15rem; }
.testimonial .quote { font-size: 1.15rem; font-style: italic; color: var(--c-text); margin-bottom: 1.5rem; }
.testimonial .author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testimonial .author img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.testimonial .author .name { font-weight: 700; color: var(--c-text); }
.testimonial .author .role { font-size: .85rem; color: var(--c-muted); }
.testimonial-controls {
  display: flex; justify-content: center; align-items: center; gap: 1rem;
  margin-top: 1.5rem;
}
.testimonial-controls button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff; border: 1px solid var(--c-border);
  color: var(--c-primary);
  transition: all .2s;
  display: inline-flex; align-items: center; justify-content: center;
}
.testimonial-controls button:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.testimonial-dots { display: flex; gap: .5rem; }
.testimonial-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--c-border); border: none; padding: 0;
}
.testimonial-dots button.active { background: var(--c-accent); width: 26px; border-radius: 5px; }

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

/* ---------- Partner marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--c-bg);
  padding: 2rem 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.marquee-track {
  display: flex; gap: 4rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.4rem; color: var(--c-muted);
  white-space: nowrap;
  letter-spacing: .03em;
  opacity: .7;
  transition: opacity .25s, color .25s;
}
.marquee-item:hover { opacity: 1; color: var(--c-primary); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-light));
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; right: -100px; top: -50px;
  width: 300px; height: 300px;
  background: var(--c-accent);
  opacity: .15;
  border-radius: 50%;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: #cfd8e3; margin-bottom: 1.5rem; }
.cta-banner .container { position: relative; z-index: 2; }

/* ---------- Footer ---------- */
.footer {
  background: #061f3d;
  color: #b9c8de;
  padding: 4rem 0 1.5rem;
  font-size: .92rem;
}
.footer h4 {
  color: #fff; font-size: 1.05rem; margin-bottom: 1.2rem;
  position: relative; padding-bottom: .6rem;
}
.footer h4::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 32px; height: 2px; background: var(--c-accent);
}
.footer a { color: #b9c8de; }
.footer a:hover { color: var(--c-accent); }
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer .logo { color: #fff; margin-bottom: 1rem; }
.footer .logo em { color: var(--c-accent); }
.footer .footer-address { font-size: .9rem; margin-bottom: 1rem; line-height: 1.7; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: .25rem 0; }
.footer .socials a {
  display: inline-flex; width: 36px; height: 36px;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  border-radius: 50%; margin-right: .4rem;
  transition: background .2s;
}
.footer .socials a:hover { background: var(--c-accent); }
.footer .socials svg { width: 16px; height: 16px; color: #fff; }
.newsletter-form { display: flex; gap: .4rem; margin-bottom: 1rem; }
.newsletter-form input {
  flex: 1; padding: .65rem .9rem; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: #fff;
}
.newsletter-form input::placeholder { color: #8b9bb3; }
.newsletter-form button {
  padding: .65rem 1rem; border-radius: var(--radius-pill);
  background: var(--c-accent); color: #fff; font-weight: 600;
}
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  font-size: .82rem;
}
.certs { display: flex; gap: .8rem; flex-wrap: wrap; }
.certs span {
  background: rgba(255,255,255,.08);
  padding: .35rem .8rem;
  border-radius: var(--radius-sm);
  font-size: .75rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
}
.legal { display: flex; gap: 1rem; }

/* ---------- Floating buttons ---------- */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366; color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
  z-index: 90;
  transition: transform .2s;
}
.whatsapp-fab:hover { transform: scale(1.08); color: #fff; }
.whatsapp-fab svg { width: 28px; height: 28px; }

.back-to-top {
  position: fixed; bottom: 24px; right: 92px;
  width: 48px; height: 48px;
  background: var(--c-primary); color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .25s;
  z-index: 90;
  font-size: 1.2rem; font-weight: 700;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--c-primary-dark); }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-weight: 600; font-size: .9rem; color: var(--c-text);
  margin-bottom: .4rem;
}
.form-group .req { color: var(--c-accent); }
.form-control, .form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--c-text);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(11,59,111,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group .error-msg {
  display: none;
  color: var(--c-error); font-size: .82rem; margin-top: .35rem;
}
.form-group.has-error .form-control { border-color: var(--c-error); }
.form-group.has-error .error-msg { display: block; }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* radio cards */
.radio-cards {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .radio-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .radio-cards { grid-template-columns: repeat(4, 1fr); } }
.radio-card {
  position: relative;
  border: 2px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
}
.radio-card:hover { border-color: var(--c-accent); }
.radio-card input {
  position: absolute; opacity: 0; pointer-events: none;
}
.radio-card input:checked ~ * { color: var(--c-primary); }
.radio-card:has(input:checked) {
  border-color: var(--c-accent);
  background: rgba(242,101,34,.05);
}
.radio-card svg { width: 44px; height: 44px; margin: 0 auto .6rem; color: var(--c-primary); }
.radio-card .rc-title { font-weight: 700; font-size: 1rem; }
.radio-card .rc-desc { font-size: .82rem; color: var(--c-muted); margin-top: .2rem; }

/* multi-step form */
.stepper {
  display: flex; justify-content: space-between; gap: .5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.stepper::before {
  content: ''; position: absolute; top: 16px; left: 0; right: 0;
  height: 2px; background: var(--c-border);
  z-index: 0;
}
.stepper .progress-bar {
  position: absolute; top: 16px; left: 0;
  height: 2px; background: var(--c-accent);
  transition: width .3s;
  z-index: 1;
}
.step-indicator {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  flex: 1; font-size: .82rem; color: var(--c-muted);
}
.step-indicator .num {
  width: 32px; height: 32px;
  background: #fff; border: 2px solid var(--c-border);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.step-indicator.active .num { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
.step-indicator.completed .num { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }
.step-indicator.active { color: var(--c-text); font-weight: 600; }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn .3s ease; }
.form-actions {
  display: flex; gap: 1rem; justify-content: space-between;
  margin-top: 2rem;
}
.form-actions .btn-back { background: transparent; color: var(--c-muted); border: 2px solid var(--c-border); }
.form-actions .btn-back:hover { background: var(--c-bg); color: var(--c-text); }
.form-actions .spacer { flex: 1; }

.success-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  display: none;
}
.success-card.show { display: block; }
.success-card .check {
  width: 72px; height: 72px;
  background: var(--c-success); color: #fff;
  border-radius: 50%;
  margin: 0 auto 1.2rem;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 700;
}

/* ---------- FAQ Accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  margin-bottom: .75rem;
  background: #fff;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  text-align: left;
  font-size: 1rem;
  color: var(--c-text);
}
.faq-q .icon {
  flex: 0 0 24px; width: 24px; height: 24px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--c-bg);
  color: var(--c-primary); transition: transform .25s, background .25s, color .25s;
  font-size: 1.1rem; font-weight: 700;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--c-accent); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 1.4rem;
}
.faq-a-inner { padding: 0 0 1.2rem; color: var(--c-muted); font-size: .95rem; }
.faq-item.open .faq-a { max-height: 500px; }

/* ---------- Industries grid (industries.html) ---------- */
.industry-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--c-border);
  transition: all .3s;
}
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.industry-card .ic-icon {
  width: 60px; height: 60px;
  background: var(--c-bg);
  border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-primary);
  margin-bottom: 1rem;
}
.industry-card .ic-icon svg { width: 30px; height: 30px; }

/* ---------- Network / office cards ---------- */
.office-card {
  background: #fff; border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all .25s;
}
.office-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.office-card .office-tag {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--c-accent); margin-bottom: .5rem;
}
.office-card h4 { margin-bottom: .8rem; }
.office-card p { font-size: .9rem; line-height: 1.7; margin-bottom: .5rem; }
.office-card .office-detail {
  display: flex; gap: .55rem; align-items: flex-start;
  font-size: .9rem; color: var(--c-muted); padding: .25rem 0;
}
.office-card .office-detail svg { flex: 0 0 16px; width: 16px; height: 16px; color: var(--c-primary); margin-top: 4px; }

/* world map */
.world-map {
  position: relative;
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--c-border);
}
.world-map svg { width: 100%; height: auto; max-height: 500px; }

/* ---------- Leadership ---------- */
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: all .3s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.team-card .team-info { padding: 1.2rem; text-align: center; }
.team-card h4 { margin: 0 0 .25rem; }
.team-card .role { color: var(--c-accent); font-size: .85rem; font-weight: 600; }

/* ---------- Milestones (vertical alternating) ---------- */
.milestones {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 1rem 0;
}
.milestones::before {
  content: ''; position: absolute;
  left: 24px; top: 0; bottom: 0;
  width: 2px; background: var(--c-border);
}
@media (min-width: 768px) {
  .milestones::before { left: 50%; transform: translateX(-50%); }
}
.milestone {
  position: relative;
  padding: 1rem 0 1rem 4rem;
  margin-bottom: 1rem;
}
.milestone::before {
  content: ''; position: absolute;
  left: 17px; top: 1.4rem;
  width: 16px; height: 16px;
  background: var(--c-accent);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--c-accent);
}
.milestone .year {
  font-family: var(--font-head); font-weight: 800;
  color: var(--c-primary); font-size: 1.2rem;
  margin-bottom: .3rem;
}
.milestone h4 { margin-bottom: .3rem; }
.milestone p { font-size: .95rem; margin: 0; }
@media (min-width: 768px) {
  .milestone { width: 50%; padding-right: 3rem; padding-left: 0; }
  .milestone::before { left: auto; right: -9px; }
  .milestone:nth-child(even) {
    margin-left: 50%; padding-left: 3rem; padding-right: 0;
  }
  .milestone:nth-child(even)::before { left: -9px; right: auto; }
}

/* ---------- Scroll animations ---------- */
[data-animate] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-animate].in-view { opacity: 1; transform: none; }
[data-animate="fade"] { transform: none; }
[data-animate-delay="100"] { transition-delay: .1s; }
[data-animate-delay="200"] { transition-delay: .2s; }
[data-animate-delay="300"] { transition-delay: .3s; }
[data-animate-delay="400"] { transition-delay: .4s; }

/* ---------- Misc ---------- */
.eyebrow-inline {
  display: inline-block; font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: .6rem;
}
.divider { height: 1px; background: var(--c-border); margin: 2rem 0; }
.tag {
  display: inline-block;
  background: rgba(11,59,111,.08);
  color: var(--c-primary);
  font-size: .8rem; font-weight: 600;
  padding: .25rem .65rem;
  border-radius: var(--radius-pill);
}

.list-checks { list-style: none; padding: 0; }
.list-checks li {
  position: relative; padding: .55rem 0 .55rem 2rem;
  border-bottom: 1px dashed var(--c-border);
  color: var(--c-text);
}
.list-checks li:last-child { border-bottom: none; }
.list-checks li::before {
  content: '✓'; position: absolute; left: 0; top: .6rem;
  width: 22px; height: 22px;
  background: var(--c-accent); color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
}

/* sidebar for forms */
.with-sidebar { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .with-sidebar { grid-template-columns: 2fr 1fr; } }
.sidebar-card {
  background: var(--c-primary);
  color: #d9e3f1;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.sidebar-card h3 { color: #fff; }
.sidebar-card ul { list-style: none; padding: 0; }
.sidebar-card ul li { padding: .5rem 0 .5rem 1.8rem; position: relative; font-size: .9rem; color: #d9e3f1; }
.sidebar-card ul li::before {
  content: '★'; color: var(--c-accent);
  position: absolute; left: 0; top: .5rem;
}
.sidebar-card .contact-block {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 1.5rem; padding-top: 1.5rem;
  font-size: .9rem;
}
.sidebar-card a { color: #fff; }

/* contact map */
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  margin-top: 1.5rem;
  background: var(--c-bg);
  aspect-ratio: 16/9;
}
.map-frame img { width: 100%; height: 100%; object-fit: cover; }
