/* Global Marine Logistic — Unitrans-style layout
   Fonts: Open Sans (body) + Titillium Web (headings/nav) — same as unitrans.org
   Colors: Black + Orange + White
*/

:root {
  --black: #1a1a1a;
  --black-soft: #2d2d2d;
  --orange: #f58220;
  --orange-dark: #d96e10;
  --orange-muted: #c4722a;
  --white: #ffffff;
  --body-text: var(--orange-muted);
  --heading: var(--black);
  --topbar-bg: var(--black);
  --quote-bg: var(--black);
  --footer-bg: var(--black);
  --border: #e8e8e8;
  --light-bg: #fafafa;
  --container: 1170px;
  --site-header-height: 132px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  color: var(--body-text);
  background: var(--white);
  padding-top: var(--site-header-height);
}

body.quote-wizard-page {
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--orange);
}

ul {
  list-style: none;
}

.container {
  width: min(var(--container), 100% - 30px);
  margin-inline: auto;
}

/* Typography — exact sizes from unitrans.org */
h1, h2, h3, h4, h5, h6 {
  font-family: "Titillium Web", sans-serif;
  color: var(--heading);
}

h2 {
  font-size: 28px;
  font-weight: 300;
  line-height: 32px;
  text-transform: uppercase;
}

h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

h6 {
  font-size: 14px;
  font-weight: 600;
  line-height: 15.4px;
  letter-spacing: 0.56px;
  text-transform: uppercase;
}

p {
  font-size: 13px;
  line-height: 22px;
}

.section-title {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 28px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 2px;
  background: var(--orange);
}

.section-title.center {
  text-align: center;
}

.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-title.light {
  color: var(--white);
}

.section-title.light::after {
  background: var(--orange);
}

/* Top bar */
.top-bar {
  background: var(--topbar-bg);
  color: var(--white);
  font-size: 12px;
  line-height: 18px;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 6px 0;
  gap: 12px;
}

.top-bar-left,
.top-bar-center,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0;
}

.top-bar-center {
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s ease;
}

.top-bar a:hover {
  color: var(--orange);
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  white-space: nowrap;
}

.top-bar-item:last-child {
  border-right: none;
}

.top-bar-item svg {
  width: 13px;
  height: 13px;
  fill: var(--orange);
  flex-shrink: 0;
}

.top-bar-item--copyable a {
  font-weight: 600;
  letter-spacing: 0.01em;
}

.top-bar-item--hours span {
  color: rgba(255, 255, 255, 0.82);
}

.social-links {
  display: flex;
  gap: 8px;
  padding-right: 14px;
  margin-right: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: var(--white);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(245, 130, 32, 0.08);
}

.office-select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  padding: 4px 10px;
  cursor: pointer;
}

.office-select option {
  color: var(--black);
}

.top-bar-right {
  gap: 10px;
  padding-left: 14px;
  margin-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.office-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: "Titillium Web", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.office-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9aa0a6;
  flex-shrink: 0;
}

.office-status.is-open {
  background: rgba(61, 186, 76, 0.12);
  border-color: rgba(61, 186, 76, 0.35);
}

.office-status.is-open .office-status-dot {
  background: #3dba4c;
  box-shadow: 0 0 0 3px rgba(61, 186, 76, 0.22);
}

.office-status.is-open .office-status-text {
  color: #c8f5cc;
}

.office-status.is-closed .office-status-text {
  color: rgba(255, 255, 255, 0.72);
}

.office-label {
  font-family: "Titillium Web", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
}

.office-label:hover {
  color: var(--white);
}

.top-bar-mobile-contacts {
  display: none;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.top-bar-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: var(--white);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.top-bar-icon-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(245, 130, 32, 0.08);
}

.top-bar-icon-link svg {
  width: 13px;
  height: 13px;
  fill: var(--orange);
}

.top-bar-hours-mobile {
  cursor: default;
  opacity: 0.88;
}

.top-bar-copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  margin-left: 2px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.top-bar-copy-btn svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.top-bar-copy-btn:hover,
.top-bar-copy-btn.is-copied {
  color: var(--orange);
  border-color: rgba(245, 130, 32, 0.45);
  background: rgba(245, 130, 32, 0.1);
}

.header-search {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  flex-shrink: 0;
  background: var(--white);
  cursor: pointer;
  padding: 0;
  border-radius: 4px;
}

.header-search:hover {
  border-color: var(--orange);
  color: var(--orange);
}

@media (max-width: 992px) {
  .top-bar-item--hours {
    display: none;
  }
}

@media (max-width: 1180px) {
  .top-bar-item {
    padding: 0 10px;
  }

  .top-bar-item--copyable a {
    max-width: 168px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-dropdown > a {
  display: inline-block;
}

.nav-dropdown-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: flex;
  flex-direction: column;
}

.nav-dropdown-menu a {
  display: block;
  width: 100%;
  padding: 10px 18px;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--body-text);
  white-space: normal;
}

.nav-dropdown-menu a:hover {
  background: #fafafa;
  color: var(--orange);
}

/* Inner page hero */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero--image {
  padding: 132px 0;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: var(--black);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.page-hero--about .page-hero-bg {
  object-position: center 35%;
}

.page-hero--services .page-hero-bg {
  object-position: center 40%;
}

.page-hero--sea .page-hero-bg {
  object-position: center 45%;
}

.page-hero--land .page-hero-bg {
  object-position: center 50%;
}

.page-hero--air .page-hero-bg {
  object-position: center 40%;
}

.page-hero--customs .page-hero-bg {
  object-position: center 45%;
}

.page-hero--tools .page-hero-bg {
  object-position: center 40%;
}

.page-hero--incoterms .page-hero-bg {
  object-position: center 35%;
}

.page-hero--quote .page-hero-bg {
  object-position: center 35%;
}

.page-hero--quote::before {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.74) 0%,
    rgba(26, 26, 26, 0.48) 50%,
    rgba(26, 26, 26, 0.68) 100%
  );
}

.page-hero--contact .page-hero-bg {
  object-position: center 40%;
}

.page-hero--contact::before {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.72) 0%,
    rgba(26, 26, 26, 0.46) 50%,
    rgba(26, 26, 26, 0.66) 100%
  );
}

.page-hero-lead {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin: 12px 0 0;
}

.home-eyebrow--light {
  color: var(--orange);
  margin-bottom: 12px;
}

.page-hero--containers .page-hero-bg {
  object-position: center 45%;
}

.page-hero--ports.page-hero--image {
  padding: 64px 0;
  min-height: 0;
  height: clamp(260px, 38vw, 420px);
  background: #ffffff;
}

.page-hero--ports .page-hero-bg {
  object-fit: contain;
  object-position: center center;
}

.page-hero--ports::before {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.72) 0%,
    rgba(26, 26, 26, 0.48) 50%,
    rgba(26, 26, 26, 0.65) 100%
  );
}

.page-hero--currency .page-hero-bg {
  object-position: center 40%;
}

.page-hero--currency::before {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.78) 0%,
    rgba(26, 26, 26, 0.52) 48%,
    rgba(26, 26, 26, 0.72) 100%
  );
}

.page-hero--timezone.page-hero--image {
  padding: 64px 0;
  min-height: 0;
  height: clamp(240px, 36vw, 380px);
  background: #ececec;
}

.page-hero--timezone .page-hero-bg {
  object-fit: contain;
  object-position: center center;
}

.page-hero--timezone::before {
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.76) 0%,
    rgba(26, 26, 26, 0.5) 50%,
    rgba(26, 26, 26, 0.7) 100%
  );
}

.page-hero--left {
  text-align: left;
}

.page-hero--left .container {
  text-align: left;
}

.page-hero--left h1 {
  margin-bottom: 0;
}

.page-hero--about {
  text-align: left;
}

.page-hero--about .container {
  text-align: left;
}

.page-hero--about h1 {
  margin-bottom: 0;
}

.page-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.58) 0%,
    rgba(26, 26, 26, 0.32) 50%,
    rgba(26, 26, 26, 0.52) 100%
  );
  pointer-events: none;
}

.page-hero--image .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: "Titillium Web", sans-serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 42px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 14px;
  line-height: 24px;
  color: var(--orange);
  max-width: 640px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 13px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: var(--orange);
}

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

/* Page content */
.page-content {
  padding: 70px 0;
}

.page-content .content-block {
  max-width: 900px;
  margin: 0 0 48px;
}

.page-content .content-block p {
  font-size: 14px;
  line-height: 24px;
  color: var(--body-text);
  margin-bottom: 16px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.stats-grid--animate .stat-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.stats-grid--animate .stat-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-card {
  text-align: center;
  padding: 36px 20px 32px;
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: 3px solid var(--orange);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 130, 32, 0.12) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.stat-card.is-visible:hover {
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.18);
  border-color: rgba(245, 130, 32, 0.35);
}

.stat-card.is-visible:hover::after {
  opacity: 1;
}

.stat-card .number {
  font-family: "Titillium Web", sans-serif;
  font-size: 42px;
  font-weight: 600;
  line-height: 48px;
  color: var(--orange);
  display: block;
  font-variant-numeric: tabular-nums;
  min-height: 48px;
}

