/* ==========================================================================
   Bychem — global stylesheet
   Theme colors: #c6efff (ice blue) · #06234a (deep navy) · #004aad (royal blue)
   ========================================================================== */

/* ---- Fonts ---- */
@font-face { font-family: 'Poppins'; font-weight: 300; font-style: normal; font-display: swap; src: url('../fonts/poppins-300.ttf') format('truetype'); }
@font-face { font-family: 'Poppins'; font-weight: 400; font-style: normal; font-display: swap; src: url('../fonts/poppins-400.ttf') format('truetype'); }
@font-face { font-family: 'Poppins'; font-weight: 500; font-style: normal; font-display: swap; src: url('../fonts/poppins-500.ttf') format('truetype'); }
@font-face { font-family: 'Poppins'; font-weight: 600; font-style: normal; font-display: swap; src: url('../fonts/poppins-600.ttf') format('truetype'); }
@font-face { font-family: 'Poppins'; font-weight: 700; font-style: normal; font-display: swap; src: url('../fonts/poppins-700.ttf') format('truetype'); }
@font-face { font-family: 'Poppins'; font-weight: 800; font-style: normal; font-display: swap; src: url('../fonts/poppins-800.ttf') format('truetype'); }

/* ---- Design tokens ---- */
:root {
  --ice:        #c6efff;
  --ice-soft:   #eaf9ff;
  --navy:       #06234a;
  --navy-deep:  #041a38;
  --blue:       #004aad;
  --blue-hover: #0057cc;
  --text:       #33445c;
  --muted:      #6b7a92;
  --line:       #dce8f2;
  --white:      #ffffff;
  --radius:     14px;
  --shadow:     0 10px 30px rgba(6, 35, 74, .10);
  --shadow-lg:  0 18px 50px rgba(6, 35, 74, .18);
  --container:  1200px;
  --font:       'Poppins', 'Segoe UI', Tahoma, sans-serif;
}

/* ---- Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--blue-hover); }

h1, h2, h3, h4, h5 { color: var(--navy); line-height: 1.25; font-weight: 700; }

ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: var(--white); padding: 10px 18px; z-index: 200;
}
.skip-link:focus { left: 0; color: var(--white); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s ease;
}
.btn--primary { background: var(--blue); color: var(--white); }
.btn--primary:hover { background: var(--blue-hover); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline { border-color: var(--white); color: var(--white); background: transparent; }
.btn--outline:hover { background: var(--white); color: var(--navy); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-deep); color: var(--white); transform: translateY(-2px); }
.btn--light { background: var(--ice); color: var(--navy); }
.btn--light:hover { background: var(--white); color: var(--blue); }

/* ==========================================================================
   Top bar
   ========================================================================== */
.topbar { background: var(--navy); color: var(--ice); font-size: 13px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 16px; flex-wrap: wrap; }
.topbar__contact { display: flex; gap: 22px; }
.topbar__contact a { color: var(--ice); font-weight: 500; }
.topbar__contact a:hover { color: var(--white); }
.topbar__icon { opacity: .8; margin-right: 4px; }
.topbar__countries { display: flex; gap: 10px; align-items: center; letter-spacing: .08em; font-size: 11px; font-weight: 600; color: rgba(198, 239, 255, .75); }
.topbar__countries i { font-style: normal; color: var(--blue); }

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  background: var(--white);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 14px rgba(6, 35, 74, .08);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 24px; }
.site-header__brand img { height: 52px; width: auto; transition: height .25s ease; }
.site-header.is-scrolled .site-header__brand img { height: 44px; }

