/* Manrope is loaded from Google Fonts (no font binaries were included in the source site). */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
/* "Arial Narrow" is a system font on the source site (brand wordmarks only) — no binary exists to ship.
   Declared as local() so consumers resolve the installed face; falls back to Arial per the token stack. */
@font-face { font-family: "Arial Narrow"; src: local("Arial Narrow"), local("ArialNarrow"); }

:root{
/* base palette (verbatim from source style.css) */
--navy:#082f4f;--navy-deep:#041d33;--navy-mid:#0e4b73;
--orange:#ed7923;--orange-dark:#cc5c10;
--maroon:#7b2634;--maroon-deep:#5e1723;
--ink:#15283a;--muted:#647482;--line:#dce4ea;--mist:#f4f7f9;--slate:#e9eef2;--white:#ffffff;
/* tints & special */
--orange-tint:#fff1e8;--maroon-tint:#f8edf0;--navy-tint:#edf4f8;--cream-hover:#fff8f3;--selection:#fbd9bd;
--input-border:#cfdbe2;--hover-border-warm:#f3ba92;
--success-bg:#e6f6ed;--success-border:#269650;--success-text:#155f32;--whatsapp:#26ae61;
/* semantic aliases */
--text-body:var(--ink);--text-muted:var(--muted);--text-heading:var(--navy);--text-eyebrow:var(--orange-dark);
--surface-page:var(--white);--surface-card:var(--white);--surface-section:var(--mist);--surface-band:var(--navy);--surface-footer:var(--navy-deep);
--border-card:var(--line);--accent:var(--orange);--accent-hover:var(--orange-dark);
}

:root{
--font-body:"Manrope","Segoe UI",Arial,sans-serif;
--font-serif-brand:Georgia,serif;          /* brand mark "S", Duckback/Minimax wordmarks */
--font-condensed:"Arial Narrow",Arial,sans-serif; /* brand wordmarks */
--leading-body:1.55;
--text-hero:clamp(2.65rem,5.1vw,5.15rem);
--text-page-title:clamp(2.25rem,4vw,3.65rem);
--text-section-title:clamp(1.75rem,2.4vw,2.6rem);
--text-lead:.99rem;--text-card-title:1rem;--text-card-body:.86rem;
--text-eyebrow-size:.68rem;--text-fine:.7rem;
--tracking-eyebrow:.16em;--tracking-title:-.035em;--tracking-hero:-.06em;--tracking-brand:.075em;
}