.stat-card .label {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.56px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.88);
}

@media (prefers-reduced-motion: reduce) {
  .stats-grid--animate .stat-card,
  .services-overview-grid--animate .service-overview-card,
  .expertise-grid--animate .expertise-card,
  .tools-grid--animate .tool-card,
  .tools-links-grid--animate .tools-link-card,
  .home-services-grid--animate .home-service-card,
  .news-grid--animate .news-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .tools-link-card:hover {
    transform: none;
  }
}

.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.about-page .stats-grid {
  margin-bottom: 36px;
}

.about-capabilities-panel {
  margin-bottom: 44px;
}

.about-certs-bar {
  margin: 44px 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.about-page .vmv-grid {
  margin-bottom: 0;
}

.services-overview-grid {
  margin-bottom: 44px;
}

.vmv-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 16px;
}

.vmv-card h3 {
  font-family: "Titillium Web", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 14px;
}

.vmv-card p {
  font-size: 13px;
  line-height: 22px;
}

/* Service page */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 8px;
}

.expertise-grid--animate .expertise-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.expertise-grid--animate .expertise-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.expertise-card {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.expertise-card.is-visible:hover {
  border-color: rgba(245, 130, 32, 0.45);
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.1);
}

.service-section-title {
  margin-top: 48px;
}

.service-tool-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px 28px;
  margin: 36px 0 48px;
}

.service-tool-links a {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 22px;
  color: var(--orange);
}

.service-tool-links a:hover {
  text-decoration: underline;
}

.service-detail-page .content-block {
  margin-bottom: 28px;
}

.service-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.service-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--orange);
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(26, 26, 26, 0.03);
}

.service-highlight-tag {
  display: inline-block;
  font-family: "Titillium Web", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245, 130, 32, 0.1);
  border: 1px solid rgba(245, 130, 32, 0.22);
  padding: 4px 10px;
  border-radius: 999px;
}

.service-highlight-item strong {
  font-family: "Titillium Web", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  color: var(--black);
}

.service-highlight-item span:last-child {
  font-size: 12px;
  line-height: 18px;
  color: var(--body-text);
}

.service-process-panel {
  margin-bottom: 44px;
}

.service-process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-process-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.service-process-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-family: "Titillium Web", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
}