.site-nav__list { display: flex; align-items: center; gap: 4px; }
.site-nav__item > a {
  display: block;
  padding: 30px 14px;
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}
.site-nav__item > a::after {
  content: '';
  position: absolute; left: 14px; right: 14px; bottom: 20px;
  height: 3px; border-radius: 3px;
  background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.site-nav__item > a:hover::after,
.site-nav__item.is-active > a::after { transform: scaleX(1); }
.site-nav__item.is-active > a { color: var(--blue); }
.site-nav__caret { font-size: 10px; opacity: .6; }

/* Dropdown */
.has-dropdown { position: relative; }
.site-nav__dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--blue);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .25s ease;
  z-index: 110;
}
.has-dropdown:hover .site-nav__dropdown,
.has-dropdown.is-open .site-nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.site-nav__dropdown a {
  display: block; padding: 12px 22px;
  color: var(--navy); font-size: 14px; font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.site-nav__dropdown li:last-child a { border-bottom: 0; }
.site-nav__dropdown a:hover { background: var(--ice-soft); color: var(--blue); padding-left: 28px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; border-radius: 3px; background: var(--navy); transition: all .3s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   Home hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
  color: var(--white);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(4, 26, 56, .92) 0%, rgba(0, 74, 173, .72) 55%, rgba(6, 35, 74, .35) 100%);
}
.hero__content { position: relative; max-width: 720px; padding: 90px 0; }
.hero__kicker {
  display: inline-block;
  background: rgba(198, 239, 255, .15);
  border: 1px solid rgba(198, 239, 255, .4);
  color: var(--ice);
  font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 999px; margin-bottom: 24px;
}
.hero__content h1 { color: var(--white); font-size: clamp(34px, 5vw, 56px); font-weight: 800; margin-bottom: 22px; }
.hero__content h1 em { font-style: normal; color: var(--ice); }
.hero__content p { font-size: 18px; color: rgba(255, 255, 255, .88); margin-bottom: 36px; max-width: 560px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ==========================================================================
   Inner page hero
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 280px;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
}
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(4, 26, 56, .94), rgba(0, 74, 173, .68)); }
.page-hero__content { position: relative; padding: 60px 24px; }
.page-hero__content h1 { color: var(--white); font-size: clamp(30px, 4vw, 44px); font-weight: 800; margin-bottom: 10px; }
.breadcrumb { font-size: 14px; color: var(--ice); }
.breadcrumb a { color: rgba(198, 239, 255, .85); font-weight: 500; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb__sep { margin: 0 10px; opacity: .5; }
.breadcrumb__current { color: var(--white); font-weight: 600; }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: 90px 0; }
.section--tint { background: var(--ice-soft); }
.section--navy { background: var(--navy); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255, 255, 255, .82); }

.section-head { max-width: 680px; margin-bottom: 50px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__kicker {
  display: inline-block;
  color: var(--blue);
  font-size: 13px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section--navy .section-head__kicker { color: var(--ice); }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; }
.section-head p { margin-top: 16px; color: var(--muted); }

/* ==========================================================================
   Cards & grids
   ========================================================================== */
.card-grid { display: grid; gap: 28px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Highlight cards (home intro) */
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--ice);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-top-color: var(--blue); }
.feature-card__icon {
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ice); color: var(--navy);
  border-radius: 14px; font-size: 26px; margin-bottom: 22px;
}
.feature-card h3 { font-size: 20px; margin-bottom: 12px; }
.feature-card p { font-size: 15px; color: var(--muted); margin-bottom: 18px; }
.feature-card a.more { font-weight: 600; font-size: 14px; }

/* Product cards */
.product-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card__media { aspect-ratio: 3 / 2; overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card__media img { transform: scale(1.07); }
.product-card__body { padding: 24px 26px 28px; }
.product-card__body h3 { font-size: 19px; margin-bottom: 8px; transition: color .2s ease; }
.product-card:hover .product-card__body h3 { color: var(--blue); }
.product-card__body p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.product-card__link { font-size: 14px; font-weight: 600; color: var(--blue); }

/* ==========================================================================
   Home — about split
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.split__media::before {
  content: '';
  position: absolute; top: -22px; left: -22px; right: 40%; bottom: 40%;
  background: var(--ice);
  border-radius: var(--radius);
  z-index: -1;
}
.split__content h2 { font-size: clamp(28px, 3.4vw, 38px); font-weight: 800; margin-bottom: 20px; }
.split__content p { margin-bottom: 16px; }
.split__actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.checklist li { padding-left: 30px; position: relative; margin-bottom: 12px; }
.checklist li::before {
  content: '';
  position: absolute; left: 0; top: 4px;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23004aad' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 12.5 5 5L20 6.5'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ==========================================================================
   Stats band
   ========================================================================== */
.stats { background: linear-gradient(115deg, var(--navy) 0%, var(--blue) 100%); padding: 70px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(var(--stats-cols, 5), 1fr); gap: 30px; text-align: center; }
.stat h3 { color: var(--white); font-size: clamp(32px, 3.6vw, 48px); font-weight: 800; }
.stat h3 span.suffix { color: var(--ice); }
.stat p { color: rgba(198, 239, 255, .85); font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; margin-top: 6px; }

/* ==========================================================================
   Mission band
   ========================================================================== */
.mission {
  position: relative;
  background-size: cover; background-position: center;
  padding: 110px 0;
}
.mission__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4, 26, 56, .95) 25%, rgba(0, 74, 173, .6)); }
.mission__content { position: relative; max-width: 640px; }
.mission__content h2 { color: var(--white); font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; margin-bottom: 18px; }
.mission__content p { color: rgba(255, 255, 255, .88); font-size: 17px; margin-bottom: 30px; }