:root{
--radius-lg:22px;   /* rfq panel, split image */
--radius-modal:17px;--radius-card:14px;--radius-tile:12px;--radius-icon:11px;--radius-btn:8px;--radius-input:7px;--radius-chip:99px;
--shadow:0 18px 50px rgba(6,39,67,.12);
--shadow-soft:0 8px 28px rgba(10,36,57,.08);
--section-pad:88px;--section-pad-sm:60px;--card-pad:28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }
img { max-width: 100%; }
::selection { background: #fbd9bd; color: var(--navy-deep); }

.utility-bar {
  background: var(--navy-deep);
  color: rgba(255,255,255,.84);
  font-size: .78rem;
  letter-spacing: .01em;
}
.utility-inner {
  min-height: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.utility-links, .utility-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}
.utility-bar a:hover { color: #fff; }
.utility-bar i { color: var(--orange); margin-right: 5px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(8,47,79,.09);
  backdrop-filter: blur(12px);
}
.site-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand-lockup {
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 43px;
  height: 43px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.13);
}
.brand-copy { line-height: 1.05; }
.brand-copy strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: .075em;
  font-weight: 800;
}
.brand-copy small {
  display: block;
  color: var(--maroon);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  margin-top: 4px;
}
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 3px;
}
.nav-link-main {
  color: #213747;
  border: 0;
  background: transparent;
  padding: 11px 11px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link-main:hover, .nav-link-main.active { color: var(--navy); }
.nav-link-main .bi { color: var(--orange); font-size: .72rem; margin-left: 3px; }
.header-cta {
  margin-left: 5px;
  padding: 11px 15px;
  font-size: .78rem;
}
.mobile-menu-button {
  border: 0;
  background: transparent;
  color: var(--navy);
  margin-left: auto;
  font-size: 1.6rem;
  padding: 8px;
}
.mega-menu {
  padding: 9px;
  width: min(960px, calc(100vw - 40px));
  border: 0;
  box-shadow: var(--shadow);
  border-radius: 18px;
  margin-top: 10px!important;
  overflow: hidden;
}
.mega-heading {
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 21px;
  height: 100%;
}
.mega-heading p { color: rgba(255,255,255,.72); font-size: .82rem; margin: 7px 0 0; }
.mega-heading .eyebrow { color: #ffb77c; }
.mega-list a {
  display: block;
  padding: 6px 8px;
  border-radius: 7px;
  color: #354957;
  font-size: .82rem;
  font-weight: 650;
}
.mega-list a:hover { background: var(--mist); color: var(--navy); }

.btn {
  border-radius: 8px;
  padding: 12px 19px;
  font-size: .83rem;
  letter-spacing: .03em;
  font-weight: 800;
  transition: all .2s ease;
}
.btn-primary { color: #fff; background: var(--orange); border-color: var(--orange); }
.btn-primary:hover, .btn-primary:focus { color: #fff; background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); }
.btn-outline-light { border-color: rgba(255,255,255,.58); }
.btn-outline-light:hover { color: var(--navy); background: #fff; border-color: #fff; }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { color: #fff; background: var(--navy-deep); border-color: var(--navy-deep); }
.btn-maroon { background: var(--maroon); color: #fff; border-color: var(--maroon); }
.btn-maroon:hover { color: #fff; background: #5e1723; border-color: #5e1723; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .68rem;
  color: var(--orange-dark);
  font-weight: 850;
  margin-bottom: 11px;
}
.section { padding: 88px 0; }
.section-sm { padding: 60px 0; }
.section-mist { background: var(--mist); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy .section-title, .section-navy h2 { color: #fff; }
.section-navy .section-lead { color: rgba(255,255,255,.74); }
.section-title {
  color: var(--navy);
  font-size: clamp(1.75rem, 2.4vw, 2.6rem);
  line-height: 1.14;
  font-weight: 800;
  margin: 0;
  letter-spacing: -.035em;
}
.section-lead {
  color: var(--muted);
  margin: 15px 0 0;
  max-width: 630px;
  font-size: .99rem;
}
.title-rule { width: 43px; height: 3px; background: var(--orange); border-radius: 10px; margin-top: 17px; }
.text-maroon { color: var(--maroon)!important; }
.text-orange { color: var(--orange)!important; }
.text-muted-custom { color: var(--muted)!important; }

.hero {
  position: relative;
  min-height: 640px;
  color: #fff;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4,29,51,.96) 0%, rgba(4,29,51,.86) 34%, rgba(4,29,51,.34) 63%, rgba(4,29,51,.08) 100%),
    linear-gradient(0deg, rgba(4,29,51,.46), rgba(4,29,51,.08)),
    none center / cover no-repeat;
}
.hero::after {
  content: "";
  width: 470px;
  height: 470px;
  position: absolute;
  z-index: -1;
  left: -230px;
  bottom: -310px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255,255,255,.04), 0 0 0 100px rgba(255,255,255,.025);
}
.hero-inner {
  padding-top: 82px;
  padding-bottom: 119px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 640px;
}
.hero .eyebrow { color: #f6b67d; }
.hero h1 {
  font-size: clamp(2.65rem, 5.1vw, 5.15rem);
  line-height: .99;
  max-width: 740px;
  letter-spacing: -.06em;
  font-weight: 800;
  margin: 0;
}
.hero h1 em { color: #f59a53; font-style: normal; }
.hero-copy { margin: 24px 0 28px; max-width: 590px; color: rgba(255,255,255,.8); font-size: 1.03rem; }
.hero-actions { display: flex; gap: 11px; flex-wrap: wrap; }
.hero-trust {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(255,255,255,.18);
  background: rgba(3,25,43,.4);
}
.hero-trust-inner { display: flex; }
.hero-trust-item {
  padding: 15px 23px 15px 0;
  margin-right: 23px;
  border-right: 1px solid rgba(255,255,255,.15);
  font-size: .76rem;
  color: rgba(255,255,255,.78);
}
.hero-trust-item:last-child { border: 0; }
.hero-trust-item i { color: #f4a16a; margin-right: 8px; font-size: .95rem; }
.hero-search {
  width: min(600px, 100%);
  margin-top: 35px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  padding: 5px;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.hero-search i { color: var(--orange); font-size: 1.12rem; padding: 12px 10px 12px 14px; }
.hero-search input { min-width: 0; border: 0; outline: none; flex: 1; font-size: .84rem; color: var(--ink); background: transparent; }
.hero-search button { padding: 11px 17px; }

.notice-strip { background: var(--orange); color: #fff; }
.notice-strip .container { display: flex; min-height: 50px; align-items: center; justify-content: center; gap: 12px; text-align: center; font-size: .82rem; font-weight: 700; }
.notice-strip i { font-size: 1rem; }

.intro-card {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: 28px;
  height: 100%;
}
.intro-card .intro-icon {
  width: 45px;
  height: 45px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #fff1e8;
  color: var(--orange-dark);
  font-size: 1.3rem;
  margin-bottom: 18px;
}
.intro-card h3 { font-size: 1rem; color: var(--navy); font-weight: 800; }
.intro-card p { color: var(--muted); font-size: .86rem; margin: 8px 0 0; }
.intro-card:hover { border-color: #ffcfaf; transform: translateY(-3px); transition: .22s ease; }

.division-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 23px;
  border-radius: 14px;
  height: 100%;
  position: relative;
  transition: .22s ease;
  overflow: hidden;
}
.division-card::before { content: ""; position: absolute; left: 0; top: 0; width: 3px; height: 0; background: var(--orange); transition: .22s ease; }
.division-card:hover { box-shadow: var(--shadow-soft); border-color: #d0dce3; transform: translateY(-3px); }
.division-card:hover::before { height: 100%; }
.division-icon { color: var(--maroon); background: #f8edf0; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 10px; font-size: 1.25rem; }
.division-card h3 { font-size: .97rem; color: var(--navy); font-weight: 800; margin: 17px 0 6px; }
.division-card p { color: var(--muted); margin: 0; font-size: .81rem; }
.division-card a { display: inline-block; margin-top: 15px; font-size: .74rem; color: var(--orange-dark); font-weight: 800; letter-spacing: .04em; }

.split-image { position: relative; min-height: 430px; height: 100%; border-radius: var(--radius-lg); overflow: hidden; background: var(--navy); }
.split-image img { height: 100%; width: 100%; object-fit: cover; object-position: center; }
.split-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(150deg, rgba(4,29,51,.1), rgba(4,29,51,.6)); }
.floating-label { position: absolute; z-index: 2; bottom: 23px; left: 23px; padding: 13px 16px; border-radius: 9px; background: rgba(255,255,255,.94); color: var(--navy); box-shadow: var(--shadow-soft); font-size: .78rem; font-weight: 800; }
.floating-label i { color: var(--orange); margin-right: 8px; }
.about-points { margin: 30px 0; display: grid; gap: 12px; }
.about-point { display: flex; gap: 12px; color: #465a67; font-size: .9rem; }
.about-point i { color: #fff; background: var(--maroon); width: 21px; height: 21px; flex: 0 0 21px; border-radius: 50%; display: grid; place-items: center; font-size: .68rem; margin-top: 2px; }

.stat-band { background: var(--navy); color: #fff; }
.stat-band .container { position: relative; }
.stat-band .container::after { content: ""; width: 190px; height: 190px; position: absolute; right: 4%; top: -52px; border: 1px solid rgba(255,255,255,.1); transform: rotate(45deg); }
.stat-item { position: relative; z-index: 1; padding: 35px 25px; border-right: 1px solid rgba(255,255,255,.15); }
.stat-item:last-child { border-right: 0; }
.stat-value { display: block; font-size: 2.02rem; line-height: 1; font-weight: 800; letter-spacing: -.04em; color: #fff; }
.stat-label { color: rgba(255,255,255,.7); display: block; margin-top: 8px; font-size: .78rem; }

.product-tile { display: flex; align-items: flex-start; gap: 12px; border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 16px; height: 100%; transition: .2s ease; }
.product-tile:hover { border-color: #f3ba92; box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.product-tile .tile-icon { flex: 0 0 36px; width: 36px; height: 36px; display: grid; place-items: center; color: var(--orange-dark); background: #fff1e8; border-radius: 9px; font-size: 1.08rem; }
.product-tile h3 { color: var(--navy); font-size: .83rem; font-weight: 800; margin: 2px 0 4px; }
.product-tile p { font-size: .72rem; color: var(--muted); margin: 0; line-height: 1.38; }

.brand-row { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid #d5e0e6; border-radius: 15px; overflow: hidden; }
.brand-row > div { padding: 29px 20px; min-height: 126px; display: grid; place-items: center; background: #fff; color: var(--navy); border-right: 1px solid #d5e0e6; }
.brand-row > div:last-child { border: 0; }
.brand-wordmark { font-weight: 900; letter-spacing: -.045em; font-size: 1.75rem; font-family: "Arial Narrow", Arial, sans-serif; }
.brand-wordmark.duckback { color: #8d1d1c; font-family: Georgia, serif; font-style: italic; }
.brand-wordmark.unyong { color: #131313; font-style: italic; }
.brand-wordmark.minimax { color: #202b37; font-family: Georgia, serif; }
.brand-row small { color: var(--muted); display: block; text-align: center; margin-top: 4px; font-size: .7rem; font-family: "Manrope", sans-serif; font-style: normal; font-weight: 700; letter-spacing: .05em; }

.industry-card { padding: 20px; background: #fff; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.industry-card:hover { background: #fff8f3; }
.industry-card i { color: var(--maroon); font-size: 1.25rem; }
.industry-card h3 { font-size: .87rem; color: var(--navy); font-weight: 800; margin: 17px 0 4px; }
.industry-card p { color: var(--muted); font-size: .74rem; margin: 0; }
.industry-stack { box-shadow: var(--shadow-soft); border-radius: 13px; overflow: hidden; border: 1px solid var(--line); }

.rfq-panel { position: relative; overflow: hidden; color: #fff; padding: 58px; border-radius: var(--radius-lg); background: var(--navy); }
.rfq-panel::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,29,51,.94), rgba(4,29,51,.63)), none center / cover no-repeat; z-index: 0; }
.rfq-panel > * { position: relative; z-index: 1; }
.rfq-panel h2 { max-width: 590px; font-size: clamp(1.85rem, 3.5vw, 3.1rem); font-weight: 800; letter-spacing: -.045em; line-height: 1.08; margin: 0; }
.rfq-panel p { max-width: 540px; margin: 17px 0 26px; color: rgba(255,255,255,.76); }
.rfq-points { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 28px; color: rgba(255,255,255,.9); font-size: .77rem; font-weight: 700; }
.rfq-points i { color: #ffae70; margin-right: 5px; }

.page-hero { position: relative; padding: 86px 0 65px; background: var(--navy-deep); color: #fff; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; right: -10%; top: -290px; width: 650px; height: 650px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 110px rgba(255,255,255,.02); }
.page-hero .breadcrumb { position: relative; z-index: 1; margin-bottom: 15px; }
.breadcrumb-item, .breadcrumb-item a { color: rgba(255,255,255,.65); font-size: .79rem; }
.breadcrumb-item.active { color: #fff; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.45); }
.page-hero h1 { position: relative; z-index: 1; font-weight: 800; font-size: clamp(2.25rem, 4vw, 3.65rem); letter-spacing: -.05em; margin: 0; }
.page-hero p { position: relative; z-index: 1; color: rgba(255,255,255,.76); max-width: 620px; margin: 17px 0 0; font-size: .98rem; }

.filter-panel { background: #fff; border: 1px solid var(--line); padding: 14px; border-radius: 14px; box-shadow: var(--shadow-soft); }
.filter-input { position: relative; flex: 1; }
.filter-input i { position: absolute; top: 14px; left: 14px; color: var(--orange); }
.filter-input input { width: 100%; padding: 13px 14px 13px 39px; border: 1px solid #cfdbe2; outline: none; border-radius: 8px; color: var(--ink); font-size: .84rem; }
.filter-input input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(237,121,35,.13); }
.filter-chip { border: 1px solid #d4e0e6; background: #fff; color: #3a4e5c; padding: 8px 12px; border-radius: 99px; font-size: .73rem; font-weight: 750; margin: 4px 3px 0 0; cursor: pointer; }
.filter-chip:hover, .filter-chip.active { color: #fff; background: var(--navy); border-color: var(--navy); }
.catalogue-count { color: var(--muted); font-size: .78rem; margin: 18px 0 15px; }
.catalogue-count strong { color: var(--navy); }
.catalogue-card { border: 1px solid var(--line); background: #fff; height: 100%; border-radius: 13px; padding: 20px; transition: .2s ease; }
.catalogue-card:hover { box-shadow: var(--shadow-soft); border-color: #f5c29d; transform: translateY(-2px); }
.catalogue-card .catalogue-icon { color: var(--orange-dark); font-size: 1.28rem; }
.catalogue-card h3 { margin: 18px 0 8px; color: var(--navy); font-size: .94rem; font-weight: 800; }
.catalogue-card p { font-size: .75rem; line-height: 1.55; color: var(--muted); margin: 0; }
.catalogue-card .catalogue-meta { margin-top: 16px; color: var(--maroon); text-transform: uppercase; letter-spacing: .09em; font-size: .65rem; font-weight: 850; }
.no-results { padding: 40px; text-align: center; border: 1px dashed #b9cbd5; border-radius: 13px; color: var(--muted); }
.no-results i { display: block; font-size: 2rem; color: var(--orange); margin-bottom: 9px; }

.brand-index { display: grid; grid-template-columns: repeat(13, 1fr); gap: 6px; }
.brand-letter { display: grid; place-items: center; min-height: 36px; background: #fff; border: 1px solid var(--line); border-radius: 7px; color: var(--navy); font-size: .78rem; font-weight: 800; cursor: pointer; }
.brand-letter:hover, .brand-letter.active { background: var(--orange); color: #fff; border-color: var(--orange); }
.brand-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 28px; height: 100%; transition: .2s ease; }
.brand-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.brand-card .brand-wordmark { font-size: 1.55rem; }
.brand-card .brand-category { font-size: .74rem; color: var(--muted); margin: 15px 0; }
.brand-card .brand-category i { color: var(--orange); margin-right: 6px; }
.brand-card .brand-link { color: var(--orange-dark); font-size: .74rem; font-weight: 800; }

.industry-detail-card { border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 25px; height: 100%; transition: .2s ease; }
.industry-detail-card:hover { border-color: #eec29e; box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.industry-detail-card .industry-icon { display: grid; place-items: center; height: 46px; width: 46px; border-radius: 11px; background: #edf4f8; color: var(--navy); font-size: 1.25rem; }
.industry-detail-card h2 { color: var(--navy); font-size: 1rem; font-weight: 800; margin: 17px 0 7px; }
.industry-detail-card p { color: var(--muted); font-size: .78rem; margin: 0; }
.industry-detail-card ul { padding: 0; list-style: none; margin: 17px 0 0; }
.industry-detail-card li { font-size: .73rem; color: #4b5e6b; margin-bottom: 7px; }
.industry-detail-card li::before { content: "•"; color: var(--orange); font-weight: 900; margin-right: 8px; }

.contact-card { border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 27px; height: 100%; }
.contact-card .contact-icon { color: var(--orange-dark); font-size: 1.35rem; }
.contact-card h2 { color: var(--navy); font-size: 1rem; font-weight: 800; margin: 15px 0 7px; }
.contact-card p, .contact-card a { color: var(--muted); font-size: .82rem; margin: 0; }
.contact-card a:hover { color: var(--navy); }
.form-card { background: #fff; padding: clamp(23px, 4vw, 44px); border-radius: 17px; box-shadow: var(--shadow); }
.form-card h2 { color: var(--navy); font-weight: 800; letter-spacing: -.03em; font-size: 1.7rem; }
.form-label { color: #334a59; font-weight: 750; font-size: .78rem; }
.form-control, .form-select { font-size: .84rem; border: 1px solid #cfdbe2; border-radius: 7px; padding: 11px 12px; }
.form-control:focus, .form-select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(237,121,35,.12); }
.form-help { color: var(--muted); font-size: .71rem; margin-top: 11px; }
.alert-custom { display: none; background: #e6f6ed; border-left: 3px solid #269650; color: #155f32; padding: 11px 13px; margin-bottom: 16px; font-size: .8rem; border-radius: 5px; }

.faq-accordion .accordion-item { border: 1px solid var(--line); margin-bottom: 9px; border-radius: 10px!important; overflow: hidden; }
.faq-accordion .accordion-button { color: var(--navy); font-size: .85rem; font-weight: 800; box-shadow: none!important; }
.faq-accordion .accordion-button:not(.collapsed) { background: #fff6f0; color: var(--navy); }
.faq-accordion .accordion-body { color: var(--muted); font-size: .81rem; }

.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.75); }
.footer-top { padding: 68px 0 42px; }
.footer-brand { max-width: 300px; }
.footer-brand .brand-copy strong { color: #fff; }
.footer-brand .brand-mark { background: var(--orange); }
.footer-brand p { font-size: .81rem; margin: 17px 0 0; color: rgba(255,255,255,.68); }
.footer-heading { color: #fff; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 800; margin: 9px 0 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 0 0 9px; }
.footer-links a { font-size: .78rem; color: rgba(255,255,255,.68); }
.footer-links a:hover { color: #fff; }
.footer-contact { font-size: .77rem; margin: 0 0 11px; display: flex; gap: 9px; }
.footer-contact i { color: #f3a26b; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; font-size: .7rem; color: rgba(255,255,255,.5); }
.footer-bottom .policy-links { display: flex; gap: 18px; justify-content: end; }

.floating-whatsapp {
  position: fixed;
  z-index: 1020;
  right: 20px;
  bottom: 20px;
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #26ae61;
  color: #fff;
  font-size: 1.43rem;
  box-shadow: 0 12px 28px rgba(12,96,47,.28);
  transition: transform .2s ease;
}
.floating-whatsapp:hover { color: #fff; transform: translateY(-3px); }
.floating-whatsapp::before { content: "WhatsApp us"; position: absolute; right: 60px; color: #fff; background: var(--navy-deep); border-radius: 5px; white-space: nowrap; padding: 7px 9px; font-size: .7rem; font-weight: 700; opacity: 0; transform: translateX(4px); pointer-events: none; transition: .2s ease; }
.floating-whatsapp:hover::before { opacity: 1; transform: none; }

.modal-content { border: 0; border-radius: 17px; overflow: hidden; }
.modal-header { background: var(--navy); color: #fff; border: 0; padding: 20px 24px; }
.modal-header .btn-close { filter: invert(1); }
.modal-title { font-size: 1.05rem; font-weight: 800; }
.modal-body { padding: 25px; }

@media (max-width: 1199.98px) {
  .nav-links { gap: 0; }
  .nav-link-main { padding-left: 7px; padding-right: 7px; font-size: .78rem; }
  .brand-lockup { min-width: 195px; }
}
@media (max-width: 991.98px) {
  .utility-inner { justify-content: center; min-height: 34px; }
  .utility-links { display: none; }
  .site-nav { min-height: 70px; }
  .desktop-navigation { display: none!important; }
  .hero, .hero-inner { min-height: 600px; }
  .hero-inner { padding-top: 62px; }
  .hero::before { background: linear-gradient(90deg, rgba(4,29,51,.95) 0%, rgba(4,29,51,.84) 58%, rgba(4,29,51,.5) 100%), none center / cover no-repeat; }
  .section { padding: 66px 0; }
  .split-image { min-height: 310px; }
  .rfq-panel { padding: 38px; }
  .brand-index { grid-template-columns: repeat(9, 1fr); }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.15); }
}
@media (max-width: 575.98px) {
  .utility-contact { font-size: .7rem; gap: 10px; }
  .utility-contact .hide-mobile { display: none; }
  .brand-lockup { min-width: unset; }
  .brand-mark { width: 38px; height: 38px; font-size: 22px; border-radius: 10px; }
  .brand-copy strong { font-size: .88rem; }
  .brand-copy small { font-size: .54rem; }
  .hero, .hero-inner { min-height: 590px; }
  .hero-inner { padding-top: 50px; padding-bottom: 110px; }
  .hero h1 { font-size: 2.7rem; }
  .hero-copy { font-size: .91rem; }
  .hero-search { margin-top: 27px; }
  .hero-search button { padding-left: 12px; padding-right: 12px; }
  .hero-trust-inner { overflow-x: auto; }
  .hero-trust-item { white-space: nowrap; padding-right: 15px; margin-right: 15px; }
  .section-title { font-size: 1.8rem; }
  .rfq-panel { padding: 31px 24px; border-radius: 15px; }
  .brand-row { grid-template-columns: 1fr; }
  .brand-row > div { border-right: 0; border-bottom: 1px solid #d5e0e6; min-height: 100px; }
  .brand-row > div:last-child { border-bottom: 0; }
  .brand-index { grid-template-columns: repeat(7, 1fr); }
  .stat-item { border-right: 0!important; border-bottom: 1px solid rgba(255,255,255,.15); padding: 27px 12px; }
  .stat-item:last-child { border-bottom: 0; }
  .footer-bottom .policy-links { justify-content: start; margin-top: 12px; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
  .page-hero { padding: 62px 0 51px; }
}



@import "tokens/fonts.css";
@import "tokens/colors.css";
@import "tokens/typography.css";
@import "tokens/spacing.css";
@import "css/site.css";