.service-process-step strong {
  display: block;
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.service-process-step p {
  margin: 0;
  font-size: 13px;
  line-height: 20px;
  color: var(--body-text);
}

.service-faq {
  margin-bottom: 44px;
}

.expertise-card h3 {
  font-family: "Titillium Web", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}

.expertise-card p {
  font-size: 13px;
  line-height: 22px;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.services-overview-grid--animate .service-overview-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.services-overview-grid--animate .service-overview-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-overview-card {
  padding: 36px 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-overview-card.is-visible:hover {
  border-color: rgba(245, 130, 32, 0.45);
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.1);
}

.service-overview-card:hover {
  border-color: var(--orange);
}

.service-overview-card h3 {
  font-family: "Titillium Web", sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 14px;
}

.service-overview-card ul {
  margin: 16px 0 20px;
}

.service-overview-card li {
  font-size: 13px;
  line-height: 22px;
  color: var(--body-text);
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}

.service-overview-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.service-overview-card--img {
  padding: 0;
  overflow: hidden;
  border-top: 3px solid var(--orange);
}

.service-overview-card--img .card-img {
  height: 220px;
  overflow: hidden;
  border-radius: 13px 13px 0 0;
}

.service-overview-card--img .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.service-overview-card--img:hover .card-img img {
  transform: scale(1.04);
}

.service-overview-card--img .card-body {
  padding: 28px;
}

.contact-photo {
  margin-top: 40px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.contact-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.content-image {
  margin: 32px 0;
  border-radius: 4px;
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.useful-card--img {
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.useful-card--img .card-img {
  height: 180px;
  overflow: hidden;
}

.useful-card--img .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.useful-card--img:hover .card-img img {
  transform: scale(1.04);
}

.useful-card--img .card-body {
  padding: 24px 20px;
}

img {
  max-width: 100%;
  display: block;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* Contact page */
.contact-trust-strip {
  background: var(--orange);
  border-bottom: 2px solid var(--orange-dark);
}

.contact-trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.contact-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s ease;
}

.contact-trust-item:hover {
  background: rgba(26, 26, 26, 0.1);
  color: var(--white);
}

.contact-trust-item:last-child {
  border-right: none;
}

.contact-trust-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 4px;
}

.contact-trust-item strong {
  font-family: "Titillium Web", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 16px;
}

.contact-trust-item span {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-page {
  padding-bottom: 70px;
  background: linear-gradient(180deg, #fafafa 0%, var(--white) 220px);
}

.contact-page-intro {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.contact-page .content-block {
  max-width: 720px;
  margin-bottom: 0;
}

.contact-page .content-block p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 24px;
}

.contact-page .content-block a {
  color: var(--orange);
  font-weight: 600;
}

.contact-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.contact-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--orange);
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(26, 26, 26, 0.03);
}

.contact-highlight-tag {
  display: inline-block;
  font-family: "Titillium Web", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245, 130, 32, 0.1);
  border: 1px solid rgba(245, 130, 32, 0.22);
  padding: 4px 10px;
  border-radius: 999px;
}

.contact-highlight-item strong {
  font-family: "Titillium Web", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  color: var(--black);
}

.contact-highlight-item span:last-child {
  font-size: 12px;
  line-height: 18px;
  color: var(--body-text);
}

.contact-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 44px;
}

.contact-details-panel.tools-panel,
.contact-form-panel.tools-panel {
  margin-bottom: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--orange);
  border-radius: 12px;
  padding: 26px 26px 22px;
  box-shadow: 0 2px 14px rgba(26, 26, 26, 0.04);
  height: 100%;
}

.contact-details-panel .tools-panel-header,
.contact-form-panel .tools-panel-header,
.contact-team-panel .tools-panel-header {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-details-panel .tools-panel-title,
.contact-form-panel .tools-panel-title,
.contact-team-panel .tools-panel-title {
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-form-panel .tools-panel-lead {
  margin-top: 10px;
}

.contact-detail-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-detail-item:last-child {
  border-bottom: none;
}

.contact-detail-label {
  font-family: "Titillium Web", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.contact-detail-item a {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  color: var(--black);
}

.contact-detail-item a:hover {
  color: var(--orange);
}

.contact-detail-value {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: var(--black);
}

.contact-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  margin-top: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-action-row .btn {
  width: auto;
  min-width: 132px;
  border-radius: 24px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.contact-form-grid .full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
  margin-bottom: 0;
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.1);
}

.contact-form-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-form-footer .btn {
  width: auto;
  min-width: 160px;
  border-radius: 24px;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 20px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fafafa;
  color: var(--body-text);
}

.form-status.is-success {
  background: rgba(34, 139, 34, 0.08);
  border-color: rgba(34, 139, 34, 0.25);
  color: #1e6b1e;
}

.form-status.is-error {
  background: rgba(220, 53, 69, 0.06);
  border-color: rgba(220, 53, 69, 0.22);
  color: #a82835;
}

.form-status.is-loading {
  background: rgba(245, 130, 32, 0.08);
  border-color: rgba(245, 130, 32, 0.25);
  color: var(--black);
}

.quote-step-panel .form-status {
  margin-bottom: 16px;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form-panel .tools-panel-lead a {
  color: var(--orange);
  font-weight: 600;
}

.contact-team-panel {
  margin-bottom: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--orange);
  border-radius: 12px;
  padding: 26px 26px 22px;
  box-shadow: 0 2px 14px rgba(26, 26, 26, 0.04);
}

.contact-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-team-card {
  padding: 20px 22px;
  background: #fafafa;
  border: 1px solid var(--border);
  border-top: 2px solid var(--orange);
  border-radius: 10px;
  box-shadow: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-team-card:hover {
  border-color: rgba(245, 130, 32, 0.35);
  background: rgba(245, 130, 32, 0.03);
}

.contact-team-role {
  display: inline-block;
  font-family: "Titillium Web", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.contact-team-card h3 {
  font-family: "Titillium Web", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: var(--black);
  margin: 0 0 10px;
}

.contact-team-card p {
  font-size: 13px;
  line-height: 22px;
  margin: 0;
}

.contact-team-card a {
  color: var(--orange);
  font-weight: 600;
}

.contact-page-cta {
  margin-top: 8px;
}

.contact-info-block h2 {
  margin-bottom: 28px;
}

.contact-list li {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 22px;
}

.contact-list strong {
  display: block;
  font-family: "Titillium Web", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 4px;
}

.contact-list a {
  color: var(--orange);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
}

.team-card .role {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.team-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 13px;
  line-height: 20px;
}

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

.map-links {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.map-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(245, 130, 32, 0.1);
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  stroke: none;
}

.footer-social a svg rect,
.footer-social a svg circle[fill="none"],
.footer-social a svg polygon {
  fill: none;
  stroke: currentColor;
}

.footer-social a svg polygon[fill="currentColor"] {
  fill: currentColor;
  stroke: none;
}

/* Data table */
.data-table-wrap {
  overflow-x: auto;
  margin-top: 24px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 20px;
}

.data-table th,
.data-table td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
}

.data-table th {
  background: var(--black);
  color: var(--white);
  font-family: "Titillium Web", sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}

.data-table tr:nth-child(even) {
  background: #fafafa;
}

/* Incoterms page */
.incoterms-page {
  padding-bottom: 70px;
}

.incoterms-page .content-block {
  max-width: 900px;
  margin-bottom: 8px;
}

.incoterms-page .content-block p {
  margin-bottom: 16px;
}

.incoterm-advisor-body,
.incoterm-tool-panel {
  padding: 28px 30px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-top: 3px solid var(--orange);
}

.incoterms-group {
  margin-bottom: 48px;
  scroll-margin-top: 110px;
}

.incoterms-group-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 30px;
  margin-bottom: 24px;
  background: var(--black);
  color: var(--white);
  border-left: 5px solid var(--orange);
  border-radius: 0 12px 12px 0;
}

.incoterms-group-header .section-title {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 24px;
}

.incoterms-group-header p {
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
}

.incoterms-group-code {
  display: inline-block;
  font-family: "Titillium Web", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.incoterms-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.incoterm-card {
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 12px;
  background: var(--white);
  padding: 24px 26px;
  scroll-margin-top: 110px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.incoterm-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.06);
}

.incoterm-card-head {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.incoterm-code {
  font-family: "Titillium Web", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
  margin-bottom: 4px;
}

.incoterm-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 12px;
}

.incoterm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.incoterm-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  background: #f5f5f5;
  color: var(--black);
  border: 1px solid var(--border);
}

.incoterm-tag--sea {
  background: rgba(26, 26, 26, 0.06);
  color: var(--black);
}

.incoterm-tag--popular {
  background: rgba(245, 130, 32, 0.12);
  color: var(--orange-dark);
  border-color: rgba(245, 130, 32, 0.35);
}

.incoterm-details {
  display: grid;
  gap: 14px;
}

.incoterm-details div {
  margin: 0;
}

.incoterm-details dt {
  font-family: "Titillium Web", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 4px;
}

.incoterm-details dd {
  font-size: 13px;
  line-height: 20px;
  color: var(--body-text);
  margin: 0;
}

.incoterms-not-covered.tools-panel {
  margin: 0 0 56px;
  padding-top: 0;
  border-top: none;
}

.incoterms-not-covered-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.incoterms-not-item {
  padding: 22px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-top: 3px solid var(--orange);
}

.incoterms-not-item h4 {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 8px;
  color: var(--black);
}

.incoterms-not-item p {
  font-size: 13px;
  line-height: 20px;
  color: var(--body-text);
  margin: 0;
}

.incoterms-faq.tools-panel {
  margin-bottom: 40px;
  scroll-margin-top: 110px;
}

.incoterms-faq-list {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.incoterm-faq-item {
  border: none;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.incoterm-faq-item:last-child {
  border-bottom: none;
}

.incoterm-faq-item summary {
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

.incoterm-faq-item summary::-webkit-details-marker {
  display: none;
}

.incoterm-faq-item summary::after {
  content: "+";
  float: right;
  font-size: 20px;
  font-weight: 400;
  color: var(--orange);
}

.incoterm-faq-item[open] summary::after {
  content: "−";
}

.incoterm-faq-item summary:hover {
  color: var(--orange);
}

.incoterm-faq-item p {
  font-size: 14px;
  line-height: 22px;
  color: var(--body-text);
  padding: 0 22px 20px;
  margin: 0;
}

.incoterms-disclaimer {
  padding: 22px 26px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  margin-bottom: 40px;
}

.incoterms-disclaimer p {
  font-size: 13px;
  line-height: 21px;
  color: var(--body-text);
  margin: 0;
}

.incoterms-cta {
  text-align: center;
  padding: 48px 36px;
  background: var(--black);
  color: var(--white);
  border-top: 3px solid var(--orange);
  border-radius: 16px;
}

.incoterms-cta .section-title.light {
  color: var(--white);
  margin-bottom: 12px;
}

.incoterms-cta > p {
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 28px;
}

.incoterms-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.incoterms-cta .btn-orange {
  width: auto;
  min-width: 180px;
}

.incoterms-cta .btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* Incoterm advisor tools */
.incoterm-advisor {
  scroll-margin-top: 110px;
}

.incoterm-advisor-intro,
.incoterm-tool-intro {
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  color: var(--body-text);
  max-width: 680px;
  margin: 12px auto 28px;
}

.incoterm-advisor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.incoterm-search-wrap {
  position: relative;
  flex: 1;
  min-width: 240px;
  max-width: 420px;
}

.incoterm-search-wrap input {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  outline: none;
}

.incoterm-search-wrap input:focus {
  border-color: var(--orange);
}

.incoterm-search-results {
  position: absolute;
  z-index: 40;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  max-height: 280px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.12);
}

.incoterm-search-results.hidden {
  display: none;
}

.incoterm-search-item,
.incoterm-search-empty {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.incoterm-search-item:hover {
  background: rgba(245, 130, 32, 0.08);
}

.incoterm-search-item strong {
  color: var(--black);
  font-family: "Titillium Web", sans-serif;
}

.incoterm-search-item span {
  display: block;
  font-size: 12px;
  color: var(--body-text);
  margin-top: 2px;
}

.incoterm-search-empty {
  cursor: default;
  font-size: 13px;
}

.incoterm-mode-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.incoterm-egypt-picks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.incoterm-egypt-block {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.incoterm-egypt-label {
  display: block;
  font-family: "Titillium Web", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 10px;
}

.incoterm-pick-btn {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  margin: 0 6px 6px 0;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.incoterm-pick-btn:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.incoterm-finder,
.incoterm-compare-section {
  scroll-margin-top: 110px;
}

.incoterm-finder-form,
.incoterm-compare-form {
  max-width: 800px;
  margin: 0 auto;
}

.incoterm-finder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.incoterm-compare-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 20px;
}

.incoterm-compare-vs {
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  padding-bottom: 12px;
}

.incoterm-finder-form .btn-orange,
.incoterm-compare-form .btn-orange {
  width: 100%;
}

.incoterm-finder-result,
.incoterm-compare-result {
  max-width: 800px;
  margin: 24px auto 0;
  padding: 22px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
}

.incoterm-finder-result.hidden,
.incoterm-compare-result.hidden {
  display: none;
}

.incoterm-finder-result h3 {
  font-family: "Titillium Web", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}

.finder-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0;
}

.finder-result-meta span {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  background: #f5f5f5;
  border: 1px solid var(--border);
}

.finder-alt {
  font-size: 13px;
  line-height: 20px;
  color: var(--body-text);
  margin-top: 12px;
}

.finder-result-actions,
.compare-actions,
.incoterm-timeline-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.incoterm-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.incoterm-compare-table th,
.incoterm-compare-table td {
  padding: 12px 14px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  line-height: 20px;
}

.incoterm-compare-table thead th {
  background: var(--black);
  color: var(--white);
  font-family: "Titillium Web", sans-serif;
}

.incoterm-compare-table tbody th {
  background: #fafafa;
  font-weight: 600;
  width: 22%;
}

.incoterm-timeline-section {
  margin-bottom: 48px;
  padding: 28px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  scroll-margin-top: 110px;
}

.incoterm-timeline-section.hidden {
  display: none;
}

.incoterm-timeline-title {
  font-family: "Titillium Web", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.incoterm-timeline-risk {
  font-size: 13px;
  line-height: 20px;
  color: var(--body-text);
  margin-bottom: 22px;
}

.incoterm-timeline-track {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 8px;
}

.incoterm-timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
  max-width: 88px;
  text-align: center;
  position: relative;
}

.incoterm-timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ddd;
  border: 2px solid var(--border);
  margin-bottom: 8px;
}

.incoterm-timeline-node.is-risk .incoterm-timeline-dot {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.2);
}

.incoterm-timeline-label {
  font-size: 10px;
  line-height: 14px;
  color: var(--body-text);
}

.incoterm-timeline-badge {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 6px;
}

.incoterm-timeline-line {
  flex: 1;
  min-width: 12px;
  height: 2px;
  background: var(--border);
  margin-top: 6px;
}

.incoterm-timeline-line.passed {
  background: var(--orange);
}

.incoterm-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}

.incoterm-link:hover {
  color: var(--black);
}

.incoterm-card--active {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(245, 130, 32, 0.12);
}

.incoterm-card--filtered {
  display: none;
}

.incoterms-group--filtered {
  display: none;
}

.btn-sm {
  width: auto !important;
  min-width: 0 !important;
  padding: 10px 18px !important;
  font-size: 13px !important;
}

#incoterm-reference {
  scroll-margin-top: 110px;
}

/* Container dimensions page */
.containers-page {
  padding-bottom: 70px;
}

.containers-page .content-block {
  max-width: 900px;
  margin-bottom: 8px;
}

.containers-page .content-block p {
  margin-bottom: 16px;
}

.containers-group {
  scroll-margin-top: 110px;
}

.container-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.container-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 12px;
  background: var(--white);
  padding: 22px;
  scroll-margin-top: 110px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.container-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.06);
}