/* ==========================================================================
   News cards
   ========================================================================== */
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.news-card__media { aspect-ratio: 16 / 9; overflow: hidden; }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.news-card:hover .news-card__media img { transform: scale(1.06); }
.news-card__body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.news-card__date { font-size: 13px; color: var(--blue); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; }
.news-card__body h3 { font-size: 19px; margin-bottom: 10px; }
.news-card__body h3 a { color: var(--navy); }
.news-card__body h3 a:hover { color: var(--blue); }
.news-card__body p { font-size: 14px; color: var(--muted); flex: 1; margin-bottom: 16px; }

/* Article page */
.article { max-width: 800px; }
.article p { margin-bottom: 18px; }
.article__meta { color: var(--blue); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.article__nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 46px; padding-top: 26px; border-top: 1px solid var(--line); flex-wrap: wrap; }

/* ==========================================================================
   Product detail layout
   ========================================================================== */
.product-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: start; }
.product-layout__body h2 { font-size: 26px; margin: 30px 0 14px; }
.product-layout__body h2:first-child { margin-top: 0; }
.product-layout__body p { margin-bottom: 16px; }
.product-layout__body ul { margin: 0 0 20px; }
.product-layout__body ul li { padding-left: 28px; position: relative; margin-bottom: 10px; }
.product-layout__body ul li::before { content: '›'; position: absolute; left: 8px; color: var(--blue); font-weight: 800; }
.product-layout__aside { position: sticky; top: 110px; }
.product-layout__image { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; margin-bottom: 26px; }
.product-layout__cta {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px 30px;
  color: rgba(255, 255, 255, .85);
}
.product-layout__cta h3 { color: var(--white); font-size: 19px; margin-bottom: 10px; }
.product-layout__cta p { font-size: 14px; margin-bottom: 20px; }

.badge-note {
  background: var(--ice-soft);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  font-size: 14px;
  margin-bottom: 26px;
}

/* Two-column product portfolio lists */
.portfolio-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; margin-top: 8px; }
.portfolio-col { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.portfolio-col h3 { font-size: 17px; color: var(--blue); margin: 20px 0 10px; }
.portfolio-col h3:first-child { margin-top: 0; }
.portfolio-col li { padding-left: 24px; position: relative; margin-bottom: 8px; font-size: 15px; }
.portfolio-col li::before { content: '›'; position: absolute; left: 6px; color: var(--blue); font-weight: 800; }

/* ==========================================================================
   Values / strategy cards
   ========================================================================== */
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--ice);
  transition: border-color .3s ease, transform .3s ease;
}
.value-card:hover { border-left-color: var(--blue); transform: translateY(-6px); }
.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--muted); }

/* Mission / vision blocks */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-block {
  border-radius: var(--radius);
  padding: 44px 40px;
  color: rgba(255, 255, 255, .88);
}
.mv-block--mission { background: linear-gradient(135deg, var(--navy), var(--blue)); }
.mv-block--vision { background: var(--navy); }
.mv-block h3 { color: var(--ice); font-size: 22px; margin-bottom: 14px; }