.container-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  min-height: 112px;
  padding: 10px 8px;
}

.container-svg {
  width: 100%;
  max-width: 148px;
  height: auto;
  display: block;
}

.container-type {
  font-family: "Titillium Web", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.container-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.container-specs {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.container-specs dt {
  font-family: "Titillium Web", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 2px;
}

.container-specs dd {
  font-size: 13px;
  line-height: 18px;
  color: var(--body-text);
  margin: 0;
}

.container-use {
  font-size: 12px;
  line-height: 18px;
  color: var(--body-text);
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.container-calculator {
  scroll-margin-top: 110px;
}

.container-calc-panel-wrap {
  padding: 28px 30px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-top: 3px solid var(--orange);
}

.container-calc-form {
  max-width: 720px;
  margin: 0 auto;
}

.container-calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.container-calc-field label,
.container-calc-panel > label,
.container-calc-dims label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.container-calc-field select,
.container-calc-field input,
.container-calc-panel input,
.container-calc-dims input {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  outline: none;
}

.container-calc-field select:focus,
.container-calc-field input:focus,
.container-calc-panel input:focus,
.container-calc-dims input:focus {
  border-color: var(--orange);
}

.container-calc-mode {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 20px;
  background: var(--white);
}

.container-calc-mode legend {
  font-family: "Titillium Web", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 8px;
}

.container-calc-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.container-calc-tab {
  flex: 1;
  cursor: pointer;
}

.container-calc-tab input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.container-calc-tab span {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: #fafafa;
  color: var(--black);
}

.container-calc-tab input:checked + span {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.container-calc-dims {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.container-calc-form .btn-orange {
  width: 100%;
}

.container-calc-result {
  max-width: 720px;
  margin: 24px auto 0;
  padding: 22px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 0 10px 10px 0;
}

.container-calc-result.hidden {
  display: none;
}

.container-calc-result h3 {
  font-family: "Titillium Web", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
}

.calc-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.calc-result-item {
  padding: 14px;
  border: 1px solid var(--border);
  background: #fafafa;
}

.calc-result-item.ok {
  border-color: rgba(245, 130, 32, 0.5);
  background: rgba(245, 130, 32, 0.06);
}

.calc-result-item.fail {
  border-color: rgba(26, 26, 26, 0.25);
  background: rgba(26, 26, 26, 0.04);
}

.calc-result-item strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 6px;
}

.calc-result-item span {
  font-size: 13px;
  line-height: 18px;
  color: var(--body-text);
}

.container-calc-result > p {
  font-size: 13px;
  line-height: 20px;
  color: var(--body-text);
  margin: 0;
}

.containers-summary {
  scroll-margin-top: 110px;
}

.containers-summary .data-table-wrap {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.containers-faq.tools-panel {
  margin-bottom: 40px;
}

/* Sea ports page */
.ports-page {
  padding-bottom: 70px;
}

.ports-page .content-block {
  max-width: 900px;
  margin-bottom: 8px;
}

.ports-page .content-block p {
  margin-bottom: 16px;
}

.ports-route-lookup {
  scroll-margin-top: 110px;
  overflow: visible;
}

.ports-route-panel {
  padding: 28px 30px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-top: 3px solid var(--orange);
  overflow: visible;
}

.ports-route-form,
.ports-route-row {
  overflow: visible;
}

.ports-route-form {
  max-width: 760px;
  margin: 0 auto;
}

.ports-route-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 20px;
}

.ports-route-arrow {
  font-family: "Titillium Web", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
  padding-bottom: 12px;
  text-align: center;
}

.ports-route-form .btn-orange {
  width: 100%;
}

.ports-route-result {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 22px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 0 10px 10px 0;
}

.ports-route-result.hidden {
  display: none;
}

.ports-route-result h3 {
  font-family: "Titillium Web", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.route-direction {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 18px;
}

.route-port-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.route-port-mini {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--light-bg);
}

.route-port-mini strong {
  display: block;
  font-family: "Titillium Web", sans-serif;
  font-size: 15px;
  color: var(--black);
  margin-bottom: 4px;
}

.route-port-mini span {
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: var(--body-text);
}

.route-meta {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.route-meta dt {
  font-family: "Titillium Web", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 4px;
}

.route-meta dd {
  font-size: 13px;
  line-height: 20px;
  color: var(--body-text);
  margin: 0;
}

.route-actions {
  margin-top: 20px;
}

.route-actions .btn-orange {
  width: auto;
  min-width: 220px;
}

.ports-route-lookup--hero {
  margin-bottom: 0;
}

.ports-faq.tools-panel {
  margin-bottom: 40px;
}

.ports-load-status {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--orange);
  margin: -12px auto 20px;
}

.ports-load-status--error {
  color: #b33;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  max-width: 520px;
}

.port-autocomplete {
  position: relative;
  z-index: 2;
}

.port-autocomplete:focus-within {
  z-index: 30;
}

.port-autocomplete label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.port-autocomplete input[type="text"] {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  outline: none;
}

.port-autocomplete input[type="text"]:focus {
  border-color: var(--orange);
}

.port-suggestions {
  position: absolute;
  z-index: 50;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  max-height: 320px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.12);
}

.port-suggestions.hidden {
  display: none;
}

.port-suggestion,
.port-suggestion-empty {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.port-suggestion:last-child {
  border-bottom: none;
}

.port-suggestion:hover,
.port-suggestion.active {
  background: rgba(245, 130, 32, 0.08);
}

.port-suggestion strong {
  display: block;
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.port-suggestion span {
  display: block;
  font-size: 12px;
  line-height: 18px;
  color: var(--body-text);
}

.port-suggestion-empty {
  cursor: default;
  font-size: 13px;
  color: var(--body-text);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none !important;
}

.quote-form-page .form-section {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.quote-form-page h3 {
  font-family: "Titillium Web", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
}

.quote-form-page .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.quote-form-page .full {
  grid-column: 1 / -1;
}

.quote-form-page label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
}

.quote-form-page input,
.quote-form-page select,
.quote-form-page textarea {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  margin-bottom: 4px;
}

.quote-hotline {
  background: var(--black);
  color: var(--white);
  padding: 24px;
  margin-top: 32px;
  text-align: center;
}

.quote-hotline a {
  color: var(--orange);
  font-weight: 700;
  font-size: 18px;
}

/* Quote wizard */
.quote-trust-strip {
  background: var(--orange);
  border-bottom: 2px solid var(--orange-dark);
}

.quote-trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quote-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.quote-trust-item:last-child {
  border-right: none;
}

.quote-trust-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 4px;
}

.quote-trust-item strong {
  font-family: "Titillium Web", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 16px;
}

.quote-trust-item span {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.88);
}

.quote-page {
  padding-bottom: 70px;
  background: linear-gradient(180deg, #fafafa 0%, var(--white) 220px);
}

.quote-page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 32px;
  align-items: end;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.quote-page-intro .content-block {
  max-width: 720px;
  margin-bottom: 0;
}

.quote-page-intro .content-block p {
  margin-bottom: 0;
  max-width: 640px;
}

.quote-page-intro .content-block a {
  color: var(--orange);
  font-weight: 600;
}

.quote-page-intro .quote-tools-jump {
  align-self: end;
  min-width: 0;
  max-width: 100%;
  padding: 14px 18px;
  margin-bottom: 0;
  box-shadow: none;
}

.quote-wizard-shell {
  scroll-margin-top: 110px;
  padding-bottom: 44px;
}

.quote-wizard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.quote-progress {
  display: flex;
  list-style: none;
  margin: 0 0 24px;
  padding: 16px 12px 8px;
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.quote-progress::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.quote-progress-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
}

.quote-progress-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--body-text);
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}

.quote-progress-label {
  font-family: "Titillium Web", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--body-text);
  text-align: center;
}

.quote-progress-step.is-active .quote-progress-marker {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(245, 130, 32, 0.22);
}

.quote-progress-step.is-active .quote-progress-label {
  color: var(--black);
}

.quote-progress-step.is-done .quote-progress-marker {
  border-color: var(--orange);
  background: rgba(245, 130, 32, 0.12);
  color: var(--orange);
}

.quote-progress-step.is-done .quote-progress-label {
  color: var(--black);
}

.quote-wizard-main {
  min-width: 0;
}

.quote-step-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--orange);
  border-radius: 12px;
  padding: 28px 28px 24px;
  overflow: visible;
  box-shadow: 0 2px 16px rgba(26, 26, 26, 0.04);
}

.quote-step-header {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.quote-step-header .quote-step-intro {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
}

.quote-step-header .tools-panel-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
}

.quote-step-panel .quote-step-title {
  margin-bottom: 8px;
}

.quote-form-section {
  margin-bottom: 24px;
}

.quote-form-section:last-of-type {
  margin-bottom: 0;
}

.quote-form-section-title {
  font-family: "Titillium Web", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 14px;
}

.quote-step-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.quote-step-footer .btn-outline {
  margin-right: auto;
}

.quote-route-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: end;
}

.quote-route-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.1);
  border: 1px solid rgba(245, 130, 32, 0.22);
}

.quote-route-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-page .port-autocomplete input[type="text"] {
  border-radius: 10px;
}

.quote-step-intro {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 22px;
  color: var(--body-text);
  margin: 0 0 24px;
}

.quote-direction-fieldset {
  border: none;
  margin: 0 0 24px;
  padding: 0;
}

.quote-direction-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.quote-direction-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quote-direction-card {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  border-radius: 10px;
  transition: border-color 0.15s, background 0.15s;
}

.quote-direction-card strong {
  display: block;
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 15.4px;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--black);
}

.quote-direction-card small {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 22px;
  color: var(--body-text);
}

.quote-direction-option input:checked + .quote-direction-card,
.quote-direction-card:hover {
  border-color: var(--orange);
  background: rgba(245, 130, 32, 0.06);
}

.quote-service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.quote-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 16px 10px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-family: inherit;
  border-radius: 10px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.quote-service-card strong {
  font-family: "Titillium Web", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--black);
}

.quote-service-card small {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 22px;
  color: var(--body-text);
}

.quote-service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.08);
  line-height: 1;
  transition: background 0.2s ease;
}

.quote-service-card svg {
  width: 32px;
  height: 32px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-service-card.is-selected,
.quote-service-card:hover {
  border-color: var(--orange);
  background: rgba(245, 130, 32, 0.04);
  box-shadow: 0 2px 12px rgba(245, 130, 32, 0.08);
}

.quote-service-card.is-selected .quote-service-icon,
.quote-service-card:hover .quote-service-icon {
  background: rgba(245, 130, 32, 0.16);
}

.quote-step-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.quote-step-actions .btn {
  min-width: 140px;
}

.quote-route-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.quote-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.quote-form-grid .full {
  grid-column: 1 / -1;
}

.quote-wizard label,
.quote-form-grid label {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}

.quote-wizard input,
.quote-wizard select,
.quote-wizard textarea {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: var(--black);
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  outline: none;
  border-radius: 10px;
}

.quote-wizard input::placeholder,
.quote-wizard textarea::placeholder {
  color: var(--orange-muted);
}

.quote-wizard select {
  color: var(--black);
  cursor: pointer;
}

.quote-wizard select option[value=""] {
  color: var(--orange-muted);
}

.quote-wizard input:focus,
.quote-wizard select:focus,
.quote-wizard textarea:focus {
  border-color: var(--orange);
}

.quote-wizard .req {
  color: var(--orange);
}

.quote-helper-link {
  display: inline-block;
  margin-top: 6px;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 22px;
  color: var(--orange);
}

.quote-helper-link:hover {
  text-decoration: underline;
}

.quote-helper-link--light {
  color: rgba(255, 255, 255, 0.92);
}

.quote-helper-link--light:hover {
  color: var(--white);
}

.quote-more-details {
  margin: 20px 0;
  border: 1px solid var(--border);
  padding: 0 16px;
  border-radius: 10px;
  background: var(--light-bg);
}

.quote-more-details summary {
  cursor: pointer;
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 15.4px;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  padding: 14px 0;
  color: var(--black);
  list-style: none;
}

.quote-more-details summary::-webkit-details-marker {
  display: none;
}

.quote-more-details[open] summary {
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.quote-more-details .quote-form-grid {
  padding-bottom: 16px;
}

.quote-tool-links {
  margin: 8px 0 20px;
}

.quote-tool-links a {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 22px;
  color: var(--orange);
}

.quote-port-status {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 22px;
  color: var(--body-text);
  margin: -12px 0 16px;
}

.quote-review-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #fafafa 0%, var(--light-bg) 100%);
  padding: 22px 24px;
  margin-bottom: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--orange);
}

.quote-send-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.quote-send-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.quote-send-card:hover {
  border-color: var(--orange);
  background: rgba(245, 130, 32, 0.03);
  box-shadow: 0 2px 12px rgba(245, 130, 32, 0.08);
}

.quote-send-card--primary {
  border-color: var(--orange);
  background: rgba(245, 130, 32, 0.06);
}

.quote-send-card--primary .quote-send-icon {
  background: var(--orange);
}

.quote-send-card--primary .quote-send-icon svg {
  stroke: var(--white);
}

.quote-send-card--whatsapp:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.04);
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.1);
}

.quote-send-card--whatsapp .quote-send-icon {
  background: rgba(37, 211, 102, 0.12);
}

.quote-send-card--whatsapp .quote-send-icon svg {
  stroke: #128c7e;
  fill: none;
}

.quote-send-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(245, 130, 32, 0.12);
  flex-shrink: 0;
}

.quote-send-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-send-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.quote-send-text strong {
  font-family: "Titillium Web", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
}

.quote-send-text small {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: var(--body-text);
}

.quote-submit-note {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 22px;
  color: var(--body-text);
  margin: 0 0 20px;
}

.quote-wizard-aside {
  position: static;
  align-self: start;
}

.quote-live-summary {
  min-height: 100px;
}

.quote-summary-card {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 20px 18px;
  margin-bottom: 12px;
  border-radius: 12px;
  border-top: 2px solid var(--orange);
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.04);
}

.quote-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.quote-summary-badge {
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245, 130, 32, 0.1);
  border: 1px solid rgba(245, 130, 32, 0.2);
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.quote-aside-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.quote-aside-cert {
  font-family: "Titillium Web", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--light-bg);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 999px;
}

.quote-hotline--aside {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 0;
  padding: 18px;
  background: var(--black);
  color: var(--white);
  border-radius: 12px;
  text-align: left;
}

.quote-hotline-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(245, 130, 32, 0.18);
  flex-shrink: 0;
}

.quote-hotline-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-hotline-label {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 6px;
}

.quote-hotline-phone {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: var(--orange);
  margin-bottom: 4px;
}

.quote-hotline--aside .quote-hotline-email {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.quote-hotline--aside .quote-hotline-email:hover {
  color: var(--orange);
}

.quote-page-cta {
  margin-top: 8px;
}

.quote-faq.tools-panel {
  max-width: 100%;
  margin: 0 auto 40px;
  scroll-margin-top: 110px;
}

.quote-summary-card h3,
.quote-summary-heading {
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 15.4px;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--black);
}

.quote-summary-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.quote-summary-row:last-child {
  border-bottom: none;
}

.quote-summary-row span {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--body-text);
}

.quote-summary-row strong {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: var(--black);
  font-weight: 600;
}

.quote-summary-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.quote-summary-help {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 22px;
  color: var(--body-text);
  margin: 12px 0 0;
}

.quote-hotline--compact a {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.quote-hotline--compact .quote-hotline-email {
  display: block;
  margin-top: 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Tools hub & utility tools */
.tools-hub-page {
  padding-bottom: 70px;
}

.tools-jump {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  padding: 18px 24px;
  margin-bottom: 48px;
  background: #fafafa;
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
}

.tools-jump-label {
  font-family: "Titillium Web", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
}

.tools-jump a {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}

.tools-jump a:hover {
  color: var(--black);
}

.tools-panel {
  margin-bottom: 56px;
  scroll-margin-top: 110px;
}

.tools-panel-header {
  margin-bottom: 32px;
}

.tools-panel-eyebrow {
  display: inline-block;
  font-family: "Titillium Web", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.tools-panel-title.section-title {
  margin-bottom: 12px;
  padding-bottom: 16px;
}

.tools-panel-lead {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: var(--body-text);
  max-width: 720px;
  margin: 0;
}

.tools-panel--links {
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.tools-hub-intro {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 22px;
  color: var(--body-text);
  max-width: 680px;
  margin: -8px 0 28px;
}

.tools-hub-section {
  margin-bottom: 56px;
  scroll-margin-top: 110px;
}

.tools-tool-intro {
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 22px;
  color: var(--body-text);
  max-width: 680px;
  margin: -8px auto 28px;
}

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

.tools-grid--animate .tool-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tools-grid--animate .tool-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tools-grid--animate .tool-card.is-visible:hover {
  transform: translateY(-4px);
}

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-height: 100%;
  padding: 26px 24px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  color: inherit;
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.tool-card:hover {
  border-color: rgba(245, 130, 32, 0.45);
  box-shadow: 0 14px 36px rgba(26, 26, 26, 0.1);
  color: inherit;
}

.tool-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  background: rgba(245, 130, 32, 0.1);
  border: 1px solid rgba(245, 130, 32, 0.22);
  border-radius: 12px;
}

.tool-card svg {
  width: 26px;
  height: 26px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tool-card-body {
  flex: 1;
  width: 100%;
}

.tool-card h4 {
  font-family: "Titillium Web", sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 22px;
  color: var(--black);
  margin-bottom: 8px;
}

.tool-card p {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 22px;
  color: var(--body-text);
  margin-bottom: 0;
}

.tool-card-cta {
  display: block;
  width: 100%;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}

.tool-card--featured {
  background: linear-gradient(145deg, #1a1a1a 0%, #252525 100%);
  border-color: rgba(245, 130, 32, 0.35);
  box-shadow: 0 8px 28px rgba(26, 26, 26, 0.18);
}

.tool-card--featured .tool-card-icon {
  background: rgba(245, 130, 32, 0.16);
  border-color: rgba(245, 130, 32, 0.4);
}

.tool-card--featured h4 {
  color: var(--white);
}

.tool-card--featured p {
  color: rgba(255, 255, 255, 0.78);
}

.tool-card--featured .tool-card-cta {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: var(--orange);
}

.tool-card--featured:hover {
  border-color: var(--orange);
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.28);
}

.tools-links-categories {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.tools-links-category-title {
  position: relative;
  font-family: "Titillium Web", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 16px;
  padding-left: 14px;
}

.tools-links-category-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: var(--orange);
  border-radius: 2px;
}

.tools-disclaimer {
  border-radius: 12px;
  border-left: 4px solid var(--orange);
}

.tools-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.tools-links-grid--animate .tools-link-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s ease, background 0.2s ease;
}

.tools-links-grid--animate .tools-link-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tools-link-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: inherit;
  box-shadow: 0 1px 8px rgba(26, 26, 26, 0.03);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.tools-link-card:hover {
  border-color: rgba(245, 130, 32, 0.45);
  background: rgba(245, 130, 32, 0.03);
  box-shadow: 0 8px 22px rgba(26, 26, 26, 0.07);
  color: inherit;
  transform: translateX(3px);
}

.tools-link-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Titillium Web", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  border: 1px solid rgba(245, 130, 32, 0.3);
  border-radius: 10px;
  background: rgba(245, 130, 32, 0.08);
}

.tools-link-card strong {
  display: block;
  font-family: "Titillium Web", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  color: var(--black);
  margin-bottom: 4px;
}

.tools-link-card span {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: var(--body-text);
}

.tools-tool-page .tool-panel {
  max-width: 860px;
  margin: 0 auto 40px;
  padding: 36px 32px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  scroll-margin-top: 110px;
}

.tools-tool-page .tool-panel .section-title {
  margin-bottom: 8px;
}

.currency-page {
  padding-bottom: 70px;
}

.currency-page .content-block {
  max-width: 900px;
  margin-bottom: 28px;
}

.currency-page .content-block p {
  margin-bottom: 0;
  max-width: 720px;
}

.currency-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.currency-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.04);
}