/* Policy chips */
.policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.policy-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; gap: 12px;
  transition: all .25s ease;
}
.policy-chip:hover { border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow); }
.policy-chip::before { content: ''; width: 20px; height: 20px; flex-shrink: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23004aad' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 3h7l4 4v14H7V3Z'/%3E%3Cpath d='M14 3v4h4'/%3E%3Cpath d='M10 12h5M10 16h5'/%3E%3C/svg%3E") no-repeat center / contain; }

/* ==========================================================================
   Locations / offices
   ========================================================================== */
.office-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 30px;
  border-top: 4px solid var(--blue);
  transition: transform .3s ease, box-shadow .3s ease;
}
.office-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.office-card h3 { font-size: 18px; margin-bottom: 14px; }
.office-card p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.office-card__row { display: flex; gap: 10px; font-size: 14px; margin-bottom: 8px; align-items: baseline; }
.office-card__row .label { font-weight: 700; color: var(--navy); min-width: 54px; }

.map-wrap { text-align: center; }
.map-wrap img { margin: 0 auto; }

/* Locations: distribution network map panel */
.map-panel {
  background: transparent;
  margin-bottom: 54px;
  text-align: center;
}
.map-panel img {
  margin: 0 auto;
  max-height: 640px;
  width: auto;
  max-width: 100%;
}
.map-panel__caption {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .form-field--full { grid-column: 1 / -1; }
.form-field label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 74, 173, .12);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.form-status { display: none; margin-top: 16px; padding: 14px 18px; border-radius: 10px; background: var(--ice-soft); color: var(--navy); font-weight: 600; font-size: 14px; }
.form-status.is-visible { display: block; }

.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-panel {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px 36px;
  color: rgba(255, 255, 255, .85);
}
.contact-panel h3 { color: var(--white); font-size: 22px; margin-bottom: 8px; }
.contact-panel .phone-big { display: block; color: var(--ice); font-size: 26px; font-weight: 800; margin: 18px 0 26px; }
.contact-panel ul li { padding: 10px 0; border-bottom: 1px solid rgba(198, 239, 255, .15); font-size: 14px; }
.contact-panel ul li strong { color: var(--ice); display: block; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }

/* ==========================================================================
   Contact strip + footer
   ========================================================================== */
.contact-strip { background: var(--blue); color: var(--white); }
.contact-strip__inner {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; padding: 34px 24px;
}
.contact-strip__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2px; }
.contact-strip__label { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ice); }
.contact-strip__item a, .contact-strip__item span:not(.contact-strip__label) { color: var(--white); font-weight: 600; font-size: 16px; }
.contact-strip__item a:hover { color: var(--ice); }

.site-footer { background: var(--navy); color: rgba(255, 255, 255, .75); }
.site-footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px; padding: 70px 24px 50px;
}
.site-footer h4 {
  color: var(--white); font-size: 17px; margin-bottom: 20px;
  padding-bottom: 12px; position: relative;
}
.site-footer h4::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 42px; height: 3px; border-radius: 3px; background: var(--blue);
}
.site-footer p { font-size: 14px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { color: rgba(255, 255, 255, .75); font-size: 14px; }
.site-footer ul a:hover { color: var(--ice); padding-left: 4px; }
.site-footer__social { display: flex; gap: 10px; margin-top: 22px; }
.site-footer__social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(198, 239, 255, .12);
  color: var(--ice);
  border-radius: 50%;
  font-size: 12px; font-weight: 700;
  transition: all .25s ease;
}
.site-footer__social a:hover { background: var(--blue); color: var(--white); transform: translateY(-3px); }
.site-footer__bottom { border-top: 1px solid rgba(198, 239, 255, .12); padding: 20px 0; font-size: 13px; text-align: center; }