.currency-highlight-code {
  display: inline-block;
  font-family: "Titillium Web", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245, 130, 32, 0.1);
  border: 1px solid rgba(245, 130, 32, 0.22);
  padding: 4px 10px;
  border-radius: 999px;
}

.currency-highlight-item strong {
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: var(--black);
}

.currency-highlight-item span:last-child {
  font-size: 12px;
  line-height: 18px;
  color: var(--body-text);
}

.currency-tool-panel {
  max-width: 900px;
  margin: 0 auto 48px;
  scroll-margin-top: 110px;
}

.currency-faq.tools-panel {
  max-width: 900px;
  margin: 0 auto 40px;
  scroll-margin-top: 110px;
}

.currency-tool-body {
  padding: 28px 30px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-top: 3px solid var(--orange);
}

.currency-amount-block {
  margin-bottom: 20px;
}

.currency-amount-block label {
  display: block;
  font-family: "Titillium Web", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}

.currency-amount-input {
  width: 100%;
  font-family: "Titillium Web", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--black);
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.currency-amount-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.12);
}

.currency-pair-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: end;
}

.currency-page .container-calc-field select,
.currency-page .container-calc-field input {
  border-radius: 10px;
}

.currency-form-row {
  display: none;
}

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

.timezone-page {
  padding-bottom: 70px;
}

.timezone-page .content-block {
  max-width: 900px;
  margin-bottom: 28px;
}

.timezone-page .content-block p {
  margin-bottom: 0;
  max-width: 720px;
}

.timezone-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.timezone-highlight-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.04);
}

.timezone-highlight-tag {
  display: inline-block;
  font-family: "Titillium Web", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245, 130, 32, 0.1);
  border: 1px solid rgba(245, 130, 32, 0.22);
  padding: 4px 10px;
  border-radius: 999px;
}

.timezone-highlight-item strong {
  font-family: "Titillium Web", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  color: var(--black);
}

.timezone-highlight-item span:last-child {
  font-size: 12px;
  line-height: 18px;
  color: var(--body-text);
}

.timezone-tool-panel {
  max-width: 100%;
  margin: 0 auto 48px;
  scroll-margin-top: 110px;
}

.timezone-faq.tools-panel {
  max-width: 100%;
  margin: 0 auto 40px;
  scroll-margin-top: 110px;
}

.timezone-tool-body {
  padding: 28px 30px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  border-top: 3px solid var(--orange);
}

.timezone-page .container-calc-field select,
.timezone-page .container-calc-field input {
  border-radius: 10px;
}

.timezone-form-actions {
  margin-bottom: 24px;
}

.timezone-now-btn {
  width: auto;
  min-width: 180px;
  border-radius: 24px;
}

.timezone-ref {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 22px;
  color: var(--body-text);
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 0 10px 10px 0;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.timezone-ref strong {
  color: var(--black);
}

.timezone-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.04);
}

.timezone-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

.timezone-table th,
.timezone-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.timezone-table thead th {
  font-family: "Titillium Web", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.56px;
  color: var(--black);
  background: var(--light-bg);
}

.timezone-table tbody th {
  font-weight: 600;
  color: var(--black);
  width: 28%;
}

.timezone-table tr.is-base {
  background: rgba(245, 130, 32, 0.08);
}

.timezone-table tbody td strong {
  font-family: "Titillium Web", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}

.timezone-table tr:last-child th,
.timezone-table tr:last-child td {
  border-bottom: none;
}

.timezone-hub {
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--orange);
  border: 1px solid rgba(245, 130, 32, 0.35);
  padding: 2px 6px;
  margin-left: 6px;
  vertical-align: middle;
}

.currency-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245, 130, 32, 0.08);
  border: 1px solid rgba(245, 130, 32, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
  margin: 0 auto 24px;
  text-align: center;
}

.currency-status--error {
  color: #b33;
  background: rgba(179, 51, 51, 0.08);
  border-color: rgba(179, 51, 51, 0.22);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  border-radius: 10px;
}

.currency-swap-wrap {
  display: flex;
  align-items: flex-end;
  padding-bottom: 2px;
}

.currency-swap-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--orange);
  font-size: 18px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.currency-swap-btn:hover {
  border-color: var(--orange);
  background: rgba(245, 130, 32, 0.08);
}

.currency-result {
  margin-top: 24px;
}

.currency-result-main {
  text-align: center;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
}

.currency-result-label {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--body-text);
  margin-bottom: 8px;
}

.currency-result-main strong {
  display: block;
  font-family: "Titillium Web", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 38px;
  color: var(--black);
  margin-bottom: 8px;
}

.currency-result-rate {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 22px;
  color: var(--body-text);
}

.currency-result-empty {
  font-size: 13px;
  line-height: 22px;
  color: var(--body-text);
  text-align: center;
}

.currency-quick-grid {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.currency-quick-title {
  font-family: "Titillium Web", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 14px;
  text-align: left;
}

.currency-quick-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.currency-quick-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.currency-quick-item:hover {
  border-color: var(--orange);
  background: rgba(245, 130, 32, 0.06);
}

.currency-quick-item strong {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.currency-quick-item span {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 20px;
  color: var(--body-text);
}

/* Fixed header — top bar hides on scroll down, shows on scroll up */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
}

.top-bar {
  transition: transform 0.35s ease, opacity 0.28s ease, max-height 0.35s ease;
  transform: translateY(0);
  opacity: 1;
  max-height: 52px;
  overflow: hidden;
  will-change: transform, opacity;
}

#site-header.is-topbar-hidden .top-bar {
  transform: translateY(-100%);
  opacity: 0;
  max-height: 0;
  pointer-events: none;
}

.main-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: box-shadow 0.25s ease;
}

#site-header.is-scrolled .main-header {
  box-shadow: 0 3px 14px rgba(26, 26, 26, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .top-bar {
    transition: none;
  }

  #site-header.is-topbar-hidden .top-bar {
    transform: none;
    opacity: 1;
    max-height: 52px;
    pointer-events: auto;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
  gap: 20px;
  flex-wrap: nowrap;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  height: 58px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}

.main-nav > a,
.nav-dropdown > a {
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  color: var(--black);
  position: relative;
  padding-bottom: 6px;
  display: inline-block;
  white-space: nowrap;
}

.main-nav > a.active,
.main-nav > a:hover,
.nav-dropdown > a.active,
.nav-dropdown > a:hover {
  color: var(--orange);
}

.main-nav > a.active::after,
.nav-dropdown > a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange);
}

body.site-search-open {
  overflow: hidden;
}

.site-search {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 88px 16px 24px;
}

.site-search[hidden] {
  display: none !important;
}

.site-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
}

.site-search-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(26, 26, 26, 0.2);
  overflow: hidden;
}

.site-search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px 0;
}

.site-search-head h2 {
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
  color: var(--black);
}

.site-search-close {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: var(--body-text);
  cursor: pointer;
}

.site-search-close:hover {
  color: var(--orange);
}

.site-search-input {
  display: block;
  width: calc(100% - 36px);
  margin: 14px 18px 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
}

.site-search-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.1);
}

.site-search-results {
  list-style: none;
  margin: 0;
  padding: 6px 8px 12px;
  max-height: 320px;
  overflow-y: auto;
}

.site-search-result {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
}

.site-search-result:hover {
  background: rgba(245, 130, 32, 0.08);
  color: var(--black);
}

.site-search-result-group {
  font-family: "Titillium Web", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.site-search-result strong {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.site-search-empty {
  padding: 14px 12px;
  font-size: 13px;
  line-height: 22px;
  color: var(--body-text);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 5px 0;
}

/* Hero slider */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  image-rendering: -webkit-optimize-contrast;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 26, 26, 0.75) 0%, rgba(26, 26, 26, 0.35) 55%, rgba(26, 26, 26, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 560px;
  color: var(--white);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-text.is-changing {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-eyebrow {
  display: inline-block;
  font-family: "Titillium Web", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-hero-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-hero-ghost:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.hero-text h1 {
  font-family: "Titillium Web", sans-serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 48px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.hero-text p {
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
}

.btn {
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 14px;
  padding: 14px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  width: 100%;
}

.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
}

.hero-services {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(26, 26, 26, 0.88);
  border-top: 2px solid var(--orange);
}

.hero-services-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 10px;
  color: var(--white);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s ease;
}

.hero-service:last-child {
  border-right: none;
}

.hero-service:hover {
  background: rgba(245, 130, 32, 0.15);
  color: var(--orange);
}

.hero-service-label {
  font-family: "Titillium Web", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 12px;
  text-transform: uppercase;
}

.hero-service svg {
  width: 24px;
  height: 24px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
}

.hero-dots {
  position: absolute;
  bottom: 90px;
  right: 40px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: width 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.hero-dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--orange);
  border-color: var(--orange);
}

/* Homepage trust bar */
.home-trust-bar {
  background: var(--orange);
  border-top: 2px solid var(--orange-dark);
}

.home-trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.home-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 10px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.2s ease;
}

.home-trust-item:last-child {
  border-right: none;
}

.home-trust-item:hover {
  background: rgba(26, 26, 26, 0.1);
}

.home-trust-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.home-trust-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-trust-item strong {
  display: block;
  font-family: "Titillium Web", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0;
}

.home-trust-item span {
  display: block;
  font-size: 10px;
  line-height: 12px;
  color: rgba(255, 255, 255, 0.88);
}

/* Certifications strip */
.home-certs-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.home-certs-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.home-cert-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-right: 1px solid var(--border);
  font-family: "Titillium Web", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--black);
}

.home-cert-badge:last-child {
  border-right: none;
}

.home-cert-badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-eyebrow {
  display: inline-block;
  font-family: "Titillium Web", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

/* About + Quote split */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-block {
  padding: 70px 60px 70px calc((100vw - var(--container)) / 2 + 15px);
  background: var(--white);
}

.about-block p {
  color: var(--body-text);
  margin-bottom: 16px;
}

.about-block .btn-outline {
  margin-top: 12px;
  border-radius: 24px;
  padding: 12px 32px;
}

.about-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.about-column .about-block {
  padding: 70px 50px 70px calc((100vw - var(--container)) / 2 + 15px);
}

.about-image-strip {
  flex: 1;
  min-height: 200px;
  overflow: hidden;
}

.about-image-strip img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center 40%;
}

.about-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.quote-block {
  padding: 70px calc((100vw - var(--container)) / 2 + 15px) 70px 60px;
  background: var(--quote-bg);
  color: var(--white);
}

.quote-block .section-title {
  color: var(--white);
}

.quote-block-lead {
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.82);
  margin: -12px 0 24px;
  max-width: 420px;
}

.quote-form-footer {
  text-align: center;
  margin-top: 4px;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-form .full {
  grid-column: 1 / -1;
}

.quote-form label {
  display: none;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: var(--black);
  background: var(--white);
  border: none;
  border-radius: 6px;
  padding: 14px 16px;
  outline: none;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.08);
  transition: box-shadow 0.2s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  box-shadow: 0 0 0 2px rgba(245, 130, 32, 0.45);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: var(--orange-muted);
}

.quote-form textarea {
  min-height: 90px;
  resize: vertical;
}

.quote-form select {
  color: var(--orange-muted);
  cursor: pointer;
}

/* Homepage sections */
.stats-grid--compact {
  margin: 28px 0 24px;
}

.stats-grid--compact .stat-card {
  padding: 24px 16px 20px;
}

.stats-grid--compact .stat-card .number {
  font-size: 32px;
  line-height: 38px;
  min-height: 38px;
}

.home-services {
  padding: 70px 0;
  background: #fafafa;
}

.home-section-lead {
  font-size: 14px;
  line-height: 24px;
  color: var(--body-text);
  max-width: 720px;
  margin: -12px 0 36px;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.home-services-grid--animate .home-service-card {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-services-grid--animate .home-service-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-service-card.is-visible:hover {
  border-color: rgba(245, 130, 32, 0.45);
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.1);
}

.home-service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.home-service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  font-family: "Titillium Web", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: rgba(26, 26, 26, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 10px;
  border-radius: 999px;
}

.home-service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.home-service-card.is-visible:hover .home-service-card-img img {
  transform: scale(1.04);
}

.home-service-card-body {
  padding: 26px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-service-card-body h3 {
  font-family: "Titillium Web", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: var(--black);
  margin-bottom: 10px;
}

.home-service-card-body p {
  font-size: 13px;
  line-height: 22px;
  color: var(--body-text);
  margin-bottom: 16px;
  flex: 1;
}

.home-service-link {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}

.home-service-link:hover {
  color: var(--black);
}

/* Useful links strip */
.useful-links {
  padding: 60px 0;
  background: #fafafa;
}

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

.useful-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.useful-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.06);
}

.useful-card svg {
  width: 48px;
  height: 48px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  margin: 0 auto 16px;
}

.useful-card h4 {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 8px;
}

.useful-card p {
  font-size: 13px;
  line-height: 20px;
}

/* Homepage tools strip */
.home-tools-strip {
  padding: 56px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.home-tools-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  align-items: end;
  margin-bottom: 28px;
}

.home-tools-lead {
  font-size: 14px;
  line-height: 24px;
  color: var(--body-text);
  margin: 0;
  max-width: 480px;
  justify-self: end;
  text-align: right;
}

.home-tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.home-tool-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 16px;
  text-align: center;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 12px;
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.home-tool-link:hover {
  border-color: rgba(245, 130, 32, 0.45);
  box-shadow: 0 10px 28px rgba(26, 26, 26, 0.08);
  transform: translateY(-2px);
}

.home-tool-link svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-tool-link span {
  font-family: "Titillium Web", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  color: var(--black);
}

.home-tool-link--all {
  background: var(--black);
  border-color: var(--black);
  border-top-color: var(--orange);
}

.home-tool-link--all span {
  color: var(--white);
}

.home-tool-link--all svg {
  stroke: var(--orange);
}

.home-tool-link--all:hover {
  background: #2d2d2d;
  border-color: #2d2d2d;
}

/* News section */
.news-section {
  padding: 70px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.news-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  align-items: end;
  margin-bottom: 36px;
}

.news-section-title.section-title {
  margin-bottom: 0;
}

.news-section-lead {
  font-size: 14px;
  line-height: 24px;
  color: var(--body-text);
  margin: 0;
  max-width: 520px;
  justify-self: end;
  text-align: right;
}

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

.news-grid--animate .news-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}

.news-grid--animate .news-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.news-grid--cards .news-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.25s ease;
}

.news-grid--cards .news-card.is-visible:hover {
  border-color: rgba(245, 130, 32, 0.45);
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.1);
}