/* ==========================================================================
   Reveal-on-scroll animation
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(3, 1fr); gap: 40px 24px; }
  .split, .product-layout, .contact-layout { grid-template-columns: 1fr; }
  .product-layout__aside { position: static; }
  .topbar__countries { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; top: 0; right: -320px;
    width: 300px; height: 100vh;
    background: var(--navy);
    padding: 90px 0 40px;
    overflow-y: auto;
    transition: right .35s ease;
    z-index: 105;
    box-shadow: -10px 0 40px rgba(0, 0, 0, .3);
  }
  .site-nav.is-open { right: 0; }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__item > a { padding: 14px 28px; color: var(--white); border-bottom: 1px solid rgba(198, 239, 255, .1); }
  .site-nav__item > a::after { display: none; }
  .site-nav__item.is-active > a { color: var(--ice); background: rgba(0, 74, 173, .35); }
  .site-nav__dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border-top: 0; border-radius: 0;
    background: var(--navy-deep);
    display: none;
  }
  .has-dropdown.is-open .site-nav__dropdown { display: block; }
  .site-nav__dropdown a { color: rgba(255, 255, 255, .8); border-color: rgba(198, 239, 255, .08); padding-left: 44px; }
  .site-nav__dropdown a:hover { background: transparent; color: var(--ice); }
  .card-grid--3, .card-grid--4, .policy-grid, .mv-grid, .portfolio-cols, .form-grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-strip__inner { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { min-height: 520px; }
  .topbar__inner { justify-content: center; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .hero__actions .btn { width: 100%; text-align: center; }
}


/* ==========================================================================
   Botble CMS additions
   ========================================================================== */

/* Compact variant of the mission band (used by [contact-block]) */
.mission--compact { padding: 80px 0; }

/* Kicker on dark backgrounds */
.section-head__kicker--ice { color: var(--ice); }

/* Footer menus rendered from Botble menu locations */
.site-footer__menu li { margin-bottom: 10px; }
.site-footer__menu a { color: rgba(255, 255, 255, .75); font-size: 14px; }
.site-footer__menu a:hover { color: var(--ice); padding-left: 4px; }
.site-footer__widgets { padding-top: 50px; }

/* Header logo sizing regardless of source */
.site-header__brand img { max-height: 52px; width: auto; }

/* Page content coming from the CMS editor */
.ck-content { line-height: 1.8; }
.ck-content h2, .ck-content h3 { margin: 28px 0 14px; }
.ck-content p { margin-bottom: 16px; }
.ck-content ul, .ck-content ol { margin: 0 0 20px 22px; }
.ck-content ul { list-style: disc; }
.ck-content ol { list-style: decimal; }
.ck-content img { border-radius: var(--radius); }
.ck-content blockquote {
  border-left: 4px solid var(--blue);
  background: var(--ice-soft);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 0 0 20px;
}
.ck-content table { border-collapse: collapse; width: 100%; margin-bottom: 20px; }
.ck-content table td, .ck-content table th { border: 1px solid var(--line); padding: 10px 14px; }
.ck-content table th { background: var(--ice-soft); color: var(--navy); }

/* Laravel pagination */
.pagination-wrap { margin-top: 46px; display: flex; justify-content: center; }
.pagination { display: flex; gap: 8px; align-items: center; list-style: none; }
.pagination .page-item .page-link {
  display: flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 10px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  color: var(--navy); font-weight: 600; font-size: 14px;
  transition: all .2s ease;
}
.pagination .page-item .page-link:hover { border-color: var(--blue); color: var(--blue); }
.pagination .page-item.active .page-link { background: var(--blue); border-color: var(--blue); color: var(--white); }
.pagination .page-item.disabled .page-link { opacity: .45; pointer-events: none; }

/* Botble admin bar compatibility: keep sticky header below it */
.navbar-admin-bar ~ * .site-header,
body.admin-bar .site-header { top: 40px; }

/* ==========================================================================
   Plugin components (testimonial, career, faq, newsletter, contact form)
   ========================================================================== */

/* Testimonial cards */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-card__quote { font-size: 54px; line-height: 1; color: var(--ice); font-weight: 800; }
.testimonial-card p { flex: 1; color: var(--text); font-size: 15px; margin: 6px 0 22px; }
.testimonial-card__author { display: flex; align-items: center; gap: 14px; }
.testimonial-card__author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-card__author strong { display: block; color: var(--navy); font-size: 15px; }
.testimonial-card__author span { font-size: 13px; color: var(--muted); }

/* Career rows */
.career-list { display: flex; flex-direction: column; gap: 18px; }
.career-row {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 1.6fr 1fr auto;
  gap: 24px; align-items: center;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.career-row:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.career-row__main h3 { font-size: 18px; margin-bottom: 6px; }
.career-row__main p { font-size: 14px; color: var(--muted); }
.career-row__meta { display: flex; flex-wrap: wrap; gap: 10px; }
.career-row__badge {
  background: var(--ice-soft);
  color: var(--navy);
  font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
}
@media (max-width: 768px) {
  .career-row { grid-template-columns: 1fr; }
}

/* FAQ accordion */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq-item[open] { border-color: var(--blue); box-shadow: var(--shadow); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 54px 20px 24px;
  font-weight: 600; color: var(--navy);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ice); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.faq-item[open] summary::after { content: '−'; background: var(--blue); color: var(--white); }
.faq-item__answer { padding: 0 24px 22px; color: var(--muted); font-size: 15px; }

/* Newsletter band */
.newsletter-section { padding: 70px 0; background: linear-gradient(115deg, var(--navy), var(--blue)); }
.newsletter-section__inner {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 44px; align-items: center;
}
.newsletter-section h2 { color: var(--white); }
.newsletter-section p { color: rgba(255,255,255,.85); }
@media (max-width: 768px) {
  .newsletter-section__inner { grid-template-columns: 1fr; }
}

/* Generic plugin form styling (contact, newsletter forms from Form Builder) */
form .form-group, form .mb-3 { margin-bottom: 18px; }
form label.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
input.form-control, textarea.form-control, select.form-control, select.form-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
input.form-control:focus, textarea.form-control:focus, select.form-control:focus, select.form-select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 74, 173, .12);
}
textarea.form-control { min-height: 140px; resize: vertical; }
button.btn-primary, input[type="submit"].btn-primary, .btn.btn-primary {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 999px;
  font-weight: 600; font-size: 15px;
  background: var(--blue); color: var(--white);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
}
button.btn-primary:hover, .btn.btn-primary:hover { background: var(--blue-hover); transform: translateY(-2px); box-shadow: var(--shadow); }
.contact-form-wrapper { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px; }
form .text-danger { color: #d33131; font-size: 13px; }
form .alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 16px; font-size: 14px; }
form .alert-success, .contact-success-message { background: var(--ice-soft); color: var(--navy); }
form .alert-danger { background: #fde8e8; color: #b42323; }

/* Newsletter form inside dark band */
.newsletter-section input.form-control { border-color: transparent; }
.newsletter-section label.form-label { color: var(--ice); }


/* ---- Inline SVG icons ---- */
.icon { display: inline-block; vertical-align: -0.18em; }
.topbar__icon .icon { vertical-align: -2px; margin-right: 2px; }
.feature-card__icon .icon { width: 28px; height: 28px; color: var(--blue); }
.career-row__badge .icon { vertical-align: -2px; margin-right: 4px; color: var(--blue); }

/* ---- RFQ status pipeline ---- */
.rfq-pipeline {
  display: flex; flex-wrap: wrap; gap: 6px 0;
  background: var(--ice-soft);
  border-radius: var(--radius);
  padding: 22px 18px;
}
.rfq-pipeline__step {
  flex: 1 1 90px;
  min-width: 90px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative;
  text-align: center;
}
.rfq-pipeline__step::before {
  content: '';
  position: absolute; top: 11px; left: -50%; width: 100%;
  height: 3px; background: var(--line);
}
.rfq-pipeline__step:first-child::before { display: none; }
.rfq-pipeline__step.is-done::before { background: var(--blue); }
.rfq-pipeline__dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  position: relative; z-index: 1;
}
.rfq-pipeline__step.is-done .rfq-pipeline__dot { background: var(--blue); border-color: var(--blue); }
.rfq-pipeline__step.is-current .rfq-pipeline__dot { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 4px rgba(0, 74, 173, .18); }
.rfq-pipeline__label { font-size: 11px; font-weight: 600; color: var(--muted); line-height: 1.3; }
.rfq-pipeline__step.is-done .rfq-pipeline__label,
.rfq-pipeline__step.is-current .rfq-pipeline__label { color: var(--navy); }