.news-card-media {
  position: relative;
  display: block;
  height: 200px;
  overflow: hidden;
  color: inherit;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-grid--cards .news-card.is-visible:hover .news-card-media img {
  transform: scale(1.05);
}

.news-card-media .news-date {
  position: absolute;
  left: 16px;
  bottom: 16px;
  min-width: 64px;
  padding: 12px 10px;
  background: rgba(26, 26, 26, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  backdrop-filter: blur(6px);
}

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

.news-tag {
  display: inline-block;
  font-family: "Titillium Web", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245, 130, 32, 0.1);
  border: 1px solid rgba(245, 130, 32, 0.22);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.news-card h3 {
  font-family: "Titillium Web", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 10px;
}

.news-card h3 a {
  color: var(--black);
  transition: color 0.2s ease;
}

.news-card h3 a:hover {
  color: var(--orange);
}

.news-card p {
  font-size: 13px;
  line-height: 22px;
  color: var(--body-text);
  margin-bottom: 16px;
  flex: 1;
}

.news-link {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  margin-top: auto;
}

.news-link:hover {
  color: var(--black);
}

.news-section-footer {
  text-align: center;
  margin-top: 40px;
}

.news-date {
  text-align: center;
}

.news-date .day {
  display: block;
  font-family: "Titillium Web", sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 30px;
  color: var(--white);
}

.news-date .month {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 2px;
}

/* Legacy news card rules (unused on homepage) */
.news-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.news-card h4 {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 10px;
}

.section-footer-link {
  text-align: center;
  margin-top: 36px;
}

.home-eyebrow--center {
  display: block;
  text-align: center;
}

/* Special section */
.special-section {
  padding: 70px 0;
  background: var(--light-bg);
  color: var(--black);
  border-top: 1px solid var(--border);
}

.special-section .section-title {
  color: var(--black);
}

.special-intro {
  text-align: center;
  max-width: 720px;
  margin: -8px auto 48px;
  font-size: 14px;
  line-height: 24px;
  color: var(--body-text);
}

.special-grid--rounded .special-item {
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(26, 26, 26, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.special-grid--rounded .special-item svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  box-sizing: content-box;
  background: rgba(245, 130, 32, 0.1);
  border: 1px solid rgba(245, 130, 32, 0.22);
  border-radius: 12px;
}

.special-grid--rounded .special-item:hover {
  border-color: rgba(245, 130, 32, 0.45);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(26, 26, 26, 0.08);
  transform: translateY(-3px);
}

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

.special-item {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--border);
}

.special-item svg {
  width: 44px;
  height: 44px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
  margin: 0 auto 16px;
}

.special-item h4 {
  font-size: 18px;
  line-height: 24px;
  color: var(--black);
  margin-bottom: 8px;
}

.special-item p {
  font-size: 13px;
  line-height: 20px;
  color: var(--body-text);
}

.home-cta-band {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--orange) 0%, #e87318 52%, var(--orange-dark) 100%);
  border-top: none;
}

.home-cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.home-cta-band-inner .section-title.light {
  margin-bottom: 10px;
  color: var(--white);
}

.home-cta-band-inner p {
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
  margin: 0;
}

.home-cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

.home-cta-band-actions .btn-white {
  min-width: 160px;
  width: auto;
}

.home-cta-band-actions .btn-white:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.home-cta-band-actions .btn-cta-outline {
  min-width: 160px;
  width: auto;
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.85);
}

.home-cta-band-actions .btn-cta-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--orange-dark);
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 52px;
  border-top: 3px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.15fr;
  gap: 36px 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  display: block;
  width: auto;
  max-width: 200px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  margin-bottom: 14px;
}

.footer-about p {
  font-size: 13px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 320px;
}

.footer-quick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-quick a {
  font-family: "Titillium Web", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
}

.footer-quick a:hover {
  color: var(--orange);
}

.footer-col h6 {
  font-family: "Titillium Web", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-col a {
  font-size: 13px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 10px;
}

.footer-contact li span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact svg {
  width: 14px;
  height: 14px;
  fill: var(--orange);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  padding: 18px 0 22px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.52);
}

.footer-tagline {
  font-family: "Titillium Web", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 600;
}

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

.legal-page {
  padding-bottom: 70px;
}

.legal-prose p,
.legal-prose li {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 24px;
  color: var(--body-text);
  margin-bottom: 16px;
}

.legal-prose .section-title {
  font-size: 20px;
  margin: 32px 0 12px;
}

.legal-list {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}

.legal-list li {
  margin-bottom: 8px;
}

.legal-prose a {
  color: var(--orange);
  font-weight: 600;
}

/* WhatsApp float (homepage) */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* Responsive */
@media (max-width: 1100px) {
  .about-block,
  .about-column .about-block,
  .quote-block {
    padding: 60px 30px;
  }

  .special-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-tools-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-tools-lead {
    justify-self: start;
    text-align: left;
    max-width: none;
  }

  .home-tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-certs-inner {
    grid-template-columns: 1fr;
  }

  .home-cert-badge {
    border-right: none;
    border-bottom: 1px solid var(--border);
    justify-content: flex-start;
    padding: 12px 0;
  }

  .home-cert-badge:last-child {
    border-bottom: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .stats-grid,
  .vmv-grid,
  .expertise-grid,
  .contact-grid,
  .services-overview-grid {
    grid-template-columns: 1fr;
  }

  .home-services-grid {
    grid-template-columns: 1fr;
  }

  .home-trust-inner {
    grid-template-columns: 1fr 1fr;
  }

  .home-trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .home-cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats-grid--compact {
    grid-template-columns: 1fr;
  }

  .news-section-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-section-lead {
    justify-self: start;
    text-align: left;
    max-width: none;
  }

  .news-grid--cards .news-card {
    grid-template-columns: 1fr;
  }

  .news-card-body {
    padding: 20px 20px 22px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .quote-form-page .form-grid {
    grid-template-columns: 1fr;
  }

  .quote-wizard-layout {
    grid-template-columns: 1fr;
  }

  .quote-page-intro {
    grid-template-columns: 1fr;
  }

  .quote-page-intro .quote-tools-jump {
    min-width: 0;
    width: 100%;
  }

  .quote-trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote-trust-item:nth-child(2) {
    border-right: none;
  }

  .quote-wizard-aside {
    position: static;
  }

  .quote-progress::before {
    display: none;
  }

  .quote-progress-step {
    flex: 1 1 calc(50% - 4px);
  }

  .quote-progress-label {
    font-size: 10px;
  }

  .quote-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tools-links-grid {
    grid-template-columns: 1fr;
  }

  .quote-direction-toggle,
  .quote-form-grid,
  .quote-send-grid {
    grid-template-columns: 1fr;
  }

  .quote-route-row {
    grid-template-columns: 1fr;
  }

  .quote-route-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .quote-progress-step {
    flex: 1 1 calc(50% - 4px);
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .tools-links-grid {
    grid-template-columns: 1fr;
  }

  .timezone-form-row,
  .currency-form-row {
    grid-template-columns: 1fr;
  }

  .currency-highlights {
    grid-template-columns: 1fr;
  }

  .timezone-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .quote-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .currency-pair-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .currency-quick-items {
    grid-template-columns: 1fr 1fr;
  }

  .currency-amount-input {
    font-size: 26px;
  }

  .timezone-highlights {
    grid-template-columns: 1fr;
  }

  .contact-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .service-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-trust-item:nth-child(2) {
    border-right: none;
  }

  .contact-team-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .currency-swap-wrap {
    justify-content: center;
    padding-bottom: 0;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 8px;
    width: 100%;
    min-width: 0;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .nav-dropdown > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
  }

  .nav-dropdown > a::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    opacity: 0.55;
  }

  .nav-dropdown.is-open > a::after {
    transform: rotate(-135deg);
  }

  .nav-dropdown-menu a {
    padding-left: 12px;
  }

  .top-bar-center {
    display: none;
  }

  .top-bar-left .social-links {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
    gap: 6px;
  }

  .social-links a {
    width: 26px;
    height: 26px;
    border-radius: 6px;
  }

  .top-bar-mobile-contacts {
    display: flex;
  }

  .top-bar-right {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
    gap: 6px;
  }

  .office-label {
    display: none;
  }

  .office-status {
    padding: 4px 9px;
    font-size: 10px;
  }

  .top-bar-inner {
    gap: 8px;
    min-height: 38px;
    padding: 5px 0;
  }

  .header-inner {
    min-height: 72px;
    gap: 10px;
  }

  .logo img {
    height: 48px;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .about-column .about-block {
    padding: 40px 30px;
  }

  .about-image-strip {
    order: -1;
    min-height: 260px;
  }

  .about-with-image {
    grid-template-columns: 1fr;
  }

  .about-with-image .about-block,
  .about-with-image .about-image-col {
    padding: 40px 30px;
  }

  .about-image-col {
    min-height: 280px;
    order: -1;
  }

  .hero-services-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .incoterms-cards,
  .incoterms-not-covered-grid,
  .container-cards {
    grid-template-columns: 1fr;
  }

  .container-card {
    grid-template-columns: 1fr;
  }

  .container-card-visual {
    min-height: 72px;
  }

  .container-calc-row,
  .calc-result-grid,
  .container-calc-dims,
  .ports-route-row,
  .route-port-cards {
    grid-template-columns: 1fr;
  }

  .ports-route-arrow {
    display: none;
  }

  .incoterms-group-header {
    padding: 22px 20px;
  }

  .incoterm-finder-grid,
  .incoterm-compare-row,
  .incoterm-egypt-picks {
    grid-template-columns: 1fr;
  }

  .incoterm-compare-vs {
    display: none;
  }

  .incoterm-timeline-track {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .office-status-text {
    display: none;
  }

  .office-status {
    padding: 4px 7px;
  }

  .top-bar-mobile-contacts {
    gap: 4px;
  }
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 14px;
  }

  .main-nav > a,
  .nav-dropdown > a {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-header {
    position: relative;
  }

  .hero {
    height: 480px;
  }

  .hero-text h1 {
    font-size: 28px;
    line-height: 34px;
  }

  .hero-services-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-dots {
    bottom: 150px;
    right: 20px;
  }

  .home-tools-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .quote-form {
    grid-template-columns: 1fr;
  }

  .special-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-about p {
    max-width: none;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-tagline {
    order: 2;
  }

  .footer-legal {
    order: 3;
  }

  .news-card {
    grid-template-columns: 1fr;
  }
}
