:root {
  --tcc-red: #e52521;
  --tcc-red-dark: #c91916;
  --tcc-black: #111111;
  --tcc-white: #ffffff;
  --tcc-bg: #f7f7f7;
  --tcc-surface: #fafafa;
  --tcc-border: #e7e7e7;
  --tcc-muted: #666666;
  --tcc-muted-2: #909090;
  --tcc-radius: 16px;
  --tcc-radius-lg: 24px;
  --tcc-shadow: 0 16px 45px rgba(17, 17, 17, 0.08);
  --tcc-container: 1200px;
  --tcc-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.tcc-web {
  margin: 0;
  color: var(--tcc-black);
  background: var(--tcc-white);
  font-family: var(--tcc-font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.tcc-menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.screen-reader-text,
.tcc-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.tcc-skip-link:focus {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 16px;
  background: #fff;
  border: 2px solid var(--tcc-red);
}

.tcc-container {
  width: min(calc(100% - 48px), var(--tcc-container));
  margin-inline: auto;
}
.tcc-narrow { width: min(calc(100% - 48px), 880px); }
.tcc-section { padding: 108px 0; }
.tcc-section--soft { background: var(--tcc-surface); }
.tcc-eyebrow {
  color: var(--tcc-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tcc-section-heading { margin-bottom: 42px; }
.tcc-section-heading--center { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.tcc-section-heading--light { color: #fff; }
.tcc-section-heading h1,
.tcc-section-heading h2,
.tcc-page-header h1,
.tcc-empty-state h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.tcc-section-heading p,
.tcc-page-header p,
.tcc-empty-state p {
  margin: 0;
  color: var(--tcc-muted);
  font-size: 18px;
}
.tcc-section-heading--light p { color: rgba(255,255,255,.66); }

/* Header */
.tcc-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 78px;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(231,231,231,.75);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, background .2s ease;
}
.tcc-site-header.is-scrolled { box-shadow: 0 10px 30px rgba(17,17,17,.06); }
.tcc-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}
.tcc-brand { flex: 0 0 auto; display: flex; align-items: center; }
.tcc-brand img,
.tcc-brand .custom-logo { width: 210px; max-height: 54px; object-fit: contain; }
.tcc-brand .custom-logo-link { display: block; }
.tcc-nav-wrap { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 30px; }
.tcc-menu { list-style: none; padding: 0; margin: 0; display: flex; gap: 27px; align-items: center; }
.tcc-menu a { font-size: 14px; font-weight: 650; transition: color .2s ease; }
.tcc-menu a:hover, .tcc-menu a:focus-visible { color: var(--tcc-red); }
.tcc-header-actions { display: flex; align-items: center; gap: 18px; }
.tcc-login { font-size: 14px; font-weight: 650; display: inline-flex; gap: 8px; align-items: center; }
.tcc-mobile-toggle { display: none; }

/* Buttons */
.tcc-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border-radius: 11px;
  border: 1px solid transparent;
  font-weight: 750;
  font-size: 15px;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.tcc-button:hover { transform: translateY(-2px); }
.tcc-button--primary { background: var(--tcc-red); color: #fff; box-shadow: 0 10px 24px rgba(229,37,33,.18); }
.tcc-button--primary:hover { background: var(--tcc-red-dark); box-shadow: 0 14px 28px rgba(229,37,33,.24); }
.tcc-button--secondary { background: #fff; color: var(--tcc-black); border-color: #cfcfcf; }
.tcc-button--secondary:hover { border-color: #999; }
.tcc-button--dark-outline { color: #fff; border-color: rgba(255,255,255,.35); background: transparent; }
.tcc-button--dark-outline:hover { border-color: #fff; }
.tcc-button--header { min-height: 46px; padding-inline: 20px; }

/* Hero */
.tcc-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--tcc-border);
  background:
    radial-gradient(circle at 78% 38%, rgba(229,37,33,.055), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
}
.tcc-hero-grid {
  min-height: 675px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
  padding-top: 46px;
  padding-bottom: 42px;
}
.tcc-hero-copy { position: relative; z-index: 2; }
.tcc-hero h1 {
  max-width: 600px;
  margin: 16px 0 22px;
  font-size: clamp(48px, 4.5vw, 62px);
  line-height: 1.01;
  letter-spacing: -.048em;
  font-weight: 800;
  text-align: left !important;
  text-align-last: left !important;
  text-justify: auto !important;
  word-spacing: normal !important;
  white-space: normal;
}
.tcc-hero-title-line {
  display: block;
  color: var(--tcc-black) !important;
  white-space: nowrap;
}
.tcc-hero-title-line--accent { color: var(--tcc-red) !important; }
.tcc-hero-lead { max-width: 590px; margin: 0 0 28px; color: #3f3f3f; font-size: 18px; line-height: 1.62; }
.tcc-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.tcc-hero-trust {
  max-width: 610px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--tcc-border);
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  overflow: hidden;
}
.tcc-hero-trust span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  border-right: 1px solid var(--tcc-border);
}
.tcc-hero-trust span:last-child { border-right: 0; }
.tcc-hero-visual { position: relative; min-height: 560px; display: flex; align-items: center; justify-content: center; }
.tcc-hero-visual::after {
  content: "";
  position: absolute;
  inset: 15% 0 4% 10%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17,17,17,.08), rgba(17,17,17,0) 68%);
  filter: blur(10px);
}
.tcc-hero-visual > img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 600px;
  object-fit: contain;
  object-position: center;
  border-radius: 24px;
  mix-blend-mode: normal;
}
.tcc-market-chips {
  position: absolute;
  top: 8px;
  right: 22px;
  z-index: 3;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.tcc-market-chips span,
.tcc-market-row span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: #fff;
  color: var(--tcc-red);
  border: 1px solid var(--tcc-border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(17,17,17,.05);
}
.tcc-route-badge {
  position: absolute;
  z-index: 3;
  padding: 6px 10px;
  border-radius: 7px;
  background: var(--tcc-black);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
}
.tcc-route-badge--china { top: 78px; right: 30px; }
.tcc-route-badge--colombia { bottom: 44px; right: 18px; }

/* v1.0.1 hero hardening against legacy/global builder styles */
.tcc-web .tcc-hero-copy,
.tcc-web .tcc-hero-copy * { text-justify: auto; }
.tcc-web .tcc-hero-title { text-align: left !important; word-spacing: normal !important; }
.tcc-web .tcc-hero-title-line { text-align: left !important; word-spacing: normal !important; }
.tcc-web .tcc-market-chips,
.tcc-web .tcc-route-badge { display: none !important; }

/* Service selector */
.tcc-service-selector { padding-top: 82px; padding-bottom: 82px; }
.tcc-service-grid { display: grid; gap: 18px; }
.tcc-service-grid--selector { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tcc-service-card {
  position: relative;
  border: 1px solid var(--tcc-border);
  background: #fff;
  border-radius: var(--tcc-radius);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.tcc-service-card:hover { transform: translateY(-4px); border-color: #d7d7d7; box-shadow: var(--tcc-shadow); }
.tcc-service-card--selector { min-height: 370px; padding: 24px; display: flex; flex-direction: column; }
.tcc-service-icon { width: 88px; height: 72px; margin-bottom: 18px; }
.tcc-service-icon img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.tcc-service-card h3 { margin: 0 0 8px; font-size: 21px; letter-spacing: -.025em; }
.tcc-service-card p { margin: 0 0 12px; color: #4f4f4f; font-size: 14px; }
.tcc-service-card ul { list-style: none; padding: 0; margin: 0 0 20px; color: var(--tcc-muted); font-size: 13px; }
.tcc-service-card li { margin: 6px 0; padding-left: 14px; position: relative; }
.tcc-service-card li::before { content: "•"; position: absolute; left: 0; color: var(--tcc-red); }
.tcc-card-link { margin-top: auto; color: var(--tcc-red); font-weight: 800; font-size: 14px; }
.tcc-card-link span { display: inline-block; transition: transform .2s ease; }
.tcc-card-link:hover span { transform: translateX(4px); }

/* Trust strip */
.tcc-trust-strip { border-top: 1px solid var(--tcc-border); border-bottom: 1px solid var(--tcc-border); background: #fbfbfb; }
.tcc-trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.tcc-trust-grid > div { padding: 26px 20px; border-right: 1px solid var(--tcc-border); }
.tcc-trust-grid > div:last-child { border-right: 0; }
.tcc-trust-grid strong { display: block; margin-bottom: 4px; font-size: 13px; }
.tcc-trust-grid span { display: block; color: var(--tcc-muted); font-size: 12px; line-height: 1.45; }

/* Process */
.tcc-process { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; }
.tcc-process::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 8%;
  right: 8%;
  border-top: 2px dashed rgba(229,37,33,.45);
  z-index: 0;
}
.tcc-process-step { position: relative; z-index: 1; text-align: center; padding: 0 8px; }
.tcc-step-number {
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--tcc-red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 0 0 8px #fff;
}
.tcc-process-step h3 { margin: 0 0 8px; font-size: 17px; }
.tcc-process-step p { margin: 0; color: var(--tcc-muted); font-size: 13px; }

/* Feature cards */
.tcc-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tcc-feature-card {
  min-height: 210px;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--tcc-border);
  border-radius: var(--tcc-radius);
  background: #fff;
}
.tcc-feature-icon { width: 82px; height: 82px; display: grid; place-items: center; background: #fafafa; border-radius: 18px; }
.tcc-feature-icon img { width: 66px; height: 66px; object-fit: contain; }
.tcc-feature-card h3 { margin: 4px 0 8px; font-size: 18px; letter-spacing: -.02em; }
.tcc-feature-card p { margin: 0 0 14px; color: var(--tcc-muted); font-size: 13px; }
.tcc-feature-card a { color: var(--tcc-red); font-size: 13px; font-weight: 800; }

/* Departures */
.tcc-departures { background: #0e1113; color: #fff; }
.tcc-departure-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.tcc-departure-card {
  min-height: 325px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.05), rgba(255,255,255,.01)),
    radial-gradient(circle at 90% 15%, rgba(229,37,33,.20), transparent 38%);
}
.tcc-departure-eyebrow { color: #ff4743; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.tcc-departure-card h3 { margin: 10px 0 24px; font-size: 28px; letter-spacing: -.03em; }
.tcc-departure-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.tcc-departure-meta span { display: block; margin-bottom: 4px; color: rgba(255,255,255,.55); font-size: 11px; }
.tcc-departure-meta strong { display: block; font-size: 13px; }
.tcc-departure-art { display: grid; place-items: center; opacity: .94; }
.tcc-departure-art img { width: 100%; max-width: 210px; max-height: 170px; object-fit: contain; filter: drop-shadow(0 18px 25px rgba(0,0,0,.35)); }

/* Why */
.tcc-why { padding-top: 90px; padding-bottom: 90px; }
.tcc-why-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.tcc-why-grid article { min-width: 0; padding: 18px 12px; text-align: center; }
.tcc-why-dot { width: 42px; height: 42px; display: block; margin: 0 auto 14px; border: 1px solid #d8d8d8; border-radius: 50%; background: radial-gradient(circle at center, var(--tcc-red) 0 4px, transparent 5px); }
.tcc-why-grid h3 { margin: 0 0 6px; font-size: 14px; }
.tcc-why-grid p { margin: 0; color: var(--tcc-muted); font-size: 12px; line-height: 1.45; }

/* Tracking */
.tcc-tracking-section { background: var(--tcc-surface); }
.tcc-tracking-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.tcc-tracking-copy h2,
.tcc-purchases h2,
.tcc-final-cta h2 { margin: 12px 0 16px; font-size: clamp(34px, 4vw, 48px); line-height: 1.04; letter-spacing: -.04em; }
.tcc-tracking-copy > p,
.tcc-purchases-grid > div > p { color: var(--tcc-muted); font-size: 17px; }
.tcc-check-list { list-style: none; padding: 0; margin: 24px 0 28px; }
.tcc-check-list li { margin: 10px 0; padding-left: 26px; position: relative; font-size: 14px; }
.tcc-check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--tcc-red); font-weight: 900; }
.tcc-tracking-mockup { overflow: hidden; border-radius: 20px; border: 1px solid #d7d7d7; background: #fff; box-shadow: 0 28px 65px rgba(17,17,17,.12); }
.tcc-browser-bar { height: 48px; display: flex; align-items: center; gap: 7px; padding: 0 16px; background: #f1f1f1; border-bottom: 1px solid #ddd; }
.tcc-browser-bar > span { width: 9px; height: 9px; border-radius: 50%; background: #c4c4c4; }
.tcc-browser-bar strong { margin-left: 10px; font-size: 12px; }
.tcc-tracking-screen { min-height: 390px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 20px; padding: 34px; }
.tcc-tracking-list { position: relative; }
.tcc-tracking-list::before { content: ""; position: absolute; top: 16px; bottom: 22px; left: 12px; width: 1px; background: #dcdcdc; }
.tcc-tracking-list > div { position: relative; z-index: 1; display: grid; grid-template-columns: 26px 1fr; gap: 12px; margin-bottom: 24px; }
.tcc-tracking-list b { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: #fff; border: 1px solid #bbb; font-size: 11px; }
.tcc-tracking-list .is-done b { color: #fff; background: var(--tcc-red); border-color: var(--tcc-red); }
.tcc-tracking-list .is-active b { color: var(--tcc-red); border-color: var(--tcc-red); }
.tcc-tracking-list strong { display: block; font-size: 13px; }
.tcc-tracking-list small { display: block; margin-top: 3px; color: var(--tcc-muted-2); font-size: 10px; }
.tcc-map-art { position: relative; min-height: 300px; border-radius: 16px; overflow: hidden; background:
  radial-gradient(circle at 18% 38%, rgba(229,37,33,.08), transparent 3%),
  radial-gradient(circle at 76% 67%, rgba(229,37,33,.08), transparent 3%),
  linear-gradient(135deg, #f7f7f7, #f0f0f0);
}
.tcc-map-art::before,
.tcc-map-art::after { content: ""; position: absolute; width: 160px; height: 100px; border-radius: 48% 52% 44% 56%; background: #e3e3e3; opacity: .8; transform: rotate(-12deg); }
.tcc-map-art::before { left: 20px; top: 70px; }
.tcc-map-art::after { right: 20px; bottom: 52px; transform: rotate(18deg); }
.tcc-map-dot { position: absolute; z-index: 2; width: 14px; height: 14px; background: var(--tcc-red); border-radius: 50%; box-shadow: 0 0 0 6px rgba(229,37,33,.12); }
.tcc-map-dot--1 { left: 70px; top: 114px; }
.tcc-map-dot--2 { right: 68px; bottom: 87px; }
.tcc-map-route { position: absolute; z-index: 2; left: 86px; right: 84px; top: 127px; height: 118px; border-top: 2px dashed var(--tcc-red); border-radius: 50%; transform: rotate(13deg); }
.tcc-map-art strong { position: absolute; z-index: 3; left: 50%; bottom: 26px; transform: translateX(-50%); white-space: nowrap; font-size: 11px; letter-spacing: .08em; }

/* Purchases */
.tcc-purchases { overflow: hidden; }
.tcc-purchases-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 70px; align-items: center; }
.tcc-market-row { display: flex; gap: 9px; flex-wrap: wrap; margin: 24px 0 26px; }
.tcc-inline-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.tcc-inline-actions--center { justify-content: center; }
.tcc-purchases-art { position: relative; min-height: 360px; border-radius: 24px; background: linear-gradient(135deg, #f5f5f5, #fff); border: 1px solid var(--tcc-border); overflow: hidden; }
.tcc-purchases-art > img { position: absolute; width: 200px; opacity: .06; right: -10px; top: -18px; }
.tcc-purchase-phone {
  position: absolute;
  left: 20%;
  bottom: 26px;
  width: 160px;
  height: 280px;
  padding: 34px 18px;
  border: 9px solid #111;
  border-radius: 30px;
  background: #fff;
  color: var(--tcc-red);
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(17,17,17,.18);
}
.tcc-purchase-phone small { color: #555; font-size: 12px; font-weight: 600; }
.tcc-purchase-phone b { font-size: 64px; color: #111; }
.tcc-purchase-box {
  position: absolute;
  right: 13%;
  bottom: 34px;
  width: 210px;
  height: 175px;
  display: grid;
  place-items: center;
  background: #b88454;
  color: #111;
  border-radius: 4px;
  box-shadow: inset -20px -20px 0 rgba(0,0,0,.04), 0 18px 34px rgba(17,17,17,.14);
  font-size: 36px;
  font-weight: 900;
  transform: rotate(-4deg);
}
.tcc-purchase-box::before { content: ""; position: absolute; left: 50%; top: 0; width: 28px; height: 100%; transform: translateX(-50%); background: rgba(255,255,255,.26); }
.tcc-purchase-box small { position: absolute; bottom: 44px; font-size: 11px; }

/* FAQ */
.tcc-faq { padding-top: 88px; padding-bottom: 96px; background: #fafafa; }
.tcc-accordion { border-top: 1px solid var(--tcc-border); }
.tcc-faq-item { border-bottom: 1px solid var(--tcc-border); }
.tcc-faq-item button { width: 100%; min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0; border: 0; background: transparent; color: var(--tcc-black); text-align: left; cursor: pointer; font-weight: 700; }
.tcc-faq-item button b { font-size: 24px; font-weight: 400; color: var(--tcc-red); }
.tcc-faq-answer { padding: 0 42px 24px 0; }
.tcc-faq-answer p { margin: 0; color: var(--tcc-muted); font-size: 15px; }

/* Final CTA */
.tcc-final-cta {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  color: #fff;
  background: #0d0f10;
}
.tcc-final-cta::before,
.tcc-final-cta::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 220px;
  border-radius: 50%;
  border: 1px dashed rgba(229,37,33,.6);
  opacity: .55;
}
.tcc-final-cta::before { left: -110px; top: 45px; transform: rotate(10deg); }
.tcc-final-cta::after { right: -110px; bottom: 10px; transform: rotate(-12deg); }
.tcc-final-cta-inner { position: relative; z-index: 1; text-align: center; }
.tcc-final-cta h2 { color: #fff; }
.tcc-final-cta p { margin: 0 0 28px; color: rgba(255,255,255,.65); font-size: 17px; }
.tcc-final-route { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 18px; font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.tcc-final-route i { width: 180px; border-top: 2px dashed var(--tcc-red); }

/* Footer */
.tcc-site-footer { padding: 68px 0 28px; background: #090a0b; color: #fff; }
.tcc-footer-grid { display: grid; grid-template-columns: 1.35fr repeat(4, 1fr); gap: 42px; }
.tcc-footer-brand img { width: 210px; max-height: 62px; object-fit: contain; object-position: left center; }
.tcc-footer-brand p { color: rgba(255,255,255,.65); font-size: 14px; }
.tcc-footer-route { color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.tcc-footer-route span { color: var(--tcc-red); padding: 0 7px; }
.tcc-site-footer h3 { margin: 0 0 16px; color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.tcc-site-footer a,
.tcc-footer-contact p { display: block; margin: 9px 0; color: rgba(255,255,255,.62); font-size: 13px; }
.tcc-site-footer a:hover { color: #fff; }
.tcc-footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.11); display: flex; justify-content: space-between; gap: 18px; color: rgba(255,255,255,.44); font-size: 11px; }

/* Content */
.tcc-page-shell { min-height: 60vh; }
.tcc-page-header { margin-bottom: 34px; }
.tcc-page-header h1 { font-size: clamp(38px, 6vw, 64px); }
.tcc-prose { font-size: 18px; line-height: 1.75; }
.tcc-prose > *:first-child { margin-top: 0; }
.tcc-prose a { color: var(--tcc-red); text-decoration: underline; }
.tcc-content-layout { max-width: 900px; }
.tcc-post-list { display: grid; gap: 18px; }
.tcc-post-card { padding: 28px; border: 1px solid var(--tcc-border); border-radius: 16px; }
.tcc-post-card h2 { margin-top: 0; }
.tcc-empty-state { min-height: 65vh; display: grid; align-items: center; text-align: center; }

/* Tablet */
@media (max-width: 1100px) {
  .tcc-brand img, .tcc-brand .custom-logo { width: 170px; }
  .tcc-menu { gap: 18px; }
  .tcc-menu a { font-size: 13px; }
  .tcc-login { display: none; }
  .tcc-hero-grid { grid-template-columns: .95fr 1.05fr; gap: 20px; }
  .tcc-hero h1 { font-size: clamp(44px, 5vw, 56px); }
  .tcc-service-grid--selector { grid-template-columns: repeat(2, 1fr); }
  .tcc-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .tcc-trust-grid { grid-template-columns: repeat(3, 1fr); }
  .tcc-trust-grid > div:nth-child(3) { border-right: 0; }
  .tcc-trust-grid > div:nth-child(-n+3) { border-bottom: 1px solid var(--tcc-border); }
  .tcc-process { grid-template-columns: repeat(5, minmax(130px, 1fr)); overflow-x: auto; padding-bottom: 10px; }
  .tcc-why-grid { grid-template-columns: repeat(3, 1fr); }
  .tcc-tracking-grid, .tcc-purchases-grid { gap: 42px; }
  .tcc-footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 820px) {
  .tcc-container, .tcc-narrow { width: min(calc(100% - 40px), var(--tcc-container)); }
  .tcc-section { padding: 76px 0; }
  .tcc-site-header { height: 68px; }
  .tcc-header-inner { justify-content: space-between; }
  .tcc-brand img, .tcc-brand .custom-logo { width: 158px; max-height: 44px; }
  .tcc-mobile-toggle {
    width: 46px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .tcc-mobile-toggle > span:not(.screen-reader-text) { width: 24px; height: 2px; display: block; background: #111; transition: transform .2s ease, opacity .2s ease; }
  .tcc-mobile-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .tcc-mobile-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .tcc-mobile-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .tcc-nav-wrap {
    display: none;
    position: fixed;
    inset: 68px 0 0;
    z-index: 999;
    padding: 28px 20px;
    background: #fff;
    overflow-y: auto;
  }
  .tcc-nav-wrap.is-open { display: block; }
  .tcc-menu { display: block; }
  .tcc-menu li { border-bottom: 1px solid var(--tcc-border); }
  .tcc-menu a { display: block; padding: 17px 2px; font-size: 17px; }
  .tcc-header-actions { margin-top: 24px; display: grid; gap: 12px; }
  .tcc-login { display: block; padding: 10px 0; }
  .tcc-button--header { width: 100%; }

  .tcc-hero-grid { min-height: auto; grid-template-columns: 1fr; gap: 24px; padding-top: 52px; padding-bottom: 42px; }
  .tcc-hero h1 { max-width: 100%; margin-top: 12px; font-size: clamp(39px, 10.6vw, 50px); }
  .tcc-hero-title-line { white-space: normal; }
  .tcc-hero-lead { font-size: 16px; }
  .tcc-hero-actions { display: grid; grid-template-columns: 1fr; }
  .tcc-hero-actions .tcc-button { width: 100%; }
  .tcc-hero-trust { grid-template-columns: repeat(2, 1fr); }
  .tcc-hero-trust span:nth-child(2) { border-right: 0; }
  .tcc-hero-trust span:nth-child(-n+2) { border-bottom: 1px solid var(--tcc-border); }
  .tcc-hero-visual { min-height: 360px; }
  .tcc-hero-visual > img { border-radius: 20px; max-height: 400px; }
  .tcc-market-chips { top: -6px; left: 0; right: auto; justify-content: flex-start; }
  .tcc-market-chips span { min-height: 31px; padding: 0 10px; font-size: 11px; }
  .tcc-route-badge--china { top: 58px; right: 10px; }
  .tcc-route-badge--colombia { bottom: 26px; right: 8px; }

  .tcc-section-heading--center { margin-bottom: 34px; text-align: left; }
  .tcc-section-heading h2 { font-size: 32px; }
  .tcc-section-heading p { font-size: 16px; }
  .tcc-service-grid--selector, .tcc-feature-grid, .tcc-departure-grid, .tcc-tracking-grid, .tcc-purchases-grid { grid-template-columns: 1fr; }
  .tcc-service-card--selector { min-height: 330px; }
  .tcc-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .tcc-trust-grid > div { border-right: 1px solid var(--tcc-border) !important; border-bottom: 1px solid var(--tcc-border); }
  .tcc-trust-grid > div:nth-child(even) { border-right: 0 !important; }
  .tcc-trust-grid > div:last-child { grid-column: 1 / -1; border-bottom: 0; }

  .tcc-process { display: block; overflow: visible; padding-left: 4px; }
  .tcc-process::before { top: 10px; bottom: 24px; left: 25px; right: auto; height: auto; border-top: 0; border-left: 2px dashed rgba(229,37,33,.45); }
  .tcc-process-step { display: grid; grid-template-columns: 52px 1fr; column-gap: 16px; text-align: left; padding: 0 0 30px; }
  .tcc-step-number { grid-row: 1 / span 2; margin: 0; }
  .tcc-process-step h3 { margin-top: 4px; }

  .tcc-feature-card { min-height: 190px; grid-template-columns: 76px 1fr; padding: 22px; }
  .tcc-feature-icon { width: 70px; height: 70px; }
  .tcc-feature-icon img { width: 56px; height: 56px; }

  .tcc-departure-card { min-height: 330px; grid-template-columns: 1fr; padding: 26px; }
  .tcc-departure-art { position: absolute; right: 16px; top: 22px; width: 145px; opacity: .28; }
  .tcc-departure-card > div:first-child { position: relative; z-index: 2; }
  .tcc-departure-meta { max-width: 350px; }

  .tcc-why-grid { grid-template-columns: repeat(2, 1fr); }
  .tcc-tracking-grid { gap: 34px; }
  .tcc-tracking-mockup { order: -1; }
  .tcc-tracking-screen { min-height: 360px; grid-template-columns: 1fr; padding: 24px; }
  .tcc-map-art { display: none; }
  .tcc-purchases-grid { gap: 34px; }
  .tcc-purchases-art { min-height: 320px; }
  .tcc-purchase-phone { left: 9%; width: 140px; height: 250px; }
  .tcc-purchase-box { right: 8%; width: 160px; height: 145px; }
  .tcc-inline-actions { display: grid; grid-template-columns: 1fr; }
  .tcc-inline-actions .tcc-button { width: 100%; }
  .tcc-final-cta { padding: 72px 0; }
  .tcc-final-cta h2 { font-size: 36px; }
  .tcc-final-route i { width: 90px; }

  .tcc-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .tcc-footer-brand { grid-column: 1 / -1; }
  .tcc-footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .tcc-container, .tcc-narrow { width: min(calc(100% - 32px), var(--tcc-container)); }
  .tcc-hero h1 { font-size: 38px; }
  .tcc-service-grid--selector { grid-template-columns: 1fr; }
  .tcc-trust-grid { grid-template-columns: 1fr; }
  .tcc-trust-grid > div { border-right: 0 !important; }
  .tcc-trust-grid > div:last-child { grid-column: auto; }
  .tcc-departure-meta { grid-template-columns: 1fr; }
  .tcc-why-grid { grid-template-columns: 1fr; }
  .tcc-purchases-art { min-height: 290px; }
  .tcc-purchase-phone { left: 5%; width: 122px; height: 225px; font-size: 18px; }
  .tcc-purchase-phone b { font-size: 52px; }
  .tcc-purchase-box { right: 5%; width: 142px; height: 128px; font-size: 29px; }
  .tcc-footer-grid { grid-template-columns: 1fr; }
  .tcc-footer-brand, .tcc-footer-contact { grid-column: auto; }
  .tcc-footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* WordPress admin bar compatibility */
body.admin-bar .tcc-site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .tcc-site-header { top: 46px; }
}

/* v1.0.3 · Service selector visual system */
.tcc-service-selector {
  position: relative;
  overflow: hidden;
  padding-top: 92px;
  padding-bottom: 88px;
}
.tcc-service-selector::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -260px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,37,33,.055), rgba(229,37,33,0) 68%);
  pointer-events: none;
}
.tcc-service-grid--selector { gap: 20px; }
.tcc-service-card--selector {
  min-height: 440px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  border-color: #e4e4e4;
  box-shadow: 0 2px 0 rgba(17,17,17,.01);
}
.tcc-service-card--selector:hover {
  transform: translateY(-6px);
  border-color: rgba(229,37,33,.42);
  box-shadow: 0 22px 48px rgba(17,17,17,.10);
}
.tcc-service-art {
  position: relative;
  height: 158px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ececec;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,248,248,.96)),
    #fafafa;
}
.tcc-service-art::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -78px;
  top: -92px;
  border-radius: 50%;
  border: 1px solid rgba(229,37,33,.13);
  box-shadow: 0 0 0 30px rgba(229,37,33,.025), 0 0 0 62px rgba(229,37,33,.018);
}
.tcc-service-art::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
  height: 20px;
  border-top: 1.5px dashed rgba(229,37,33,.28);
  border-radius: 50%;
  transform: rotate(-4deg);
}
.tcc-service-badge {
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 16px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e5e5;
  color: #444;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .055em;
  box-shadow: 0 8px 20px rgba(17,17,17,.05);
}
.tcc-service-card--air .tcc-service-badge,
.tcc-service-card--ocean .tcc-service-badge {
  color: var(--tcc-red);
}
.tcc-service-icon {
  position: relative;
  z-index: 3;
  width: 118px;
  height: 94px;
  margin: 26px 0 0;
  transition: transform .22s ease;
}
.tcc-service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 12px rgba(17,17,17,.08));
}
.tcc-service-card--selector:hover .tcc-service-icon { transform: translateY(-4px) scale(1.035); }
.tcc-service-art-decor { position: absolute; z-index: 2; display: block; }
.tcc-service-art--locker .tcc-service-art-decor--one,
.tcc-service-art--locker .tcc-service-art-decor--two {
  width: 34px; height: 28px; bottom: 28px; background: #fff; border: 1px solid #d9d9d9; border-radius: 5px;
  box-shadow: inset 0 -6px 0 rgba(229,37,33,.04);
}
.tcc-service-art--locker .tcc-service-art-decor--one { right: 44px; transform: rotate(7deg); }
.tcc-service-art--locker .tcc-service-art-decor--two { right: 78px; bottom: 18px; transform: rotate(-6deg); }
.tcc-service-art--air .tcc-service-art-decor--one {
  width: 82px; height: 82px; right: 28px; bottom: -44px; border: 1px dashed rgba(229,37,33,.26); border-radius: 50%;
}
.tcc-service-art--air .tcc-service-art-decor--two {
  width: 8px; height: 8px; right: 77px; bottom: 35px; background: var(--tcc-red); border-radius: 50%; box-shadow: 0 0 0 6px rgba(229,37,33,.08);
}
.tcc-service-art--ocean .tcc-service-art-decor--one,
.tcc-service-art--ocean .tcc-service-art-decor--two {
  left: 12px; right: 12px; height: 14px; border-top: 2px solid rgba(17,17,17,.09); border-radius: 50%;
}
.tcc-service-art--ocean .tcc-service-art-decor--one { bottom: 22px; }
.tcc-service-art--ocean .tcc-service-art-decor--two { bottom: 12px; border-top-color: rgba(229,37,33,.18); }
.tcc-service-art--fcl .tcc-service-art-decor--one {
  width: 72px; height: 48px; right: 24px; bottom: 18px; border: 1px solid rgba(17,17,17,.10); border-radius: 5px;
  background: repeating-linear-gradient(90deg, rgba(229,37,33,.10) 0 2px, transparent 2px 9px);
}
.tcc-service-art--fcl .tcc-service-art-decor--two {
  width: 42px; height: 2px; right: 38px; bottom: 13px; background: rgba(17,17,17,.14);
}
.tcc-service-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 22px;
}
.tcc-service-card-body h3 { margin: 0 0 7px; font-size: 21px; letter-spacing: -.025em; }
.tcc-service-card-body > p { margin: 0 0 14px; min-height: 42px; color: #505050; font-size: 14px; line-height: 1.48; }
.tcc-service-card-body ul { margin-bottom: 22px; }
.tcc-service-cta {
  margin-top: auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 0 14px;
  border: 1px solid rgba(229,37,33,.22);
  border-radius: 10px;
  background: rgba(229,37,33,.045);
  color: var(--tcc-red);
  font-size: 13px;
  font-weight: 820;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.tcc-service-cta span { font-size: 16px; transition: transform .2s ease; }
.tcc-service-cta:hover {
  background: var(--tcc-red);
  border-color: var(--tcc-red);
  color: #fff;
}
.tcc-service-cta:hover span { transform: translateX(3px); }

/* v1.0.3 · Trust strip */
.tcc-trust-strip { background: #fafafa; }
.tcc-trust-grid > div { position: relative; min-height: 104px; padding: 24px 18px 22px 48px; }
.tcc-trust-index {
  position: absolute;
  left: 18px;
  top: 23px;
  color: var(--tcc-red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .05em;
}
.tcc-trust-grid strong { margin-bottom: 5px; font-size: 13px; }
.tcc-trust-grid span { font-size: 11.5px; line-height: 1.48; }

@media (max-width: 1100px) {
  .tcc-service-card--selector { min-height: 420px; }
  .tcc-service-art { height: 150px; }
}

@media (max-width: 820px) {
  .tcc-service-selector { padding-top: 76px; padding-bottom: 74px; }
  .tcc-service-card--selector { min-height: 0; }
  .tcc-service-art { height: 158px; }
  .tcc-service-card-body { padding: 22px; }
  .tcc-service-card-body > p { min-height: 0; }
}

@media (max-width: 520px) {
  .tcc-service-art { height: 150px; }
  .tcc-service-icon { width: 108px; height: 88px; }
  .tcc-trust-grid > div { min-height: 92px; padding: 20px 18px 18px 48px; }
  .tcc-trust-index { top: 20px; }
}

/* v1.0.4 · Process route visual system */
.tcc-process-section {
  position: relative;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 104px;
  background:
    radial-gradient(circle at 12% 15%, rgba(229,37,33,.035), transparent 27%),
    linear-gradient(180deg, #fafafa 0%, #fff 100%);
  border-bottom: 1px solid #efefef;
}
.tcc-process-section::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  right: -240px;
  bottom: -280px;
  border: 1px solid rgba(229,37,33,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(229,37,33,.018), 0 0 0 105px rgba(229,37,33,.012);
  pointer-events: none;
}
.tcc-process-heading { margin-bottom: 34px; }
.tcc-process-heading .tcc-eyebrow { margin-bottom: 12px; }
.tcc-process-route {
  min-height: 58px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}
.tcc-process-country {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #e4e4e4;
  background: #fff;
  color: #1b1b1b;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .045em;
  box-shadow: 0 7px 18px rgba(17,17,17,.04);
}
.tcc-process-country b { color: var(--tcc-red); font-size: 9px; }
.tcc-process-route-line {
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  color: #6d6d6d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}
.tcc-process-route-line i {
  height: 1px;
  position: relative;
  overflow: visible;
  background: repeating-linear-gradient(90deg, rgba(229,37,33,.42) 0 6px, transparent 6px 12px);
}
.tcc-process-route-line i:first-child::before,
.tcc-process-route-line i:last-child::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -3.5px;
  border-radius: 50%;
  background: var(--tcc-red);
  box-shadow: 0 0 0 5px rgba(229,37,33,.08);
}
.tcc-process-route-line i:first-child::before { left: 0; }
.tcc-process-route-line i:last-child::after { right: 0; }

.tcc-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
}
.tcc-process::before { display: none; }
.tcc-process-step {
  position: relative;
  min-height: 300px;
  padding: 20px 18px 22px;
  text-align: left;
  border: 1px solid #e5e5e5;
  border-radius: 17px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 6px 24px rgba(17,17,17,.035);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.tcc-process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(229,37,33,.30);
  box-shadow: 0 18px 38px rgba(17,17,17,.075);
}
.tcc-process-step-top {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 15px;
}
.tcc-step-number {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
  margin: 0;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--tcc-red);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  box-shadow: none;
}
.tcc-process-stage {
  color: #767676;
  font-size: 8.5px;
  font-weight: 900;
  letter-spacing: .07em;
  text-align: right;
}
.tcc-process-icon {
  width: 88px;
  height: 78px;
  margin: 8px 0 16px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background:
    radial-gradient(circle at 72% 25%, rgba(229,37,33,.07), transparent 38%),
    #fafafa;
  border: 1px solid #efefef;
}
.tcc-process-icon img {
  width: 68px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 7px 8px rgba(17,17,17,.05));
}
.tcc-process-step h3 {
  margin: 0 0 9px;
  font-size: 17px;
  letter-spacing: -.025em;
  line-height: 1.16;
}
.tcc-process-step p {
  margin: 0;
  color: #6b6b6b;
  font-size: 12px;
  line-height: 1.55;
}
.tcc-process-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -18px;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(229,37,33,.22);
  color: var(--tcc-red);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(17,17,17,.06);
}
.tcc-process-step--1 .tcc-process-icon { background-color: #fffafa; }
.tcc-process-step--5 {
  border-color: rgba(229,37,33,.22);
  background: linear-gradient(180deg, #fff 0%, #fffafa 100%);
}
.tcc-process-footnote {
  margin: 28px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: #777;
  font-size: 11px;
  font-weight: 700;
}
.tcc-process-footnote i { width: 4px; height: 4px; border-radius: 50%; background: var(--tcc-red); }

@media (max-width: 1100px) {
  .tcc-process { grid-template-columns: repeat(5, minmax(205px, 1fr)); overflow-x: auto; padding: 4px 4px 18px; scroll-snap-type: x proximity; }
  .tcc-process-step { scroll-snap-align: start; }
  .tcc-process-arrow { display: none; }
}

@media (max-width: 820px) {
  .tcc-process-section { padding-top: 78px; padding-bottom: 80px; }
  .tcc-process-heading { text-align: left; margin-bottom: 24px; }
  .tcc-process-route { grid-template-columns: auto auto; justify-content: space-between; gap: 10px; margin-bottom: 22px; }
  .tcc-process-route-line { grid-column: 1 / -1; grid-row: 2; width: 100%; }
  .tcc-process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
    padding: 0;
  }
  .tcc-process-step {
    min-height: 0;
    display: grid;
    grid-template-columns: 82px 1fr;
    column-gap: 16px;
    padding: 18px;
    text-align: left;
  }
  .tcc-process-step-top { grid-column: 1 / -1; margin-bottom: 12px; }
  .tcc-process-icon { grid-column: 1; grid-row: 2 / span 2; width: 78px; height: 72px; margin: 0; }
  .tcc-process-icon img { width: 58px; height: 52px; }
  .tcc-process-step h3 { grid-column: 2; margin: 3px 0 7px; }
  .tcc-process-step p { grid-column: 2; }
  .tcc-process-footnote { flex-wrap: wrap; gap: 9px 12px; justify-content: flex-start; }
}

@media (max-width: 520px) {
  .tcc-process-country { padding: 0 9px; font-size: 9px; }
  .tcc-process-route-line strong { font-size: 9px; }
  .tcc-process-step { grid-template-columns: 70px 1fr; column-gap: 13px; }
  .tcc-process-icon { width: 66px; height: 64px; }
  .tcc-process-icon img { width: 50px; height: 46px; }
  .tcc-process-stage { font-size: 8px; }
}

/* v1.1.0 · Service illustration system v2 */
.tcc-service-icon { width: 136px; height: 98px; margin-top: 28px; }
.tcc-service-card--locker .tcc-service-icon { width: 126px; height: 96px; }
.tcc-service-card--air .tcc-service-icon { width: 158px; height: 100px; }
.tcc-service-card--ocean .tcc-service-icon { width: 154px; height: 100px; }
.tcc-service-card--fcl .tcc-service-icon { width: 154px; height: 98px; }
.tcc-service-icon img { filter: none; }
.tcc-service-card--air:hover .tcc-service-icon { transform: translate(3px,-3px) scale(1.02); }
.tcc-service-card--locker:hover .tcc-service-icon,
.tcc-service-card--ocean:hover .tcc-service-icon,
.tcc-service-card--fcl:hover .tcc-service-icon { transform: translateY(-3px) scale(1.02); }
.tcc-service-art--locker .tcc-service-art-decor--one,
.tcc-service-art--locker .tcc-service-art-decor--two { opacity: .55; }
.tcc-service-art--fcl .tcc-service-art-decor--one { opacity: .55; }
.tcc-service-art--ocean::after { border-top-style: solid; opacity: .7; }

@media (max-width: 760px) {
  .tcc-service-icon { width: 118px; height: 86px; margin-top: 23px; }
  .tcc-service-card--locker .tcc-service-icon { width: 108px; height: 84px; }
  .tcc-service-card--air .tcc-service-icon { width: 136px; height: 88px; }
  .tcc-service-card--ocean .tcc-service-icon { width: 132px; height: 88px; }
  .tcc-service-card--fcl .tcc-service-icon { width: 132px; height: 86px; }
}

/* v1.1.8 · Air cargo approved pictogram */
.tcc-service-card--air .tcc-service-icon { width: 164px; height: 112px; margin-top: 24px; }
.tcc-service-card--air .tcc-service-icon img { object-fit: contain; object-position: center; }
@media (max-width: 760px) {
  .tcc-service-card--air .tcc-service-icon { width: 142px; height: 98px; margin-top: 20px; }
}

/* v1.1.9 · Process route redesign */
.tcc-process-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0 110px;
  background:
    radial-gradient(circle at 92% 12%, rgba(228,71,50,.045), transparent 28%),
    linear-gradient(180deg, #fbfbfb 0%, #ffffff 100%);
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #eeeeee;
}
.tcc-process-section::after {
  content:"";
  position:absolute;
  width:420px;height:420px;
  left:-270px;bottom:-300px;
  border:1px solid rgba(228,71,50,.07);
  border-radius:50%;
  box-shadow:0 0 0 48px rgba(228,71,50,.015),0 0 0 100px rgba(228,71,50,.01);
  pointer-events:none;
}
.tcc-process-heading { margin-bottom: 34px; }
.tcc-process-heading h2 { margin-bottom: 10px; }
.tcc-process-shell {
  position:relative;
  padding: 26px 28px 28px;
  border:1px solid #e8e8e8;
  border-radius:24px;
  background:rgba(255,255,255,.94);
  box-shadow:0 22px 60px rgba(17,17,17,.055);
}
.tcc-process-route-head {
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:18px;
  padding:0 4px 22px;
  border-bottom:1px solid #eeeeee;
}
.tcc-process-endpoint {
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:35px;
  padding:0 12px;
  border:1px solid #e5e5e5;
  border-radius:999px;
  background:#fff;
  box-shadow:0 7px 18px rgba(17,17,17,.035);
  white-space:nowrap;
}
.tcc-process-endpoint b { color:var(--tcc-red);font-size:8px;font-weight:900;letter-spacing:.08em; }
.tcc-process-endpoint strong { color:#181818;font-size:10px;font-weight:900;letter-spacing:.05em; }
.tcc-process-route-label {
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:13px;
  min-width:0;
}
.tcc-process-route-label i {
  height:1px;
  background:repeating-linear-gradient(90deg,rgba(228,71,50,.38) 0 6px,transparent 6px 12px);
}
.tcc-process-route-label em { color:#777;font-style:normal;font-size:9px;font-weight:900;letter-spacing:.12em;white-space:nowrap; }
.tcc-process-track {
  position:relative;
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:0;
  padding-top:34px;
}
.tcc-process-track::before {
  content:"";
  position:absolute;
  top:48px;
  left:10%;
  right:10%;
  height:2px;
  background:repeating-linear-gradient(90deg,rgba(228,71,50,.36) 0 8px,transparent 8px 15px);
  z-index:0;
}
.tcc-process-step {
  position:relative;
  z-index:1;
  min-height:0;
  padding:0 14px 18px;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  text-align:center;
}
.tcc-process-step:hover { transform:none;border-color:transparent;box-shadow:none; }
.tcc-process-node {
  width:30px;height:30px;
  margin:0 auto 18px;
  display:grid;place-items:center;
  border-radius:50%;
  background:#fff;
  border:2px solid var(--tcc-red);
  box-shadow:0 0 0 7px #fff,0 5px 16px rgba(228,71,50,.12);
}
.tcc-process-node span { color:var(--tcc-red);font-size:9px;font-weight:900; }
.tcc-process-visual {
  width:112px;height:82px;
  margin:0 auto 14px;
  display:grid;place-items:center;
  border-radius:18px;
  border:1px solid #eeeeee;
  background:
    radial-gradient(circle at 76% 22%,rgba(228,71,50,.07),transparent 38%),
    #fbfbfb;
}
.tcc-process-visual img { width:82px;height:64px;object-fit:contain;filter:drop-shadow(0 6px 8px rgba(17,17,17,.04)); }
.tcc-process-step--4 .tcc-process-visual img { width:88px;height:64px; }
.tcc-process-stage {
  display:block;
  margin-bottom:7px;
  color:var(--tcc-red);
  font-size:8.5px;
  font-weight:900;
  letter-spacing:.09em;
  text-align:center;
}
.tcc-process-step h3 { margin:0 auto 8px;max-width:180px;font-size:17px;line-height:1.18;letter-spacing:-.025em; }
.tcc-process-step p { margin:0 auto;max-width:195px;color:#6c6c6c;font-size:11.5px;line-height:1.55; }
.tcc-process-footnote {
  margin:24px 0 0;
  padding-top:20px;
  border-top:1px solid #eeeeee;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  color:#707070;
  font-size:10.5px;
  font-weight:750;
}
.tcc-process-footnote i { width:4px;height:4px;border-radius:50%;background:var(--tcc-red); }

@media (max-width:1100px) {
  .tcc-process-shell { overflow:hidden; }
  .tcc-process-track { grid-template-columns:repeat(5,minmax(190px,1fr));overflow-x:auto;padding-bottom:14px;scroll-snap-type:x proximity; }
  .tcc-process-step { scroll-snap-align:start; }
  .tcc-process-track::before { left:95px;right:95px; }
}
@media (max-width:820px) {
  .tcc-process-section { padding:78px 0 84px; }
  .tcc-process-heading { text-align:left;margin-bottom:24px; }
  .tcc-process-shell { padding:20px 18px 22px;border-radius:20px; }
  .tcc-process-route-head { grid-template-columns:auto auto;justify-content:space-between;gap:10px;padding-bottom:18px; }
  .tcc-process-route-label { grid-column:1/-1;grid-row:2; }
  .tcc-process-track { display:block;overflow:visible;padding:24px 0 0; }
  .tcc-process-track::before {
    top:38px;bottom:30px;left:15px;right:auto;width:2px;height:auto;
    background:repeating-linear-gradient(180deg,rgba(228,71,50,.34) 0 8px,transparent 8px 15px);
  }
  .tcc-process-step {
    display:grid;
    grid-template-columns:32px 82px 1fr;
    grid-template-rows:auto auto auto;
    column-gap:14px;
    text-align:left;
    padding:0 0 26px;
  }
  .tcc-process-node { grid-column:1;grid-row:1 / span 3;margin:0;width:30px;height:30px; }
  .tcc-process-visual { grid-column:2;grid-row:1 / span 3;width:78px;height:70px;margin:0; }
  .tcc-process-visual img { width:58px;height:50px; }
  .tcc-process-step--4 .tcc-process-visual img { width:64px;height:50px; }
  .tcc-process-stage { grid-column:3;grid-row:1;text-align:left;margin:1px 0 5px; }
  .tcc-process-step h3 { grid-column:3;grid-row:2;margin:0 0 6px;max-width:none;font-size:16px; }
  .tcc-process-step p { grid-column:3;grid-row:3;margin:0;max-width:none; }
  .tcc-process-footnote { flex-wrap:wrap;justify-content:flex-start;gap:8px 11px; }
}
@media (max-width:520px) {
  .tcc-process-endpoint { padding:0 9px; }
  .tcc-process-endpoint strong { font-size:9px; }
  .tcc-process-route-label em { font-size:8px; }
  .tcc-process-step { grid-template-columns:30px 68px 1fr;column-gap:11px; }
  .tcc-process-visual { width:64px;height:60px;border-radius:14px; }
  .tcc-process-visual img { width:48px;height:43px; }
  .tcc-process-step--4 .tcc-process-visual img { width:52px;height:43px; }
}

/* v1.1.11 · Process micro-polish + departures block */
.tcc-process-heading { margin-bottom: 30px; }
.tcc-process-shell { padding-top: 22px; }
.tcc-process-route-head { padding-bottom: 18px; }
.tcc-process-track { padding-top: 30px; }
.tcc-process-visual { margin-bottom: 15px; }
.tcc-process-step h3 { margin-bottom: 9px; }
.tcc-process-step p {
  font-size: 12.5px;
  line-height: 1.62;
  color: #666;
}
.tcc-process-footnote {
  margin-top: 18px;
  padding-top: 18px;
  font-size: 11.5px;
  font-weight: 800;
  color: #5a5a5a;
  gap: 16px;
}

.tcc-departures {
  position: relative;
  overflow: hidden;
  padding-top: 94px;
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 10% 14%, rgba(229,37,33,.12), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(229,37,33,.15), transparent 28%),
    linear-gradient(180deg, #0e1113 0%, #121619 100%);
}
.tcc-departures::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: .18;
  pointer-events: none;
}
.tcc-departures .tcc-container { position: relative; z-index: 1; }
.tcc-departure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.tcc-departure-card {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 24px;
  align-items: start;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.03) 100%),
    radial-gradient(circle at 100% 0%, rgba(229,37,33,.13), transparent 34%);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.tcc-departure-card::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 86px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,0));
}
.tcc-departure-content { position: relative; z-index: 2; }
.tcc-departure-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #ff5b52;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  background: rgba(255,255,255,.04);
}
.tcc-departure-card h3 {
  margin: 16px 0 10px;
  font-size: 31px;
  line-height: 1.08;
  letter-spacing: -.04em;
  max-width: 12ch;
}
.tcc-departure-description {
  margin: 0 0 24px;
  max-width: 46ch;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.6;
}
.tcc-departure-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.tcc-departure-stat {
  min-height: 92px;
  padding: 14px 14px 15px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(6px);
}
.tcc-departure-stat span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tcc-departure-stat strong {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}
.tcc-departure-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tcc-button--ghost-light {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: transparent;
}
.tcc-button--ghost-light:hover {
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.05);
}
.tcc-departure-note {
  margin: 20px 0 0;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  line-height: 1.55;
  max-width: 48ch;
}
.tcc-departure-art {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: end;
  display: grid;
  place-items: center;
  width: 180px;
  min-height: 144px;
  padding: 16px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.tcc-departure-art::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  background: radial-gradient(circle at 70% 30%, rgba(229,37,33,.16), rgba(229,37,33,0) 58%);
  pointer-events: none;
}
.tcc-departure-art img {
  position: relative;
  width: 100%;
  max-width: 148px;
  max-height: 104px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.16));
}
.tcc-departure-card--ocean .tcc-departure-art img { max-width: 154px; max-height: 96px; }
.tcc-departure-card--air .tcc-departure-art img { max-width: 136px; max-height: 98px; }

@media (max-width: 1100px) {
  .tcc-departure-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .tcc-departure-art {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 132px;
    min-height: 112px;
    padding: 12px;
    opacity: .86;
  }
  .tcc-departure-card h3 { max-width: 16ch; padding-right: 90px; }
  .tcc-departure-description,
  .tcc-departure-note,
  .tcc-departure-actions,
  .tcc-departure-stats { position: relative; z-index: 2; }
}
@media (max-width: 820px) {
  .tcc-departures { padding-top: 78px; padding-bottom: 80px; }
  .tcc-departure-grid { grid-template-columns: 1fr; }
  .tcc-departure-card {
    padding: 28px 22px;
    border-radius: 20px;
  }
  .tcc-departure-card::after { left: 22px; right: 22px; bottom: 78px; }
  .tcc-departure-card h3 { font-size: 27px; }
  .tcc-departure-stats { grid-template-columns: 1fr 1fr; }
  .tcc-process-step p { font-size: 12px; }
  .tcc-process-footnote { font-size: 11px; }
}
@media (max-width: 560px) {
  .tcc-departure-stats { grid-template-columns: 1fr; }
  .tcc-departure-stat { min-height: 0; }
  .tcc-departure-card h3 { max-width: none; padding-right: 78px; font-size: 24px; }
  .tcc-departure-description { font-size: 13px; }
  .tcc-departure-actions { gap: 10px; }
  .tcc-departure-actions .tcc-button { width: 100%; justify-content: space-between; }
}

/* 1.1.13 — Why trust TCC redesign */
.tcc-trust-section {
  position: relative;
  background:
    radial-gradient(circle at 0% 0%, rgba(229,37,33,.05), rgba(229,37,33,0) 26%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  padding-top: 98px;
  padding-bottom: 98px;
}
.tcc-trust-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: 22px;
  align-items: stretch;
}
.tcc-trust-panel,
.tcc-trust-feature {
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
  border: 1px solid var(--tcc-border);
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(17,17,17,.05);
}
.tcc-trust-panel--main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 22px;
  padding: 30px;
  min-height: 100%;
}
.tcc-trust-panel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--tcc-border);
  background: #fff;
  color: var(--tcc-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tcc-trust-panel-copy h3 {
  margin: 0 0 12px;
  font-size: 33px;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.tcc-trust-panel-copy p {
  margin: 0;
  max-width: 54ch;
  color: var(--tcc-muted);
}
.tcc-trust-panel-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.tcc-trust-panel-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #232323;
  font-weight: 600;
}
.tcc-trust-panel-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at center, var(--tcc-red) 0 4px, rgba(229,37,33,.14) 4px 100%);
}
.tcc-trust-panel-art {
  display: grid;
  place-items: center;
}
.tcc-trust-panel-visual {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px 18px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 72% 18%, rgba(229,37,33,.12), rgba(229,37,33,0) 45%),
    linear-gradient(180deg, #fbfbfb 0%, #f5f5f5 100%);
  border: 1px solid #ececec;
}
.tcc-trust-panel-visual img {
  width: 100%;
  max-width: 180px;
  max-height: 136px;
  object-fit: contain;
}
.tcc-trust-panel-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.tcc-trust-panel-pills span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #ececec;
  background: rgba(255,255,255,.94);
  color: #2a2a2a;
  font-size: 12px;
  font-weight: 700;
}
.tcc-trust-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.tcc-trust-feature {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  padding: 22px 20px;
  align-items: center;
}
.tcc-trust-feature-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 22%, rgba(229,37,33,.10), rgba(229,37,33,0) 44%),
    linear-gradient(180deg, #fbfbfb 0%, #f7f7f7 100%);
  border: 1px solid #ececec;
}
.tcc-trust-feature-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.tcc-trust-feature h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -.02em;
}
.tcc-trust-feature p {
  margin: 0;
  color: var(--tcc-muted);
  font-size: 14px;
  line-height: 1.55;
}
.tcc-trust-bar {
  margin-top: 22px;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--tcc-border);
  border-radius: 20px;
  background: #fff;
}
.tcc-trust-bar span {
  color: #1b1b1b;
  font-size: 14px;
  font-weight: 700;
}
.tcc-trust-bar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tcc-red);
  opacity: .85;
}

@media (max-width: 1100px) {
  .tcc-trust-showcase {
    grid-template-columns: 1fr;
  }
  .tcc-trust-panel--main {
    grid-template-columns: minmax(0, 1fr) 220px;
  }
}
@media (max-width: 820px) {
  .tcc-trust-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }
  .tcc-trust-panel--main {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .tcc-trust-panel-copy h3 {
    font-size: 29px;
  }
  .tcc-trust-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .tcc-trust-feature-grid {
    grid-template-columns: 1fr;
  }
  .tcc-trust-feature {
    grid-template-columns: 66px 1fr;
    gap: 14px;
    padding: 18px;
  }
  .tcc-trust-feature-icon {
    width: 66px;
    height: 66px;
  }
  .tcc-trust-feature-icon img {
    width: 48px;
    height: 48px;
  }
  .tcc-trust-feature h3 {
    font-size: 18px;
  }
  .tcc-trust-bar {
    justify-content: flex-start;
    gap: 10px;
    padding: 16px 18px;
  }
  .tcc-trust-bar i:nth-of-type(4) {
    display: none;
  }
}

/* 1.1.14 — Trust section polish + tighter transition to Platform TCC */
.tcc-trust-section {
  padding-bottom: 54px;
}
.tcc-trust-showcase {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 20px;
}
.tcc-trust-panel--main {
  padding: 28px;
}
.tcc-trust-feature-grid {
  gap: 14px;
}
.tcc-trust-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  min-height: 190px;
  padding: 20px;
}
.tcc-trust-feature-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  border-radius: 16px;
}
.tcc-trust-feature-icon img {
  width: 46px;
  height: 46px;
}
.tcc-trust-feature h3 {
  margin: 0 0 7px;
  max-width: 100%;
  font-size: 18px;
  line-height: 1.14;
}
.tcc-trust-feature p {
  font-size: 13.25px;
  line-height: 1.5;
}
.tcc-trust-bar {
  margin-top: 18px;
  padding: 15px 22px;
  border-color: #dedede;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
  box-shadow: 0 8px 24px rgba(17,17,17,.035);
}
.tcc-trust-bar span {
  font-size: 13.5px;
  font-weight: 800;
}

/* Close the oversized visual gap before Platform TCC without touching prior blocks. */
.tcc-tracking-section {
  padding-top: 68px;
  border-top: 1px solid #eeeeee;
  background:
    linear-gradient(180deg, #f8f8f8 0%, var(--tcc-surface) 18%, var(--tcc-surface) 100%);
}

@media (max-width: 1100px) {
  .tcc-trust-showcase {
    grid-template-columns: 1fr;
  }
  .tcc-trust-feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .tcc-trust-feature {
    min-height: 210px;
  }
}

@media (max-width: 900px) {
  .tcc-trust-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .tcc-trust-feature {
    min-height: 180px;
  }
}

@media (max-width: 820px) {
  .tcc-trust-section {
    padding-bottom: 46px;
  }
  .tcc-tracking-section {
    padding-top: 58px;
  }
}

@media (max-width: 640px) {
  .tcc-trust-feature-grid {
    grid-template-columns: 1fr;
  }
  .tcc-trust-feature {
    display: grid;
    grid-template-columns: 62px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 4px;
    min-height: 0;
    padding: 18px;
  }
  .tcc-trust-feature-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 62px;
    height: 62px;
  }
  .tcc-trust-feature > div:last-child {
    grid-column: 2;
  }
  .tcc-trust-feature h3 {
    font-size: 17px;
  }
  .tcc-trust-feature p {
    font-size: 13px;
  }
  .tcc-trust-bar {
    padding: 14px 16px;
  }
}

/* 1.1.15 — Platform TCC / Tracking redesign */
.tcc-platform-section {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  padding-bottom: 102px;
  border-top: 1px solid #eeeeee;
  background:
    radial-gradient(circle at 88% 14%, rgba(229,37,33,.045), rgba(229,37,33,0) 28%),
    linear-gradient(180deg, #f8f8f8 0%, #fbfbfb 42%, #ffffff 100%);
}
.tcc-platform-section::after {
  content: "";
  position: absolute;
  right: -260px;
  bottom: -310px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(229,37,33,.055);
  border-radius: 50%;
  box-shadow: 0 0 0 54px rgba(229,37,33,.012), 0 0 0 112px rgba(229,37,33,.008);
  pointer-events: none;
}
.tcc-platform-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, .62fr) minmax(620px, 1.38fr);
  gap: 44px;
  align-items: center;
}
.tcc-platform-copy h2 {
  margin: 12px 0 18px;
  max-width: 8.6ch;
  font-size: clamp(42px, 4.8vw, 63px);
  line-height: .98;
  letter-spacing: -.055em;
}
.tcc-platform-copy > p {
  margin: 0;
  max-width: 43ch;
  color: var(--tcc-muted);
  font-size: 17px;
  line-height: 1.62;
}
.tcc-platform-benefits {
  display: grid;
  gap: 10px;
  margin: 28px 0 28px;
}
.tcc-platform-benefit {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid #e5e5e5;
  border-radius: 15px;
  background: rgba(255,255,255,.78);
}
.tcc-platform-benefit-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--tcc-red);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
}
.tcc-platform-benefit strong {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}
.tcc-platform-benefit small {
  display: block;
  color: #747474;
  font-size: 12.5px;
  line-height: 1.4;
}
.tcc-platform-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tcc-platform-dashboard {
  overflow: hidden;
  border: 1px solid #dcdcdc;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(17,17,17,.11);
}
.tcc-platform-windowbar {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  border-bottom: 1px solid #e1e1e1;
  background: linear-gradient(180deg, #f6f6f6 0%, #f0f0f0 100%);
}
.tcc-platform-windowdots {
  display: flex;
  gap: 6px;
}
.tcc-platform-windowdots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c8c8c8;
}
.tcc-platform-windowdots span:first-child { background: #ec5b4f; }
.tcc-platform-windowdots span:nth-child(2) { background: #f1bb3c; }
.tcc-platform-windowdots span:nth-child(3) { background: #52b46b; }
.tcc-platform-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 14px;
}
.tcc-platform-brand img {
  width: 118px;
  max-height: 31px;
  object-fit: contain;
  object-position: left center;
}
.tcc-platform-brand strong {
  padding-left: 14px;
  border-left: 1px solid #dadada;
  font-size: 12px;
  white-space: nowrap;
}
.tcc-platform-user {
  color: #666;
  font-size: 11px;
  white-space: nowrap;
}
.tcc-platform-user span {
  margin-right: 6px;
  color: var(--tcc-red);
  font-size: 8px;
}
.tcc-platform-dashboard-body { padding: 18px; }
.tcc-platform-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
  margin-bottom: 12px;
}
.tcc-platform-stat {
  min-width: 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 84px;
  padding: 12px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #fff;
}
.tcc-platform-stat-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  border: 1px solid #eeeeee;
  background: #fafafa;
}
.tcc-platform-stat-icon img {
  width: 42px;
  height: 38px;
  object-fit: contain;
}
.tcc-platform-stat:nth-child(3) .tcc-platform-stat-icon img {
  width: 46px;
  height: 36px;
}
.tcc-platform-stat-icon--document span {
  position: relative;
  width: 27px;
  height: 34px;
  border: 2px solid #171717;
  border-radius: 3px;
  background: #fff;
}
.tcc-platform-stat-icon--document span::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 10px;
  height: 2px;
  background: var(--tcc-red);
  box-shadow: 0 7px 0 #d4d4d4, 0 14px 0 #d4d4d4;
}
.tcc-platform-stat span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #555;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.tcc-platform-stat strong {
  display: inline-block;
  margin: 2px 5px 0 0;
  font-size: 23px;
  line-height: 1;
}
.tcc-platform-stat small { color: #8a8a8a; font-size: 9px; }
.tcc-platform-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 12px;
}
.tcc-platform-shipment-card,
.tcc-platform-route-card,
.tcc-platform-docs {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  background: #fff;
}
.tcc-platform-shipment-card { padding: 18px; }
.tcc-platform-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 17px;
}
.tcc-platform-card-head h3 {
  margin: 0 0 3px;
  font-size: 18px;
  letter-spacing: -.02em;
}
.tcc-platform-card-head p { margin: 0; color: #777; font-size: 11px; }
.tcc-platform-status {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(229,37,33,.09);
  color: var(--tcc-red);
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}
.tcc-platform-timeline { position: relative; }
.tcc-platform-timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 11px;
  bottom: 12px;
  width: 1px;
  background: #dadada;
}
.tcc-platform-timeline > div {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 42px;
}
.tcc-platform-timeline b {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 1px solid #cfcfcf;
  background: #fff;
  color: #a0a0a0;
  font-size: 9px;
}
.tcc-platform-timeline .is-done b {
  border-color: #38a75a;
  background: #38a75a;
  color: #fff;
}
.tcc-platform-timeline .is-active b {
  border: 2px solid var(--tcc-red);
  color: var(--tcc-red);
}
.tcc-platform-timeline strong { display: block; font-size: 10.5px; }
.tcc-platform-timeline small { display: block; margin-top: 1px; color: #9a9a9a; font-size: 8px; }
.tcc-platform-timeline em {
  padding: 5px 7px;
  border-radius: 999px;
  background: #eaf7ee;
  color: #2f9a50;
  font-style: normal;
  font-size: 7.5px;
  font-weight: 700;
}
.tcc-platform-timeline .is-active em {
  background: rgba(229,37,33,.09);
  color: var(--tcc-red);
}
.tcc-platform-route-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
}
.tcc-platform-route-map {
  position: relative;
  min-height: 242px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(245,245,245,.94), rgba(250,250,250,.95)),
    repeating-linear-gradient(90deg, #eee 0 1px, transparent 1px 32px);
}
.tcc-platform-continent {
  position: absolute;
  display: block;
  background: #e6e6e6;
  opacity: .92;
}
.tcc-platform-continent--west {
  left: 8%;
  top: 29%;
  width: 39%;
  height: 42%;
  border-radius: 46% 54% 39% 61% / 40% 45% 55% 60%;
  transform: rotate(-13deg);
}
.tcc-platform-continent--east {
  right: 5%;
  top: 22%;
  width: 43%;
  height: 48%;
  border-radius: 58% 42% 54% 46% / 44% 61% 39% 56%;
  transform: rotate(9deg);
}
.tcc-platform-route-dot {
  position: absolute;
  z-index: 3;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--tcc-red);
  box-shadow: 0 0 0 5px rgba(229,37,33,.10);
}
.tcc-platform-route-dot--china { right: 18%; top: 34%; }
.tcc-platform-route-dot--colombia { left: 24%; bottom: 26%; }
.tcc-platform-route-line {
  position: absolute;
  z-index: 2;
  left: 27%;
  right: 20%;
  top: 40%;
  height: 40%;
  border-top: 2px dashed rgba(229,37,33,.75);
  border-radius: 50%;
  transform: rotate(-8deg);
}
.tcc-platform-route-label {
  position: absolute;
  z-index: 4;
  font-size: 8px;
  color: #333;
}
.tcc-platform-route-label--china { right: 10%; top: 30%; }
.tcc-platform-route-label--colombia { left: 14%; bottom: 20%; }
.tcc-platform-route-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #e5e5e5;
}
.tcc-platform-route-meta div { padding: 11px 13px; }
.tcc-platform-route-meta div:nth-child(odd) { border-right: 1px solid #ececec; }
.tcc-platform-route-meta div:nth-child(-n+2) { border-bottom: 1px solid #ececec; }
.tcc-platform-route-meta span { display: block; color: #929292; font-size: 8px; }
.tcc-platform-route-meta strong { display: block; margin-top: 2px; font-size: 9.5px; }
.tcc-platform-docs { margin-top: 12px; padding: 14px; }
.tcc-platform-docs-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.tcc-platform-docs-head strong { font-size: 11px; }
.tcc-platform-docs-head span { color: #929292; font-size: 8px; }
.tcc-platform-doc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 8px;
}
.tcc-platform-doc {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  align-items: center;
  padding: 9px;
  border: 1px solid #e8e8e8;
  border-radius: 11px;
  background: #fcfcfc;
}
.tcc-platform-doc i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 38px;
  border: 1px solid #d7d7d7;
  border-radius: 5px;
  background: #fff;
  color: var(--tcc-red);
  font-size: 7px;
  font-style: normal;
  font-weight: 900;
}
.tcc-platform-doc strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 8.5px;
  white-space: nowrap;
}
.tcc-platform-doc small { display: block; color: #999; font-size: 7px; }
.tcc-platform-update {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 11px;
  padding: 0 4px;
  color: #929292;
  font-size: 8px;
}
.tcc-platform-update strong { color: var(--tcc-red); }

@media (max-width: 1180px) {
  .tcc-platform-layout {
    grid-template-columns: .7fr 1.3fr;
    gap: 30px;
  }
  .tcc-platform-copy h2 { font-size: clamp(40px, 4.3vw, 54px); }
  .tcc-platform-stat { grid-template-columns: 44px 1fr; padding: 10px; }
  .tcc-platform-stat-icon { width: 43px; height: 43px; }
  .tcc-platform-stat-icon img { width: 36px; height: 33px; }
}
@media (max-width: 1020px) {
  .tcc-platform-layout { grid-template-columns: 1fr; }
  .tcc-platform-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
  }
  .tcc-platform-copy .tcc-eyebrow,
  .tcc-platform-copy h2,
  .tcc-platform-copy > p { grid-column: 1; }
  .tcc-platform-benefits { grid-column: 2; grid-row: 1 / span 3; margin: 0; }
  .tcc-platform-actions { grid-column: 1 / -1; margin-top: 20px; }
  .tcc-platform-copy h2 { max-width: 10ch; }
}
@media (max-width: 820px) {
  .tcc-platform-section { padding-top: 62px; padding-bottom: 82px; }
  .tcc-platform-copy { display: block; }
  .tcc-platform-copy h2 { max-width: 11ch; font-size: 44px; }
  .tcc-platform-benefits { margin: 24px 0; }
  .tcc-platform-dashboard { border-radius: 18px; }
  .tcc-platform-windowbar { grid-template-columns: auto 1fr; }
  .tcc-platform-user { display: none; }
  .tcc-platform-stats { grid-template-columns: 1fr 1fr; }
  .tcc-platform-main-grid { grid-template-columns: 1fr; }
  .tcc-platform-route-map { min-height: 220px; }
}
@media (max-width: 560px) {
  .tcc-platform-section { padding-top: 54px; padding-bottom: 70px; }
  .tcc-platform-copy h2 { font-size: 37px; }
  .tcc-platform-copy > p { font-size: 15px; }
  .tcc-platform-actions .tcc-button { width: 100%; justify-content: space-between; }
  .tcc-platform-windowbar { padding: 0 14px; }
  .tcc-platform-brand img { width: 92px; }
  .tcc-platform-brand strong { display: none; }
  .tcc-platform-dashboard-body { padding: 12px; }
  .tcc-platform-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .tcc-platform-stat { grid-template-columns: 38px 1fr; min-height: 74px; padding: 9px; }
  .tcc-platform-stat-icon { width: 38px; height: 38px; border-radius: 10px; }
  .tcc-platform-stat-icon img { width: 31px; height: 29px; }
  .tcc-platform-stat strong { font-size: 19px; }
  .tcc-platform-shipment-card { padding: 14px; }
  .tcc-platform-timeline > div { grid-template-columns: 24px 1fr; }
  .tcc-platform-timeline em { display: none; }
  .tcc-platform-doc-grid { grid-template-columns: 1fr 1fr; }
  .tcc-platform-update { display: block; }
  .tcc-platform-update strong { display: block; margin-top: 4px; }
}

/* 1.1.16 — Platform TCC polish: tighter dashboard, stronger secondary CTA, real route map */
.tcc-platform-section {
  padding-top: 72px;
  padding-bottom: 48px;
}
.tcc-platform-section + .tcc-purchases {
  padding-top: 76px;
}
.tcc-platform-layout {
  align-items: center;
}
.tcc-platform-actions {
  gap: 12px;
}
.tcc-platform-actions .tcc-button--platform-secondary {
  border: 1.5px solid rgba(229,37,33,.62);
  background: rgba(255,255,255,.94);
  color: var(--tcc-red);
  font-weight: 800;
  box-shadow: 0 7px 20px rgba(229,37,33,.06);
}
.tcc-platform-actions .tcc-button--platform-secondary:hover {
  border-color: var(--tcc-red);
  background: rgba(229,37,33,.055);
  transform: translateY(-1px);
}

/* Desktop dashboard is slightly denser so the complete interface is visible sooner. */
.tcc-platform-windowbar {
  min-height: 50px;
}
.tcc-platform-dashboard-body {
  padding: 14px;
}
.tcc-platform-stats {
  gap: 8px;
  margin-bottom: 9px;
}
.tcc-platform-stat {
  grid-template-columns: 48px 1fr;
  gap: 8px;
  min-height: 72px;
  padding: 9px 10px;
  border-radius: 13px;
}
.tcc-platform-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}
.tcc-platform-stat-icon img {
  width: 37px;
  height: 34px;
}
.tcc-platform-stat:nth-child(3) .tcc-platform-stat-icon img {
  width: 40px;
  height: 33px;
}
.tcc-platform-stat strong {
  font-size: 21px;
}
.tcc-platform-main-grid {
  gap: 9px;
}
.tcc-platform-shipment-card {
  padding: 14px;
}
.tcc-platform-card-head {
  margin-bottom: 12px;
}
.tcc-platform-timeline > div {
  min-height: 35px;
}
.tcc-platform-route-map {
  min-height: 205px;
  padding: 0;
  background: #f8f8f8;
}
.tcc-platform-route-map .tcc-platform-route-svg {
  width: 100%;
  height: 100%;
  min-height: 205px;
  display: block;
  object-fit: cover;
}
.tcc-platform-route-meta div {
  padding: 8px 11px;
}
.tcc-platform-docs {
  margin-top: 9px;
  padding: 11px;
}
.tcc-platform-docs-head {
  margin-bottom: 8px;
}
.tcc-platform-doc {
  padding: 7px;
}
.tcc-platform-doc i {
  width: 29px;
  height: 34px;
}
.tcc-platform-update {
  margin-top: 8px;
}

@media (max-width: 1020px) {
  .tcc-platform-section {
    padding-bottom: 58px;
  }
  .tcc-platform-section + .tcc-purchases {
    padding-top: 76px;
  }
}
@media (max-width: 820px) {
  .tcc-platform-section {
    padding-top: 62px;
    padding-bottom: 58px;
  }
  .tcc-platform-section + .tcc-purchases {
    padding-top: 72px;
  }
  .tcc-platform-route-map,
  .tcc-platform-route-map .tcc-platform-route-svg {
    min-height: 220px;
  }
}
@media (max-width: 560px) {
  .tcc-platform-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }
  .tcc-platform-section + .tcc-purchases {
    padding-top: 64px;
  }
  .tcc-platform-actions .tcc-button--platform-secondary {
    background: #fff;
  }
}

/* v1.1.17 · Compras en China redesign */
.tcc-purchases-v1117 {
  position: relative;
  overflow: hidden;
  padding-top: 76px;
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 96% 7%, rgba(228,71,50,.055), rgba(228,71,50,0) 24%),
    radial-gradient(circle at 2% 92%, rgba(228,71,50,.04), rgba(228,71,50,0) 25%),
    linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
}
.tcc-purchases-v1117::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -260px;
  top: -230px;
  border: 1px solid rgba(228,71,50,.06);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(228,71,50,.014), 0 0 0 110px rgba(228,71,50,.009);
  pointer-events: none;
}
.tcc-purchases-v1117::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  left: -270px;
  bottom: -240px;
  border: 1px solid rgba(228,71,50,.055);
  border-radius: 50%;
  pointer-events: none;
}
.tcc-purchases-v1117 .tcc-container { position: relative; z-index: 1; }
.tcc-purchase-layout {
  display: grid;
  grid-template-columns: minmax(0, .79fr) minmax(0, 1.21fr);
  gap: 54px;
  align-items: center;
}
.tcc-purchase-copy h2 {
  margin: 12px 0 18px;
  max-width: 12.6ch;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.tcc-purchase-lead {
  margin: 0;
  max-width: 47ch;
  color: var(--tcc-muted);
  font-size: 16px;
  line-height: 1.68;
}
.tcc-purchase-services {
  display: grid;
  gap: 10px;
  margin-top: 27px;
}
.tcc-purchase-service {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: center;
  min-height: 72px;
  padding: 13px 16px;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 8px 22px rgba(17,17,17,.025);
}
.tcc-purchase-service > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ed4b38, #d92d22);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 7px 18px rgba(228,71,50,.18);
}
.tcc-purchase-service strong {
  display: block;
  margin-bottom: 3px;
  color: #181818;
  font-size: 15px;
  line-height: 1.25;
}
.tcc-purchase-service small {
  display: block;
  color: #777;
  font-size: 12.5px;
  line-height: 1.45;
}
.tcc-purchase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.tcc-purchase-secondary {
  color: #d93427;
  border-color: rgba(228,71,50,.62);
  background: #fff;
  font-weight: 800;
}
.tcc-purchase-secondary:hover {
  color: #fff;
  border-color: var(--tcc-red);
  background: var(--tcc-red);
}

.tcc-purchase-flow {
  padding: 26px;
  border: 1px solid #e5e5e5;
  border-radius: 26px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 24px 58px rgba(17,17,17,.065);
}
.tcc-purchase-flow-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}
.tcc-purchase-flow-head span {
  display: block;
  margin-bottom: 5px;
  color: var(--tcc-red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .09em;
}
.tcc-purchase-flow-head h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -.025em;
}
.tcc-purchase-flow-head b {
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid #ededed;
  border-radius: 999px;
  background: #fbfbfb;
  color: #666;
  font-size: 9px;
  letter-spacing: .06em;
}
.tcc-purchase-flow-top {
  display: grid;
  grid-template-columns: 1.08fr repeat(3, 1fr);
  gap: 12px;
}
.tcc-purchase-flow-bottom {
  display: grid;
  grid-template-columns: .78fr 1.7fr .78fr;
  gap: 12px;
  align-items: stretch;
}
.tcc-purchase-flow-card {
  position: relative;
  min-height: 178px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 12px 14px;
  border: 1px solid #e8e8e8;
  border-radius: 17px;
  background:
    radial-gradient(circle at 84% 12%, rgba(228,71,50,.045), rgba(228,71,50,0) 35%),
    #fff;
  text-align: center;
}
.tcc-purchase-flow-card:not(:last-child)::after,
.tcc-purchase-flow-bottom > *:not(:last-child)::after {
  content: "›";
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -20px;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 4px solid #fff;
  border-radius: 50%;
  background: #e63f31;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.tcc-purchase-flow-step {
  align-self: flex-start;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-bottom: 8px;
  border: 1px solid rgba(228,71,50,.2);
  border-radius: 50%;
  background: #fff7f5;
  color: var(--tcc-red);
  font-size: 8px;
  font-weight: 900;
}
.tcc-purchase-flow-card h4 {
  margin: 0 0 10px;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b1b1b;
  font-size: 13px;
  line-height: 1.25;
}
.tcc-purchase-flow-icon {
  flex: 1;
  width: 100%;
  display: grid;
  place-items: center;
}
.tcc-purchase-flow-icon img {
  width: 76px;
  height: 64px;
  object-fit: contain;
}
.tcc-purchase-flow-card--marketplaces { padding-inline: 11px; }
.tcc-purchase-marketplaces {
  width: 100%;
  display: grid;
  gap: 6px;
}
.tcc-purchase-marketplaces span {
  display: grid;
  place-items: center;
  min-height: 30px;
  border: 1px solid #e8e8e8;
  border-radius: 9px;
  background: #fff;
  color: #232323;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(17,17,17,.025);
}
.tcc-purchase-flow-connector {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin: 17px 0;
}
.tcc-purchase-flow-connector i {
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(228,71,50,.43) 0 6px, transparent 6px 12px);
}
.tcc-purchase-flow-connector span {
  color: #7a7a7a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.tcc-purchase-flow-card--compact { min-height: 160px; }
.tcc-purchase-route-card {
  position: relative;
  min-width: 0;
  border-radius: 17px;
}
.tcc-purchase-route-card img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  border-radius: 17px;
}
.tcc-purchase-capabilities {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 17px;
  border: 1px solid #e8e8e8;
  border-radius: 17px;
  background: #fcfcfc;
  overflow: hidden;
}
.tcc-purchase-capabilities > div {
  min-width: 0;
  padding: 14px 10px 13px;
  text-align: center;
}
.tcc-purchase-capabilities > div + div { border-left: 1px solid #e9e9e9; }
.tcc-purchase-capabilities img {
  width: 38px;
  height: 38px;
  margin: 0 auto 7px;
  object-fit: contain;
}
.tcc-purchase-capabilities strong {
  display: block;
  margin-bottom: 3px;
  color: #202020;
  font-size: 11px;
}
.tcc-purchase-capabilities small {
  display: block;
  color: #858585;
  font-size: 9px;
  line-height: 1.4;
}

@media (max-width: 1120px) {
  .tcc-purchase-layout { grid-template-columns: 1fr; gap: 38px; }
  .tcc-purchase-copy { max-width: 760px; }
  .tcc-purchase-copy h2 { max-width: 15ch; }
}
@media (max-width: 820px) {
  .tcc-purchases-v1117 { padding-top: 72px; padding-bottom: 82px; }
  .tcc-purchase-copy h2 { font-size: clamp(34px, 8vw, 46px); }
  .tcc-purchase-flow { padding: 20px; border-radius: 22px; }
  .tcc-purchase-flow-top { grid-template-columns: 1fr 1fr; }
  .tcc-purchase-flow-card:nth-child(2)::after { display: none; }
  .tcc-purchase-flow-bottom { grid-template-columns: 1fr 1.55fr 1fr; }
  .tcc-purchase-capabilities { grid-template-columns: repeat(5, minmax(120px, 1fr)); overflow-x: auto; }
  .tcc-purchase-capabilities > div { min-width: 120px; }
}
@media (max-width: 620px) {
  .tcc-purchases-v1117 { padding-top: 64px; }
  .tcc-purchase-layout { gap: 30px; }
  .tcc-purchase-services { gap: 9px; }
  .tcc-purchase-service { grid-template-columns: 42px 1fr; padding: 12px 13px; }
  .tcc-purchase-service > span { width: 38px; height: 38px; }
  .tcc-purchase-actions { display: grid; grid-template-columns: 1fr; }
  .tcc-purchase-actions .tcc-button { width: 100%; justify-content: space-between; }
  .tcc-purchase-flow-head { display: block; }
  .tcc-purchase-flow-head b { display: inline-block; margin-top: 11px; }
  .tcc-purchase-flow-top { grid-template-columns: 1fr; }
  .tcc-purchase-flow-card { min-height: 146px; display: grid; grid-template-columns: 35px 1fr 78px; grid-template-rows: auto 1fr; column-gap: 10px; text-align: left; align-items: center; }
  .tcc-purchase-flow-card::after { display: none !important; }
  .tcc-purchase-flow-step { grid-column: 1; grid-row: 1 / span 2; align-self: center; margin: 0; }
  .tcc-purchase-flow-card h4 { grid-column: 2; grid-row: 1; justify-content: flex-start; min-height: 0; margin: 0 0 5px; font-size: 14px; }
  .tcc-purchase-flow-icon { grid-column: 3; grid-row: 1 / span 2; }
  .tcc-purchase-flow-icon img { width: 65px; height: 55px; }
  .tcc-purchase-flow-card--marketplaces { display: block; text-align: center; min-height: 0; }
  .tcc-purchase-flow-card--marketplaces .tcc-purchase-flow-step { display: none; }
  .tcc-purchase-flow-card--marketplaces h4 { display: block; margin-bottom: 10px; }
  .tcc-purchase-marketplaces { grid-template-columns: 1fr 1fr; }
  .tcc-purchase-flow-connector { margin: 13px 0; }
  .tcc-purchase-flow-bottom { grid-template-columns: 1fr; }
  .tcc-purchase-route-card { order: -1; }
  .tcc-purchase-route-card img { min-height: 152px; object-fit: contain; background: #fcfcfc; }
  .tcc-purchase-flow-card--compact { min-height: 120px; }
  .tcc-purchase-capabilities { margin-top: 14px; }
}

/* v1.1.18 · Responsive repair: Header/Menu + Compras en China only */
@media (max-width: 1024px) {
  .tcc-site-header {
    height: 72px;
    z-index: 10000;
  }
  .tcc-header-inner {
    justify-content: space-between;
    gap: 20px;
  }
  .tcc-brand img,
  .tcc-brand .custom-logo {
    width: min(178px, 48vw);
    max-height: 48px;
  }
  .tcc-mobile-toggle {
    width: 48px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 6px;
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 2;
  }
  .tcc-mobile-toggle > span:not(.screen-reader-text) {
    width: 26px;
    height: 2px;
    display: block;
    background: #111;
    transform-origin: center;
    transition: transform .2s ease, opacity .2s ease;
  }
  .tcc-mobile-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .tcc-mobile-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .tcc-mobile-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .tcc-nav-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    height: calc(100dvh - 72px);
    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 20px 24px 34px;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-top: 1px solid #ededed;
    box-shadow: 0 18px 38px rgba(17,17,17,.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .tcc-nav-wrap.is-open {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .tcc-primary-nav { width: 100%; }
  .tcc-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
  }
  .tcc-menu li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid var(--tcc-border);
  }
  .tcc-menu a {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0 2px;
    color: #171717;
    font-size: 17px;
    font-weight: 750;
    line-height: 1.2;
  }
  .tcc-header-actions {
    width: 100%;
    margin-top: 20px;
    display: grid;
    gap: 12px;
  }
  .tcc-login {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 2px;
    font-size: 16px;
  }
  .tcc-button--header {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    padding-inline: 18px;
  }
  body.tcc-menu-open {
    overflow: hidden;
    touch-action: none;
  }
}

@media (max-width: 620px) {
  .tcc-site-header { height: 68px; }
  .tcc-container,
  .tcc-narrow { width: min(calc(100% - 32px), var(--tcc-container)); }
  .tcc-brand img,
  .tcc-brand .custom-logo {
    width: min(168px, 54vw);
    max-height: 44px;
  }
  .tcc-nav-wrap {
    height: calc(100dvh - 68px);
    min-height: calc(100vh - 68px);
    padding: 14px 20px 28px;
  }
  .tcc-menu a { min-height: 52px; font-size: 17px; }

  /* Compras en China: prevent every intrinsic-width overflow. */
  .tcc-purchases-v1117 {
    overflow-x: clip;
    padding-top: 54px;
    padding-bottom: 68px;
  }
  .tcc-purchases-v1117 .tcc-container,
  .tcc-purchase-layout,
  .tcc-purchase-copy,
  .tcc-purchase-services,
  .tcc-purchase-flow,
  .tcc-purchase-flow-top,
  .tcc-purchase-flow-bottom,
  .tcc-purchase-capabilities,
  .tcc-purchase-flow-card,
  .tcc-purchase-route-card {
    min-width: 0;
    max-width: 100%;
  }
  .tcc-purchase-layout {
    width: 100%;
    grid-template-columns: minmax(0,1fr);
    gap: 28px;
  }
  .tcc-purchase-copy h2 {
    max-width: 11.5ch;
    margin-top: 10px;
    margin-bottom: 18px;
    font-size: clamp(35px, 10vw, 42px);
    line-height: 1.04;
    letter-spacing: -.04em;
    overflow-wrap: normal;
  }
  .tcc-purchase-lead {
    max-width: none;
    font-size: 15.5px;
    line-height: 1.62;
  }
  .tcc-purchase-services { margin-top: 24px; }
  .tcc-purchase-service {
    width: 100%;
    min-width: 0;
    grid-template-columns: 42px minmax(0,1fr);
    gap: 13px;
    min-height: 0;
    padding: 14px;
    overflow: hidden;
  }
  .tcc-purchase-service > div { min-width: 0; }
  .tcc-purchase-service strong {
    font-size: 15px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }
  .tcc-purchase-service small {
    max-width: 100%;
    font-size: 12.5px;
    line-height: 1.45;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .tcc-purchase-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }
  .tcc-purchase-actions .tcc-button {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
    padding-inline: 18px;
  }

  /* Mobile flow = compact vertical journey, never a desktop board squeezed into viewport. */
  .tcc-purchase-flow {
    width: 100%;
    min-width: 0;
    padding: 16px;
    border-radius: 20px;
    overflow: hidden;
  }
  .tcc-purchase-flow-head {
    width: 100%;
    min-width: 0;
    display: block;
    margin-bottom: 16px;
  }
  .tcc-purchase-flow-head h3 {
    max-width: 100%;
    font-size: 23px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }
  .tcc-purchase-flow-head b {
    display: inline-flex;
    margin-top: 10px;
    padding: 7px 10px;
  }
  .tcc-purchase-flow-top,
  .tcc-purchase-flow-bottom {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0,1fr);
    gap: 10px;
  }
  .tcc-purchase-flow-card {
    width: 100%;
    min-width: 0;
    min-height: 94px;
    display: grid;
    grid-template-columns: 30px 62px minmax(0,1fr);
    grid-template-rows: 1fr;
    column-gap: 10px;
    align-items: center;
    padding: 12px;
    text-align: left;
  }
  .tcc-purchase-flow-card::after { display: none !important; }
  .tcc-purchase-flow-step {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    width: 27px;
    height: 27px;
    margin: 0;
  }
  .tcc-purchase-flow-icon {
    grid-column: 2;
    grid-row: 1;
    width: 62px;
    height: 58px;
    min-width: 0;
    display: grid !important;
    place-items: center;
    opacity: 1;
    visibility: visible;
  }
  .tcc-purchase-flow-icon img {
    width: 58px;
    height: 52px;
    max-width: 100%;
    display: block !important;
    object-fit: contain;
    opacity: 1;
    visibility: visible;
  }
  .tcc-purchase-flow-card h4 {
    grid-column: 3;
    grid-row: 1;
    min-width: 0;
    min-height: 0;
    margin: 0;
    display: block;
    font-size: 15px;
    line-height: 1.28;
    text-align: left;
    overflow-wrap: anywhere;
  }
  .tcc-purchase-flow-card--marketplaces {
    min-height: 0;
    display: grid;
    grid-template-columns: 30px minmax(0,1fr);
    grid-template-rows: auto auto;
    gap: 8px 10px;
    padding: 13px 12px;
    text-align: left;
  }
  .tcc-purchase-flow-card--marketplaces .tcc-purchase-flow-step {
    display: grid;
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .tcc-purchase-flow-card--marketplaces h4 {
    grid-column: 2;
    grid-row: 1;
    display: block;
    margin: 0;
    font-size: 15px;
    text-align: left;
  }
  .tcc-purchase-marketplaces {
    grid-column: 2;
    grid-row: 2;
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 6px;
  }
  .tcc-purchase-marketplaces span {
    min-width: 0;
    min-height: 32px;
    padding-inline: 6px;
    font-size: 11px;
    overflow-wrap: anywhere;
  }
  .tcc-purchase-flow-connector {
    width: 100%;
    min-width: 0;
    margin: 12px 0;
    grid-template-columns: minmax(20px,1fr) auto minmax(20px,1fr);
    gap: 8px;
  }
  .tcc-purchase-flow-connector span {
    font-size: 8.5px;
    white-space: nowrap;
  }
  .tcc-purchase-flow-card--compact { min-height: 94px; }
  .tcc-purchase-route-card {
    order: initial;
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    background: #fcfcfc;
  }
  .tcc-purchase-route-card img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: 230px;
    display: block;
    object-fit: contain;
    object-position: center;
    background: #fcfcfc;
  }
  .tcc-purchase-capabilities {
    width: 100%;
    min-width: 0;
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    overflow: visible;
    border-radius: 15px;
  }
  .tcc-purchase-capabilities > div {
    min-width: 0;
    padding: 12px 8px;
    border: 0 !important;
    border-bottom: 1px solid #e9e9e9 !important;
  }
  .tcc-purchase-capabilities > div:nth-child(odd) {
    border-right: 1px solid #e9e9e9 !important;
  }
  .tcc-purchase-capabilities > div:nth-child(5) {
    grid-column: 1 / -1;
    border-right: 0 !important;
    border-bottom: 0 !important;
  }
  .tcc-purchase-capabilities img {
    width: 34px;
    height: 34px;
    margin-bottom: 6px;
  }
  .tcc-purchase-capabilities strong { font-size: 11px; }
  .tcc-purchase-capabilities small {
    font-size: 9.5px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 400px) {
  .tcc-purchase-copy h2 { font-size: 36px; }
  .tcc-purchase-flow { padding: 14px; }
  .tcc-purchase-flow-head h3 { font-size: 21px; }
  .tcc-purchase-flow-card {
    grid-template-columns: 28px 54px minmax(0,1fr);
    column-gap: 8px;
    padding: 10px;
  }
  .tcc-purchase-flow-icon { width: 54px; height: 52px; }
  .tcc-purchase-flow-icon img { width: 50px; height: 46px; }
}

/* v1.1.19 · Microajuste responsive: aire lateral del intro de Compras en China */
@media (max-width: 620px) {
  .tcc-purchase-copy > .tcc-eyebrow,
  .tcc-purchase-copy > h2,
  .tcc-purchase-copy > .tcc-purchase-lead {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* v1.1.20 · Compras mobile alignment + FAQ redesign */
@media (max-width: 620px) {
  /* Match the visual breathing room used by Plataforma TCC on mobile. */
  .tcc-purchase-copy > .tcc-eyebrow,
  .tcc-purchase-copy > h2,
  .tcc-purchase-copy > .tcc-purchase-lead {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.tcc-faq-v1120 {
  position: relative;
  overflow: hidden;
  padding-top: 92px;
  padding-bottom: 100px;
  background:
    radial-gradient(circle at 4% 10%, rgba(229,37,33,.045), rgba(229,37,33,0) 26%),
    linear-gradient(180deg, #f8f8f8 0%, #fbfbfb 100%);
  border-top: 1px solid #efefef;
}
.tcc-faq-v1120::after {
  content: "";
  position: absolute;
  right: -250px;
  bottom: -300px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(229,37,33,.05);
  box-shadow: 0 0 0 54px rgba(229,37,33,.01), 0 0 0 110px rgba(229,37,33,.006);
  pointer-events: none;
}
.tcc-faq-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr);
  gap: 58px;
  align-items: start;
}
.tcc-faq-intro {
  padding-top: 8px;
}
.tcc-faq-intro h2 {
  margin: 12px 0 18px;
  max-width: 10ch;
  font-size: clamp(42px,4.3vw,58px);
  line-height: 1.01;
  letter-spacing: -.05em;
}
.tcc-faq-intro > p {
  margin: 0;
  max-width: 40ch;
  color: var(--tcc-muted);
  font-size: 16px;
  line-height: 1.65;
}
.tcc-faq-help {
  margin-top: 30px;
  padding: 22px;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 34px rgba(17,17,17,.035);
}
.tcc-faq-help > span {
  display: block;
  margin-bottom: 5px;
  color: var(--tcc-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tcc-faq-help > strong {
  display: block;
  margin-bottom: 8px;
  color: #171717;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.tcc-faq-help > p {
  margin: 0 0 18px;
  color: #6d6d6d;
  font-size: 13.5px;
  line-height: 1.55;
}
.tcc-faq-help-cta {
  min-height: 46px;
  padding-inline: 16px;
}
.tcc-faq-panel {
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 56px rgba(17,17,17,.055);
}
.tcc-faq-panel-head {
  min-height: 58px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #ececec;
  background: linear-gradient(180deg,#fcfcfc 0%,#f8f8f8 100%);
}
.tcc-faq-panel-head span {
  color: #1b1b1b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}
.tcc-faq-panel-head small {
  color: #8a8a8a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
}
.tcc-faq-v1120 .tcc-accordion {
  padding: 8px 18px 16px;
}
.tcc-faq-v1120 .tcc-faq-item {
  border: 0;
  border-bottom: 1px solid #ededed;
  transition: background .2s ease, border-color .2s ease;
}
.tcc-faq-v1120 .tcc-faq-item:last-child {
  border-bottom: 0;
}
.tcc-faq-v1120 .tcc-faq-item.is-open {
  margin-inline: -6px;
  padding-inline: 6px;
  border-radius: 16px;
  border-bottom-color: transparent;
  background: linear-gradient(90deg,rgba(229,37,33,.035),rgba(229,37,33,0));
}
.tcc-faq-v1120 .tcc-faq-item button {
  min-height: 82px;
  display: grid;
  grid-template-columns: 34px minmax(0,1fr) 38px;
  gap: 15px;
  align-items: center;
  padding: 12px 6px;
  font-weight: 800;
}
.tcc-faq-number {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(229,37,33,.24);
  border-radius: 50%;
  color: var(--tcc-red);
  background: #fffafa;
  font-size: 9px;
  font-weight: 900;
}
.tcc-faq-question {
  min-width: 0;
  color: #1a1a1a;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -.015em;
}
.tcc-faq-v1120 .tcc-faq-item button b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid #e6e6e6;
  border-radius: 50%;
  background: #fff;
  color: var(--tcc-red);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.tcc-faq-v1120 .tcc-faq-item.is-open button b {
  border-color: var(--tcc-red);
  background: var(--tcc-red);
  color: #fff;
}
.tcc-faq-v1120 .tcc-faq-answer {
  padding: 0 58px 22px 49px;
}
.tcc-faq-v1120 .tcc-faq-answer p {
  margin: 0;
  max-width: 68ch;
  color: #686868;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .tcc-faq-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .tcc-faq-intro {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(260px,.7fr);
    column-gap: 30px;
    align-items: end;
  }
  .tcc-faq-intro .tcc-eyebrow,
  .tcc-faq-intro h2,
  .tcc-faq-intro > p {
    grid-column: 1;
  }
  .tcc-faq-intro h2 { max-width: 12ch; }
  .tcc-faq-help {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin-top: 0;
  }
}
@media (max-width: 720px) {
  .tcc-faq-v1120 {
    padding-top: 70px;
    padding-bottom: 78px;
  }
  .tcc-faq-intro {
    display: block;
  }
  .tcc-faq-intro h2 {
    max-width: 11ch;
    font-size: 42px;
  }
  .tcc-faq-help {
    margin-top: 24px;
  }
  .tcc-faq-panel {
    border-radius: 20px;
  }
}
@media (max-width: 560px) {
  .tcc-faq-v1120 {
    padding-top: 58px;
    padding-bottom: 66px;
  }
  .tcc-faq-intro h2 {
    max-width: none;
    font-size: 36px;
    line-height: 1.04;
  }
  .tcc-faq-intro > p {
    font-size: 15px;
  }
  .tcc-faq-help {
    padding: 18px;
    border-radius: 17px;
  }
  .tcc-faq-help-cta {
    width: 100%;
    justify-content: space-between;
  }
  .tcc-faq-panel-head {
    min-height: 52px;
    padding: 0 16px;
  }
  .tcc-faq-v1120 .tcc-accordion {
    padding: 5px 13px 10px;
  }
  .tcc-faq-v1120 .tcc-faq-item button {
    min-height: 76px;
    grid-template-columns: 30px minmax(0,1fr) 32px;
    gap: 11px;
    padding: 11px 2px;
  }
  .tcc-faq-number {
    width: 28px;
    height: 28px;
    font-size: 8.5px;
  }
  .tcc-faq-question {
    font-size: 15.5px;
    line-height: 1.4;
  }
  .tcc-faq-v1120 .tcc-faq-item button b {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
  .tcc-faq-v1120 .tcc-faq-answer {
    padding: 0 36px 20px 41px;
  }
  .tcc-faq-v1120 .tcc-faq-answer p {
    font-size: 13.5px;
  }
}

/* v1.1.21 · FAQ focus polish + final CTA */
.tcc-faq-v1120 {
  padding-bottom: 58px;
}
.tcc-faq-v1120 .tcc-faq-item button,
.tcc-faq-v1120 .tcc-faq-item button:focus,
.tcc-faq-v1120 .tcc-faq-item button:active {
  outline: 0 !important;
  -webkit-tap-highlight-color: transparent;
}
.tcc-faq-v1120 .tcc-faq-item button:focus-visible {
  outline: 0 !important;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(229,37,33,.05), rgba(229,37,33,.012));
  box-shadow: 0 0 0 2px rgba(229,37,33,.20);
}

.tcc-final-cta-v1121 {
  padding: 78px 0 82px;
  background:
    radial-gradient(circle at 15% 18%, rgba(229,37,33,.12), rgba(229,37,33,0) 28%),
    radial-gradient(circle at 88% 78%, rgba(229,37,33,.09), rgba(229,37,33,0) 30%),
    linear-gradient(180deg, #0d0f10 0%, #090b0c 100%);
  border-top: 1px solid rgba(255,255,255,.04);
}
.tcc-final-cta-v1121::before,
.tcc-final-cta-v1121::after {
  width: 420px;
  height: 260px;
  border-color: rgba(229,37,33,.38);
  opacity: .38;
}
.tcc-final-cta-v1121::before { left: -160px; top: 22px; }
.tcc-final-cta-v1121::after { right: -165px; bottom: -28px; }
.tcc-final-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #ff5b52;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.tcc-final-cta-v1121 .tcc-final-route {
  margin-bottom: 16px;
  color: rgba(255,255,255,.78);
}
.tcc-final-cta-v1121 .tcc-final-route i {
  position: relative;
  width: 190px;
  border-top-color: rgba(229,37,33,.9);
}
.tcc-final-cta-v1121 .tcc-final-route i::before,
.tcc-final-cta-v1121 .tcc-final-route i::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tcc-red);
  box-shadow: 0 0 0 4px rgba(229,37,33,.12);
}
.tcc-final-cta-v1121 .tcc-final-route i::before { left: -2px; }
.tcc-final-cta-v1121 .tcc-final-route i::after { right: -2px; }
.tcc-final-cta-v1121 h2 {
  max-width: 880px;
  margin: 0 auto 17px;
  font-size: clamp(38px,4.6vw,58px);
  line-height: 1.01;
  letter-spacing: -.05em;
}
.tcc-final-cta-v1121 p {
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.67);
  font-size: 16px;
  line-height: 1.65;
}
.tcc-final-actions {
  margin-bottom: 25px;
  gap: 12px;
}
.tcc-final-actions .tcc-button {
  min-height: 52px;
  padding-inline: 22px;
}
.tcc-final-secondary {
  background: rgba(255,255,255,.02);
}
.tcc-final-secondary:hover {
  background: rgba(255,255,255,.07);
}
.tcc-final-services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 13px;
  color: rgba(255,255,255,.52);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .02em;
}
.tcc-final-services i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--tcc-red);
  opacity: .9;
}

@media (max-width: 720px) {
  .tcc-faq-v1120 { padding-bottom: 46px; }
  .tcc-final-cta-v1121 { padding: 64px 0 68px; }
  .tcc-final-cta-v1121 h2 { font-size: 40px; }
  .tcc-final-cta-v1121 .tcc-final-route i { width: 100px; }
}
@media (max-width: 560px) {
  .tcc-faq-v1120 { padding-bottom: 38px; }
  .tcc-final-cta-v1121 { padding: 56px 0 60px; }
  .tcc-final-eyebrow { margin-bottom: 12px; }
  .tcc-final-cta-v1121 .tcc-final-route { gap: 10px; font-size: 9px; }
  .tcc-final-cta-v1121 .tcc-final-route i { width: 72px; }
  .tcc-final-cta-v1121 h2 {
    max-width: 12ch;
    font-size: 36px;
    line-height: 1.03;
  }
  .tcc-final-cta-v1121 p {
    max-width: 32ch;
    font-size: 14.5px;
  }
  .tcc-final-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .tcc-final-actions .tcc-button {
    width: 100%;
    justify-content: space-between;
  }
  .tcc-final-services { gap: 9px 11px; font-size: 10.5px; }
}

/* 1.1.22 — Footer redesign + CTA/footer transition */
.tcc-final-cta-v1121 + .tcc-site-footer-v1122 {
  margin-top: 0;
}
.tcc-site-footer-v1122 {
  position: relative;
  overflow: hidden;
  padding: 0 0 26px;
  background:
    radial-gradient(circle at 4% 30%, rgba(229,37,33,.065), rgba(229,37,33,0) 24%),
    linear-gradient(180deg, #080a0b 0%, #070809 100%);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.08);
}
.tcc-site-footer-v1122::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -210px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(229,37,33,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(229,37,33,.018), 0 0 0 98px rgba(229,37,33,.01);
  pointer-events: none;
}
.tcc-site-footer-v1122 > .tcc-container { position: relative; z-index: 1; }
.tcc-footer-routebar {
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.tcc-footer-routebar-label,
.tcc-footer-routebar-note {
  color: rgba(255,255,255,.48);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.tcc-footer-routebar-note { text-align: right; }
.tcc-footer-routebar-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.78);
  font-size: 10px;
  letter-spacing: .09em;
}
.tcc-footer-routebar-route i {
  position: relative;
  width: 94px;
  border-top: 1px dashed rgba(229,37,33,.85);
}
.tcc-footer-routebar-route i::before,
.tcc-footer-routebar-route i::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tcc-red);
  box-shadow: 0 0 0 3px rgba(229,37,33,.10);
}
.tcc-footer-routebar-route i::before { left: -2px; }
.tcc-footer-routebar-route i::after { right: -2px; }
.tcc-footer-grid-v1122 {
  display: grid;
  grid-template-columns: 1.45fr .8fr .8fr .9fr 1.2fr;
  gap: 42px;
  padding: 46px 0 42px;
}
.tcc-site-footer-v1122 .tcc-footer-brand img {
  width: 202px;
  max-height: 60px;
  object-fit: contain;
  object-position: left center;
}
.tcc-footer-brand-copy {
  max-width: 31ch;
  margin: 18px 0 22px !important;
  color: rgba(255,255,255,.60) !important;
  font-size: 13.5px !important;
  line-height: 1.65;
}
.tcc-footer-advisor {
  display: inline-flex !important;
  align-items: center;
  gap: 24px;
  min-height: 42px;
  margin: 0 !important;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 11px;
  color: #fff !important;
  background: rgba(255,255,255,.025);
  font-size: 12px !important;
  font-weight: 800;
  transition: border-color .2s ease, background .2s ease;
}
.tcc-footer-advisor:hover {
  border-color: rgba(229,37,33,.55);
  background: rgba(229,37,33,.07);
}
.tcc-site-footer-v1122 h3 {
  margin: 4px 0 18px;
  color: rgba(255,255,255,.92);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.tcc-site-footer-v1122 .tcc-footer-column a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  transition: color .2s ease, transform .2s ease;
}
.tcc-site-footer-v1122 .tcc-footer-column a:hover {
  color: #fff;
  transform: translateX(2px);
}
.tcc-footer-contact-block {
  padding: 0 0 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.tcc-footer-contact-block span {
  display: block;
  margin-bottom: 6px;
  color: #ff5b52;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .11em;
}
.tcc-footer-contact-block strong,
.tcc-footer-contact-block small {
  display: block;
}
.tcc-footer-contact-block strong {
  color: rgba(255,255,255,.88);
  font-size: 13px;
  line-height: 1.45;
}
.tcc-footer-contact-block small {
  margin-top: 4px;
  color: rgba(255,255,255,.47);
  font-size: 11px;
  line-height: 1.5;
}
.tcc-footer-contact-link {
  display: block !important;
  width: fit-content;
  margin: 7px 0 !important;
  color: rgba(255,255,255,.67) !important;
  font-size: 12px !important;
}
.tcc-footer-contact-link:hover { color: #fff !important; }
.tcc-footer-bottom-v1122 {
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.38);
  font-size: 10.5px;
}
.tcc-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tcc-footer-bottom-links a,
.tcc-footer-bottom-links span {
  color: rgba(255,255,255,.45);
}
.tcc-footer-bottom-links a:hover { color: #fff; }
.tcc-footer-bottom-links i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--tcc-red);
}

@media (max-width: 1080px) {
  .tcc-footer-grid-v1122 {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px 28px;
  }
  .tcc-footer-contact { grid-column: 2 / -1; }
}
@media (max-width: 780px) {
  .tcc-footer-routebar {
    grid-template-columns: 1fr auto;
    gap: 10px;
    min-height: 58px;
  }
  .tcc-footer-routebar-note { display: none; }
  .tcc-footer-routebar-route { justify-content: flex-end; }
  .tcc-footer-routebar-route i { width: 60px; }
  .tcc-footer-grid-v1122 {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
    padding: 38px 0 34px;
  }
  .tcc-footer-brand { grid-column: 1 / -1; }
  .tcc-footer-contact { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .tcc-site-footer-v1122 { padding-bottom: 22px; }
  .tcc-footer-routebar {
    min-height: 54px;
  }
  .tcc-footer-routebar-label { font-size: 9px; }
  .tcc-footer-routebar-route { gap: 8px; font-size: 9px; }
  .tcc-footer-routebar-route i { width: 42px; }
  .tcc-footer-grid-v1122 {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 34px 0 28px;
  }
  .tcc-footer-brand,
  .tcc-footer-contact { grid-column: auto; }
  .tcc-footer-brand {
    padding-bottom: 28px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .tcc-site-footer-v1122 .tcc-footer-brand img { width: 190px; }
  .tcc-footer-brand-copy { max-width: 36ch; }
  .tcc-footer-column,
  .tcc-footer-contact {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .tcc-site-footer-v1122 h3 { margin-bottom: 13px; }
  .tcc-site-footer-v1122 .tcc-footer-column a { margin: 9px 0; }
  .tcc-footer-contact { border-bottom: 0; }
  .tcc-footer-bottom-v1122 {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 18px;
  }
  .tcc-footer-bottom-links {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* v1.1.23 · Global QA & polish — no redesign */
html,
body.tcc-web {
  max-width: 100%;
  overflow-x: hidden;
}
@supports (overflow: clip) {
  body.tcc-web { overflow-x: clip; }
}

/* Keep sticky header from covering in-page navigation targets. */
#servicios,
#como-funciona,
#proximas-salidas,
#por-que-tcc,
#plataforma-tcc,
#compras-en-china,
#preguntas {
  scroll-margin-top: 96px;
}

/* Predictable image sizing and safer long-copy behavior across breakpoints. */
.tcc-web img { max-width: 100%; }
.tcc-web p,
.tcc-web li,
.tcc-web small,
.tcc-web strong,
.tcc-web h1,
.tcc-web h2,
.tcc-web h3,
.tcc-web h4 { overflow-wrap: break-word; }

/* Accessible keyboard focus without altering mouse/touch appearance. */
.tcc-web a:focus-visible,
.tcc-web button:focus-visible {
  outline: 2px solid var(--tcc-red);
  outline-offset: 3px;
  border-radius: 8px;
}
.tcc-site-header .tcc-mobile-toggle:focus-visible {
  outline-offset: 1px;
}
.tcc-faq-v1120 .tcc-faq-item button:focus-visible {
  outline: 0;
}

/* Better touch behavior on interactive controls. */
.tcc-web a,
.tcc-web button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(229,37,33,.08);
}

/* Avoid viewport-width rounding overflow in the mobile navigation. */
@media (max-width: 1024px) {
  .tcc-nav-wrap {
    width: 100%;
    max-width: 100%;
  }
  #servicios,
  #como-funciona,
  #proximas-salidas,
  #por-que-tcc,
  #plataforma-tcc,
  #compras-en-china,
  #preguntas {
    scroll-margin-top: 84px;
  }
}

/* Final cross-device guardrails at common QA widths. */
@media (max-width: 768px) {
  .tcc-web .tcc-container,
  .tcc-web .tcc-narrow { min-width: 0; }
  .tcc-web .tcc-button { max-width: 100%; }
}
@media (max-width: 430px) {
  .tcc-web .tcc-section-heading,
  .tcc-web .tcc-platform-copy,
  .tcc-web .tcc-purchase-copy,
  .tcc-web .tcc-faq-intro { min-width: 0; }
}

/* Final approved CTA → footer transition polish. */
@media (min-width: 721px) {
  .tcc-final-cta-v1121 { padding-bottom: 74px; }
  .tcc-footer-routebar { min-height: 58px; }
}
.tcc-footer-brand-copy { color: rgba(255,255,255,.66) !important; }
.tcc-site-footer-v1122 .tcc-footer-column a { color: rgba(255,255,255,.64); }
.tcc-footer-contact-block small { color: rgba(255,255,255,.54); }
.tcc-footer-bottom-v1122 { color: rgba(255,255,255,.45); }
.tcc-footer-bottom-links a,
.tcc-footer-bottom-links span { color: rgba(255,255,255,.52); }

@media (prefers-reduced-motion: reduce) {
  .tcc-web .tcc-button:hover,
  .tcc-site-footer-v1122 .tcc-footer-column a:hover {
    transform: none;
  }
}

/* =========================================================
   TCC Web v1.2.0 · Mi Casillero service page
   Scoped to .tcc-locker-page so the approved Home remains intact.
   ========================================================= */
.tcc-locker-page {
  --locker-ink: #121212;
  --locker-soft: #f8f8f8;
  --locker-line: #e7e7e7;
  --locker-red-soft: #fff4f2;
  overflow: clip;
  background: #fff;
}
.tcc-locker-page h1,
.tcc-locker-page h2,
.tcc-locker-page h3 { text-wrap: balance; }

/* Hero */
.tcc-locker-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 82px;
  background:
    radial-gradient(circle at 92% 8%, rgba(229,37,33,.10), transparent 27%),
    radial-gradient(circle at 8% 98%, rgba(229,37,33,.045), transparent 24%),
    linear-gradient(180deg, #fff 0%, #fcfbfb 100%);
}
.tcc-locker-hero::after {
  content: "";
  position: absolute;
  right: -160px;
  top: -190px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(229,37,33,.09);
  border-radius: 50%;
  box-shadow: 0 0 0 64px rgba(229,37,33,.025), 0 0 0 128px rgba(229,37,33,.018);
  pointer-events: none;
}
.tcc-locker-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  gap: 74px;
  align-items: center;
}
.tcc-locker-hero-copy { min-width: 0; }
.tcc-locker-hero-copy h1 {
  margin: 16px 0 24px;
  max-width: 760px;
  font-size: clamp(48px, 5.35vw, 76px);
  line-height: .98;
  letter-spacing: -.055em;
}
.tcc-locker-hero-copy h1 span { color: var(--tcc-red); }
.tcc-locker-hero-lead {
  margin: 0;
  max-width: 610px;
  color: var(--tcc-muted);
  font-size: 18px;
  line-height: 1.65;
}
.tcc-locker-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.tcc-locker-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: #555;
  font-size: 12px;
  font-weight: 700;
}
.tcc-locker-hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.tcc-locker-hero-trust span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tcc-red);
}
.tcc-locker-hero-visual { min-width: 0; }
.tcc-locker-visual-shell {
  position: relative;
  border: 1px solid #e6e6e6;
  border-radius: 26px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 30px 80px rgba(17,17,17,.10);
  overflow: hidden;
}
.tcc-locker-visual-head {
  min-height: 62px;
  display: grid;
  grid-template-columns: 148px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 22px;
  border-bottom: 1px solid #ececec;
  background: linear-gradient(180deg,#fafafa,#f5f5f5);
}
.tcc-locker-mini-brand img { width: 122px; height: auto; }
.tcc-locker-visual-head > span { font-size: 13px; font-weight: 800; }
.tcc-locker-visual-head > small {
  color: var(--tcc-red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
}
.tcc-locker-address-card {
  margin: 22px;
  padding: 18px;
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  background: linear-gradient(135deg,#fff,#fbf7f6);
}
.tcc-locker-address-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid #ececec;
  border-radius: 17px;
  background: #fff;
}
.tcc-locker-address-icon img { width: 58px; height: 48px; object-fit: contain; }
.tcc-locker-address-card > div:nth-child(2) { min-width: 0; }
.tcc-locker-address-card span,
.tcc-locker-address-card small { display: block; }
.tcc-locker-address-card span {
  margin-bottom: 5px;
  color: var(--tcc-red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}
.tcc-locker-address-card strong { display: block; font-size: 21px; line-height: 1.2; }
.tcc-locker-address-card small { margin-top: 4px; color: #777; font-size: 12px; }
.tcc-locker-address-card > b {
  padding: 8px 10px;
  border-radius: 999px;
  background: #eff8f1;
  color: #388a4d;
  font-size: 10px;
}
.tcc-locker-market-flow {
  margin: 0 22px 22px;
  min-height: 196px;
  display: grid;
  grid-template-columns: 1fr 42px 180px;
  gap: 14px;
  align-items: center;
  padding: 20px;
  border: 1px solid #ececec;
  border-radius: 18px;
  background:
    radial-gradient(circle at 90% 15%, rgba(229,37,33,.08), transparent 32%),
    #fafafa;
}
.tcc-locker-market-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.tcc-locker-market-list span {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}
.tcc-locker-flow-arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tcc-red);
  color: #fff;
  font-weight: 900;
}
.tcc-locker-box-stack {
  position: relative;
  width: 160px;
  height: 128px;
  justify-self: center;
}
.tcc-locker-box-stack span {
  position: absolute;
  width: 74px;
  height: 58px;
  border: 3px solid #171717;
  background: #fff;
  transform: skewY(-4deg);
}
.tcc-locker-box-stack span:nth-child(1) { left: 4px; top: 14px; }
.tcc-locker-box-stack span:nth-child(2) { right: 4px; top: 5px; border-color: var(--tcc-red); }
.tcc-locker-box-stack span:nth-child(3) { left: 43px; bottom: 4px; }
.tcc-locker-box-stack strong {
  position: absolute;
  left: 62px;
  top: 55px;
  z-index: 2;
  padding: 5px 8px;
  background: #171717;
  color: #fff;
  font-size: 13px;
}
.tcc-locker-status-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid #ececec;
  background: #fff;
}
.tcc-locker-status-row > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  border-right: 1px solid #ececec;
}
.tcc-locker-status-row > div:last-child { border-right: 0; }
.tcc-locker-status-row i {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #dadada;
  border-radius: 50%;
  color: #999;
  font-style: normal;
  font-size: 12px;
}
.tcc-locker-status-row i.is-done { border-color: #58a56c; background: #58a56c; color: #fff; }
.tcc-locker-status-row i.is-active { border-color: var(--tcc-red); color: var(--tcc-red); }
.tcc-locker-status-row span { min-width: 0; }
.tcc-locker-status-row strong,
.tcc-locker-status-row small { display: block; }
.tcc-locker-status-row strong { font-size: 11px; }
.tcc-locker-status-row small { margin-top: 2px; color: #888; font-size: 9px; }
.tcc-locker-visual-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  color: #555;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.tcc-locker-visual-caption i { width: 5px; height: 5px; border-radius: 50%; background: var(--tcc-red); }

/* Local subnavigation */
.tcc-locker-subnav {
  position: relative;
  z-index: 3;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  background: rgba(255,255,255,.96);
}
.tcc-locker-subnav .tcc-container {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 34px;
  flex-wrap: wrap;
}
.tcc-locker-subnav a {
  position: relative;
  padding: 8px 0;
  color: #565656;
  font-size: 12px;
  font-weight: 750;
}
.tcc-locker-subnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--tcc-red);
  transition: width .2s ease;
}
.tcc-locker-subnav a:hover::after { width: 100%; }

/* Address / warehouse section */
.tcc-locker-address-section { background: #fff; }
.tcc-locker-address-grid {
  display: grid;
  grid-template-columns: minmax(390px,.88fr) minmax(0,1.12fr);
  gap: 82px;
  align-items: center;
}
.tcc-locker-address-stage {
  min-height: 530px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px;
  border: 1px solid var(--locker-line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 75% 18%, rgba(229,37,33,.09), transparent 30%),
    linear-gradient(160deg,#fbfbfb,#f5f5f5);
}
.tcc-locker-address-stage-top {
  position: absolute;
  top: 26px;
  left: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tcc-locker-address-stage-top span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(229,37,33,.25);
  border-radius: 50%;
  color: var(--tcc-red);
  font-size: 10px;
  font-weight: 900;
}
.tcc-locker-address-stage-top strong {
  color: #595959;
  font-size: 10px;
  letter-spacing: .09em;
}
.tcc-locker-address-stage > img { width: min(78%, 310px); height: auto; }
.tcc-locker-label-demo {
  width: min(90%, 330px);
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(17,17,17,.06);
}
.tcc-locker-label-demo small,
.tcc-locker-label-demo strong,
.tcc-locker-label-demo span { display: block; }
.tcc-locker-label-demo small { color: var(--tcc-red); font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.tcc-locker-label-demo strong { margin-top: 5px; font-size: 25px; letter-spacing: .03em; }
.tcc-locker-label-demo span { margin-top: 4px; color: #777; font-size: 11px; }
.tcc-locker-address-copy h2,
.tcc-locker-consolidation-copy h2,
.tcc-locker-platform-copy h2,
.tcc-locker-faq-copy h2 {
  margin: 12px 0 20px;
  font-size: clamp(38px,4vw,58px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.tcc-locker-address-copy > p,
.tcc-locker-consolidation-copy > p,
.tcc-locker-platform-copy > p,
.tcc-locker-faq-copy > p {
  margin: 0;
  color: var(--tcc-muted);
  font-size: 17px;
  line-height: 1.68;
}
.tcc-locker-feature-list { margin-top: 30px; display: grid; gap: 12px; }
.tcc-locker-feature-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid #eeeeee;
}
.tcc-locker-feature-list article > b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--locker-red-soft);
  color: var(--tcc-red);
  font-size: 10px;
}
.tcc-locker-feature-list h3 { margin: 0 0 4px; font-size: 17px; }
.tcc-locker-feature-list p { margin: 0; color: #737373; font-size: 13px; line-height: 1.55; }
.tcc-locker-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: var(--tcc-red);
  font-size: 14px;
  font-weight: 800;
}

/* How it works */
.tcc-locker-process-section {
  position: relative;
  background: #f8f8f8;
}
.tcc-locker-process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 14px;
}
.tcc-locker-process-track::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 26px;
  border-top: 1px dashed rgba(229,37,33,.35);
}
.tcc-locker-process-track article {
  min-width: 0;
  position: relative;
  z-index: 1;
  padding: 0 14px 20px;
  text-align: center;
}
.tcc-locker-process-num {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(229,37,33,.30);
  border-radius: 50%;
  background: #fff;
  color: var(--tcc-red);
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 7px 18px rgba(17,17,17,.05);
}
.tcc-locker-process-icon {
  width: 112px;
  height: 88px;
  margin: 0 auto 15px;
  display: grid;
  place-items: center;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  background: #fff;
}
.tcc-locker-process-icon img { width: 76px; max-height: 62px; object-fit: contain; }
.tcc-locker-process-track article:nth-child(4) .tcc-locker-process-icon img { width: 86px; }
.tcc-locker-process-track small {
  display: block;
  color: var(--tcc-red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
}
.tcc-locker-process-track h3 { margin: 7px 0 7px; font-size: 16px; line-height: 1.18; }
.tcc-locker-process-track p { margin: 0; color: #777; font-size: 12px; line-height: 1.55; }

/* Consolidation */
.tcc-locker-consolidation { background: #fff; }
.tcc-locker-consolidation-grid {
  display: grid;
  grid-template-columns: minmax(0,.84fr) minmax(520px,1.16fr);
  gap: 80px;
  align-items: center;
}
.tcc-locker-checks {
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}
.tcc-locker-checks li { display: flex; align-items: center; gap: 11px; font-weight: 650; }
.tcc-locker-checks li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--locker-red-soft);
  color: var(--tcc-red);
  font-size: 12px;
  font-weight: 900;
}
.tcc-locker-consolidation-board {
  padding: 28px;
  border: 1px solid var(--locker-line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 12%, rgba(229,37,33,.08), transparent 29%),
    #fafafa;
  box-shadow: 0 20px 55px rgba(17,17,17,.06);
}
.tcc-locker-source-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tcc-locker-source-grid > div {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #e7e7e7;
  border-radius: 15px;
  background: #fff;
}
.tcc-locker-source-grid span { font-size: 15px; font-weight: 850; }
.tcc-locker-source-grid small { margin-top: 4px; color: #888; font-size: 10px; }
.tcc-locker-merge-lines {
  position: relative;
  height: 78px;
  display: grid;
  place-items: center;
}
.tcc-locker-merge-lines i {
  position: absolute;
  top: 0;
  width: 1px;
  height: 42px;
  background: #dedede;
}
.tcc-locker-merge-lines i:first-child { left: 27%; transform: rotate(-35deg); transform-origin: top; }
.tcc-locker-merge-lines i:nth-child(2) { right: 27%; transform: rotate(35deg); transform-origin: top; }
.tcc-locker-merge-lines b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--tcc-red);
  color: #fff;
}
.tcc-locker-consolidated-box {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(229,37,33,.24);
  border-radius: 18px;
  background: #fff;
}
.tcc-locker-consolidated-box img { width: 105px; height: 82px; object-fit: contain; }
.tcc-locker-consolidated-box small,
.tcc-locker-consolidated-box strong,
.tcc-locker-consolidated-box span { display: block; }
.tcc-locker-consolidated-box small { color: var(--tcc-red); font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.tcc-locker-consolidated-box strong { margin-top: 5px; font-size: 20px; }
.tcc-locker-consolidated-box span { margin-top: 3px; color: #777; font-size: 12px; }

/* Weight section */
.tcc-locker-weight { background: #111416; color: #fff; }
.tcc-locker-weight .tcc-section-heading p { color: rgba(255,255,255,.65); }
.tcc-locker-weight-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
.tcc-locker-weight-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
}
.tcc-locker-weight-card > span {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255,255,255,.35);
  font-size: 11px;
  font-weight: 900;
}
.tcc-locker-weight-symbol {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  background: rgba(255,255,255,.045);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}
.tcc-locker-weight-card--accent .tcc-locker-weight-symbol { border-color: rgba(229,37,33,.5); color: #ff635a; }
.tcc-locker-weight-card h3 { margin: 0 0 9px; font-size: 22px; }
.tcc-locker-weight-card p { margin: 0; color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.6; }
.tcc-locker-weight-note {
  margin: 20px auto 0;
  max-width: 780px;
  color: rgba(255,255,255,.45);
  font-size: 11px;
  text-align: center;
}

/* Warehouse extras */
.tcc-locker-warehouse-services { background: #fff; }
.tcc-locker-extra-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.tcc-locker-extra-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--locker-line);
  border-radius: 20px;
  background: linear-gradient(180deg,#fff,#fbfbfb);
}
.tcc-locker-extra-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(229,37,33,.24);
  border-radius: 16px;
  background: var(--locker-red-soft);
  color: var(--tcc-red);
  font-size: 20px;
  font-weight: 900;
}
.tcc-locker-extra-grid h3 { margin: 0 0 8px; font-size: 19px; }
.tcc-locker-extra-grid p { margin: 0; color: #727272; font-size: 13px; line-height: 1.58; }

/* Platform */
.tcc-locker-platform {
  position: relative;
  background:
    radial-gradient(circle at 6% 8%, rgba(229,37,33,.055), transparent 24%),
    #f8f8f8;
}
.tcc-locker-platform-grid {
  display: grid;
  grid-template-columns: minmax(0,.78fr) minmax(580px,1.22fr);
  gap: 70px;
  align-items: center;
}
.tcc-locker-platform-points { display: grid; gap: 10px; margin: 26px 0; }
.tcc-locker-platform-points > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #e7e7e7;
}
.tcc-locker-platform-points b {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--tcc-red);
  color: #fff;
  font-size: 9px;
}
.tcc-locker-platform-points strong,
.tcc-locker-platform-points small { display: block; }
.tcc-locker-platform-points strong { font-size: 14px; }
.tcc-locker-platform-points small { margin-top: 2px; color: #777; font-size: 11px; }
.tcc-locker-platform-ui {
  overflow: hidden;
  border: 1px solid #dedede;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(17,17,17,.08);
}
.tcc-locker-platform-bar {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 20px;
  border-bottom: 1px solid #e9e9e9;
  background: #f4f4f4;
}
.tcc-locker-platform-bar i { width: 9px; height: 9px; border-radius: 50%; background: #c5c5c5; }
.tcc-locker-platform-bar i:first-child { background: #e05f52; }
.tcc-locker-platform-bar i:nth-child(2) { background: #e0b64b; }
.tcc-locker-platform-bar i:nth-child(3) { background: #59a96c; }
.tcc-locker-platform-bar strong { margin-left: 10px; font-size: 12px; }
.tcc-locker-platform-bar small { margin-left: auto; color: var(--tcc-red); font-size: 10px; font-weight: 800; }
.tcc-locker-platform-summary {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  padding: 18px;
}
.tcc-locker-platform-summary > div {
  min-height: 105px;
  padding: 15px;
  border: 1px solid #e7e7e7;
  border-radius: 15px;
  background: #fbfbfb;
}
.tcc-locker-platform-summary span,
.tcc-locker-platform-summary strong,
.tcc-locker-platform-summary small { display: block; }
.tcc-locker-platform-summary span { color: #666; font-size: 10px; font-weight: 750; }
.tcc-locker-platform-summary strong { margin: 6px 0 1px; font-size: 26px; }
.tcc-locker-platform-summary small { color: #999; font-size: 9px; }
.tcc-locker-platform-table { margin: 0 18px 18px; border: 1px solid #e5e5e5; border-radius: 15px; overflow: hidden; }
.tcc-locker-platform-row {
  display: grid;
  grid-template-columns: 1fr 1fr .8fr;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 0 14px;
  border-bottom: 1px solid #eeeeee;
  font-size: 10px;
}
.tcc-locker-platform-row:last-child { border-bottom: 0; }
.tcc-locker-platform-row.is-head { min-height: 42px; color: #8a8a8a; background: #fafafa; font-size: 9px; font-weight: 800; }
.tcc-locker-platform-row strong { font-size: 10px; }
.tcc-locker-platform-row b { justify-self: start; padding: 5px 8px; border-radius: 999px; background: #eff8f1; color: #438f55; font-size: 8px; }
.tcc-locker-platform-row b.is-waiting { background: #fff4f2; color: var(--tcc-red); }
.tcc-locker-platform-bottom {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 18px;
  border-top: 1px solid #e9e9e9;
  color: #777;
  font-size: 9px;
}
.tcc-locker-platform-bottom b { color: var(--tcc-red); }

/* Marketplaces */
.tcc-locker-marketplaces { background: #fff; padding-top: 86px; padding-bottom: 86px; }
.tcc-locker-marketplace-row {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  overflow: hidden;
}
.tcc-locker-marketplace-row span {
  min-height: 102px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-right: 1px solid #e5e5e5;
  background: #fbfbfb;
  font-size: 16px;
  font-weight: 850;
  text-align: center;
}
.tcc-locker-marketplace-row span:last-child { border-right: 0; }

/* FAQ */
.tcc-locker-faq { background: #f7f7f7; }
.tcc-locker-faq-grid {
  display: grid;
  grid-template-columns: minmax(320px,.70fr) minmax(0,1.30fr);
  gap: 72px;
  align-items: start;
}
.tcc-locker-faq-copy { position: sticky; top: 120px; }
.tcc-locker-faq-list {
  border: 1px solid #e2e2e2;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 50px rgba(17,17,17,.05);
}
.tcc-locker-faq-list .tcc-faq-item { border-bottom: 1px solid #eeeeee; }
.tcc-locker-faq-list .tcc-faq-item:last-child { border-bottom: 0; }
.tcc-locker-faq-list .tcc-faq-item button { padding: 20px 20px; }
.tcc-locker-faq-list .tcc-faq-item button > span { display: flex; align-items: center; gap: 14px; text-align: left; }
.tcc-locker-faq-list .tcc-faq-item button em {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(229,37,33,.22);
  border-radius: 50%;
  color: var(--tcc-red);
  font-style: normal;
  font-size: 9px;
  font-weight: 900;
}
.tcc-locker-faq-list .tcc-faq-answer { padding-left: 66px; }

/* Final CTA */
.tcc-locker-final-cta {
  position: relative;
  overflow: hidden;
  padding: 96px 0 94px;
  color: #fff;
  background:
    radial-gradient(circle at 6% 20%, rgba(229,37,33,.14), transparent 26%),
    radial-gradient(circle at 94% 78%, rgba(229,37,33,.12), transparent 27%),
    #0d1011;
}
.tcc-locker-final-cta-inner { position: relative; z-index: 1; max-width: 900px; text-align: center; }
.tcc-locker-final-route {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px auto 26px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .07em;
}
.tcc-locker-final-route i { width: 70px; border-top: 2px dotted rgba(229,37,33,.8); }
.tcc-locker-final-cta h2 {
  margin: 0 auto;
  max-width: 850px;
  font-size: clamp(42px,5vw,68px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.tcc-locker-final-cta p { margin: 20px auto 0; max-width: 660px; color: rgba(255,255,255,.68); font-size: 16px; }
.tcc-locker-final-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* Responsive */
@media (max-width: 1180px) {
  .tcc-locker-hero-grid { grid-template-columns: minmax(0,.9fr) minmax(480px,1.1fr); gap: 42px; }
  .tcc-locker-address-grid,
  .tcc-locker-consolidation-grid,
  .tcc-locker-platform-grid { gap: 46px; }
  .tcc-locker-platform-grid { grid-template-columns: minmax(0,.82fr) minmax(510px,1.18fr); }
}

@media (max-width: 1024px) {
  .tcc-locker-hero { padding-top: 76px; }
  .tcc-locker-hero-grid,
  .tcc-locker-address-grid,
  .tcc-locker-consolidation-grid,
  .tcc-locker-platform-grid,
  .tcc-locker-faq-grid { grid-template-columns: 1fr; }
  .tcc-locker-hero-grid { gap: 52px; }
  .tcc-locker-hero-copy { max-width: 720px; }
  .tcc-locker-hero-copy h1 { max-width: 760px; }
  .tcc-locker-hero-visual { max-width: 760px; width: 100%; }
  .tcc-locker-subnav .tcc-container { justify-content: flex-start; padding-top: 12px; padding-bottom: 12px; }
  .tcc-locker-address-grid,
  .tcc-locker-consolidation-grid,
  .tcc-locker-platform-grid { gap: 48px; }
  .tcc-locker-address-visual { max-width: 650px; }
  .tcc-locker-process-track { grid-template-columns: repeat(3,1fr); row-gap: 36px; }
  .tcc-locker-process-track::before { display: none; }
  .tcc-locker-process-track article:nth-child(4),
  .tcc-locker-process-track article:nth-child(5) { grid-column: auto; }
  .tcc-locker-extra-grid { grid-template-columns: 1fr 1fr; }
  .tcc-locker-platform-ui { max-width: 760px; }
  .tcc-locker-marketplace-row { grid-template-columns: repeat(3,1fr); }
  .tcc-locker-marketplace-row span:nth-child(3) { border-right: 0; }
  .tcc-locker-marketplace-row span:nth-child(-n+3) { border-bottom: 1px solid #e5e5e5; }
  .tcc-locker-faq-copy { position: static; max-width: 680px; }
}

@media (max-width: 820px) {
  .tcc-locker-hero { padding: 64px 0 66px; }
  .tcc-locker-hero-copy h1 { font-size: clamp(46px,11vw,62px); }
  .tcc-locker-hero-lead { font-size: 16px; }
  .tcc-locker-visual-head { grid-template-columns: 132px 1fr auto; }
  .tcc-locker-address-card { grid-template-columns: 62px 1fr; }
  .tcc-locker-address-card > b { grid-column: 2; justify-self: start; }
  .tcc-locker-address-icon { width: 62px; height: 62px; }
  .tcc-locker-address-icon img { width: 50px; }
  .tcc-locker-market-flow { grid-template-columns: 1fr; }
  .tcc-locker-flow-arrow { transform: rotate(90deg); justify-self: center; }
  .tcc-locker-box-stack { width: 160px; }
  .tcc-locker-status-row { grid-template-columns: 1fr; }
  .tcc-locker-status-row > div { border-right: 0; border-bottom: 1px solid #ececec; }
  .tcc-locker-status-row > div:last-child { border-bottom: 0; }
  .tcc-locker-subnav { overflow-x: auto; scrollbar-width: none; }
  .tcc-locker-subnav::-webkit-scrollbar { display: none; }
  .tcc-locker-subnav .tcc-container { width: max-content; min-width: 100%; flex-wrap: nowrap; gap: 24px; }
  .tcc-locker-address-stage { min-height: 470px; }
  .tcc-locker-process-track { grid-template-columns: 1fr 1fr; }
  .tcc-locker-weight-grid { grid-template-columns: 1fr; }
  .tcc-locker-weight-card { min-height: 0; }
  .tcc-locker-marketplace-row { grid-template-columns: 1fr 1fr; }
  .tcc-locker-marketplace-row span { border-bottom: 1px solid #e5e5e5; }
  .tcc-locker-marketplace-row span:nth-child(odd) { border-right: 1px solid #e5e5e5; }
  .tcc-locker-marketplace-row span:nth-child(even) { border-right: 0; }
  .tcc-locker-marketplace-row span:last-child { grid-column: 1 / -1; border-bottom: 0; }
}

@media (max-width: 620px) {
  .tcc-locker-page .tcc-container { width: min(calc(100% - 40px), var(--tcc-container)); }
  .tcc-locker-hero { padding-top: 54px; }
  .tcc-locker-hero-copy h1 {
    margin-top: 12px;
    font-size: clamp(42px,12.2vw,54px);
    line-height: 1;
    letter-spacing: -.052em;
  }
  .tcc-locker-hero-lead { font-size: 15px; line-height: 1.6; }
  .tcc-locker-hero-actions { display: grid; grid-template-columns: 1fr; }
  .tcc-locker-hero-actions .tcc-button { width: 100%; justify-content: space-between; }
  .tcc-locker-hero-trust { gap: 9px 14px; font-size: 11px; }
  .tcc-locker-visual-shell { border-radius: 20px; }
  .tcc-locker-visual-head { min-height: 56px; grid-template-columns: 115px 1fr auto; padding: 0 15px; gap: 9px; }
  .tcc-locker-mini-brand img { width: 104px; }
  .tcc-locker-visual-head > span { font-size: 11px; }
  .tcc-locker-address-card { margin: 14px; padding: 14px; gap: 11px; }
  .tcc-locker-address-card strong { font-size: 18px; }
  .tcc-locker-market-flow { margin: 0 14px 14px; padding: 14px; min-height: 0; }
  .tcc-locker-status-row > div { padding: 13px 14px; }
  .tcc-locker-visual-caption { flex-wrap: wrap; }
  .tcc-locker-subnav .tcc-container { padding-left: 20px; padding-right: 20px; }
  .tcc-locker-address-copy h2,
  .tcc-locker-consolidation-copy h2,
  .tcc-locker-platform-copy h2,
  .tcc-locker-faq-copy h2 { font-size: 38px; }
  .tcc-locker-address-copy > p,
  .tcc-locker-consolidation-copy > p,
  .tcc-locker-platform-copy > p,
  .tcc-locker-faq-copy > p { font-size: 15px; }
  .tcc-locker-address-stage { min-height: 410px; padding: 22px; border-radius: 20px; }
  .tcc-locker-address-stage-top { top: 18px; left: 18px; }
  .tcc-locker-feature-list article { grid-template-columns: 38px 1fr; }
  .tcc-locker-process-track { grid-template-columns: 1fr; gap: 12px; }
  .tcc-locker-process-track article {
    display: grid;
    grid-template-columns: 44px 76px 1fr;
    grid-template-rows: auto auto 1fr;
    gap: 2px 14px;
    align-items: center;
    padding: 17px;
    border: 1px solid #e7e7e7;
    border-radius: 18px;
    background: #fff;
    text-align: left;
  }
  .tcc-locker-process-num { grid-column: 1; grid-row: 1 / 4; width: 42px; height: 42px; margin: 0; }
  .tcc-locker-process-icon { grid-column: 2; grid-row: 1 / 4; width: 72px; height: 64px; margin: 0; border: 0; background: transparent; }
  .tcc-locker-process-icon img { width: 62px; max-height: 52px; }
  .tcc-locker-process-track small { grid-column: 3; grid-row: 1; }
  .tcc-locker-process-track h3 { grid-column: 3; grid-row: 2; margin: 3px 0; }
  .tcc-locker-process-track p { grid-column: 3; grid-row: 3; }
  .tcc-locker-consolidation-board { padding: 18px; border-radius: 20px; }
  .tcc-locker-source-grid { gap: 8px; }
  .tcc-locker-source-grid > div { min-height: 74px; }
  .tcc-locker-consolidated-box { grid-template-columns: 84px 1fr; padding: 16px; }
  .tcc-locker-consolidated-box img { width: 76px; height: 64px; }
  .tcc-locker-consolidated-box strong { font-size: 17px; }
  .tcc-locker-extra-grid { grid-template-columns: 1fr; }
  .tcc-locker-extra-grid article { min-height: 0; }
  .tcc-locker-platform-ui { border-radius: 18px; }
  .tcc-locker-platform-summary { grid-template-columns: 1fr 1fr; padding: 12px; }
  .tcc-locker-platform-summary > div:last-child { grid-column: 1 / -1; }
  .tcc-locker-platform-table { margin: 0 12px 12px; overflow-x: auto; }
  .tcc-locker-platform-row { min-width: 430px; }
  .tcc-locker-platform-bottom { flex-direction: column; align-items: flex-start; padding: 13px; gap: 5px; }
  .tcc-locker-marketplaces { padding-top: 70px; padding-bottom: 70px; }
  .tcc-locker-marketplace-row span { min-height: 84px; padding: 12px 8px; font-size: 14px; }
  .tcc-locker-faq-list .tcc-faq-item button { padding: 17px 14px; }
  .tcc-locker-faq-list .tcc-faq-item button > span { gap: 10px; }
  .tcc-locker-faq-list .tcc-faq-item button em { flex-basis: 29px; width: 29px; height: 29px; }
  .tcc-locker-faq-list .tcc-faq-answer { padding-left: 54px; }
  .tcc-locker-final-cta { padding: 78px 0; }
  .tcc-locker-final-route { gap: 7px; font-size: 8px; }
  .tcc-locker-final-route i { width: 34px; }
  .tcc-locker-final-cta h2 { font-size: 42px; }
  .tcc-locker-final-actions { display: grid; grid-template-columns: 1fr; }
  .tcc-locker-final-actions .tcc-button { width: 100%; justify-content: space-between; }
}

@media (max-width: 390px) {
  .tcc-locker-page .tcc-container { width: min(calc(100% - 32px), var(--tcc-container)); }
  .tcc-locker-hero-copy h1 { font-size: 40px; }
  .tcc-locker-visual-head { grid-template-columns: 104px 1fr; }
  .tcc-locker-visual-head > small { display: none; }
  .tcc-locker-market-list { grid-template-columns: 1fr; }
  .tcc-locker-source-grid { grid-template-columns: 1fr; }
  .tcc-locker-merge-lines i { display: none; }
  .tcc-locker-consolidated-box { grid-template-columns: 1fr; text-align: center; }
  .tcc-locker-consolidated-box img { justify-self: center; }
  .tcc-locker-marketplace-row { grid-template-columns: 1fr; }
  .tcc-locker-marketplace-row span,
  .tcc-locker-marketplace-row span:nth-child(odd),
  .tcc-locker-marketplace-row span:nth-child(even) { grid-column: auto; border-right: 0; border-bottom: 1px solid #e5e5e5; }
  .tcc-locker-marketplace-row span:last-child { border-bottom: 0; }
}

/* =========================================================
   TCC Web v1.2.1 · Mi Casillero Desktop Polish
   Desktop-only rhythm and content refinements.
   ========================================================= */
.tcc-locker-extra-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

@media (min-width: 1025px) {
  /* Keep the approved layouts, but tighten the vertical rhythm. */
  .tcc-locker-address-section { padding-top: 82px; padding-bottom: 80px; }
  .tcc-locker-process-section { padding-top: 82px; padding-bottom: 78px; }
  .tcc-locker-consolidation { padding-top: 84px; padding-bottom: 84px; }
  .tcc-locker-weight { padding-top: 82px; padding-bottom: 84px; }
  .tcc-locker-warehouse-services { padding-top: 82px; padding-bottom: 82px; }
  .tcc-locker-platform { padding-top: 86px; padding-bottom: 86px; }
  .tcc-locker-marketplaces { padding-top: 72px; padding-bottom: 74px; }
  .tcc-locker-faq { padding-top: 84px; padding-bottom: 84px; }

  .tcc-locker-page .tcc-section-heading--center { margin-bottom: 38px; }
  .tcc-locker-address-stage { min-height: 500px; }
  .tcc-locker-extra-grid article { min-height: 222px; }
  .tcc-locker-extra-icon { margin-bottom: 22px; }

  /* Give the weight concepts slightly more room for the clearer copy. */
  .tcc-locker-weight-card { min-height: 252px; }
  .tcc-locker-weight-card p { max-width: 33ch; }
}

/* =========================================================
   TCC Web v1.2.2 · Mi Casillero Responsive + Volumetric Weight
   ========================================================= */
.tcc-locker-weight-card--volume {
  display: flex;
  flex-direction: column;
}
.tcc-locker-volume-visual {
  width: 100%;
  max-width: 210px;
  min-height: 108px;
  display: flex;
  align-items: center;
  margin: -8px 0 14px;
}
.tcc-locker-volume-visual img {
  width: 100%;
  height: auto;
  display: block;
}
.tcc-locker-weight-card--volume p strong {
  color: rgba(255,255,255,.92);
  font-weight: 750;
}
.tcc-locker-volume-formula {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: end;
  margin-top: auto;
  padding: 14px 15px;
  border: 1px solid rgba(229,37,33,.38);
  border-radius: 14px;
  background: rgba(229,37,33,.075);
}
.tcc-locker-volume-formula b {
  color: #fff;
  font-size: 13px;
  line-height: 1.25;
}
.tcc-locker-volume-formula span {
  grid-column: 2;
  grid-row: 1;
  color: #ff746d;
  font-size: 13px;
  font-weight: 900;
}
.tcc-locker-volume-formula strong {
  grid-column: 1 / -1;
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 750;
}
.tcc-locker-faq-list .tcc-faq-answer p strong { color: #181818; }
.tcc-locker-faq-list .tcc-faq-answer p small {
  display: inline-block;
  margin-top: 2px;
  color: #777;
  font-size: 12px;
  line-height: 1.55;
}

@media (min-width: 1025px) {
  .tcc-locker-weight-card { min-height: 340px; }
  .tcc-locker-weight-card--volume p { font-size: 13px; line-height: 1.53; }
}

/* Tablet landscape: preserve the approved desktop composition while giving it breathing room. */
@media (max-width: 1024px) {
  .tcc-locker-page { overflow-x: clip; }
  .tcc-locker-page .tcc-section { padding-top: 76px; padding-bottom: 76px; }
  .tcc-locker-hero-grid,
  .tcc-locker-address-grid,
  .tcc-locker-consolidation-grid,
  .tcc-locker-platform-grid,
  .tcc-locker-faq-grid { width: 100%; min-width: 0; }
  .tcc-locker-visual-shell,
  .tcc-locker-address-stage,
  .tcc-locker-consolidation-board,
  .tcc-locker-platform-ui,
  .tcc-locker-faq-list { max-width: 100%; }
  .tcc-locker-subnav a { white-space: nowrap; }
  .tcc-locker-weight-card { min-height: 300px; }
}

/* Tablet portrait and mobile: turn dense desktop modules into an easy vertical reading path. */
@media (max-width: 820px) {
  .tcc-locker-page .tcc-section { padding-top: 68px; padding-bottom: 68px; }
  .tcc-locker-page .tcc-section-heading--center { margin-bottom: 32px; }
  .tcc-locker-weight-grid { gap: 14px; }
  .tcc-locker-weight-card {
    min-height: 0;
    padding: 24px;
  }
  .tcc-locker-weight-card--volume { min-height: 0; }
  .tcc-locker-volume-visual { max-width: 230px; min-height: 0; margin: -8px 0 10px; }
  .tcc-locker-volume-formula { margin-top: 20px; }
  .tcc-locker-platform-table { width: auto; }
  .tcc-locker-faq-list .tcc-faq-answer p { line-height: 1.65; }
}

@media (max-width: 620px) {
  .tcc-locker-page { overflow-x: hidden; }
  .tcc-locker-page .tcc-section { padding-top: 58px; padding-bottom: 58px; }
  .tcc-locker-page .tcc-section-heading--center h2 { font-size: clamp(34px,9.5vw,42px); }
  .tcc-locker-subnav { -webkit-overflow-scrolling: touch; }
  .tcc-locker-subnav .tcc-container { gap: 20px; }
  .tcc-locker-weight-card { padding: 21px; border-radius: 19px; }
  .tcc-locker-weight-card h3 { font-size: 20px; }
  .tcc-locker-weight-card p { font-size: 13px; }
  .tcc-locker-volume-visual { max-width: 205px; }
  .tcc-locker-volume-formula {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 13px 14px;
  }
  .tcc-locker-volume-formula span,
  .tcc-locker-volume-formula strong { grid-column: 1; grid-row: auto; }
  .tcc-locker-volume-formula b,
  .tcc-locker-volume-formula span { font-size: 12px; }
  .tcc-locker-platform-table { overflow: visible; }
  .tcc-locker-platform-row {
    min-width: 0;
    grid-template-columns: minmax(92px,1fr) minmax(90px,1fr) auto;
    padding-left: 11px;
    padding-right: 11px;
    gap: 8px;
  }
  .tcc-locker-platform-row strong { font-size: 9px; }
  .tcc-locker-faq-list .tcc-faq-answer { padding-left: 53px; padding-right: 14px; }
  .tcc-locker-faq-list .tcc-faq-answer p { font-size: 13px; }
}

@media (max-width: 430px) {
  .tcc-locker-page .tcc-container { width: min(calc(100% - 36px), var(--tcc-container)); }
  .tcc-locker-hero { padding-top: 48px; padding-bottom: 54px; }
  .tcc-locker-hero-copy h1 { font-size: clamp(38px,11.5vw,48px); }
  .tcc-locker-address-copy h2,
  .tcc-locker-consolidation-copy h2,
  .tcc-locker-platform-copy h2,
  .tcc-locker-faq-copy h2 { font-size: 35px; }
  .tcc-locker-address-stage { min-height: 380px; }
  .tcc-locker-process-track article {
    grid-template-columns: 42px 62px 1fr;
    gap: 2px 10px;
    padding: 14px;
  }
  .tcc-locker-process-icon { width: 60px; height: 56px; }
  .tcc-locker-process-icon img { width: 54px; max-height: 46px; }
  .tcc-locker-platform-summary { grid-template-columns: 1fr; }
  .tcc-locker-platform-summary > div:last-child { grid-column: auto; }
  .tcc-locker-platform-row {
    grid-template-columns: 1fr auto;
    min-height: 58px;
  }
  .tcc-locker-platform-row > :nth-child(2) { display: none; }
  .tcc-locker-platform-row.is-head > :nth-child(2) { display: none; }
  .tcc-locker-marketplace-row { border-radius: 18px; }
  .tcc-locker-faq-list .tcc-faq-item button > span { align-items: flex-start; }
  .tcc-locker-faq-list .tcc-faq-answer { padding-left: 14px; }
}

/* =========================================================
   TCC Web v1.3.0 · Carga Aérea China → Colombia
   Scoped to .tcc-air-page so Home and Mi Casillero stay intact.
   ========================================================= */
.tcc-air-page {
  --tcc-air-dark: #111416;
  --tcc-air-card: #1b1f22;
  --tcc-air-soft: #f7f7f7;
  overflow-x: clip;
}
.tcc-air-page h1,
.tcc-air-page h2,
.tcc-air-page h3 { text-wrap: balance; }
.tcc-air-page section[id] { scroll-margin-top: 150px; }

.tcc-air-hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 90% 16%, rgba(229,37,33,.10), rgba(229,37,33,0) 28%),
    linear-gradient(180deg, #fff 0%, #fcfcfc 100%);
}
.tcc-air-hero::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -210px;
  top: -70px;
  border: 1px solid rgba(229,37,33,.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(229,37,33,.025), 0 0 0 160px rgba(229,37,33,.018);
  pointer-events: none;
}
.tcc-air-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  gap: 68px;
  align-items: center;
}
.tcc-air-hero-copy h1 {
  margin: 18px 0 20px;
  max-width: 10.4ch;
  font-size: clamp(56px, 5.6vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
}
.tcc-air-hero-copy h1 span { color: var(--tcc-red); }
.tcc-air-hero-lead {
  max-width: 590px;
  margin: 0;
  color: var(--tcc-muted);
  font-size: 18px;
  line-height: 1.65;
}
.tcc-air-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.tcc-air-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
  color: #4c4c4c;
  font-size: 13px;
  font-weight: 700;
}
.tcc-air-hero-trust span { position: relative; padding-left: 14px; }
.tcc-air-hero-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--tcc-red);
}
.tcc-air-hero-visual { position: relative; }
.tcc-air-visual-shell {
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 28px 80px rgba(17,17,17,.12);
}
.tcc-air-visual-head {
  height: 64px;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid #ececec;
  background: #fafafa;
}
.tcc-air-mini-brand img { display: block; width: 132px; height: auto; }
.tcc-air-visual-head > span { font-weight: 800; font-size: 15px; }
.tcc-air-visual-head > small { color: var(--tcc-red); font-weight: 900; letter-spacing: .08em; }
.tcc-air-route-card { padding: 26px 28px 20px; }
.tcc-air-route-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}
.tcc-air-route-top > span { display: grid; gap: 4px; }
.tcc-air-route-top > span:last-child { text-align: right; }
.tcc-air-route-top small { color: #8a8a8a; font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.tcc-air-route-top strong { font-size: 18px; }
.tcc-air-route-top i {
  height: 1px;
  border-top: 2px dashed rgba(229,37,33,.45);
  position: relative;
}
.tcc-air-route-top i::before,
.tcc-air-route-top i::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tcc-red);
}
.tcc-air-route-top i::before { left: 0; }
.tcc-air-route-top i::after { right: 0; }
.tcc-air-plane-stage {
  min-height: 330px;
  display: grid;
  place-items: center;
  margin-top: 12px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 70% 30%, rgba(229,37,33,.10), rgba(229,37,33,0) 38%),
    linear-gradient(180deg, #fbfbfb 0%, #f7f7f7 100%);
  border: 1px solid #ececec;
}
.tcc-air-plane-stage img {
  width: min(420px, 88%);
  max-height: 260px;
  object-fit: contain;
}
.tcc-air-visual-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #ececec;
}
.tcc-air-visual-stats div { padding: 17px 20px; border-right: 1px solid #ececec; }
.tcc-air-visual-stats div:last-child { border-right: 0; }
.tcc-air-visual-stats span { display: block; color: #949494; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.tcc-air-visual-stats strong { display: block; margin-top: 5px; font-size: 14px; }
.tcc-air-visual-caption {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  color: #4f4f4f;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.tcc-air-visual-caption i { width: 5px; height: 5px; border-radius: 50%; background: var(--tcc-red); }

.tcc-air-subnav {
  position: sticky;
  top: var(--tcc-header-height, 76px);
  z-index: 40;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #e8e8e8;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
}
.tcc-air-subnav .tcc-container {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
}
.tcc-air-subnav a { color: #333; font-size: 13px; font-weight: 750; white-space: nowrap; }
.tcc-air-subnav a:hover { color: var(--tcc-red); }

.tcc-air-usecases { background: #fff; }
.tcc-air-usecases-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(620px, 1.1fr);
  gap: 84px;
  align-items: center;
}
.tcc-air-usecases-copy h2,
.tcc-air-documents-copy h2,
.tcc-air-platform-copy h2,
.tcc-air-faq-copy h2 {
  margin: 14px 0 18px;
  font-size: clamp(44px,4.4vw,64px);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.tcc-air-usecases-copy > p,
.tcc-air-documents-copy > p,
.tcc-air-platform-copy > p,
.tcc-air-faq-copy > p {
  margin: 0;
  color: var(--tcc-muted);
  font-size: 17px;
  line-height: 1.68;
}
.tcc-air-text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 24px;
  color: var(--tcc-red);
  font-weight: 800;
}
.tcc-air-usecase-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tcc-air-usecase-cards article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  min-height: 155px;
  padding: 22px;
  border: 1px solid var(--tcc-border);
  border-radius: 20px;
  background: linear-gradient(180deg,#fff,#fcfcfc);
  box-shadow: 0 14px 34px rgba(17,17,17,.04);
}
.tcc-air-usecase-cards b,
.tcc-air-platform-points b {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(229,37,33,.08);
  color: var(--tcc-red);
  font-size: 11px;
}
.tcc-air-usecase-cards h3 { margin: 3px 0 8px; font-size: 20px; }
.tcc-air-usecase-cards p { margin: 0; color: var(--tcc-muted); font-size: 14px; line-height: 1.55; }

.tcc-air-process-section { background: #f8f8f8; }
.tcc-air-process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}
.tcc-air-process-track::before {
  content: "";
  position: absolute;
  left: 9%; right: 9%; top: 25px;
  border-top: 2px dashed rgba(229,37,33,.18);
}
.tcc-air-process-track article { position: relative; text-align: center; padding: 0 8px; }
.tcc-air-process-num {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(229,37,33,.28);
  border-radius: 50%;
  background: #fff;
  color: var(--tcc-red);
  font-size: 11px;
  font-weight: 900;
}
.tcc-air-process-icon {
  width: 106px;
  height: 84px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  background: #fff;
}
.tcc-air-process-icon img { width: 68px; height: 58px; object-fit: contain; }
.tcc-air-process-icon--doc span { color: var(--tcc-red); font-size: 20px; font-weight: 900; letter-spacing: .04em; }
.tcc-air-process-track small { color: var(--tcc-red); font-size: 10px; font-weight: 900; letter-spacing: .06em; }
.tcc-air-process-track h3 { margin: 8px 0 7px; font-size: 18px; line-height: 1.16; }
.tcc-air-process-track p { margin: 0; color: #777; font-size: 13px; line-height: 1.55; }

.tcc-air-weight {
  background:
    radial-gradient(circle at 12% 15%, rgba(229,37,33,.11), transparent 23%),
    linear-gradient(180deg, #111416 0%, #0e1113 100%);
  color: #fff;
}
.tcc-air-weight .tcc-section-heading p { color: rgba(255,255,255,.66); }
.tcc-air-weight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.tcc-air-weight-grid article {
  position: relative;
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
}
.tcc-air-weight-index { position: absolute; right: 20px; top: 18px; color: rgba(255,255,255,.35); font-size: 11px; font-weight: 900; }
.tcc-air-weight-badge {
  width: 82px; height: 82px;
  display: grid; place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  font-size: 20px; font-weight: 900;
}
.tcc-air-weight-badge--accent { color: #ff6b61; border-color: rgba(229,37,33,.34); }
.tcc-air-volume-diagram { width: 138px; min-height: 92px; margin-bottom: 10px; display: grid; place-items: center; }
.tcc-air-volume-diagram img { max-width: 138px; max-height: 96px; object-fit: contain; }
.tcc-air-weight-grid h3 { margin: 0 0 9px; font-size: 22px; }
.tcc-air-weight-grid p { margin: 0; color: rgba(255,255,255,.67); line-height: 1.62; }
.tcc-air-weight-note {
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  text-align: center;
}
.tcc-air-weight-note strong { color: rgba(255,255,255,.84); }

.tcc-air-cargo-types { background: #fff; }
.tcc-air-type-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.tcc-air-type-grid article {
  min-height: 205px;
  padding: 24px;
  border: 1px solid var(--tcc-border);
  border-radius: 20px;
  background: #fff;
}
.tcc-air-type-grid article > span {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(229,37,33,.08);
  color: var(--tcc-red);
  font-size: 10px; font-weight: 900;
}
.tcc-air-type-grid h3 { margin: 0 0 10px; font-size: 20px; }
.tcc-air-type-grid p { margin: 0; color: var(--tcc-muted); line-height: 1.58; font-size: 14px; }
.tcc-air-restriction-note {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(229,37,33,.18);
  border-radius: 18px;
  background: rgba(229,37,33,.035);
}
.tcc-air-restriction-note strong { font-size: 17px; }
.tcc-air-restriction-note p { margin: 6px 0 0; color: var(--tcc-muted); font-size: 13px; line-height: 1.55; }

.tcc-air-documents { background: #f8f8f8; }
.tcc-air-documents-grid,
.tcc-air-platform-grid,
.tcc-air-faq-grid {
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(620px,1.18fr);
  gap: 78px;
  align-items: center;
}
.tcc-air-document-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--tcc-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(17,17,17,.06);
}
.tcc-air-document-board article {
  min-height: 128px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid #ececec;
  border-radius: 16px;
}
.tcc-air-document-board b {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(229,37,33,.07);
  color: var(--tcc-red);
  font-size: 12px;
}
.tcc-air-document-board h3 { margin: 0 0 5px; font-size: 17px; }
.tcc-air-document-board p { margin: 0; color: var(--tcc-muted); font-size: 12px; line-height: 1.45; }

.tcc-air-platform { background: linear-gradient(180deg,#fff 0%,#fbfbfb 100%); }
.tcc-air-platform-points { margin: 24px 0 26px; }
.tcc-air-platform-points > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #ececec;
}
.tcc-air-platform-points strong,
.tcc-air-platform-points small { display: block; }
.tcc-air-platform-points strong { font-size: 15px; }
.tcc-air-platform-points small { margin-top: 2px; color: #8b8b8b; }
.tcc-air-platform-ui {
  overflow: hidden;
  border: 1px solid #dedede;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(17,17,17,.10);
}
.tcc-air-platform-bar {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border-bottom: 1px solid #e7e7e7;
  background: #f7f7f7;
}
.tcc-air-platform-bar i { width: 9px; height: 9px; border-radius: 50%; background: #d96b5c; }
.tcc-air-platform-bar i:nth-child(2) { background: #dfb44e; }
.tcc-air-platform-bar i:nth-child(3) { background: #6eb47b; }
.tcc-air-platform-bar strong { margin-left: 8px; font-size: 13px; }
.tcc-air-platform-bar small { margin-left: auto; color: var(--tcc-red); font-weight: 800; }
.tcc-air-platform-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px 16px 0; }
.tcc-air-platform-summary > div { padding: 16px; border: 1px solid #e9e9e9; border-radius: 14px; }
.tcc-air-platform-summary span,
.tcc-air-platform-summary small { display: block; color: #888; font-size: 10px; }
.tcc-air-platform-summary strong { display: block; margin: 6px 0 2px; font-size: 18px; }
.tcc-air-platform-main { display: grid; grid-template-columns: .9fr 1.1fr; gap: 12px; padding: 14px 16px 16px; }
.tcc-air-platform-timeline,
.tcc-air-platform-map { min-height: 260px; border: 1px solid #e9e9e9; border-radius: 16px; background: #fff; }
.tcc-air-platform-timeline { padding: 18px; }
.tcc-air-platform-timeline > div { display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: center; padding: 10px 0; }
.tcc-air-platform-timeline b { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; border: 1px solid #ddd; color: #aaa; font-size: 11px; }
.tcc-air-platform-timeline .is-done b { background: #64b574; border-color: #64b574; color: #fff; }
.tcc-air-platform-timeline .is-active b { border-color: var(--tcc-red); color: var(--tcc-red); }
.tcc-air-platform-timeline strong,
.tcc-air-platform-timeline small { display: block; }
.tcc-air-platform-timeline strong { font-size: 12px; }
.tcc-air-platform-timeline small { margin-top: 2px; color: #999; font-size: 9px; }
.tcc-air-platform-map { display: grid; place-items: center; overflow: hidden; background: #fafafa; }
.tcc-air-platform-map img { width: 92%; height: 92%; object-fit: contain; }
.tcc-air-platform-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 12px 16px 15px; border-top: 1px solid #ececec; color: #999; font-size: 9px; }
.tcc-air-platform-bottom b { color: var(--tcc-red); }

.tcc-air-departure {
  background:
    radial-gradient(circle at 92% 20%, rgba(229,37,33,.15), transparent 26%),
    linear-gradient(180deg,#111416,#0e1113);
  color: #fff;
}
.tcc-air-departure-inner {
  display: grid;
  grid-template-columns: minmax(320px,.8fr) minmax(560px,1.2fr) auto;
  gap: 34px;
  align-items: center;
}
.tcc-air-departure-inner h2 { margin: 12px 0 10px; font-size: 38px; }
.tcc-air-departure-inner p { margin: 0; color: rgba(255,255,255,.62); line-height: 1.55; }
.tcc-air-departure-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tcc-air-departure-stats > div { padding: 15px 16px; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: rgba(255,255,255,.04); }
.tcc-air-departure-stats span { display: block; color: rgba(255,255,255,.48); font-size: 9px; text-transform: uppercase; font-weight: 800; }
.tcc-air-departure-stats strong { display: block; margin-top: 5px; font-size: 13px; }

.tcc-air-faq { background: #f8f8f8; }
.tcc-air-faq-grid { align-items: start; }
.tcc-air-faq-list {
  overflow: hidden;
  border: 1px solid var(--tcc-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(17,17,17,.06);
}
.tcc-air-faq-list .tcc-faq-item button > span { display: flex; align-items: center; gap: 18px; }
.tcc-air-faq-list .tcc-faq-item em {
  flex: 0 0 34px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid rgba(229,37,33,.24);
  border-radius: 50%;
  color: var(--tcc-red);
  font-size: 9px;
  font-style: normal;
}

.tcc-air-final-cta {
  position: relative;
  overflow: hidden;
  padding: 94px 0 92px;
  background:
    radial-gradient(circle at 8% 16%, rgba(229,37,33,.12), transparent 24%),
    radial-gradient(circle at 94% 70%, rgba(229,37,33,.10), transparent 25%),
    #0d1012;
  color: #fff;
}
.tcc-air-final-cta-inner { text-align: center; }
.tcc-air-final-route { display: flex; justify-content: center; align-items: center; gap: 11px; margin: 18px 0 24px; font-size: 10px; font-weight: 900; letter-spacing: .06em; }
.tcc-air-final-route i { width: 72px; border-top: 2px dotted rgba(229,37,33,.65); }
.tcc-air-final-cta h2 { max-width: 900px; margin: 0 auto 16px; font-size: clamp(44px,5vw,68px); line-height: 1.05; letter-spacing: -.045em; }
.tcc-air-final-cta p { max-width: 720px; margin: 0 auto; color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.6; }
.tcc-air-final-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Responsive · Carga Aérea */
@media (max-width: 1180px) {
  .tcc-air-hero-grid,
  .tcc-air-usecases-grid,
  .tcc-air-documents-grid,
  .tcc-air-platform-grid,
  .tcc-air-faq-grid { grid-template-columns: 1fr 1fr; gap: 46px; }
  .tcc-air-hero-grid { grid-template-columns: .85fr 1.15fr; }
  .tcc-air-departure-inner { grid-template-columns: .8fr 1.2fr; }
  .tcc-air-departure-inner > .tcc-button { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 1024px) {
  .tcc-air-page .tcc-container { width: min(calc(100% - 40px), var(--tcc-container)); }
  .tcc-air-hero { min-height: 0; padding: 76px 0 70px; }
  .tcc-air-hero-grid { grid-template-columns: 1fr; }
  .tcc-air-hero-copy { max-width: 720px; }
  .tcc-air-hero-copy h1 { max-width: 12ch; font-size: clamp(54px,7vw,72px); }
  .tcc-air-hero-visual { max-width: 760px; width: 100%; }
  .tcc-air-subnav .tcc-container { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .tcc-air-subnav .tcc-container::-webkit-scrollbar { display: none; }
  .tcc-air-usecases-grid,
  .tcc-air-documents-grid,
  .tcc-air-platform-grid,
  .tcc-air-faq-grid { grid-template-columns: 1fr; }
  .tcc-air-usecases-copy,
  .tcc-air-documents-copy,
  .tcc-air-platform-copy,
  .tcc-air-faq-copy { max-width: 720px; }
  .tcc-air-process-track { grid-template-columns: repeat(3,1fr); row-gap: 34px; }
  .tcc-air-process-track::before { display: none; }
  .tcc-air-weight-grid { grid-template-columns: 1fr; }
  .tcc-air-weight-grid article { min-height: 0; }
  .tcc-air-type-grid { grid-template-columns: 1fr 1fr; }
  .tcc-air-departure-inner { grid-template-columns: 1fr; }
  .tcc-air-departure-inner > .tcc-button { grid-column: auto; }
}
@media (max-width: 820px) {
  .tcc-air-page .tcc-section { padding-top: 72px; padding-bottom: 72px; }
  .tcc-air-hero-grid { gap: 42px; }
  .tcc-air-hero-copy h1 { font-size: clamp(48px,9vw,64px); }
  .tcc-air-hero-lead { font-size: 16px; }
  .tcc-air-visual-head { grid-template-columns: 128px 1fr auto; padding-inline: 18px; }
  .tcc-air-mini-brand img { width: 110px; }
  .tcc-air-plane-stage { min-height: 270px; }
  .tcc-air-usecase-cards { grid-template-columns: 1fr; }
  .tcc-air-process-track { grid-template-columns: 1fr 1fr; }
  .tcc-air-document-board { grid-template-columns: 1fr; }
  .tcc-air-platform-main { grid-template-columns: 1fr; }
  .tcc-air-platform-map { min-height: 230px; }
  .tcc-air-restriction-note { grid-template-columns: 1fr; }
  .tcc-air-departure-stats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .tcc-air-page { overflow-x: hidden; }
  .tcc-air-page .tcc-container { width: min(calc(100% - 32px), var(--tcc-container)); }
  .tcc-air-page .tcc-section { padding-top: 60px; padding-bottom: 60px; }
  .tcc-air-hero { padding: 56px 0 52px; }
  .tcc-air-hero-copy h1 { font-size: clamp(42px,12vw,54px); max-width: none; }
  .tcc-air-hero-actions .tcc-button { width: 100%; justify-content: space-between; }
  .tcc-air-hero-trust { display: grid; grid-template-columns: 1fr 1fr; }
  .tcc-air-visual-head { grid-template-columns: 1fr auto; height: auto; min-height: 62px; }
  .tcc-air-mini-brand { grid-column: 1 / -1; padding-top: 14px; }
  .tcc-air-visual-head > span { padding-bottom: 12px; }
  .tcc-air-visual-head > small { padding-bottom: 12px; }
  .tcc-air-route-card { padding: 20px 16px 16px; }
  .tcc-air-plane-stage { min-height: 220px; }
  .tcc-air-visual-stats { grid-template-columns: 1fr; }
  .tcc-air-visual-stats div { border-right: 0; border-bottom: 1px solid #ececec; }
  .tcc-air-visual-stats div:last-child { border-bottom: 0; }
  .tcc-air-subnav .tcc-container { gap: 24px; min-height: 58px; }
  .tcc-air-usecases-copy h2,
  .tcc-air-documents-copy h2,
  .tcc-air-platform-copy h2,
  .tcc-air-faq-copy h2 { font-size: clamp(36px,10vw,46px); }
  .tcc-air-usecase-cards article { grid-template-columns: 42px 1fr; min-height: 0; padding: 18px; }
  .tcc-air-process-track { grid-template-columns: 1fr; gap: 18px; }
  .tcc-air-process-track article {
    display: grid;
    grid-template-columns: 48px 82px 1fr;
    gap: 12px;
    align-items: center;
    text-align: left;
    padding: 16px;
    border: 1px solid #e9e9e9;
    border-radius: 18px;
    background: #fff;
  }
  .tcc-air-process-num { margin: 0; }
  .tcc-air-process-icon { width: 78px; height: 68px; margin: 0; }
  .tcc-air-process-icon img { width: 54px; height: 48px; }
  .tcc-air-process-track small,
  .tcc-air-process-track h3,
  .tcc-air-process-track p { grid-column: 3; }
  .tcc-air-process-track small { align-self: end; }
  .tcc-air-process-track h3 { margin: -4px 0 0; }
  .tcc-air-process-track p { margin-top: -7px; }
  .tcc-air-type-grid { grid-template-columns: 1fr; }
  .tcc-air-platform-summary { grid-template-columns: 1fr; }
  .tcc-air-platform-bottom { flex-direction: column; }
  .tcc-air-departure-stats { grid-template-columns: 1fr; }
  .tcc-air-faq-list .tcc-faq-item button > span { gap: 10px; }
  .tcc-air-final-cta { padding: 76px 0 72px; }
  .tcc-air-final-cta h2 { font-size: clamp(38px,11vw,50px); }
  .tcc-air-final-actions .tcc-button { width: 100%; justify-content: space-between; }
}
@media (max-width: 430px) {
  .tcc-air-page .tcc-container { width: min(calc(100% - 28px), var(--tcc-container)); }
  .tcc-air-hero-copy h1 { font-size: 43px; }
  .tcc-air-hero-trust { grid-template-columns: 1fr; }
  .tcc-air-route-top strong { font-size: 15px; }
  .tcc-air-route-top { gap: 10px; }
  .tcc-air-process-track article { grid-template-columns: 42px 70px 1fr; padding: 14px 12px; }
  .tcc-air-process-icon { width: 68px; height: 60px; }
  .tcc-air-process-icon img { width: 48px; height: 42px; }
  .tcc-air-document-board { padding: 14px; }
  .tcc-air-document-board article { grid-template-columns: 50px 1fr; padding: 14px; }
  .tcc-air-platform-ui { border-radius: 18px; }
  .tcc-air-platform-main { padding-inline: 12px; }
  .tcc-air-final-route { gap: 7px; }
  .tcc-air-final-route i { width: 34px; }
}
\n\n/* =========================================================
   TCC Web v1.3.1 · Carga Aérea Desktop Polish
   Scoped to the air service page. HOME and Mi Casillero stay unchanged.
   ========================================================= */
@media (min-width: 1181px) {
  .tcc-air-page .tcc-air-hero {
    min-height: 720px;
  }

  .tcc-air-page .tcc-air-hero-grid {
    grid-template-columns: minmax(0, .94fr) minmax(520px, 1.06fr);
    gap: 58px;
  }

  .tcc-air-page .tcc-air-hero-copy h1 {
    max-width: 12.8ch;
    font-size: clamp(54px, 4.85vw, 72px);
    line-height: .99;
  }

  .tcc-air-page .tcc-air-hero-lead {
    max-width: 610px;
  }

  .tcc-air-page .tcc-air-route-card {
    padding: 24px 26px 18px;
  }

  .tcc-air-page .tcc-air-plane-stage {
    min-height: 310px;
    padding: 10px 12px;
  }

  .tcc-air-page .tcc-air-plane-stage img.tcc-air-hero-cargo-operation {
    width: min(535px, 96%);
    max-height: 292px;
    object-fit: contain;
  }

  .tcc-air-page .tcc-air-usecases {
    padding-top: 86px;
    padding-bottom: 88px;
  }

  .tcc-air-page .tcc-air-usecases-grid {
    grid-template-columns: minmax(0, .98fr) minmax(600px, 1.02fr);
    gap: 68px;
  }

  .tcc-air-page .tcc-air-usecases-copy h2 {
    max-width: 12.6ch;
    font-size: clamp(42px, 3.75vw, 56px);
    line-height: 1.025;
  }

  .tcc-air-page .tcc-air-process-section {
    padding-top: 88px;
    padding-bottom: 90px;
  }

  .tcc-air-page .tcc-air-cargo-types {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .tcc-air-page .tcc-air-documents {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .tcc-air-page .tcc-air-platform {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .tcc-air-page .tcc-air-documents-copy h2,
  .tcc-air-page .tcc-air-platform-copy h2,
  .tcc-air-page .tcc-air-faq-copy h2 {
    font-size: clamp(42px, 3.85vw, 56px);
  }

  .tcc-air-page .tcc-air-departure {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .tcc-air-page .tcc-air-faq {
    padding-top: 88px;
    padding-bottom: 88px;
  }
}

/* =========================================================
   TCC Web v1.3.2 · Carga Aérea Responsive Polish
   Only .tcc-air-page is adjusted. Home and Mi Casillero remain untouched.
   ========================================================= */

/* Sticky anchors: header + internal air-service navigation. */
.tcc-air-page { --tcc-air-sticky-offset: 146px; }
.tcc-air-page .tcc-air-subnav { top: 78px; }
.tcc-air-page section[id] { scroll-margin-top: var(--tcc-air-sticky-offset); }

/* Desktop micro-polish carried forward from the v1.3.1 review. */
@media (min-width: 1181px) {
  .tcc-air-page .tcc-air-plane-stage img.tcc-air-hero-cargo-operation {
    width: min(585px, 98%);
    max-height: 310px;
  }

  .tcc-air-page .tcc-air-usecases-copy h2 {
    max-width: 14.2ch;
    font-size: clamp(41px, 3.55vw, 53px);
    line-height: 1.035;
  }

  .tcc-air-page .tcc-air-documents .tcc-air-text-link {
    min-height: 44px;
    align-items: center;
    padding: 0 15px;
    border: 1px solid rgba(229,37,33,.34);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(17,17,17,.035);
  }
  .tcc-air-page .tcc-air-documents .tcc-air-text-link:hover {
    border-color: var(--tcc-red);
    background: rgba(229,37,33,.035);
  }
}

/* Tablet landscape / compact desktop. */
@media (max-width: 1024px) {
  .tcc-air-page { --tcc-air-sticky-offset: 132px; }

  .tcc-air-page .tcc-air-hero {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .tcc-air-page .tcc-air-hero-grid { gap: 36px; }
  .tcc-air-page .tcc-air-hero-copy h1 {
    max-width: 13.4ch;
    font-size: clamp(50px, 7.4vw, 68px);
  }
  .tcc-air-page .tcc-air-hero-visual {
    margin-inline: auto;
  }
  .tcc-air-page .tcc-air-plane-stage img.tcc-air-hero-cargo-operation {
    width: min(570px, 96%);
    max-height: 300px;
  }

  .tcc-air-page .tcc-air-subnav {
    top: 72px;
  }
  .tcc-air-page .tcc-air-subnav .tcc-container {
    width: 100%;
    max-width: none;
    padding-inline: 20px;
    gap: 28px;
    scroll-padding-inline: 20px;
    overscroll-behavior-inline: contain;
  }

  .tcc-air-page .tcc-air-usecases-grid,
  .tcc-air-page .tcc-air-documents-grid,
  .tcc-air-page .tcc-air-platform-grid,
  .tcc-air-page .tcc-air-faq-grid { gap: 34px; }

  .tcc-air-page .tcc-air-usecases-copy h2 {
    max-width: 15ch;
  }

  .tcc-air-page .tcc-air-weight-grid {
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 14px;
  }
  .tcc-air-page .tcc-air-weight-grid article {
    min-height: 290px;
    padding: 22px;
  }

  .tcc-air-page .tcc-air-platform-ui { max-width: 760px; }
}

/* Tablet portrait. */
@media (max-width: 820px) {
  .tcc-air-page { --tcc-air-sticky-offset: 126px; }
  .tcc-air-page .tcc-section { padding-top: 66px; padding-bottom: 66px; }

  .tcc-air-page .tcc-air-hero {
    padding-top: 50px;
    padding-bottom: 52px;
  }
  .tcc-air-page .tcc-air-hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(46px, 8.5vw, 60px);
    line-height: .99;
  }
  .tcc-air-page .tcc-air-hero-lead { max-width: 620px; }
  .tcc-air-page .tcc-air-hero-trust { margin-top: 22px; }

  .tcc-air-page .tcc-air-visual-shell { border-radius: 22px; }
  .tcc-air-page .tcc-air-plane-stage {
    min-height: 250px;
    padding: 8px;
  }
  .tcc-air-page .tcc-air-plane-stage img.tcc-air-hero-cargo-operation {
    width: min(535px, 96%);
    max-height: 250px;
  }

  .tcc-air-page .tcc-air-usecases-copy h2,
  .tcc-air-page .tcc-air-documents-copy h2,
  .tcc-air-page .tcc-air-platform-copy h2,
  .tcc-air-page .tcc-air-faq-copy h2 {
    max-width: 15ch;
    font-size: clamp(38px, 7.2vw, 50px);
  }

  .tcc-air-page .tcc-air-usecase-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .tcc-air-page .tcc-air-usecase-cards article {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    min-height: 142px;
    padding: 18px;
  }
  .tcc-air-page .tcc-air-usecase-cards h3 { font-size: 18px; }

  .tcc-air-page .tcc-air-weight-grid {
    grid-template-columns: 1fr;
    max-width: 660px;
    margin-inline: auto;
  }
  .tcc-air-page .tcc-air-weight-grid article {
    min-height: 0;
    padding: 24px;
  }

  .tcc-air-page .tcc-air-platform-ui {
    width: 100%;
    max-width: 720px;
  }

  .tcc-air-page .tcc-air-departure-inner { gap: 22px; }
  .tcc-air-page .tcc-air-departure-inner h2 { font-size: 34px; }
}

/* Phones. */
@media (max-width: 620px) {
  .tcc-air-page {
    --tcc-air-sticky-offset: 118px;
    overflow-x: clip;
  }
  .tcc-air-page .tcc-container {
    width: min(calc(100% - 32px), var(--tcc-container));
  }
  .tcc-air-page .tcc-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  /* Hero: compact, readable and without an unnecessarily tall visual card. */
  .tcc-air-page .tcc-air-hero {
    padding: 38px 0 46px;
  }
  .tcc-air-page .tcc-air-hero-grid { gap: 30px; }
  .tcc-air-page .tcc-air-hero-copy h1 {
    max-width: none;
    margin-top: 12px;
    margin-bottom: 16px;
    font-size: clamp(39px, 11.1vw, 50px);
    line-height: 1.01;
    letter-spacing: -.048em;
  }
  .tcc-air-page .tcc-air-hero-lead {
    font-size: 15.5px;
    line-height: 1.58;
  }
  .tcc-air-page .tcc-air-hero-actions {
    margin-top: 24px;
    gap: 10px;
  }
  .tcc-air-page .tcc-air-hero-actions .tcc-button {
    min-height: 50px;
  }
  .tcc-air-page .tcc-air-hero-trust {
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    margin-top: 22px;
    font-size: 12px;
  }

  .tcc-air-page .tcc-air-visual-shell {
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(17,17,17,.09);
  }
  .tcc-air-page .tcc-air-visual-head {
    height: 58px;
    min-height: 58px;
    grid-template-columns: 92px 1fr auto;
    gap: 9px;
    padding: 0 14px;
  }
  .tcc-air-page .tcc-air-mini-brand {
    grid-column: auto;
    padding-top: 0;
  }
  .tcc-air-page .tcc-air-mini-brand img { width: 90px; }
  .tcc-air-page .tcc-air-visual-head > span {
    padding-bottom: 0;
    font-size: 13px;
  }
  .tcc-air-page .tcc-air-visual-head > small {
    padding-bottom: 0;
    font-size: 9px;
    white-space: nowrap;
  }
  .tcc-air-page .tcc-air-route-card { padding: 17px 13px 13px; }
  .tcc-air-page .tcc-air-route-top { gap: 9px; }
  .tcc-air-page .tcc-air-route-top small { font-size: 8px; }
  .tcc-air-page .tcc-air-route-top strong { font-size: 14px; }
  .tcc-air-page .tcc-air-plane-stage {
    min-height: 190px;
    margin-top: 10px;
    border-radius: 15px;
  }
  .tcc-air-page .tcc-air-plane-stage img.tcc-air-hero-cargo-operation {
    width: 97%;
    max-height: 190px;
  }
  .tcc-air-page .tcc-air-visual-stats {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
  .tcc-air-page .tcc-air-visual-stats div {
    min-width: 0;
    padding: 12px 9px;
    border-right: 1px solid #ececec;
    border-bottom: 0;
  }
  .tcc-air-page .tcc-air-visual-stats div:last-child { border-right: 0; }
  .tcc-air-page .tcc-air-visual-stats span {
    font-size: 7.5px;
    letter-spacing: .03em;
  }
  .tcc-air-page .tcc-air-visual-stats strong {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.2;
  }
  .tcc-air-page .tcc-air-visual-caption {
    gap: 6px;
    margin-top: 12px;
    font-size: 9px;
  }

  /* Internal navigation always sits directly below the mobile header. */
  .tcc-air-page .tcc-air-subnav {
    top: 68px;
    box-shadow: 0 8px 18px rgba(17,17,17,.035);
  }
  .tcc-air-page .tcc-air-subnav .tcc-container {
    width: 100%;
    min-height: 50px;
    padding-inline: 16px;
    gap: 22px;
    overflow-x: auto;
    justify-content: flex-start;
    scroll-padding-inline: 16px;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 18px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 18px), transparent 100%);
  }
  .tcc-air-page .tcc-air-subnav a {
    flex: 0 0 auto;
    font-size: 12px;
  }

  /* Use cases. */
  .tcc-air-page .tcc-air-usecases-grid,
  .tcc-air-page .tcc-air-documents-grid,
  .tcc-air-page .tcc-air-platform-grid,
  .tcc-air-page .tcc-air-faq-grid { gap: 28px; }
  .tcc-air-page .tcc-air-usecases-copy h2,
  .tcc-air-page .tcc-air-documents-copy h2,
  .tcc-air-page .tcc-air-platform-copy h2,
  .tcc-air-page .tcc-air-faq-copy h2 {
    max-width: none;
    margin-top: 10px;
    font-size: clamp(35px, 9.3vw, 43px);
    line-height: 1.02;
  }
  .tcc-air-page .tcc-air-usecases-copy > p,
  .tcc-air-page .tcc-air-documents-copy > p,
  .tcc-air-page .tcc-air-platform-copy > p,
  .tcc-air-page .tcc-air-faq-copy > p {
    font-size: 15px;
    line-height: 1.58;
  }
  .tcc-air-page .tcc-air-usecase-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .tcc-air-page .tcc-air-usecase-cards article {
    grid-template-columns: 38px minmax(0,1fr);
    gap: 11px;
    min-height: 0;
    padding: 16px;
    border-radius: 16px;
  }
  .tcc-air-page .tcc-air-usecase-cards b,
  .tcc-air-page .tcc-air-platform-points b {
    width: 36px;
    height: 36px;
  }
  .tcc-air-page .tcc-air-usecase-cards h3 {
    margin-top: 1px;
    font-size: 17px;
  }
  .tcc-air-page .tcc-air-usecase-cards p { font-size: 13px; }

  /* Five-stage process becomes a true mobile timeline/card list. */
  .tcc-air-page .tcc-air-process-section .tcc-section-heading--center {
    text-align: left;
    margin-bottom: 28px;
  }
  .tcc-air-page .tcc-air-process-track {
    margin-top: 0;
    gap: 10px;
  }
  .tcc-air-page .tcc-air-process-track article {
    grid-template-columns: 34px 60px minmax(0,1fr);
    gap: 10px;
    padding: 14px;
    border-radius: 16px;
  }
  .tcc-air-page .tcc-air-process-num {
    width: 34px;
    height: 34px;
    font-size: 9px;
  }
  .tcc-air-page .tcc-air-process-icon {
    width: 58px;
    height: 54px;
    border-radius: 13px;
  }
  .tcc-air-page .tcc-air-process-icon img {
    width: 44px;
    height: 40px;
  }
  .tcc-air-page .tcc-air-process-icon--doc span { font-size: 15px; }
  .tcc-air-page .tcc-air-process-track small { font-size: 8px; }
  .tcc-air-page .tcc-air-process-track h3 {
    margin: -2px 0 0;
    font-size: 16px;
    overflow-wrap: anywhere;
  }
  .tcc-air-page .tcc-air-process-track p {
    margin-top: -5px;
    font-size: 12px;
    line-height: 1.48;
  }

  /* Weight: more explanatory space for the volumetric diagram. */
  .tcc-air-page .tcc-air-weight .tcc-section-heading--center {
    text-align: left;
    margin-bottom: 30px;
  }
  .tcc-air-page .tcc-air-weight-grid { margin-top: 0; gap: 12px; }
  .tcc-air-page .tcc-air-weight-grid article {
    padding: 20px;
    border-radius: 18px;
  }
  .tcc-air-page .tcc-air-weight-badge {
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
  }
  .tcc-air-page .tcc-air-volume-diagram {
    width: 150px;
    min-height: 100px;
    margin-bottom: 12px;
  }
  .tcc-air-page .tcc-air-volume-diagram img {
    max-width: 150px;
    max-height: 100px;
  }
  .tcc-air-page .tcc-air-weight-grid h3 { font-size: 20px; }
  .tcc-air-page .tcc-air-weight-grid p { font-size: 14px; }
  .tcc-air-page .tcc-air-weight-note {
    margin-top: 12px;
    padding: 13px 14px;
    text-align: left;
    line-height: 1.45;
  }

  /* Cargo types / restrictions. */
  .tcc-air-page .tcc-air-cargo-types .tcc-section-heading--center {
    text-align: left;
    margin-bottom: 30px;
  }
  .tcc-air-page .tcc-air-type-grid { gap: 10px; }
  .tcc-air-page .tcc-air-type-grid article {
    min-height: 0;
    padding: 18px;
    border-radius: 16px;
  }
  .tcc-air-page .tcc-air-restriction-note {
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
  }
  .tcc-air-page .tcc-air-restriction-note .tcc-button {
    width: 100%;
    justify-content: space-between;
  }

  /* Documents: stronger secondary CTA and compact board. */
  .tcc-air-page .tcc-air-documents .tcc-air-text-link {
    min-height: 44px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(229,37,33,.34);
    border-radius: 10px;
    background: #fff;
  }
  .tcc-air-page .tcc-air-document-board {
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
  }
  .tcc-air-page .tcc-air-document-board article {
    grid-template-columns: 46px minmax(0,1fr);
    gap: 12px;
    padding: 14px;
    min-height: 0;
    border-radius: 14px;
  }
  .tcc-air-page .tcc-air-document-board b {
    width: 44px;
    height: 44px;
  }
  .tcc-air-page .tcc-air-document-board h3 { font-size: 15px; }

  /* Platform: keep key summary side-by-side, then stack timeline and route. */
  .tcc-air-page .tcc-air-platform-points { margin: 20px 0 22px; }
  .tcc-air-page .tcc-air-platform-summary {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px 12px 0;
  }
  .tcc-air-page .tcc-air-platform-summary > div {
    min-width: 0;
    padding: 12px;
    border-radius: 12px;
  }
  .tcc-air-page .tcc-air-platform-summary strong {
    font-size: 15px;
    overflow-wrap: anywhere;
  }
  .tcc-air-page .tcc-air-platform-main {
    gap: 8px;
    padding: 10px 12px 12px;
  }
  .tcc-air-page .tcc-air-platform-timeline,
  .tcc-air-page .tcc-air-platform-map {
    min-height: 210px;
    border-radius: 14px;
  }
  .tcc-air-page .tcc-air-platform-map img {
    width: 96%;
    height: 96%;
  }
  .tcc-air-page .tcc-air-platform-bottom {
    padding: 10px 12px 12px;
    gap: 5px;
    font-size: 8px;
  }

  /* Departure: denser and useful above the FAQ. */
  .tcc-air-page .tcc-air-departure { padding-top: 48px; padding-bottom: 48px; }
  .tcc-air-page .tcc-air-departure-inner { gap: 20px; }
  .tcc-air-page .tcc-air-departure-inner h2 {
    margin-top: 8px;
    font-size: 32px;
    line-height: 1.05;
  }
  .tcc-air-page .tcc-air-departure-stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .tcc-air-page .tcc-air-departure-stats > div {
    min-width: 0;
    padding: 12px;
    border-radius: 12px;
  }
  .tcc-air-page .tcc-air-departure-inner > .tcc-button {
    width: 100%;
    justify-content: space-between;
  }

  /* FAQ / CTA. */
  .tcc-air-page .tcc-air-faq-list { border-radius: 18px; }
  .tcc-air-page .tcc-air-faq-list .tcc-faq-item button {
    min-height: 66px;
    padding-inline: 14px;
    text-align: left;
  }
  .tcc-air-page .tcc-air-faq-list .tcc-faq-item button > span {
    align-items: flex-start;
    min-width: 0;
  }
  .tcc-air-page .tcc-air-faq-list .tcc-faq-item em {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    margin-top: -2px;
  }
  .tcc-air-page .tcc-air-faq-list .tcc-faq-answer { padding-left: 14px; }

  .tcc-air-page .tcc-air-final-cta { padding: 64px 0 60px; }
  .tcc-air-page .tcc-air-final-route {
    gap: 6px;
    margin: 14px 0 20px;
    font-size: 8px;
  }
  .tcc-air-page .tcc-air-final-route i { width: 30px; }
  .tcc-air-page .tcc-air-final-cta h2 {
    font-size: clamp(36px, 10.2vw, 46px);
    line-height: 1.03;
  }
  .tcc-air-page .tcc-air-final-cta p {
    font-size: 14px;
    line-height: 1.55;
  }
  .tcc-air-page .tcc-air-final-actions { margin-top: 22px; }
}

/* Narrow phones: preserve breathing room and prevent text clipping. */
@media (max-width: 430px) {
  .tcc-air-page { --tcc-air-sticky-offset: 116px; }
  .tcc-air-page .tcc-container { width: min(calc(100% - 28px), var(--tcc-container)); }
  .tcc-air-page .tcc-air-hero-copy h1 { font-size: 40px; }
  .tcc-air-page .tcc-air-hero-trust { grid-template-columns: 1fr 1fr; }
  .tcc-air-page .tcc-air-visual-head {
    grid-template-columns: 82px 1fr auto;
    padding-inline: 11px;
  }
  .tcc-air-page .tcc-air-mini-brand img { width: 80px; }
  .tcc-air-page .tcc-air-visual-head > span { font-size: 12px; }
  .tcc-air-page .tcc-air-visual-head > small { font-size: 8px; }
  .tcc-air-page .tcc-air-route-top strong { font-size: 13px; }
  .tcc-air-page .tcc-air-plane-stage { min-height: 176px; }
  .tcc-air-page .tcc-air-plane-stage img.tcc-air-hero-cargo-operation { max-height: 176px; }

  .tcc-air-page .tcc-air-subnav .tcc-container {
    padding-inline: 14px;
    gap: 19px;
  }

  .tcc-air-page .tcc-air-process-track article {
    grid-template-columns: 31px 54px minmax(0,1fr);
    gap: 8px;
    padding: 12px 10px;
  }
  .tcc-air-page .tcc-air-process-num { width: 31px; height: 31px; }
  .tcc-air-page .tcc-air-process-icon { width: 52px; height: 50px; }
  .tcc-air-page .tcc-air-process-icon img { width: 40px; height: 36px; }
  .tcc-air-page .tcc-air-process-track h3 { font-size: 15px; }
  .tcc-air-page .tcc-air-process-track p { font-size: 11.5px; }

  .tcc-air-page .tcc-air-platform-summary strong { font-size: 14px; }
  .tcc-air-page .tcc-air-departure-stats { grid-template-columns: 1fr 1fr; }
  .tcc-air-page .tcc-air-departure-stats strong { font-size: 12px; }
}

@media (max-width: 360px) {
  .tcc-air-page .tcc-air-hero-copy h1 { font-size: 37px; }
  .tcc-air-page .tcc-air-hero-trust { grid-template-columns: 1fr; }
  .tcc-air-page .tcc-air-visual-head {
    grid-template-columns: 1fr auto;
    min-height: 82px;
    padding-top: 10px;
  }
  .tcc-air-page .tcc-air-mini-brand {
    grid-column: 1 / -1;
  }
  .tcc-air-page .tcc-air-visual-head > span,
  .tcc-air-page .tcc-air-visual-head > small { padding-bottom: 9px; }
  .tcc-air-page .tcc-air-visual-stats { grid-template-columns: 1fr; }
  .tcc-air-page .tcc-air-visual-stats div {
    border-right: 0;
    border-bottom: 1px solid #ececec;
  }
  .tcc-air-page .tcc-air-visual-stats div:last-child { border-bottom: 0; }
  .tcc-air-page .tcc-air-platform-summary { grid-template-columns: 1fr; }
  .tcc-air-page .tcc-air-departure-stats { grid-template-columns: 1fr; }
}

/* =========================================================
   TCC Web v1.3.3 · Carga Aérea Timing + FAQ Polish
   Scope: only .tcc-air-page. Home and Mi Casillero untouched.
   ========================================================= */

/* FAQ answers: align open copy with the question text and add breathing room. */
.tcc-air-page .tcc-air-faq-list .tcc-faq-item button {
  padding-inline: 20px;
}
.tcc-air-page .tcc-air-faq-list .tcc-faq-answer {
  padding: 10px 54px 24px 72px;
}
.tcc-air-page .tcc-air-faq-list .tcc-faq-answer p {
  max-width: 660px;
  color: #6f6f6f;
  font-size: 14px;
  line-height: 1.7;
}
.tcc-air-page .tcc-air-faq-list .tcc-faq-answer strong {
  color: #202020;
  font-weight: 800;
}

/* Slightly improve legibility of the new operational values. */
.tcc-air-page .tcc-air-visual-stats strong,
.tcc-air-page .tcc-air-departure-stats strong {
  line-height: 1.3;
}

@media (max-width: 820px) {
  .tcc-air-page .tcc-air-faq-list .tcc-faq-answer {
    padding: 10px 22px 22px 62px;
  }
}

@media (max-width: 620px) {
  .tcc-air-page .tcc-air-faq-list .tcc-faq-item button {
    padding-inline: 14px;
  }
  .tcc-air-page .tcc-air-faq-list .tcc-faq-answer {
    padding: 8px 14px 20px 14px;
  }
  .tcc-air-page .tcc-air-faq-list .tcc-faq-answer p {
    font-size: 13.5px;
    line-height: 1.68;
  }
}


/* =========================================================
   TCC Web v1.3.4 · Carga Aérea Volumetric + Battery Docs Polish
   Scope: only .tcc-air-page. Home, Mi Casillero and approved blocks untouched.
   ========================================================= */

/* Keep long FAQ examples readable without making the accordion feel dense. */
.tcc-air-page .tcc-air-faq-list .tcc-faq-answer p br + br {
  display: block;
  content: "";
  margin-top: 4px;
}
.tcc-air-page .tcc-air-faq-list .tcc-faq-answer em {
  font-style: italic;
}

/* Air-specific dimension diagram: slightly wider to keep both diagonal arrows legible. */
.tcc-air-page .tcc-air-volume-diagram {
  width: 148px;
  min-height: 96px;
}
.tcc-air-page .tcc-air-volume-diagram img {
  max-width: 148px;
  max-height: 100px;
}

@media (max-width: 620px) {
  .tcc-air-page .tcc-air-volume-diagram {
    width: 136px;
    min-height: 90px;
  }
  .tcc-air-page .tcc-air-volume-diagram img {
    max-width: 136px;
    max-height: 94px;
  }
}

/* =========================================================
   TCC Web v1.3.5 · Carga Aérea Final Fixes
   Scope: only .tcc-air-page. Approved Home / Mi Casillero untouched.
   ========================================================= */

/* The numbered FAQ badge uses <em>; reset inline emphasis inside answers so
   explanatory English terms never inherit the circular badge geometry. */
.tcc-air-page .tcc-air-faq-list .tcc-faq-answer em,
.tcc-air-page .tcc-air-faq-list .tcc-faq-answer p em {
  display: inline;
  width: auto;
  height: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  font-size: inherit;
  font-style: italic;
  font-weight: inherit;
  line-height: inherit;
  place-items: initial;
  flex: none;
}

/* Keep the actual FAQ number circles isolated to the accordion button. */
.tcc-air-page .tcc-air-faq-list .tcc-faq-item button em {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(229,37,33,.24);
  border-radius: 50%;
  color: var(--tcc-red);
  font-size: 9px;
  font-style: normal;
}

@media (max-width: 620px) {
  .tcc-air-page .tcc-air-faq-list .tcc-faq-item button em {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }
}

/* =========================================================
   TCC Web v1.3.6 · Carga Aérea Final Fixes
   Scope: only .tcc-air-page. Home, Mi Casillero and all approved blocks untouched.
   ========================================================= */

/* Approved final volumetric-dimensions graphic: give the labels enough
   optical size to remain clearly legible without altering the card layout. */
.tcc-air-page .tcc-air-volume-diagram {
  width: 180px;
  min-height: 132px;
  margin-bottom: 10px;
}
.tcc-air-page .tcc-air-volume-diagram img {
  display: block;
  width: auto;
  height: auto;
  max-width: 180px;
  max-height: 132px;
  object-fit: contain;
}

@media (max-width: 620px) {
  .tcc-air-page .tcc-air-volume-diagram {
    width: 164px;
    min-height: 120px;
    margin-bottom: 10px;
  }
  .tcc-air-page .tcc-air-volume-diagram img {
    max-width: 164px;
    max-height: 120px;
  }
}

/* =========================================================
   TCC Web v1.4.0 · Carga Marítima LCL
   Scope: only .tcc-ocean-page. HOME, Mi Casillero and Carga Aérea untouched.
   ========================================================= */
.tcc-ocean-page {
  --tcc-ocean-red: #de3d2f;
  --tcc-ocean-ink: #111214;
  --tcc-ocean-soft: #f7f7f7;
  --tcc-ocean-line: #e7e7e7;
  --tcc-ocean-sticky-offset: 78px;
  overflow: clip;
}
.tcc-ocean-page .tcc-eyebrow { color: var(--tcc-ocean-red); }
.tcc-ocean-page .tcc-button--primary { background: var(--tcc-ocean-red); }
.tcc-ocean-page .tcc-button--primary:hover { background: #c83227; }
.tcc-ocean-page .tcc-section { scroll-margin-top: 146px; }

/* Hero */
.tcc-ocean-page .tcc-ocean-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--tcc-ocean-line);
  background:
    radial-gradient(circle at 88% 18%, rgba(222,61,47,.09) 0 12%, rgba(222,61,47,.035) 12.5% 24%, transparent 24.5%),
    linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
}
.tcc-ocean-page .tcc-ocean-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: -160px;
  border: 1px solid rgba(222,61,47,.08);
  border-radius: 50%;
}
.tcc-ocean-page .tcc-ocean-hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr);
  align-items: center;
  gap: 58px;
  padding-top: 54px;
  padding-bottom: 54px;
}
.tcc-ocean-page .tcc-ocean-hero-copy { position: relative; z-index: 2; }
.tcc-ocean-page .tcc-ocean-hero-copy h1 {
  max-width: 610px;
  margin: 18px 0 20px;
  font-size: clamp(47px,4.35vw,64px);
  line-height: 1.015;
  letter-spacing: -.052em;
}
.tcc-ocean-page .tcc-ocean-hero-copy h1 span { color: var(--tcc-ocean-red); }
.tcc-ocean-page .tcc-ocean-hero-lead {
  max-width: 610px;
  margin: 0 0 28px;
  color: #646464;
  font-size: 18px;
  line-height: 1.62;
}
.tcc-ocean-page .tcc-ocean-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.tcc-ocean-page .tcc-ocean-hero-trust {
  max-width: 650px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-top: 1px solid #e3e3e3;
}
.tcc-ocean-page .tcc-ocean-hero-trust span {
  position: relative;
  padding: 15px 13px 0 14px;
  color: #4c4c4c;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.35;
}
.tcc-ocean-page .tcc-ocean-hero-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tcc-ocean-red);
}
.tcc-ocean-page .tcc-ocean-hero-visual { position: relative; z-index: 1; }
.tcc-ocean-page .tcc-ocean-visual-shell {
  overflow: hidden;
  border: 1px solid #e4e4e4;
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 26px 70px rgba(17,17,17,.11);
}
.tcc-ocean-page .tcc-ocean-visual-head {
  min-height: 66px;
  display: grid;
  grid-template-columns: 145px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 0 24px;
  border-bottom: 1px solid #ececec;
  background: #fafafa;
}
.tcc-ocean-page .tcc-ocean-mini-brand img { width: 132px; }
.tcc-ocean-page .tcc-ocean-visual-head > span { font-size: 14px; font-weight: 800; }
.tcc-ocean-page .tcc-ocean-visual-head > small { color: var(--tcc-ocean-red); font-size: 10px; font-weight: 850; letter-spacing: .08em; }
.tcc-ocean-page .tcc-ocean-route-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 26px 12px;
}
.tcc-ocean-page .tcc-ocean-route-row span { display: grid; gap: 1px; }
.tcc-ocean-page .tcc-ocean-route-row span:last-child { text-align: right; }
.tcc-ocean-page .tcc-ocean-route-row small { color: #929292; font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.tcc-ocean-page .tcc-ocean-route-row strong { font-size: 16px; }
.tcc-ocean-page .tcc-ocean-route-row i {
  position: relative;
  height: 1px;
  background: repeating-linear-gradient(90deg,var(--tcc-ocean-red) 0 5px,transparent 5px 9px);
}
.tcc-ocean-page .tcc-ocean-route-row i::before,
.tcc-ocean-page .tcc-ocean-route-row i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -3.5px;
  border-radius: 50%;
  background: var(--tcc-ocean-red);
}
.tcc-ocean-page .tcc-ocean-route-row i::before { left: -1px; }
.tcc-ocean-page .tcc-ocean-route-row i::after { right: -1px; }
.tcc-ocean-page .tcc-ocean-ship-stage {
  min-height: 365px;
  display: grid;
  place-items: center;
  margin: 0 24px 20px;
  border: 1px solid #ececec;
  border-radius: 18px;
  background: radial-gradient(circle at 72% 30%,rgba(222,61,47,.07),transparent 26%),#fbfbfb;
}
.tcc-ocean-page .tcc-ocean-ship-stage img { width: min(94%,680px); max-height: 350px; object-fit: contain; }
.tcc-ocean-page .tcc-ocean-visual-stats { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #e8e8e8; }
.tcc-ocean-page .tcc-ocean-visual-stats div { min-height: 76px; display: grid; align-content: center; gap: 4px; padding: 14px 18px; border-right: 1px solid #ededed; }
.tcc-ocean-page .tcc-ocean-visual-stats div:last-child { border-right: 0; }
.tcc-ocean-page .tcc-ocean-visual-stats small { color: #8b8b8b; font-size: 8px; font-weight: 800; letter-spacing: .06em; }
.tcc-ocean-page .tcc-ocean-visual-stats strong { font-size: 13px; }
.tcc-ocean-page .tcc-ocean-visual-caption { margin-top: 12px; text-align: center; color: #5a5a5a; font-size: 10px; font-weight: 800; letter-spacing: .03em; }
.tcc-ocean-page .tcc-ocean-visual-caption b { margin: 0 7px; color: var(--tcc-ocean-red); }

/* Local subnavigation */
.tcc-ocean-page .tcc-ocean-subnav {
  position: sticky;
  top: var(--tcc-ocean-sticky-offset);
  z-index: 120;
  border-bottom: 1px solid #ececec;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
}
.tcc-ocean-page .tcc-ocean-subnav .tcc-container {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tcc-ocean-page .tcc-ocean-subnav .tcc-container::-webkit-scrollbar { display: none; }
.tcc-ocean-page .tcc-ocean-subnav a { flex: 0 0 auto; color: #444; font-size: 12px; font-weight: 750; white-space: nowrap; }
.tcc-ocean-page .tcc-ocean-subnav a:hover { color: var(--tcc-ocean-red); }

/* When to choose LCL */
.tcc-ocean-page .tcc-ocean-fit { padding: 118px 0 124px; }
.tcc-ocean-page .tcc-ocean-fit-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 72px; align-items: center; }
.tcc-ocean-page .tcc-ocean-fit-copy h2,
.tcc-ocean-page .tcc-ocean-consolidation-copy h2,
.tcc-ocean-page .tcc-ocean-documents-copy h2,
.tcc-ocean-page .tcc-ocean-platform-copy h2,
.tcc-ocean-page .tcc-ocean-faq-copy h2 {
  margin: 12px 0 20px;
  font-size: clamp(43px,4.25vw,58px);
  line-height: 1.02;
  letter-spacing: -.046em;
}
.tcc-ocean-page .tcc-ocean-fit-copy p,
.tcc-ocean-page .tcc-ocean-consolidation-copy > p,
.tcc-ocean-page .tcc-ocean-documents-copy > p,
.tcc-ocean-page .tcc-ocean-platform-copy > p,
.tcc-ocean-page .tcc-ocean-faq-copy > p {
  max-width: 540px;
  color: #686868;
  font-size: 17px;
  line-height: 1.65;
}
.tcc-ocean-page .tcc-ocean-text-link { display: inline-flex; align-items: center; gap: 14px; margin-top: 18px; color: var(--tcc-ocean-red); font-size: 14px; font-weight: 800; }
.tcc-ocean-page .tcc-ocean-fit-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tcc-ocean-page .tcc-ocean-fit-cards article,
.tcc-ocean-page .tcc-ocean-type-grid article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17,17,17,.035);
}
.tcc-ocean-page .tcc-ocean-fit-cards article > span,
.tcc-ocean-page .tcc-ocean-type-grid article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 23px;
  border-radius: 50%;
  background: #fff3f1;
  color: var(--tcc-ocean-red);
  font-size: 10px;
  font-weight: 850;
}
.tcc-ocean-page .tcc-ocean-fit-cards h3,
.tcc-ocean-page .tcc-ocean-type-grid h3 { margin: 0 0 7px; font-size: 18px; line-height: 1.15; }
.tcc-ocean-page .tcc-ocean-fit-cards p,
.tcc-ocean-page .tcc-ocean-type-grid p { margin: 0; color: #747474; font-size: 13.5px; line-height: 1.55; }

/* Process */
.tcc-ocean-page .tcc-ocean-process { padding: 116px 0 120px; background: #f7f7f7; }
.tcc-ocean-page .tcc-ocean-process .tcc-section-heading { max-width: 850px; }
.tcc-ocean-page .tcc-ocean-process .tcc-section-heading h2,
.tcc-ocean-page .tcc-ocean-cbm .tcc-section-heading h2,
.tcc-ocean-page .tcc-ocean-cargo-types .tcc-section-heading h2 {
  font-size: clamp(40px,3.8vw,54px);
}
.tcc-ocean-page .tcc-ocean-process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 16px;
  margin-top: 70px;
}
.tcc-ocean-page .tcc-ocean-process-track::before {
  content: "";
  position: absolute;
  left: 6.5%;
  right: 6.5%;
  top: 22px;
  height: 1px;
  background: repeating-linear-gradient(90deg,rgba(222,61,47,.35) 0 5px,transparent 5px 9px);
}
.tcc-ocean-page .tcc-ocean-process-track article { position: relative; z-index: 1; text-align: center; }
.tcc-ocean-page .tcc-ocean-process-num {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(222,61,47,.28);
  border-radius: 50%;
  background: #fff;
  color: var(--tcc-ocean-red);
  font-size: 10px;
  font-weight: 850;
}
.tcc-ocean-page .tcc-ocean-process-icon {
  width: 92px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  background: #fff;
}
.tcc-ocean-page .tcc-ocean-process-icon img { width: 58px; height: 52px; object-fit: contain; }
.tcc-ocean-page .tcc-ocean-process-icon > span { color: var(--tcc-ocean-red); font-size: 24px; font-weight: 850; }
.tcc-ocean-page .tcc-ocean-process-icon--doc > span { font-size: 20px; }
.tcc-ocean-page .tcc-ocean-process-track small { color: var(--tcc-ocean-red); font-size: 9px; font-weight: 850; letter-spacing: .07em; }
.tcc-ocean-page .tcc-ocean-process-track h3 { margin: 6px 0 7px; font-size: 16px; line-height: 1.2; }
.tcc-ocean-page .tcc-ocean-process-track p { margin: 0 auto; max-width: 180px; color: #777; font-size: 12px; line-height: 1.55; }

/* CBM dark block */
.tcc-ocean-page .tcc-ocean-cbm {
  padding: 118px 0 110px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 15%,rgba(222,61,47,.12),transparent 24%),
    radial-gradient(circle at 94% 88%,rgba(222,61,47,.08),transparent 24%),
    #111315;
}
.tcc-ocean-page .tcc-ocean-cbm .tcc-section-heading p { color: #a8a8a8; }
.tcc-ocean-page .tcc-ocean-cbm-grid { display: grid; grid-template-columns: .9fr 1.2fr .9fr; gap: 18px; }
.tcc-ocean-page .tcc-ocean-cbm-grid article {
  position: relative;
  min-height: 310px;
  padding: 28px;
  border: 1px solid #303234;
  border-radius: 22px;
  background: #1a1c1e;
}
.tcc-ocean-page .tcc-ocean-card-index { position: absolute; top: 24px; right: 24px; color: #777; font-size: 10px; font-weight: 850; }
.tcc-ocean-page .tcc-ocean-cbm-icon {
  width: 96px;
  height: 78px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid #3b3e40;
  border-radius: 17px;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
}
.tcc-ocean-page .tcc-ocean-cbm-icon--accent { color: #ff7167; border-color: rgba(222,61,47,.45); }
.tcc-ocean-page .tcc-ocean-cbm-grid h3 { margin: 0 0 8px; font-size: 21px; }
.tcc-ocean-page .tcc-ocean-cbm-grid p { margin: 0; color: #bcbcbc; font-size: 14px; line-height: 1.62; }
.tcc-ocean-page .tcc-ocean-cbm-grid p strong { color: #fff; }
.tcc-ocean-page .tcc-ocean-cbm-example img { width: 180px; height: 115px; object-fit: contain; margin: -2px 0 2px; }
.tcc-ocean-page .tcc-ocean-formula {
  margin-top: 18px;
  padding: 13px 15px;
  border: 1px solid rgba(222,61,47,.45);
  border-radius: 12px;
  background: rgba(222,61,47,.08);
  color: #d8d8d8;
  font-size: 13px;
}
.tcc-ocean-page .tcc-ocean-formula b { float: right; color: #ff756b; }
.tcc-ocean-page .tcc-ocean-cbm-note {
  margin-top: 18px;
  padding: 15px 20px;
  border: 1px solid #2a2c2e;
  border-radius: 14px;
  color: #949494;
  font-size: 11px;
  text-align: center;
}
.tcc-ocean-page .tcc-ocean-cbm-note strong { color: #fff; }

/* Consolidation */
.tcc-ocean-page .tcc-ocean-consolidation { padding: 124px 0; }
.tcc-ocean-page .tcc-ocean-consolidation-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: center; }
.tcc-ocean-page .tcc-ocean-consolidation-copy ul,
.tcc-ocean-page .tcc-ocean-cost-side ul { list-style: none; margin: 28px 0 0; padding: 0; }
.tcc-ocean-page .tcc-ocean-consolidation-copy li { position: relative; padding: 10px 0 10px 31px; border-bottom: 1px solid #ededed; font-size: 14px; font-weight: 700; }
.tcc-ocean-page .tcc-ocean-consolidation-copy li::before { content: "✓"; position: absolute; left: 0; top: 9px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: #fff2ef; color: var(--tcc-ocean-red); font-size: 11px; }
.tcc-ocean-page .tcc-ocean-consolidation-board {
  padding: 26px;
  border: 1px solid #e6e6e6;
  border-radius: 24px;
  background: linear-gradient(135deg,#fafafa 0%,#fff 65%,#fff2ef 100%);
  box-shadow: 0 20px 60px rgba(17,17,17,.07);
}
.tcc-ocean-page .tcc-ocean-supplier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tcc-ocean-page .tcc-ocean-supplier-grid span { min-height: 82px; display: grid; place-items: center; align-content: center; gap: 4px; border: 1px solid #e5e5e5; border-radius: 14px; background: #fff; }
.tcc-ocean-page .tcc-ocean-supplier-grid b { font-size: 14px; }
.tcc-ocean-page .tcc-ocean-supplier-grid small { color: #8c8c8c; font-size: 10px; }
.tcc-ocean-page .tcc-ocean-consolidation-plus { width: 40px; height: 40px; display: grid; place-items: center; margin: 15px auto; border-radius: 50%; background: var(--tcc-ocean-red); color: #fff; font-size: 20px; font-weight: 700; }
.tcc-ocean-page .tcc-ocean-consolidated-box { min-height: 118px; display: flex; align-items: center; gap: 22px; padding: 20px 24px; border: 1px solid rgba(222,61,47,.28); border-radius: 16px; background: #fff; }
.tcc-ocean-page .tcc-ocean-consolidated-box img { width: 72px; }
.tcc-ocean-page .tcc-ocean-consolidated-box div { display: grid; gap: 5px; }
.tcc-ocean-page .tcc-ocean-consolidated-box small { color: var(--tcc-ocean-red); font-size: 9px; font-weight: 850; letter-spacing: .07em; }
.tcc-ocean-page .tcc-ocean-consolidated-box strong { font-size: 22px; }
.tcc-ocean-page .tcc-ocean-consolidated-box span { color: #777; font-size: 11px; }

/* Importer service */
.tcc-ocean-page .tcc-ocean-importer {
  padding: 118px 0 124px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 16%,rgba(222,61,47,.13),transparent 24%),
    radial-gradient(circle at 92% 84%,rgba(222,61,47,.08),transparent 23%),
    #0f1113;
}
.tcc-ocean-page .tcc-ocean-importer-head {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}
.tcc-ocean-page .tcc-ocean-importer-head h2 { max-width: 730px; margin: 12px 0 0; font-size: clamp(40px,3.9vw,56px); line-height: 1.03; letter-spacing: -.045em; }
.tcc-ocean-page .tcc-ocean-importer-head > p { max-width: 500px; margin: 0; color: #aaa; font-size: 15px; line-height: 1.65; }
.tcc-ocean-page .tcc-ocean-importer-flow { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.tcc-ocean-page .tcc-ocean-importer-flow article {
  min-height: 180px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  padding: 23px;
  border: 1px solid #2d3032;
  border-radius: 18px;
  background: #1a1c1e;
}
.tcc-ocean-page .tcc-ocean-importer-flow article > b { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(222,61,47,.12); color: #ff6f65; font-size: 9px; }
.tcc-ocean-page .tcc-ocean-importer-flow article > span { display: block; }
.tcc-ocean-page .tcc-ocean-importer-flow small { display: block; margin: 2px 0 7px; color: #ff756b; font-size: 8px; font-weight: 850; letter-spacing: .08em; }
.tcc-ocean-page .tcc-ocean-importer-flow strong { display: block; font-size: 16px; line-height: 1.2; }
.tcc-ocean-page .tcc-ocean-importer-flow p { margin: 9px 0 0; color: #aaa; font-size: 12.5px; line-height: 1.55; }
.tcc-ocean-page .tcc-ocean-cost-compare {
  display: grid;
  grid-template-columns: 1fr 58px 1fr;
  align-items: stretch;
  margin-top: 54px;
}
.tcc-ocean-page .tcc-ocean-cost-side { padding: 32px; border: 1px solid #2e3032; border-radius: 22px; background: #17191b; }
.tcc-ocean-page .tcc-ocean-cost-side--tcc { border-color: rgba(222,61,47,.42); background: linear-gradient(145deg,#181a1c,#201817); }
.tcc-ocean-page .tcc-ocean-cost-label { display: inline-flex; margin-bottom: 15px; padding: 7px 10px; border: 1px solid #343638; border-radius: 999px; color: #b2b2b2; font-size: 9px; font-weight: 850; letter-spacing: .07em; }
.tcc-ocean-page .tcc-ocean-cost-side--tcc .tcc-ocean-cost-label { border-color: rgba(222,61,47,.34); color: #ff756b; }
.tcc-ocean-page .tcc-ocean-cost-side h3 { max-width: 500px; margin: 0; font-size: 24px; line-height: 1.2; }
.tcc-ocean-page .tcc-ocean-cost-side ul { margin-top: 20px; }
.tcc-ocean-page .tcc-ocean-cost-side li { position: relative; padding: 9px 0 9px 25px; border-bottom: 1px solid #282a2c; color: #bcbcbc; font-size: 13px; line-height: 1.45; }
.tcc-ocean-page .tcc-ocean-cost-side li::before { content: "•"; position: absolute; left: 4px; color: var(--tcc-ocean-red); font-size: 18px; }
.tcc-ocean-page .tcc-ocean-cost-arrow { display: grid; place-items: center; color: #ff6b61; font-size: 30px; }
.tcc-ocean-page .tcc-ocean-importer-note { margin-top: 20px; padding: 16px 20px; border: 1px solid #2b2d2f; border-radius: 14px; color: #959595; font-size: 11.5px; line-height: 1.6; }
.tcc-ocean-page .tcc-ocean-importer-note strong { color: #fff; }
.tcc-ocean-page .tcc-ocean-importer-action { margin-top: 24px; text-align: center; }

/* Cargo types */
.tcc-ocean-page .tcc-ocean-cargo-types { padding: 118px 0 122px; }
.tcc-ocean-page .tcc-ocean-type-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.tcc-ocean-page .tcc-ocean-type-grid article { min-height: 205px; box-shadow: none; }
.tcc-ocean-page .tcc-ocean-restriction-note {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(222,61,47,.22);
  border-radius: 16px;
  background: #fff8f7;
}
.tcc-ocean-page .tcc-ocean-restriction-note strong { font-size: 14px; }
.tcc-ocean-page .tcc-ocean-restriction-note p { margin: 4px 0 0; color: #777; font-size: 11.5px; }
.tcc-ocean-page .tcc-ocean-restriction-note .tcc-button { min-height: 45px; flex: 0 0 auto; }

/* Documents */
.tcc-ocean-page .tcc-ocean-documents { padding: 124px 0; background: #f7f7f7; }
.tcc-ocean-page .tcc-ocean-documents-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 80px; align-items: center; }
.tcc-ocean-page .tcc-ocean-document-board { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 20px; border: 1px solid #e6e6e6; border-radius: 22px; background: #fff; box-shadow: 0 22px 60px rgba(17,17,17,.08); }
.tcc-ocean-page .tcc-ocean-document-board article { min-height: 132px; display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 18px; padding: 18px; border: 1px solid #ececec; border-radius: 15px; }
.tcc-ocean-page .tcc-ocean-document-board article > b { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: #fff2ef; color: var(--tcc-ocean-red); font-size: 11px; }
.tcc-ocean-page .tcc-ocean-document-board h3 { margin: 0 0 4px; font-size: 16px; }
.tcc-ocean-page .tcc-ocean-document-board p { margin: 0; color: #777; font-size: 11.5px; line-height: 1.45; }

/* Platform */
.tcc-ocean-page .tcc-ocean-platform { padding: 122px 0; }
.tcc-ocean-page .tcc-ocean-platform-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 66px; align-items: center; }
.tcc-ocean-page .tcc-ocean-platform-points { margin: 30px 0 24px; }
.tcc-ocean-page .tcc-ocean-platform-points > div { display: grid; grid-template-columns: 34px 1fr; gap: 13px; align-items: center; min-height: 68px; border-bottom: 1px solid #ededed; }
.tcc-ocean-page .tcc-ocean-platform-points b { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #fff2ef; color: var(--tcc-ocean-red); font-size: 9px; }
.tcc-ocean-page .tcc-ocean-platform-points span { display: grid; gap: 1px; }
.tcc-ocean-page .tcc-ocean-platform-points strong { font-size: 14px; }
.tcc-ocean-page .tcc-ocean-platform-points small { color: #898989; font-size: 11px; }
.tcc-ocean-page .tcc-ocean-platform-ui { overflow: hidden; border: 1px solid #e1e1e1; border-radius: 22px; background: #fff; box-shadow: 0 24px 60px rgba(17,17,17,.09); }
.tcc-ocean-page .tcc-ocean-platform-bar { min-height: 56px; display: flex; align-items: center; gap: 7px; padding: 0 20px; border-bottom: 1px solid #e8e8e8; background: #fafafa; }
.tcc-ocean-page .tcc-ocean-platform-bar i { width: 8px; height: 8px; border-radius: 50%; background: #db6b5e; }
.tcc-ocean-page .tcc-ocean-platform-bar i:nth-child(2) { background: #d6b555; }
.tcc-ocean-page .tcc-ocean-platform-bar i:nth-child(3) { background: #7bae7b; }
.tcc-ocean-page .tcc-ocean-platform-bar strong { margin-left: 7px; font-size: 12px; }
.tcc-ocean-page .tcc-ocean-platform-bar small { margin-left: auto; color: var(--tcc-ocean-red); font-size: 10px; font-weight: 800; }
.tcc-ocean-page .tcc-ocean-platform-summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; padding: 18px 18px 0; }
.tcc-ocean-page .tcc-ocean-platform-summary div { min-height: 86px; display: grid; align-content: center; gap: 3px; padding: 14px; border: 1px solid #e8e8e8; border-radius: 14px; }
.tcc-ocean-page .tcc-ocean-platform-summary span { color: #8d8d8d; font-size: 9px; }
.tcc-ocean-page .tcc-ocean-platform-summary strong { font-size: 17px; }
.tcc-ocean-page .tcc-ocean-platform-summary small { color: #999; font-size: 9px; }
.tcc-ocean-page .tcc-ocean-platform-main { display: grid; grid-template-columns: .9fr 1.1fr; gap: 12px; padding: 14px 18px 18px; }
.tcc-ocean-page .tcc-ocean-platform-timeline,
.tcc-ocean-page .tcc-ocean-platform-map { min-height: 240px; border: 1px solid #e8e8e8; border-radius: 14px; }
.tcc-ocean-page .tcc-ocean-platform-timeline { padding: 18px; }
.tcc-ocean-page .tcc-ocean-platform-timeline > div { min-height: 50px; display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: center; }
.tcc-ocean-page .tcc-ocean-platform-timeline > div > b { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid #dedede; border-radius: 50%; color: #bbb; font-size: 10px; }
.tcc-ocean-page .tcc-ocean-platform-timeline .is-done > b { border-color: #65ad73; background: #65ad73; color: #fff; }
.tcc-ocean-page .tcc-ocean-platform-timeline .is-active > b { border-color: var(--tcc-ocean-red); color: var(--tcc-ocean-red); }
.tcc-ocean-page .tcc-ocean-platform-timeline span { display: grid; }
.tcc-ocean-page .tcc-ocean-platform-timeline strong { font-size: 11px; }
.tcc-ocean-page .tcc-ocean-platform-timeline small { color: #999; font-size: 8px; }
.tcc-ocean-page .tcc-ocean-platform-map { display: grid; place-items: center; overflow: hidden; background: #fafafa; }
.tcc-ocean-page .tcc-ocean-platform-map img { width: 91%; max-height: 215px; object-fit: contain; }
.tcc-ocean-page .tcc-ocean-platform-bottom { min-height: 48px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 0 18px; border-top: 1px solid #ececec; color: #999; font-size: 9px; }
.tcc-ocean-page .tcc-ocean-platform-bottom b { color: var(--tcc-ocean-red); }

/* Departure */
.tcc-ocean-page .tcc-ocean-departure { padding: 74px 0; color: #fff; background: linear-gradient(110deg,#101214 0%,#111315 62%,#2a1716 100%); }
.tcc-ocean-page .tcc-ocean-departure-inner { display: grid; grid-template-columns: .8fr 1.35fr auto; gap: 34px; align-items: center; }
.tcc-ocean-page .tcc-ocean-departure-copy h2 { margin: 8px 0 8px; font-size: 32px; line-height: 1.05; letter-spacing: -.03em; }
.tcc-ocean-page .tcc-ocean-departure-copy p { margin: 0; color: #a8a8a8; font-size: 13px; line-height: 1.55; }
.tcc-ocean-page .tcc-ocean-departure-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.tcc-ocean-page .tcc-ocean-departure-stats div { min-height: 64px; display: grid; align-content: center; gap: 3px; padding: 12px 15px; border: 1px solid #303335; border-radius: 12px; background: #1a1c1e; }
.tcc-ocean-page .tcc-ocean-departure-stats small { color: #7f8587; font-size: 8px; font-weight: 800; }
.tcc-ocean-page .tcc-ocean-departure-stats strong { font-size: 12px; }

/* FAQ */
.tcc-ocean-page .tcc-ocean-faq { padding: 120px 0 108px; background: #f7f7f7; }
.tcc-ocean-page .tcc-ocean-faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.tcc-ocean-page .tcc-ocean-faq-copy { position: sticky; top: 174px; }
.tcc-ocean-page .tcc-ocean-faq-list { overflow: hidden; border: 1px solid #e2e2e2; border-radius: 22px; background: #fff; box-shadow: 0 20px 55px rgba(17,17,17,.07); }
.tcc-ocean-page .tcc-ocean-faq-list .tcc-faq-item { border-bottom: 1px solid #ececec; }
.tcc-ocean-page .tcc-ocean-faq-list .tcc-faq-item:last-child { border-bottom: 0; }
.tcc-ocean-page .tcc-ocean-faq-list .tcc-faq-item button {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: #151515;
  text-align: left;
  cursor: pointer;
}
.tcc-ocean-page .tcc-ocean-faq-list .tcc-faq-item button > span { display: flex; align-items: center; gap: 16px; min-width: 0; font-size: 15px; font-weight: 800; line-height: 1.35; }
.tcc-ocean-page .tcc-ocean-faq-list .tcc-faq-item button em { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(222,61,47,.22); border-radius: 50%; color: var(--tcc-ocean-red); font-size: 9px; font-style: normal; font-weight: 750; }
.tcc-ocean-page .tcc-ocean-faq-list .tcc-faq-item button > b { color: var(--tcc-ocean-red); font-size: 19px; font-weight: 400; }
.tcc-ocean-page .tcc-ocean-faq-list .tcc-faq-item.is-open button { border-bottom: 1px solid rgba(222,61,47,.18); background: #fffdfc; }
.tcc-ocean-page .tcc-ocean-faq-list .tcc-faq-answer { padding: 12px 56px 24px 70px; }
.tcc-ocean-page .tcc-ocean-faq-list .tcc-faq-answer p { max-width: 690px; margin: 0; color: #707070; font-size: 13.5px; line-height: 1.7; }
.tcc-ocean-page .tcc-ocean-faq-list .tcc-faq-answer strong { color: #202020; font-weight: 800; }

/* Final CTA */
.tcc-ocean-page .tcc-ocean-final-cta {
  padding: 94px 0 90px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 0 10%,rgba(222,61,47,.12),transparent 25%),
    radial-gradient(circle at 100% 85%,rgba(222,61,47,.09),transparent 24%),
    #0d0f10;
}
.tcc-ocean-page .tcc-ocean-final-cta .tcc-eyebrow { margin-bottom: 15px; }
.tcc-ocean-page .tcc-ocean-final-route { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 0 auto 24px; color: #fff; font-size: 9px; font-weight: 850; letter-spacing: .06em; }
.tcc-ocean-page .tcc-ocean-final-route i { width: 52px; height: 1px; background: repeating-linear-gradient(90deg,var(--tcc-ocean-red) 0 4px,transparent 4px 7px); }
.tcc-ocean-page .tcc-ocean-final-route b { color: #fff; }
.tcc-ocean-page .tcc-ocean-final-cta h2 { max-width: 920px; margin: 0 auto 18px; font-size: clamp(44px,4.9vw,64px); line-height: 1.02; letter-spacing: -.046em; }
.tcc-ocean-page .tcc-ocean-final-cta p { max-width: 750px; margin: 0 auto; color: #aaa; font-size: 15px; line-height: 1.6; }
.tcc-ocean-page .tcc-ocean-final-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

/* Tablet */
@media (max-width: 1024px) {
  .tcc-ocean-page { --tcc-ocean-sticky-offset: 78px; }
  .tcc-ocean-page .tcc-ocean-hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 38px; padding-top: 72px; padding-bottom: 64px; }
  .tcc-ocean-page .tcc-ocean-hero-copy { max-width: 760px; }
  .tcc-ocean-page .tcc-ocean-hero-copy h1 { max-width: 760px; font-size: clamp(48px,6vw,62px); }
  .tcc-ocean-page .tcc-ocean-hero-visual { max-width: 820px; width: 100%; margin-inline: auto; }
  .tcc-ocean-page .tcc-ocean-subnav .tcc-container { justify-content: flex-start; padding-inline: 8px; gap: 28px; }
  .tcc-ocean-page .tcc-ocean-fit-grid,
  .tcc-ocean-page .tcc-ocean-consolidation-grid,
  .tcc-ocean-page .tcc-ocean-documents-grid,
  .tcc-ocean-page .tcc-ocean-platform-grid,
  .tcc-ocean-page .tcc-ocean-faq-grid { grid-template-columns: 1fr; gap: 46px; }
  .tcc-ocean-page .tcc-ocean-fit-copy p,
  .tcc-ocean-page .tcc-ocean-consolidation-copy > p,
  .tcc-ocean-page .tcc-ocean-documents-copy > p,
  .tcc-ocean-page .tcc-ocean-platform-copy > p,
  .tcc-ocean-page .tcc-ocean-faq-copy > p { max-width: 680px; }
  .tcc-ocean-page .tcc-ocean-process-track { grid-template-columns: repeat(3,1fr); row-gap: 42px; }
  .tcc-ocean-page .tcc-ocean-process-track::before { display: none; }
  .tcc-ocean-page .tcc-ocean-cbm-grid { grid-template-columns: 1fr 1.2fr 1fr; }
  .tcc-ocean-page .tcc-ocean-importer-head { grid-template-columns: 1fr; gap: 22px; }
  .tcc-ocean-page .tcc-ocean-importer-head > p { max-width: 720px; }
  .tcc-ocean-page .tcc-ocean-importer-flow { grid-template-columns: 1fr 1fr; }
  .tcc-ocean-page .tcc-ocean-type-grid { grid-template-columns: 1fr 1fr; }
  .tcc-ocean-page .tcc-ocean-faq-copy { position: static; }
  .tcc-ocean-page .tcc-ocean-departure-inner { grid-template-columns: .8fr 1.2fr; }
  .tcc-ocean-page .tcc-ocean-departure-inner > .tcc-button { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 820px) {
  .tcc-ocean-page .tcc-container { width: min(calc(100% - 40px),var(--tcc-container)); }
  .tcc-ocean-page .tcc-section { padding-top: 88px; padding-bottom: 88px; }
  .tcc-ocean-page .tcc-ocean-hero-copy h1 { font-size: clamp(44px,8.5vw,58px); }
  .tcc-ocean-page .tcc-ocean-hero-trust { grid-template-columns: 1fr 1fr; }
  .tcc-ocean-page .tcc-ocean-visual-head { grid-template-columns: 128px 1fr auto; padding-inline: 18px; }
  .tcc-ocean-page .tcc-ocean-mini-brand img { width: 116px; }
  .tcc-ocean-page .tcc-ocean-ship-stage { min-height: 300px; margin-inline: 16px; }
  .tcc-ocean-page .tcc-ocean-visual-stats strong { font-size: 12px; }
  .tcc-ocean-page .tcc-ocean-process-track { grid-template-columns: 1fr 1fr; }
  .tcc-ocean-page .tcc-ocean-cbm-grid { grid-template-columns: 1fr; }
  .tcc-ocean-page .tcc-ocean-cbm-grid article { min-height: 250px; }
  .tcc-ocean-page .tcc-ocean-cbm-example img { width: 190px; }
  .tcc-ocean-page .tcc-ocean-cost-compare { grid-template-columns: 1fr; gap: 18px; }
  .tcc-ocean-page .tcc-ocean-cost-arrow { transform: rotate(90deg); min-height: 28px; }
  .tcc-ocean-page .tcc-ocean-platform-main { grid-template-columns: 1fr; }
  .tcc-ocean-page .tcc-ocean-platform-map { min-height: 220px; }
  .tcc-ocean-page .tcc-ocean-departure-inner { grid-template-columns: 1fr; }
  .tcc-ocean-page .tcc-ocean-departure-stats { max-width: 620px; }
  .tcc-ocean-page .tcc-ocean-faq-list .tcc-faq-answer { padding: 10px 24px 22px 70px; }
}

/* Mobile */
@media (max-width: 620px) {
  .tcc-ocean-page { --tcc-ocean-sticky-offset: 74px; }
  .tcc-ocean-page .tcc-container { width: min(calc(100% - 32px),var(--tcc-container)); }
  .tcc-ocean-page .tcc-ocean-hero-grid { padding-top: 52px; padding-bottom: 48px; gap: 32px; }
  .tcc-ocean-page .tcc-ocean-hero-copy h1 { margin-top: 13px; font-size: clamp(39px,11.6vw,48px); line-height: 1.01; }
  .tcc-ocean-page .tcc-ocean-hero-lead { font-size: 15px; line-height: 1.58; }
  .tcc-ocean-page .tcc-ocean-hero-actions { display: grid; grid-template-columns: 1fr; }
  .tcc-ocean-page .tcc-ocean-hero-actions .tcc-button { width: 100%; }
  .tcc-ocean-page .tcc-ocean-hero-trust { grid-template-columns: 1fr 1fr; }
  .tcc-ocean-page .tcc-ocean-hero-trust span { min-height: 52px; padding-top: 14px; font-size: 10.5px; }
  .tcc-ocean-page .tcc-ocean-visual-shell { border-radius: 18px; }
  .tcc-ocean-page .tcc-ocean-visual-head { min-height: 82px; grid-template-columns: 1fr auto; gap: 6px 12px; padding: 10px 14px; }
  .tcc-ocean-page .tcc-ocean-mini-brand { grid-column: 1 / -1; }
  .tcc-ocean-page .tcc-ocean-mini-brand img { width: 100px; }
  .tcc-ocean-page .tcc-ocean-visual-head > span { font-size: 12px; }
  .tcc-ocean-page .tcc-ocean-visual-head > small { font-size: 8px; }
  .tcc-ocean-page .tcc-ocean-route-row { padding: 16px 14px 10px; gap: 10px; }
  .tcc-ocean-page .tcc-ocean-route-row strong { font-size: 13px; }
  .tcc-ocean-page .tcc-ocean-ship-stage { min-height: 230px; margin: 0 10px 12px; }
  .tcc-ocean-page .tcc-ocean-ship-stage img { width: 98%; }
  .tcc-ocean-page .tcc-ocean-visual-stats { grid-template-columns: 1fr; }
  .tcc-ocean-page .tcc-ocean-visual-stats div { min-height: 60px; border-right: 0; border-bottom: 1px solid #ededed; }
  .tcc-ocean-page .tcc-ocean-visual-stats div:last-child { border-bottom: 0; }
  .tcc-ocean-page .tcc-ocean-visual-caption { font-size: 8.5px; }

  .tcc-ocean-page .tcc-ocean-subnav .tcc-container { min-height: 52px; width: 100%; padding-inline: 16px; gap: 22px; }
  .tcc-ocean-page .tcc-ocean-subnav a { font-size: 11px; }

  .tcc-ocean-page .tcc-ocean-fit-copy h2,
  .tcc-ocean-page .tcc-ocean-consolidation-copy h2,
  .tcc-ocean-page .tcc-ocean-documents-copy h2,
  .tcc-ocean-page .tcc-ocean-platform-copy h2,
  .tcc-ocean-page .tcc-ocean-faq-copy h2 { font-size: 40px; }
  .tcc-ocean-page .tcc-ocean-fit-copy p,
  .tcc-ocean-page .tcc-ocean-consolidation-copy > p,
  .tcc-ocean-page .tcc-ocean-documents-copy > p,
  .tcc-ocean-page .tcc-ocean-platform-copy > p,
  .tcc-ocean-page .tcc-ocean-faq-copy > p { font-size: 15px; }
  .tcc-ocean-page .tcc-ocean-fit-cards { grid-template-columns: 1fr; }
  .tcc-ocean-page .tcc-ocean-fit-cards article { min-height: 158px; }

  .tcc-ocean-page .tcc-ocean-process .tcc-section-heading h2,
  .tcc-ocean-page .tcc-ocean-cbm .tcc-section-heading h2,
  .tcc-ocean-page .tcc-ocean-cargo-types .tcc-section-heading h2 { font-size: 37px; }
  .tcc-ocean-page .tcc-section-heading p { font-size: 15px; }
  .tcc-ocean-page .tcc-ocean-process-track { grid-template-columns: 1fr; gap: 12px; margin-top: 42px; }
  .tcc-ocean-page .tcc-ocean-process-track article { display: grid; grid-template-columns: 34px 60px minmax(0,1fr); gap: 10px; align-items: center; padding: 13px; border: 1px solid #e6e6e6; border-radius: 16px; background: #fff; text-align: left; }
  .tcc-ocean-page .tcc-ocean-process-num { width: 34px; height: 34px; margin: 0; }
  .tcc-ocean-page .tcc-ocean-process-icon { width: 58px; height: 54px; margin: 0; }
  .tcc-ocean-page .tcc-ocean-process-icon img { width: 42px; height: 39px; }
  .tcc-ocean-page .tcc-ocean-process-icon > span { font-size: 17px; }
  .tcc-ocean-page .tcc-ocean-process-track small,
  .tcc-ocean-page .tcc-ocean-process-track h3,
  .tcc-ocean-page .tcc-ocean-process-track p { grid-column: 3; }
  .tcc-ocean-page .tcc-ocean-process-track small { align-self: end; margin-bottom: -4px; }
  .tcc-ocean-page .tcc-ocean-process-track h3 { margin: 0; font-size: 15px; }
  .tcc-ocean-page .tcc-ocean-process-track p { max-width: none; font-size: 11.5px; }

  .tcc-ocean-page .tcc-ocean-cbm { padding-top: 84px; padding-bottom: 84px; }
  .tcc-ocean-page .tcc-ocean-cbm-grid article { min-height: auto; padding: 24px; }
  .tcc-ocean-page .tcc-ocean-cbm-example img { width: 170px; height: 115px; }
  .tcc-ocean-page .tcc-ocean-formula { display: grid; gap: 4px; }
  .tcc-ocean-page .tcc-ocean-formula b { float: none; }

  .tcc-ocean-page .tcc-ocean-supplier-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .tcc-ocean-page .tcc-ocean-supplier-grid span { min-height: 72px; }
  .tcc-ocean-page .tcc-ocean-consolidation-board { padding: 15px; }
  .tcc-ocean-page .tcc-ocean-consolidated-box { padding: 16px; gap: 14px; }
  .tcc-ocean-page .tcc-ocean-consolidated-box img { width: 56px; }
  .tcc-ocean-page .tcc-ocean-consolidated-box strong { font-size: 16px; }

  .tcc-ocean-page .tcc-ocean-importer { padding-top: 86px; padding-bottom: 90px; }
  .tcc-ocean-page .tcc-ocean-importer-head h2 { font-size: 38px; }
  .tcc-ocean-page .tcc-ocean-importer-head > p { font-size: 14px; }
  .tcc-ocean-page .tcc-ocean-importer-flow { grid-template-columns: 1fr; }
  .tcc-ocean-page .tcc-ocean-importer-flow article { min-height: 150px; }
  .tcc-ocean-page .tcc-ocean-cost-side { padding: 24px; }
  .tcc-ocean-page .tcc-ocean-cost-side h3 { font-size: 21px; }
  .tcc-ocean-page .tcc-ocean-importer-action .tcc-button { width: 100%; }

  .tcc-ocean-page .tcc-ocean-type-grid { grid-template-columns: 1fr; }
  .tcc-ocean-page .tcc-ocean-type-grid article { min-height: 165px; }
  .tcc-ocean-page .tcc-ocean-restriction-note { align-items: stretch; flex-direction: column; }
  .tcc-ocean-page .tcc-ocean-restriction-note .tcc-button { width: 100%; }

  .tcc-ocean-page .tcc-ocean-document-board { grid-template-columns: 1fr; padding: 12px; }
  .tcc-ocean-page .tcc-ocean-document-board article { min-height: 108px; }
  .tcc-ocean-page .tcc-ocean-platform-summary { grid-template-columns: 1fr; }
  .tcc-ocean-page .tcc-ocean-platform-main { padding-inline: 12px; }
  .tcc-ocean-page .tcc-ocean-platform-bottom { align-items: flex-start; flex-direction: column; padding-top: 12px; padding-bottom: 12px; }

  .tcc-ocean-page .tcc-ocean-departure { padding: 62px 0; }
  .tcc-ocean-page .tcc-ocean-departure-stats { grid-template-columns: 1fr 1fr; }
  .tcc-ocean-page .tcc-ocean-departure-inner > .tcc-button { width: 100%; }

  .tcc-ocean-page .tcc-ocean-faq { padding-top: 86px; padding-bottom: 74px; }
  .tcc-ocean-page .tcc-ocean-faq-list .tcc-faq-item button { min-height: 70px; gap: 12px; padding: 0 14px; }
  .tcc-ocean-page .tcc-ocean-faq-list .tcc-faq-item button > span { align-items: flex-start; gap: 11px; font-size: 14px; }
  .tcc-ocean-page .tcc-ocean-faq-list .tcc-faq-item button em { flex-basis: 30px; width: 30px; height: 30px; margin-top: -2px; }
  .tcc-ocean-page .tcc-ocean-faq-list .tcc-faq-answer { padding: 10px 14px 22px; }
  .tcc-ocean-page .tcc-ocean-faq-list .tcc-faq-answer p { font-size: 13.5px; line-height: 1.68; }

  .tcc-ocean-page .tcc-ocean-final-cta { padding: 70px 0 66px; }
  .tcc-ocean-page .tcc-ocean-final-cta h2 { font-size: 40px; }
  .tcc-ocean-page .tcc-ocean-final-cta p { font-size: 14px; }
  .tcc-ocean-page .tcc-ocean-final-actions { display: grid; grid-template-columns: 1fr; }
  .tcc-ocean-page .tcc-ocean-final-actions .tcc-button { width: 100%; }
}

@media (max-width: 430px) {
  .tcc-ocean-page .tcc-container { width: min(calc(100% - 28px),var(--tcc-container)); }
  .tcc-ocean-page .tcc-ocean-hero-copy h1 { font-size: 39px; }
  .tcc-ocean-page .tcc-ocean-hero-trust { grid-template-columns: 1fr; }
  .tcc-ocean-page .tcc-ocean-ship-stage { min-height: 205px; }
  .tcc-ocean-page .tcc-ocean-fit-copy h2,
  .tcc-ocean-page .tcc-ocean-consolidation-copy h2,
  .tcc-ocean-page .tcc-ocean-documents-copy h2,
  .tcc-ocean-page .tcc-ocean-platform-copy h2,
  .tcc-ocean-page .tcc-ocean-faq-copy h2 { font-size: 37px; }
  .tcc-ocean-page .tcc-ocean-supplier-grid { grid-template-columns: 1fr; }
  .tcc-ocean-page .tcc-ocean-departure-stats { grid-template-columns: 1fr; }
  .tcc-ocean-page .tcc-ocean-final-route i { width: 30px; }
  .tcc-ocean-page .tcc-ocean-final-cta h2 { font-size: 37px; }
}


/* =========================================================
   TCC Web v1.4.1 — Carga Marítima LCL Desktop Polish
   Scoped to .tcc-ocean-page to preserve approved pages.
   ========================================================= */
.tcc-ocean-page .tcc-ocean-ship-stage { min-height: 390px; padding: 18px 22px 10px; overflow: hidden; }
.tcc-ocean-page .tcc-ocean-ship-stage img { width: 100%; max-width: 640px; max-height: 365px; object-fit: contain; filter: saturate(.98) contrast(1.01); }
.tcc-ocean-page .tcc-ocean-visual-stats strong { line-height: 1.25; }
.tcc-ocean-page .tcc-ocean-transit-note { max-width: 650px; margin: 11px auto 0; padding: 0 10px; color: #777; font-size: 10px; line-height: 1.55; text-align: center; }
.tcc-ocean-page .tcc-ocean-transit-note strong { color: #333; }
.tcc-ocean-page .tcc-ocean-cbm-grid article { display: flex; flex-direction: column; }
.tcc-ocean-page .tcc-ocean-cbm-visual { position: relative; display: grid; place-items: center; width: 100%; margin: 2px 0 16px; border-radius: 14px; overflow: hidden; background: #17191b; }
.tcc-ocean-page .tcc-ocean-cbm-visual--main { height: 145px; }
.tcc-ocean-page .tcc-ocean-cbm-visual--compact { height: 122px; }
.tcc-ocean-page .tcc-ocean-cbm-visual img { display: block; width: 100%; height: 100%; object-fit: contain; }
.tcc-ocean-page .tcc-ocean-cbm-visual--main img { width: 150px; height: 150px; }
.tcc-ocean-page .tcc-ocean-cbm-visual--compact img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.tcc-ocean-page .tcc-ocean-cbm-card--measure .tcc-ocean-cbm-visual img { object-position: center 47%; }
.tcc-ocean-page .tcc-ocean-cbm-card--operation .tcc-ocean-cbm-visual img { object-position: center 44%; }
.tcc-ocean-page .tcc-ocean-consolidation-board--visual { padding: 18px; overflow: hidden; }
.tcc-ocean-page .tcc-ocean-consolidation-board--visual > img { display: block; width: 100%; max-height: 360px; object-fit: contain; border-radius: 16px; }
.tcc-ocean-page .tcc-ocean-consolidation-summary { display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-top: 10px; padding: 12px 14px; border: 1px solid rgba(222,61,47,.18); border-radius: 12px; background: #fffaf8; }
.tcc-ocean-page .tcc-ocean-consolidation-summary strong { color: #1a1a1a; font-size: 14px; }
.tcc-ocean-page .tcc-ocean-consolidation-summary span { color: #777; font-size: 11px; }
@media (max-width: 980px) { .tcc-ocean-page .tcc-ocean-ship-stage { min-height: 320px; } .tcc-ocean-page .tcc-ocean-consolidation-board--visual > img { max-height: 420px; } }
@media (max-width: 640px) { .tcc-ocean-page .tcc-ocean-ship-stage { min-height: 245px; padding: 10px 8px; } .tcc-ocean-page .tcc-ocean-transit-note { font-size: 9.5px; text-align: left; padding: 0 2px; } .tcc-ocean-page .tcc-ocean-cbm-visual--main, .tcc-ocean-page .tcc-ocean-cbm-visual--compact { height: 160px; } .tcc-ocean-page .tcc-ocean-cbm-visual--main img { width: 165px; height: 165px; } .tcc-ocean-page .tcc-ocean-consolidation-summary { align-items: flex-start; flex-direction: column; } }

/* =========================================================
   TCC Web v1.4.2 — Carga Marítima LCL Desktop Polish
   Scoped to .tcc-ocean-page to preserve approved pages.
   ========================================================= */
.tcc-ocean-page .tcc-ocean-cbm-grid { align-items: stretch; }
.tcc-ocean-page .tcc-ocean-cbm-grid article { min-height: 298px; }
.tcc-ocean-page .tcc-ocean-cbm-visual {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.05);
  background: linear-gradient(180deg,#181a1c 0%,#151719 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
}
.tcc-ocean-page .tcc-ocean-cbm-visual--main { height: 134px; }
.tcc-ocean-page .tcc-ocean-cbm-visual--compact { height: 108px; }
.tcc-ocean-page .tcc-ocean-cbm-visual img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}
.tcc-ocean-page .tcc-ocean-cbm-visual--main img { max-width: 172px; max-height: 108px; }
.tcc-ocean-page .tcc-ocean-cbm-card--measure .tcc-ocean-cbm-visual img { max-width: 188px; max-height: 92px; }
.tcc-ocean-page .tcc-ocean-cbm-card--operation .tcc-ocean-cbm-visual img { max-width: 194px; max-height: 96px; }
.tcc-ocean-page .tcc-ocean-cbm-grid h3 { line-height: 1.16; }
.tcc-ocean-page .tcc-ocean-cbm-grid p { max-width: 29ch; }
.tcc-ocean-page .tcc-ocean-cbm-example p { max-width: 34ch; }
@media (max-width: 980px) {
  .tcc-ocean-page .tcc-ocean-cbm-grid article { min-height: auto; }
}
@media (max-width: 640px) {
  .tcc-ocean-page .tcc-ocean-cbm-visual { padding: 14px; }
  .tcc-ocean-page .tcc-ocean-cbm-visual--main,
  .tcc-ocean-page .tcc-ocean-cbm-visual--compact { height: 150px; }
  .tcc-ocean-page .tcc-ocean-cbm-visual--main img { max-width: 220px; max-height: 132px; }
  .tcc-ocean-page .tcc-ocean-cbm-card--measure .tcc-ocean-cbm-visual img,
  .tcc-ocean-page .tcc-ocean-cbm-card--operation .tcc-ocean-cbm-visual img { max-width: 220px; max-height: 126px; }
}

/* =========================================================
   TCC Web v1.4.3 · Carga Marítima LCL · Hero polish
   Scope intentionally limited to .tcc-ocean-page.
   ========================================================= */
.tcc-ocean-page .tcc-ocean-route-row i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tcc-ocean-page .tcc-ocean-route-row i em {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(222,61,47,.2);
  border-radius: 999px;
  background: #fff;
  color: var(--tcc-ocean-red);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .09em;
  box-shadow: 0 4px 12px rgba(17,17,17,.05);
}
.tcc-ocean-page .tcc-ocean-ship-stage {
  min-height: 390px;
  padding: 10px 6px 4px;
  background:
    radial-gradient(circle at 72% 30%,rgba(222,61,47,.055),transparent 28%),
    linear-gradient(180deg,#fff 0%,#fbfbfb 100%);
}
.tcc-ocean-page .tcc-ocean-ship-stage img {
  width: min(98%,760px);
  max-height: 378px;
  object-fit: contain;
  filter: saturate(.97) contrast(1.01);
}

@media (max-width: 980px) {
  .tcc-ocean-page .tcc-ocean-ship-stage {
    min-height: 360px;
  }
  .tcc-ocean-page .tcc-ocean-ship-stage img {
    width: min(96%,700px);
    max-height: 344px;
  }
}

@media (max-width: 680px) {
  .tcc-ocean-page .tcc-ocean-route-row i em {
    min-width: 36px;
    height: 22px;
    font-size: 8px;
  }
  .tcc-ocean-page .tcc-ocean-ship-stage {
    min-height: 282px;
    margin-inline: 14px;
    padding: 8px 2px 2px;
  }
  .tcc-ocean-page .tcc-ocean-ship-stage img {
    width: 100%;
    max-height: 270px;
  }
}

/* ==========================================================================\n   TCC Web v1.5.0 · Contenedor Completo FCL\n   Scoped to .tcc-fcl-page so approved pages remain untouched.\n   ========================================================================== */
.tcc-fcl-page { overflow: clip; background: #fff; }
.tcc-fcl-page strong { font-weight: 780; }
.tcc-fcl-page .tcc-section { scroll-margin-top: 150px; }

/* Hero */
.tcc-fcl-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--tcc-border);
  background:
    radial-gradient(circle at 88% 20%, rgba(229,37,33,.09), transparent 25%),
    radial-gradient(circle at 72% 70%, rgba(229,37,33,.035), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
}
.tcc-fcl-hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(229,37,33,.08);
  border-radius: 50%;
  right: -170px;
  bottom: -160px;
}
.tcc-fcl-hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr);
  gap: 58px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 42px;
}
.tcc-fcl-hero-copy { position: relative; z-index: 2; }
.tcc-fcl-hero h1 {
  max-width: 570px;
  margin: 16px 0 22px;
  font-size: clamp(52px,4.55vw,66px);
  line-height: .99;
  letter-spacing: -.052em;
  font-weight: 820;
}
.tcc-fcl-hero h1 span { color: #d9412d; }
.tcc-fcl-hero-lead {
  max-width: 590px;
  margin: 0;
  color: #666;
  font-size: 17px;
  line-height: 1.68;
}
.tcc-fcl-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.tcc-fcl-hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 26px;
  color: #323232;
  font-size: 12px;
  font-weight: 720;
}
.tcc-fcl-hero-trust span { position: relative; padding-left: 14px; }
.tcc-fcl-hero-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d9412d;
}
.tcc-fcl-hero-visual { position: relative; z-index: 2; }
.tcc-fcl-visual-shell {
  border: 1px solid #dedede;
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(17,17,17,.10);
}
.tcc-fcl-visual-head {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  border-bottom: 1px solid #ececec;
}
.tcc-fcl-mini-brand img { width: 130px; height: auto; }
.tcc-fcl-visual-head > span { font-size: 15px; font-weight: 800; text-align: center; }
.tcc-fcl-visual-head > small { justify-self: end; color: #d9412d; font-size: 10px; font-weight: 850; letter-spacing: .13em; }
.tcc-fcl-route-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 24px 8px;
}
.tcc-fcl-route-row > span { display: grid; gap: 1px; }
.tcc-fcl-route-row > span:last-child { text-align: right; }
.tcc-fcl-route-row small { color: #8a8a8a; font-size: 9px; font-weight: 800; letter-spacing: .11em; }
.tcc-fcl-route-row strong { font-size: 15px; }
.tcc-fcl-route-row i {
  position: relative;
  display: block;
  height: 1px;
  border-top: 1px dashed rgba(217,65,45,.72);
}
.tcc-fcl-route-row i::before,
.tcc-fcl-route-row i::after { content: ""; position: absolute; top: -4px; width: 7px; height: 7px; border-radius: 50%; background: #d9412d; }
.tcc-fcl-route-row i::before { left: 0; }
.tcc-fcl-route-row i::after { right: 0; }
.tcc-fcl-route-row em {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  padding: 3px 10px;
  border: 1px solid rgba(217,65,45,.22);
  border-radius: 999px;
  background: #fff;
  color: #d9412d;
  font-size: 9px;
  font-style: normal;
  font-weight: 850;
}
.tcc-fcl-stage { padding: 10px 20px 16px; }
.tcc-fcl-stage img { width: 100%; max-height: 365px; object-fit: contain; }
.tcc-fcl-visual-stats { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #ececec; }
.tcc-fcl-visual-stats > div { min-height: 66px; display: grid; align-content: center; gap: 3px; padding: 12px 18px; border-right: 1px solid #ececec; }
.tcc-fcl-visual-stats > div:last-child { border-right: 0; }
.tcc-fcl-visual-stats small { color: #858585; font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.tcc-fcl-visual-stats strong { font-size: 13px; }
.tcc-fcl-visual-caption { margin-top: 12px; text-align: center; font-size: 10px; font-weight: 800; letter-spacing: .08em; color: #333; }
.tcc-fcl-visual-caption b { margin: 0 7px; color: #d9412d; }
.tcc-fcl-transit-note { max-width: 690px; margin: 12px auto 0; text-align: center; color: #888; font-size: 9.5px; line-height: 1.55; }

/* Subnav */
.tcc-fcl-subnav { position: sticky; top: 78px; z-index: 80; border-bottom: 1px solid #ececec; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); }
.tcc-fcl-subnav .tcc-container { min-height: 62px; display: flex; justify-content: center; align-items: center; gap: 42px; overflow-x: auto; scrollbar-width: none; }
.tcc-fcl-subnav .tcc-container::-webkit-scrollbar { display: none; }
.tcc-fcl-subnav a { flex: 0 0 auto; font-size: 12px; font-weight: 730; color: #333; }
.tcc-fcl-subnav a:hover { color: var(--tcc-red); }

/* When FCL */
.tcc-fcl-fit { background: #fff; }
.tcc-fcl-fit-grid { display: grid; grid-template-columns: .93fr 1.07fr; gap: 80px; align-items: center; }
.tcc-fcl-fit-copy h2,
.tcc-fcl-multiprovider-copy h2,
.tcc-fcl-documents-copy h2,
.tcc-fcl-platform-copy h2,
.tcc-fcl-faq-copy h2 {
  margin: 12px 0 20px;
  font-size: clamp(42px,4vw,56px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.tcc-fcl-fit-copy > p,
.tcc-fcl-multiprovider-copy > p,
.tcc-fcl-documents-copy > p,
.tcc-fcl-platform-copy > p,
.tcc-fcl-faq-copy > p { margin: 0; color: #686868; font-size: 17px; line-height: 1.7; }
.tcc-fcl-text-link { display: inline-flex; gap: 12px; align-items: center; margin-top: 26px; color: #d9412d; font-weight: 800; font-size: 14px; }
.tcc-fcl-fit-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.tcc-fcl-fit-cards article,
.tcc-fcl-type-grid article { min-height: 182px; padding: 26px; border: 1px solid #e6e6e6; border-radius: 20px; background: #fff; box-shadow: 0 14px 34px rgba(17,17,17,.025); }
.tcc-fcl-fit-cards article > span,
.tcc-fcl-type-grid article > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: #fff1ef; color: #d9412d; font-size: 10px; font-weight: 850; }
.tcc-fcl-fit-cards h3,
.tcc-fcl-type-grid h3 { margin: 24px 0 8px; font-size: 18px; line-height: 1.12; letter-spacing: -.02em; }
.tcc-fcl-fit-cards p,
.tcc-fcl-type-grid p { margin: 0; color: #777; font-size: 13px; line-height: 1.55; }

/* Equipment */
.tcc-fcl-equipment { background: radial-gradient(circle at 85% 50%, rgba(217,65,45,.12), transparent 28%), #101214; color: #fff; }
.tcc-fcl-equipment-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 18px; }
.tcc-fcl-equipment-card { position: relative; padding: 22px; border: 1px solid #303437; border-radius: 22px; background: #1a1d1f; }
.tcc-fcl-equipment-card--featured { border-color: rgba(217,65,45,.55); background: linear-gradient(135deg,#1b1e20,#201817); }
.tcc-fcl-card-index { position: absolute; top: 18px; right: 20px; color: #747b80; font-size: 11px; font-weight: 850; }
.tcc-fcl-equipment-visual { overflow: hidden; border-radius: 16px; }
.tcc-fcl-equipment-visual img { width: 100%; height: 225px; object-fit: cover; }
.tcc-fcl-equipment-copy { display: grid; grid-template-columns: 1fr auto; gap: 14px 24px; align-items: end; padding: 22px 4px 4px; }
.tcc-fcl-equipment-copy small { color: #e06b5a; font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.tcc-fcl-equipment-copy h3 { margin: 3px 0 0; font-size: 34px; letter-spacing: -.04em; }
.tcc-fcl-equipment-copy > strong { align-self: center; color: #fff; font-size: 17px; }
.tcc-fcl-equipment-copy p { grid-column: 1 / -1; margin: 0; color: #aeb2b5; font-size: 14px; line-height: 1.6; }
.tcc-fcl-equipment-note { margin-top: 16px; padding: 15px 20px; border: 1px solid #2b2f31; border-radius: 14px; color: #8f969a; font-size: 11px; text-align: center; }
.tcc-fcl-equipment-note strong { color: #fff; }

/* Process */
.tcc-fcl-process { background: #f8f8f8; }
.tcc-fcl-process-track { position: relative; display: grid; grid-template-columns: repeat(6,1fr); gap: 20px; padding-top: 24px; }
.tcc-fcl-process-track::before { content: ""; position: absolute; left: 7%; right: 7%; top: 44px; border-top: 1px dashed rgba(217,65,45,.28); }
.tcc-fcl-process-track article { position: relative; z-index: 1; text-align: center; }
.tcc-fcl-process-num { display: grid; place-items: center; width: 44px; height: 44px; margin: 0 auto 20px; border: 1px solid rgba(217,65,45,.25); border-radius: 50%; background: #fff; color: #d9412d; font-size: 10px; font-weight: 850; }
.tcc-fcl-process-icon { display: grid; place-items: center; width: 82px; height: 72px; margin: 0 auto 16px; border: 1px solid #e5e5e5; border-radius: 15px; background: #fff; }
.tcc-fcl-process-icon img { width: 50px; height: 46px; object-fit: contain; }
.tcc-fcl-process-icon > span { color: #d9412d; font-size: 24px; font-weight: 850; }
.tcc-fcl-process-icon--doc > span { font-size: 18px; }
.tcc-fcl-process-track small { color: #d9412d; font-size: 9px; font-weight: 850; letter-spacing: .09em; }
.tcc-fcl-process-track h3 { margin: 8px auto 8px; max-width: 150px; font-size: 15px; line-height: 1.18; }
.tcc-fcl-process-track p { margin: 0 auto; max-width: 165px; color: #7b7b7b; font-size: 11.5px; line-height: 1.5; }

/* Multiprovider */
.tcc-fcl-multiprovider { background: #fff; }
.tcc-fcl-multiprovider-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 76px; align-items: center; }
.tcc-fcl-checklist { display: grid; gap: 0; margin-top: 24px; }
.tcc-fcl-checklist > div { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid #ececec; font-size: 13px; font-weight: 700; }
.tcc-fcl-checklist b { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #fff0ee; color: #d9412d; }
.tcc-fcl-multiprovider-visual { padding: 18px; border: 1px solid #e6e6e6; border-radius: 24px; box-shadow: 0 18px 50px rgba(17,17,17,.06); background: #fff; }
.tcc-fcl-multiprovider-visual img { width: 100%; }

/* Compare */
.tcc-fcl-compare { background: #111315; color: #fff; }
.tcc-fcl-compare .tcc-section-heading p { color: #a9afb2; }
.tcc-fcl-compare-grid { display: grid; grid-template-columns: 1fr 150px 1fr; gap: 20px; align-items: stretch; }
.tcc-fcl-compare-grid > article { padding: 30px; border: 1px solid #303437; border-radius: 20px; background: #1a1d1f; }
.tcc-fcl-compare-grid > article.tcc-fcl-compare-featured { border-color: rgba(217,65,45,.55); background: linear-gradient(135deg,#1c1f21,#251716); }
.tcc-fcl-compare-grid article small { color: #d96250; font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.tcc-fcl-compare-grid article h3 { margin: 12px 0 24px; max-width: 390px; font-size: 24px; line-height: 1.12; }
.tcc-fcl-compare-grid ul { list-style: none; padding: 0; margin: 0; }
.tcc-fcl-compare-grid li { position: relative; padding: 11px 0 11px 18px; border-top: 1px solid #2b2f31; color: #aeb2b5; font-size: 13px; }
.tcc-fcl-compare-grid li::before { content: ""; position: absolute; left: 0; top: 19px; width: 5px; height: 5px; border-radius: 50%; background: #d9412d; }
.tcc-fcl-compare-center { align-self: center; display: grid; place-items: center; gap: 8px; text-align: center; }
.tcc-fcl-compare-center > span { color: #d9412d; font-size: 32px; }
.tcc-fcl-compare-center strong { font-size: 12px; }
.tcc-fcl-compare-center small { color: #7d8589; font-size: 10px; }

/* Cargo types */
.tcc-fcl-cargo-types { background: #fff; }
.tcc-fcl-type-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.tcc-fcl-restriction-note { margin-top: 16px; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border: 1px solid rgba(217,65,45,.25); border-radius: 16px; background: #fff9f8; }
.tcc-fcl-restriction-note strong { font-size: 14px; }
.tcc-fcl-restriction-note p { margin: 4px 0 0; color: #777; font-size: 11px; }
.tcc-fcl-restriction-note .tcc-button { min-height: 44px; white-space: nowrap; }

/* Documents */
.tcc-fcl-documents { background: #f7f7f7; }
.tcc-fcl-documents-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: center; }
.tcc-fcl-document-board { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; padding: 18px; border: 1px solid #e3e3e3; border-radius: 22px; background: #fff; box-shadow: 0 18px 48px rgba(17,17,17,.07); }
.tcc-fcl-document-board article { min-height: 120px; display: flex; gap: 18px; align-items: center; padding: 20px; border: 1px solid #ececec; border-radius: 14px; }
.tcc-fcl-document-board article > b { flex: 0 0 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: #fff0ee; color: #d9412d; font-size: 12px; }
.tcc-fcl-document-board h3 { margin: 0 0 4px; font-size: 15px; line-height: 1.16; }
.tcc-fcl-document-board p { margin: 0; color: #777; font-size: 11px; line-height: 1.45; }

/* Platform */
.tcc-fcl-platform { background: #fff; }
.tcc-fcl-platform-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.tcc-fcl-platform-points { margin: 24px 0 24px; }
.tcc-fcl-platform-points > div { display: flex; gap: 16px; align-items: center; padding: 12px 0; border-bottom: 1px solid #ececec; }
.tcc-fcl-platform-points b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: #fff1ef; color: #d9412d; font-size: 10px; }
.tcc-fcl-platform-points span { display: grid; }
.tcc-fcl-platform-points strong { font-size: 14px; }
.tcc-fcl-platform-points small { color: #858585; font-size: 11px; }
.tcc-fcl-platform-ui { overflow: hidden; border: 1px solid #dedede; border-radius: 22px; background: #fff; box-shadow: 0 24px 60px rgba(17,17,17,.09); }
.tcc-fcl-platform-bar { min-height: 54px; display: flex; align-items: center; gap: 6px; padding: 0 18px; border-bottom: 1px solid #eee; }
.tcc-fcl-platform-bar i { width: 9px; height: 9px; border-radius: 50%; background: #d16a59; }
.tcc-fcl-platform-bar i:nth-child(2) { background: #d9b85e; }
.tcc-fcl-platform-bar i:nth-child(3) { background: #78b883; }
.tcc-fcl-platform-bar strong { margin-left: 8px; font-size: 12px; }
.tcc-fcl-platform-bar small { margin-left: auto; color: #d9412d; font-size: 10px; font-weight: 800; }
.tcc-fcl-platform-summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; padding: 16px 16px 0; }
.tcc-fcl-platform-summary > div { display: grid; gap: 3px; min-height: 88px; padding: 14px; border: 1px solid #ececec; border-radius: 13px; }
.tcc-fcl-platform-summary span { color: #999; font-size: 9px; }
.tcc-fcl-platform-summary strong { font-size: 16px; }
.tcc-fcl-platform-summary small { color: #aaa; font-size: 9px; }
.tcc-fcl-platform-main { display: grid; grid-template-columns: .92fr 1.08fr; gap: 10px; padding: 10px 16px 16px; }
.tcc-fcl-platform-timeline,
.tcc-fcl-platform-graphic { min-height: 210px; padding: 18px; border: 1px solid #ececec; border-radius: 13px; }
.tcc-fcl-platform-timeline { display: grid; align-content: center; gap: 14px; }
.tcc-fcl-platform-timeline > div { display: flex; gap: 10px; align-items: center; }
.tcc-fcl-platform-timeline b { display: grid; place-items: center; width: 24px; height: 24px; border: 1px solid #ddd; border-radius: 50%; color: #bbb; font-size: 10px; }
.tcc-fcl-platform-timeline .is-done b { border-color: #71b77b; background: #71b77b; color: #fff; }
.tcc-fcl-platform-timeline .is-active b { border-color: #d9412d; color: #d9412d; background: #fff; }
.tcc-fcl-platform-timeline span { display: grid; }
.tcc-fcl-platform-timeline strong { font-size: 11px; }
.tcc-fcl-platform-timeline small { color: #aaa; font-size: 9px; }
.tcc-fcl-platform-graphic { display: grid; place-items: center; align-content: center; text-align: center; background: #fbfbfb; }
.tcc-fcl-fill-meter { width: 84%; height: 9px; overflow: hidden; border-radius: 99px; background: #ececec; }
.tcc-fcl-fill-meter span { display: block; height: 100%; border-radius: inherit; background: #d9412d; }
.tcc-fcl-platform-graphic > strong { margin-top: 12px; font-size: 16px; }
.tcc-fcl-platform-graphic > small { color: #999; font-size: 9px; }
.tcc-fcl-platform-graphic img { width: 90px; height: 58px; object-fit: contain; margin-top: 16px; opacity: .82; }
.tcc-fcl-platform-bottom { min-height: 42px; display: flex; justify-content: space-between; align-items: center; padding: 0 16px; border-top: 1px solid #eee; color: #999; font-size: 9px; }
.tcc-fcl-platform-bottom b { color: #d9412d; }

/* Booking */
.tcc-fcl-departure { padding: 72px 0; background: radial-gradient(circle at 88% 50%, rgba(217,65,45,.15), transparent 25%), #101214; color: #fff; }
.tcc-fcl-departure-inner { display: grid; grid-template-columns: .9fr 1.2fr auto; gap: 36px; align-items: center; }
.tcc-fcl-departure-copy h2 { margin: 8px 0 8px; font-size: 31px; line-height: 1.05; letter-spacing: -.035em; }
.tcc-fcl-departure-copy p { margin: 0; color: #aab0b3; font-size: 13px; line-height: 1.55; }
.tcc-fcl-departure-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.tcc-fcl-departure-stats > div { min-height: 68px; display: grid; align-content: center; gap: 3px; padding: 12px 16px; border: 1px solid #303437; border-radius: 12px; background: #1a1d1f; }
.tcc-fcl-departure-stats small { color: #7d8589; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.tcc-fcl-departure-stats strong { font-size: 12px; }

/* FAQ */
.tcc-fcl-faq { background: #f7f7f7; }
.tcc-fcl-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.tcc-fcl-faq-copy { position: sticky; top: 174px; }
.tcc-fcl-faq-list { overflow: hidden; border: 1px solid #e2e2e2; border-radius: 20px; background: #fff; box-shadow: 0 18px 50px rgba(17,17,17,.06); }
.tcc-fcl-faq-list .tcc-faq-item { border-bottom: 1px solid #ececec; }
.tcc-fcl-faq-list .tcc-faq-item:last-child { border-bottom: 0; }
.tcc-fcl-faq-list .tcc-faq-item button { width: 100%; min-height: 72px; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 12px 18px; border: 0; background: #fff; cursor: pointer; text-align: left; }
.tcc-fcl-faq-list .tcc-faq-item button > span { display: flex; align-items: center; gap: 18px; font-size: 14px; font-weight: 780; }
.tcc-fcl-faq-list .tcc-faq-item button em { flex: 0 0 36px; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(217,65,45,.25); border-radius: 50%; color: #d9412d; font-size: 9px; font-style: normal; }
.tcc-fcl-faq-list .tcc-faq-item button > b { color: #d9412d; font-size: 20px; font-weight: 400; }
.tcc-fcl-faq-list .tcc-faq-item button[aria-expanded="true"] { border-bottom: 2px solid #d9412d; }
.tcc-fcl-faq-list .tcc-faq-answer p { margin: 0; padding: 4px 66px 22px 62px; color: #777; font-size: 13px; line-height: 1.65; }

/* Final CTA */
.tcc-fcl-final-cta { padding: 92px 0 96px; text-align: center; color: #fff; background: radial-gradient(circle at 90% 70%, rgba(217,65,45,.18), transparent 25%), #0d0f10; }
.tcc-fcl-final-route { margin: 14px auto 24px; display: flex; justify-content: center; align-items: center; gap: 10px; color: #fff; font-size: 10px; font-weight: 800; }
.tcc-fcl-final-route i { width: 72px; border-top: 1px dashed #d9412d; }
.tcc-fcl-final-route b { color: #fff; font-size: 10px; }
.tcc-fcl-final-cta h2 { margin: 0 auto 16px; max-width: 900px; font-size: clamp(44px,5vw,66px); line-height: 1.02; letter-spacing: -.045em; }
.tcc-fcl-final-cta p { max-width: 800px; margin: 0 auto; color: #aab0b3; font-size: 15px; line-height: 1.6; }
.tcc-fcl-final-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

@media (max-width: 1100px) {
  .tcc-fcl-hero-grid { gap: 34px; grid-template-columns: .88fr 1.12fr; }
  .tcc-fcl-hero h1 { font-size: 54px; }
  .tcc-fcl-subnav .tcc-container { justify-content: flex-start; }
  .tcc-fcl-fit-grid,
  .tcc-fcl-multiprovider-grid,
  .tcc-fcl-documents-grid,
  .tcc-fcl-platform-grid { gap: 48px; }
  .tcc-fcl-process-track { gap: 10px; }
  .tcc-fcl-process-track h3 { font-size: 14px; }
  .tcc-fcl-compare-grid { grid-template-columns: 1fr 100px 1fr; }
  .tcc-fcl-departure-inner { grid-template-columns: .8fr 1.2fr; }
  .tcc-fcl-departure-inner > .tcc-button { grid-column: 1 / -1; justify-self: end; }
}

@media (max-width: 900px) {
  .tcc-fcl-hero-grid { grid-template-columns: 1fr; padding-top: 54px; padding-bottom: 58px; }
  .tcc-fcl-hero h1 { max-width: 720px; font-size: clamp(48px,8vw,68px); }
  .tcc-fcl-hero-lead { max-width: 720px; }
  .tcc-fcl-hero-visual { max-width: 760px; width: 100%; margin: 0 auto; }
  .tcc-fcl-fit-grid,
  .tcc-fcl-multiprovider-grid,
  .tcc-fcl-documents-grid,
  .tcc-fcl-platform-grid,
  .tcc-fcl-faq-grid { grid-template-columns: 1fr; }
  .tcc-fcl-fit-copy,
  .tcc-fcl-multiprovider-copy,
  .tcc-fcl-documents-copy,
  .tcc-fcl-platform-copy { max-width: 690px; }
  .tcc-fcl-process-track { grid-template-columns: repeat(3,1fr); row-gap: 40px; }
  .tcc-fcl-process-track::before { display: none; }
  .tcc-fcl-equipment-grid { grid-template-columns: 1fr; }
  .tcc-fcl-type-grid { grid-template-columns: repeat(2,1fr); }
  .tcc-fcl-compare-grid { grid-template-columns: 1fr; }
  .tcc-fcl-compare-center { grid-template-columns: auto 1fr auto; padding: 0 20px; }
  .tcc-fcl-compare-center > span { transform: rotate(90deg); }
  .tcc-fcl-faq-copy { position: static; }
  .tcc-fcl-departure-inner { grid-template-columns: 1fr; }
  .tcc-fcl-departure-inner > .tcc-button { grid-column: auto; justify-self: start; }
  .tcc-fcl-departure-stats { max-width: 680px; }
}

@media (max-width: 640px) {
  .tcc-fcl-page .tcc-section { padding: 76px 0; }
  .tcc-fcl-hero-grid { min-height: auto; padding-top: 42px; gap: 38px; }
  .tcc-fcl-hero h1 { font-size: 46px; }
  .tcc-fcl-hero-lead { font-size: 15px; }
  .tcc-fcl-hero-actions { display: grid; grid-template-columns: 1fr; }
  .tcc-fcl-hero-actions .tcc-button { width: 100%; }
  .tcc-fcl-hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .tcc-fcl-visual-head { grid-template-columns: 1fr auto; min-height: 60px; padding: 0 16px; }
  .tcc-fcl-mini-brand img { width: 112px; }
  .tcc-fcl-visual-head > span { display: none; }
  .tcc-fcl-route-row { gap: 10px; padding: 16px 14px 6px; }
  .tcc-fcl-stage { padding: 4px 8px 10px; }
  .tcc-fcl-stage img { min-height: 250px; }
  .tcc-fcl-visual-stats { grid-template-columns: 1fr; }
  .tcc-fcl-visual-stats > div { min-height: 54px; border-right: 0; border-bottom: 1px solid #ececec; }
  .tcc-fcl-visual-stats > div:last-child { border-bottom: 0; }
  .tcc-fcl-transit-note { font-size: 9px; padding-inline: 6px; }
  .tcc-fcl-subnav { top: 68px; }
  .tcc-fcl-subnav .tcc-container { min-height: 54px; gap: 28px; }
  .tcc-fcl-fit-copy h2,
  .tcc-fcl-multiprovider-copy h2,
  .tcc-fcl-documents-copy h2,
  .tcc-fcl-platform-copy h2,
  .tcc-fcl-faq-copy h2 { font-size: 40px; }
  .tcc-fcl-fit-cards { grid-template-columns: 1fr; }
  .tcc-fcl-equipment-visual img { height: 170px; }
  .tcc-fcl-equipment-copy { grid-template-columns: 1fr; }
  .tcc-fcl-equipment-copy > strong { justify-self: start; }
  .tcc-fcl-process-track { grid-template-columns: 1fr; gap: 0; padding-left: 28px; }
  .tcc-fcl-process-track article { min-height: 152px; display: grid; grid-template-columns: 56px 1fr; grid-template-rows: auto auto auto; column-gap: 16px; text-align: left; padding-bottom: 24px; }
  .tcc-fcl-process-num { position: absolute; left: -28px; top: 0; width: 38px; height: 38px; }
  .tcc-fcl-process-track article::before { content: ""; position: absolute; left: -9px; top: 39px; bottom: 0; border-left: 1px dashed rgba(217,65,45,.3); }
  .tcc-fcl-process-track article:last-child::before { display: none; }
  .tcc-fcl-process-icon { grid-row: 1 / 4; width: 56px; height: 56px; margin: 0; }
  .tcc-fcl-process-icon img { width: 38px; height: 36px; }
  .tcc-fcl-process-track small { align-self: end; }
  .tcc-fcl-process-track h3 { max-width: none; margin: 4px 0; }
  .tcc-fcl-process-track p { max-width: none; margin: 0; }
  .tcc-fcl-type-grid { grid-template-columns: 1fr; }
  .tcc-fcl-restriction-note { align-items: stretch; flex-direction: column; }
  .tcc-fcl-restriction-note .tcc-button { width: 100%; }
  .tcc-fcl-document-board { grid-template-columns: 1fr; padding: 12px; }
  .tcc-fcl-platform-summary { grid-template-columns: 1fr; }
  .tcc-fcl-platform-main { grid-template-columns: 1fr; }
  .tcc-fcl-platform-bottom { align-items: flex-start; flex-direction: column; gap: 5px; padding-block: 10px; }
  .tcc-fcl-departure-stats { grid-template-columns: 1fr; width: 100%; }
  .tcc-fcl-faq-list .tcc-faq-item button { min-height: 68px; padding: 10px 12px; }
  .tcc-fcl-faq-list .tcc-faq-item button > span { gap: 10px; font-size: 13px; }
  .tcc-fcl-faq-list .tcc-faq-item button em { flex-basis: 32px; width: 32px; height: 32px; }
  .tcc-fcl-faq-list .tcc-faq-answer p { padding: 4px 18px 22px 54px; font-size: 12.5px; }
  .tcc-fcl-final-cta { padding: 76px 0 80px; }
  .tcc-fcl-final-cta h2 { font-size: 42px; }
  .tcc-fcl-final-route i { width: 38px; }
  .tcc-fcl-final-actions { display: grid; grid-template-columns: 1fr; }
  .tcc-fcl-final-actions .tcc-button { width: 100%; }
}

/* ==========================================================================
   TCC Web v1.5.2 · Contenedor Completo FCL · Final polish
   FCL-only overrides. HOME / Casillero / Air / LCL remain untouched.
   ========================================================================== */
.tcc-fcl-page .tcc-section-heading { margin-bottom: 48px; }

/* Hero: approved full-container illustration */
.tcc-fcl-page .tcc-fcl-hero-grid {
  min-height: 700px;
  grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr);
  gap: 54px;
  padding-top: 44px;
  padding-bottom: 44px;
}
.tcc-fcl-page .tcc-fcl-hero h1 { max-width: 555px; }
.tcc-fcl-page .tcc-fcl-hero-lead { max-width: 570px; }
.tcc-fcl-page .tcc-fcl-visual-shell { box-shadow: 0 30px 72px rgba(17,17,17,.11); }
.tcc-fcl-page .tcc-fcl-stage {
  min-height: 366px;
  display: grid;
  place-items: center;
  padding: 8px 12px 10px;
  background: linear-gradient(180deg,#fff 0%,#fdfdfd 100%);
}
.tcc-fcl-page .tcc-fcl-stage img {
  width: 100%;
  height: 355px;
  max-height: none;
  object-fit: contain;
  object-position: center;
}
.tcc-fcl-page .tcc-fcl-transit-note { max-width: 720px; }

/* When it makes sense */
.tcc-fcl-page .tcc-fcl-fit { padding-top: 104px; padding-bottom: 104px; }
.tcc-fcl-page .tcc-fcl-fit-grid { gap: 72px; }
.tcc-fcl-page .tcc-fcl-fit-cards article { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.tcc-fcl-page .tcc-fcl-fit-cards article:hover { transform: translateY(-2px); border-color: rgba(217,65,45,.2); box-shadow: 0 18px 38px rgba(17,17,17,.045); }

/* Equipment: approved infographic panels with readable embedded text */
.tcc-fcl-page .tcc-fcl-equipment { padding-top: 104px; padding-bottom: 104px; }
.tcc-fcl-page .tcc-fcl-equipment-grid {
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 20px;
  align-items: stretch;
}
.tcc-fcl-page .tcc-fcl-equipment-card,
.tcc-fcl-page .tcc-fcl-equipment-card--featured {
  padding: 14px;
  background: #16191b;
  border-color: #303437;
  box-shadow: 0 20px 55px rgba(0,0,0,.13);
}
.tcc-fcl-page .tcc-fcl-equipment-card--featured { border-color: rgba(217,65,45,.48); }
.tcc-fcl-page .tcc-fcl-card-index { top: 22px; right: 24px; z-index: 3; color: rgba(255,255,255,.52); }
.tcc-fcl-page .tcc-fcl-equipment-visual {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 16px;
  background: #0d0f10;
}
.tcc-fcl-page .tcc-fcl-equipment-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
}
.tcc-fcl-page .tcc-fcl-equipment-copy--polish {
  display: block;
  padding: 18px 8px 8px;
}
.tcc-fcl-page .tcc-fcl-equipment-copy--polish h3 {
  margin: 4px 0 10px;
  font-size: 23px;
  letter-spacing: -.025em;
}
.tcc-fcl-page .tcc-fcl-equipment-copy--polish p {
  max-width: 95%;
  color: #aeb2b5;
  font-size: 13px;
  line-height: 1.58;
}
.tcc-fcl-page .tcc-fcl-equipment-note { max-width: 1040px; margin-left: auto; margin-right: auto; }

/* Process rhythm */
.tcc-fcl-page .tcc-fcl-process { padding-top: 102px; padding-bottom: 106px; }
.tcc-fcl-page .tcc-fcl-process-track { padding-top: 18px; }

/* Multiprovider: approved visual + explicit accumulated-volume example */
.tcc-fcl-page .tcc-fcl-multiprovider { padding-top: 104px; padding-bottom: 108px; }
.tcc-fcl-page .tcc-fcl-multiprovider-grid { grid-template-columns: .78fr 1.22fr; gap: 64px; }
.tcc-fcl-page .tcc-fcl-multiprovider-example {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-left: 3px solid #d9412d;
  border-radius: 0 10px 10px 0;
  background: #fff7f5;
  color: #626262;
  font-size: 12.5px;
  line-height: 1.55;
}
.tcc-fcl-page .tcc-fcl-multiprovider-example strong { color: #171717; }
.tcc-fcl-page .tcc-fcl-multiprovider-visual {
  padding: 12px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(17,17,17,.075);
}
.tcc-fcl-page .tcc-fcl-multiprovider-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  border-radius: 16px;
}

/* Consistent vertical rhythm across lower blocks */
.tcc-fcl-page .tcc-fcl-compare,
.tcc-fcl-page .tcc-fcl-cargo-types,
.tcc-fcl-page .tcc-fcl-documents,
.tcc-fcl-page .tcc-fcl-platform,
.tcc-fcl-page .tcc-fcl-faq { padding-top: 102px; padding-bottom: 104px; }
.tcc-fcl-page .tcc-fcl-documents-grid,
.tcc-fcl-page .tcc-fcl-platform-grid { gap: 68px; }

/* FAQ: cleaner answer separation */
.tcc-fcl-page .tcc-fcl-faq-list .tcc-faq-item button[aria-expanded="true"] { background: #fffdfc; }
.tcc-fcl-page .tcc-fcl-faq-list .tcc-faq-answer p { padding-top: 14px; padding-bottom: 24px; }

@media (max-width: 1100px) {
  .tcc-fcl-page .tcc-fcl-hero-grid { gap: 34px; }
  .tcc-fcl-page .tcc-fcl-stage img { height: 320px; }
  .tcc-fcl-page .tcc-fcl-multiprovider-grid { gap: 42px; }
}

@media (max-width: 900px) {
  .tcc-fcl-page .tcc-fcl-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .tcc-fcl-page .tcc-fcl-stage img { height: auto; max-height: 480px; }
  .tcc-fcl-page .tcc-fcl-equipment-grid { grid-template-columns: 1fr; }
  .tcc-fcl-page .tcc-fcl-equipment-card { max-width: 780px; width: 100%; margin-inline: auto; }
  .tcc-fcl-page .tcc-fcl-equipment-visual img { aspect-ratio: auto; }
  .tcc-fcl-page .tcc-fcl-multiprovider-grid { grid-template-columns: 1fr; }
  .tcc-fcl-page .tcc-fcl-multiprovider-visual { max-width: 780px; width: 100%; margin-inline: auto; }
}

@media (max-width: 640px) {
  .tcc-fcl-page .tcc-fcl-stage { min-height: 0; padding: 4px 6px 8px; }
  .tcc-fcl-page .tcc-fcl-stage img { min-height: 0; width: 100%; height: auto; }
  .tcc-fcl-page .tcc-fcl-equipment-card { padding: 8px; }
  .tcc-fcl-page .tcc-fcl-equipment-copy--polish { padding: 16px 10px 10px; }
  .tcc-fcl-page .tcc-fcl-equipment-copy--polish h3 { font-size: 21px; }
  .tcc-fcl-page .tcc-fcl-equipment-copy--polish p { max-width: 100%; font-size: 12.5px; }
  .tcc-fcl-page .tcc-fcl-multiprovider-visual { padding: 6px; }
  .tcc-fcl-page .tcc-fcl-multiprovider-visual img { aspect-ratio: auto; }
  .tcc-fcl-page .tcc-fcl-multiprovider-example { font-size: 12px; }
}

/* =========================================================
   TCC Web v1.6.0 · Compras en China
   Scoped exclusively to .tcc-buy-page so previously approved
   HOME, Casillero, Air, LCL and FCL remain untouched.
   ========================================================= */
.tcc-buy-page {
  --tcc-buy-red: #d9412d;
  --tcc-buy-red-dark: #b93023;
  --tcc-buy-ink: #111315;
  --tcc-buy-soft: #f7f7f7;
  --tcc-buy-line: #e8e8e8;
  --tcc-buy-muted: #696969;
  overflow: hidden;
}
.tcc-buy-page h1,
.tcc-buy-page h2,
.tcc-buy-page h3,
.tcc-buy-page p { text-wrap: pretty; }
.tcc-buy-page .tcc-eyebrow { color: var(--tcc-buy-red); }

/* Hero */
.tcc-buy-hero {
  position: relative;
  border-bottom: 1px solid var(--tcc-buy-line);
  background:
    radial-gradient(circle at 86% 22%, rgba(217,65,45,.10), transparent 26%),
    radial-gradient(circle at 78% 70%, rgba(217,65,45,.055), transparent 23%),
    linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
}
.tcc-buy-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -230px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(217,65,45,.10);
  border-radius: 50%;
  pointer-events: none;
}
.tcc-buy-hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr);
  gap: 54px;
  align-items: center;
  padding-top: 44px;
  padding-bottom: 40px;
}
.tcc-buy-hero-copy { position: relative; z-index: 2; }
.tcc-buy-hero-copy h1 {
  max-width: 570px;
  margin: 18px 0 22px;
  font-size: clamp(52px,4.7vw,68px);
  line-height: .98;
  letter-spacing: -.052em;
  font-weight: 820;
}
.tcc-buy-hero-copy h1 span { color: var(--tcc-buy-red); }
.tcc-buy-hero-lead {
  max-width: 590px;
  margin: 0 0 28px;
  color: #585858;
  font-size: 17.5px;
  line-height: 1.7;
}
.tcc-buy-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.tcc-buy-hero-trust {
  max-width: 640px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  padding-top: 2px;
}
.tcc-buy-hero-trust span {
  position: relative;
  padding-left: 14px;
  color: #353535;
  font-size: 12px;
  font-weight: 730;
}
.tcc-buy-hero-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tcc-buy-red);
}
.tcc-buy-hero-visual { position: relative; z-index: 2; }
.tcc-buy-board {
  overflow: hidden;
  border: 1px solid #e1e1e1;
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 28px 70px rgba(17,17,17,.10);
}
.tcc-buy-board-head {
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid #ececec;
}
.tcc-buy-board-head > span { font-size: 14px; font-weight: 810; }
.tcc-buy-board-head > small { justify-self: end; color: var(--tcc-buy-red); font-size: 10px; font-weight: 850; letter-spacing: .13em; }
.tcc-buy-mini-brand img { width: 118px; height: auto; }
.tcc-buy-board-route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 24px 15px;
}
.tcc-buy-board-route > span { display: grid; gap: 1px; }
.tcc-buy-board-route > span:last-child { text-align: right; }
.tcc-buy-board-route small { color: #8a8a8a; font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.tcc-buy-board-route strong { font-size: 13px; }
.tcc-buy-board-route i {
  position: relative;
  height: 1px;
  border-top: 1px dashed rgba(217,65,45,.62);
}
.tcc-buy-board-route i::before,
.tcc-buy-board-route i::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tcc-buy-red);
}
.tcc-buy-board-route i::before { left: 0; }
.tcc-buy-board-route i::after { right: 0; }
.tcc-buy-board-route em {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  padding: 5px 9px;
  border: 1px solid rgba(217,65,45,.22);
  border-radius: 999px;
  background: #fff;
  color: var(--tcc-buy-red);
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
}
.tcc-buy-board-stage {
  position: relative;
  min-height: 330px;
  margin: 0 20px 18px;
  padding: 28px 24px 24px;
  border: 1px solid #ececec;
  border-radius: 18px;
  background:
    linear-gradient(rgba(17,17,17,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,17,.025) 1px, transparent 1px),
    linear-gradient(135deg, #fdfdfd 0%, #f8f8f8 100%);
  background-size: 28px 28px, 28px 28px, auto;
}
.tcc-buy-source-panel,
.tcc-buy-supplier-panel {
  position: absolute;
  top: 30px;
  width: calc(50% - 46px);
  min-height: 142px;
  padding: 16px;
  border: 1px solid #dfdfdf;
  border-radius: 16px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 10px 25px rgba(17,17,17,.045);
}
.tcc-buy-source-panel { left: 24px; }
.tcc-buy-supplier-panel { right: 24px; display: grid; grid-template-columns: 56px 1fr; column-gap: 12px; align-items: center; }
.tcc-buy-source-panel > small,
.tcc-buy-supplier-panel > small { display: block; grid-column: 1 / -1; margin-bottom: 10px; color: var(--tcc-buy-red); font-size: 8px; font-weight: 850; letter-spacing: .09em; }
.tcc-buy-market-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 7px; }
.tcc-buy-market-grid span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #ebebeb;
  border-radius: 9px;
  background: #fafafa;
  font-size: 11px;
  font-weight: 800;
}
.tcc-buy-market-grid span:first-child { border-color: rgba(217,65,45,.26); color: var(--tcc-buy-red); background: #fff7f5; }
.tcc-buy-supplier-panel img { width: 54px; height: 54px; object-fit: contain; }
.tcc-buy-supplier-panel strong { font-size: 13px; line-height: 1.25; }
.tcc-buy-board-arrow {
  position: absolute;
  left: 50%;
  top: 85px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--tcc-buy-red);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 7px 18px rgba(217,65,45,.22);
}
.tcc-buy-board-flowline {
  position: absolute;
  left: 14%;
  right: 14%;
  top: 195px;
  display: flex;
  align-items: center;
}
.tcc-buy-board-flowline span { width: 8px; height: 8px; flex: 0 0 8px; border-radius: 50%; background: var(--tcc-buy-red); }
.tcc-buy-board-flowline i { flex: 1; border-top: 1px dashed rgba(217,65,45,.4); }
.tcc-buy-board-bottom {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}
.tcc-buy-board-bottom > div {
  min-height: 82px;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid #e5e5e5;
  border-radius: 13px;
  background: #fff;
}
.tcc-buy-board-bottom img { grid-row: 1 / 3; width: 40px; height: 40px; object-fit: contain; }
.tcc-buy-board-bottom small { align-self: end; color: var(--tcc-buy-red); font-size: 8px; font-weight: 850; }
.tcc-buy-board-bottom strong { align-self: start; font-size: 11px; }
.tcc-buy-board-stats { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid #ececec; }
.tcc-buy-board-stats > div { min-height: 65px; display: grid; align-content: center; gap: 2px; padding: 0 18px; border-right: 1px solid #ececec; }
.tcc-buy-board-stats > div:last-child { border-right: 0; }
.tcc-buy-board-stats small { color: #858585; font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.tcc-buy-board-stats strong { font-size: 11px; }
.tcc-buy-visual-caption { margin-top: 13px; text-align: center; color: #444; font-size: 10px; font-weight: 800; letter-spacing: .05em; }
.tcc-buy-visual-caption b { margin: 0 7px; color: var(--tcc-buy-red); }

/* Subnav */
.tcc-buy-subnav {
  position: sticky;
  top: 78px;
  z-index: 80;
  border-bottom: 1px solid #ededed;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(15px);
}
.tcc-buy-subnav .tcc-container { min-height: 58px; display: flex; justify-content: center; align-items: center; gap: 38px; overflow-x: auto; scrollbar-width: none; }
.tcc-buy-subnav .tcc-container::-webkit-scrollbar { display: none; }
.tcc-buy-subnav a { flex: 0 0 auto; color: #333; font-size: 12px; font-weight: 750; }
.tcc-buy-subnav a:hover { color: var(--tcc-buy-red); }

/* Fit */
.tcc-buy-fit { background: #fff; }
.tcc-buy-fit-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 82px; align-items: center; }
.tcc-buy-fit-copy h2,
.tcc-buy-payments-copy h2,
.tcc-buy-control-copy h2,
.tcc-buy-platform-copy h2,
.tcc-buy-faq-copy h2 {
  margin: 12px 0 20px;
  font-size: clamp(42px,4vw,58px);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.tcc-buy-fit-copy > p,
.tcc-buy-control-copy > p,
.tcc-buy-platform-copy > p,
.tcc-buy-faq-copy > p { max-width: 560px; margin: 0 0 24px; color: var(--tcc-buy-muted); font-size: 16px; line-height: 1.72; }
.tcc-buy-text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--tcc-buy-red); font-size: 14px; font-weight: 800; }
.tcc-buy-fit-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.tcc-buy-fit-cards article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(17,17,17,.035);
}
.tcc-buy-fit-cards article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #fff1ee;
  color: var(--tcc-buy-red);
  font-size: 9px;
  font-weight: 850;
}
.tcc-buy-fit-cards h3 { margin: 0 0 8px; font-size: 17px; line-height: 1.2; }
.tcc-buy-fit-cards p { margin: 0; color: #727272; font-size: 13.5px; line-height: 1.55; }

/* Modes */
.tcc-buy-modes {
  color: #fff;
  background:
    radial-gradient(circle at 86% 30%, rgba(217,65,45,.14), transparent 26%),
    radial-gradient(circle at 14% 70%, rgba(217,65,45,.08), transparent 23%),
    #101214;
}
.tcc-buy-modes .tcc-section-heading--light p { color: #a8abad; }
.tcc-buy-mode-grid { display: grid; grid-template-columns: 1fr 64px 1fr; gap: 18px; align-items: stretch; }
.tcc-buy-mode-card {
  position: relative;
  min-height: 450px;
  padding: 34px 34px 30px;
  border: 1px solid #2e3235;
  border-radius: 22px;
  background: #191c1e;
}
.tcc-buy-mode-card--featured { border-color: rgba(217,65,45,.55); background: linear-gradient(145deg,#211b1b,#17191a); }
.tcc-buy-mode-index { position: absolute; top: 28px; right: 30px; color: #6e7477; font-size: 11px; font-weight: 800; }
.tcc-buy-mode-label { margin-bottom: 14px; color: var(--tcc-buy-red); font-size: 10px; font-weight: 850; letter-spacing: .11em; }
.tcc-buy-mode-card h3 { max-width: 430px; margin: 0 0 24px; font-size: 27px; line-height: 1.08; letter-spacing: -.025em; }
.tcc-buy-mode-card ul { list-style: none; padding: 0; margin: 0 0 28px; }
.tcc-buy-mode-card li { position: relative; padding: 12px 0 12px 22px; border-bottom: 1px solid rgba(255,255,255,.08); color: #b9bdc0; font-size: 13px; }
.tcc-buy-mode-card li::before { content: "•"; position: absolute; left: 2px; color: var(--tcc-buy-red); }
.tcc-buy-mode-card a { display: inline-flex; align-items: center; gap: 11px; color: #fff; font-size: 13px; font-weight: 800; }
.tcc-buy-mode-card a span { color: var(--tcc-buy-red); }
.tcc-buy-mode-center { display: grid; place-items: center; position: relative; }
.tcc-buy-mode-center::before { content: ""; position: absolute; top: 28px; bottom: 28px; left: 50%; border-left: 1px dashed rgba(255,255,255,.12); }
.tcc-buy-mode-center span { z-index: 1; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(217,65,45,.5); border-radius: 50%; background: #101214; color: var(--tcc-buy-red); font-size: 10px; font-weight: 850; }
.tcc-buy-mode-note { margin-top: 18px; padding: 15px 18px; border: 1px solid #2d3032; border-radius: 13px; color: #8f9497; font-size: 11.5px; line-height: 1.6; text-align: center; }
.tcc-buy-mode-note strong { color: #e2e2e2; }

/* Process */
.tcc-buy-process { background: #f8f8f8; }
.tcc-buy-process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7,1fr);
  gap: 12px;
  padding-top: 28px;
}
.tcc-buy-process-track::before { content: ""; position: absolute; top: 48px; left: 7%; right: 7%; border-top: 1px dashed rgba(217,65,45,.28); }
.tcc-buy-process-track article { position: relative; z-index: 1; text-align: center; }
.tcc-buy-process-num { width: 40px; height: 40px; display: grid; place-items: center; margin: 0 auto 18px; border: 1px solid rgba(217,65,45,.26); border-radius: 50%; background: #fff; color: var(--tcc-buy-red); font-size: 9px; font-weight: 850; }
.tcc-buy-process-icon { width: 72px; height: 62px; display: grid; place-items: center; margin: 0 auto 14px; border: 1px solid #e6e6e6; border-radius: 14px; background: #fff; }
.tcc-buy-process-icon img { width: 42px; height: 42px; object-fit: contain; }
.tcc-buy-process-icon > span { color: var(--tcc-buy-red); font-size: 15px; font-weight: 900; letter-spacing: -.02em; }
.tcc-buy-process-track small { display: block; margin-bottom: 7px; color: var(--tcc-buy-red); font-size: 8px; font-weight: 850; letter-spacing: .08em; }
.tcc-buy-process-track h3 { margin: 0 auto 8px; max-width: 150px; font-size: 15px; line-height: 1.18; }
.tcc-buy-process-track p { max-width: 150px; margin: 0 auto; color: #7a7a7a; font-size: 11px; line-height: 1.52; }

/* Payments */
.tcc-buy-payments { background: #fff; }
.tcc-buy-payments-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 74px; align-items: center; }
.tcc-buy-payments-copy > p { max-width: 560px; margin: 0 0 24px; color: #696969; font-size: 16px; line-height: 1.72; }
.tcc-buy-payments-callout { max-width: 590px; padding: 16px 18px; border-left: 3px solid var(--tcc-buy-red); border-radius: 0 12px 12px 0; background: #fff6f3; color: #6f6866; font-size: 12px; line-height: 1.62; }
.tcc-buy-payments-callout strong { color: #1b1b1b; }
.tcc-buy-payments-steps { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.tcc-buy-payments-steps article { min-height: 190px; padding: 23px; border: 1px solid #e8e8e8; border-radius: 18px; background: #fafafa; }
.tcc-buy-payments-steps article > span { float: right; color: #b8b8b8; font-size: 10px; font-weight: 850; }
.tcc-buy-payments-steps small { display: block; margin-bottom: 17px; color: var(--tcc-buy-red); font-size: 9px; font-weight: 850; letter-spacing: .08em; }
.tcc-buy-payments-steps h3 { margin: 0 0 8px; font-size: 17px; }
.tcc-buy-payments-steps p { margin: 0; color: #747474; font-size: 12.5px; line-height: 1.6; }

/* Channels */
.tcc-buy-channels { background: #f7f7f7; }
.tcc-buy-channel-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.tcc-buy-channel-grid article { min-height: 220px; padding: 26px 24px; border: 1px solid #e4e4e4; border-radius: 18px; background: #fff; }
.tcc-buy-channel-grid article > span { display: inline-flex; min-height: 30px; align-items: center; padding: 0 10px; margin-bottom: 38px; border: 1px solid rgba(217,65,45,.22); border-radius: 8px; background: #fff7f5; color: var(--tcc-buy-red); font-size: 11px; font-weight: 850; }
.tcc-buy-channel-grid h3 { margin: 0 0 9px; font-size: 17px; line-height: 1.2; }
.tcc-buy-channel-grid p { margin: 0; color: #737373; font-size: 12.5px; line-height: 1.58; }
.tcc-buy-channel-card--wide { grid-column: 1 / -1; min-height: 140px !important; display: grid; grid-template-columns: 150px 260px 1fr; gap: 24px; align-items: center; }
.tcc-buy-channel-card--wide > span { margin: 0 !important; justify-self: start; }
.tcc-buy-channel-card--wide h3,
.tcc-buy-channel-card--wide p { margin: 0; }

/* Control */
.tcc-buy-control { background: #fff; }
.tcc-buy-control-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 74px; align-items: center; }
.tcc-buy-control-panel { display: grid; grid-template-columns: repeat(2,1fr); overflow: hidden; border: 1px solid #e3e3e3; border-radius: 22px; box-shadow: 0 18px 55px rgba(17,17,17,.06); }
.tcc-buy-control-panel article { min-height: 390px; padding: 30px; background: #fff; }
.tcc-buy-control-panel article + article { border-left: 1px solid #e7e7e7; }
.tcc-buy-control-featured { background: linear-gradient(145deg,#fff9f7,#fff) !important; }
.tcc-buy-control-icon { width: 60px; height: 60px; display: grid; place-items: center; margin-bottom: 22px; border: 1px solid #e5e5e5; border-radius: 14px; background: #fafafa; }
.tcc-buy-control-icon img { width: 42px; height: 42px; object-fit: contain; }
.tcc-buy-control-icon span { color: var(--tcc-buy-red); font-size: 16px; font-weight: 900; }
.tcc-buy-control-panel small { display: block; margin-bottom: 8px; color: var(--tcc-buy-red); font-size: 9px; font-weight: 850; letter-spacing: .08em; }
.tcc-buy-control-panel h3 { margin: 0 0 18px; font-size: 19px; line-height: 1.2; }
.tcc-buy-control-panel ul { list-style: none; padding: 0; margin: 0; }
.tcc-buy-control-panel li { position: relative; padding: 10px 0 10px 19px; border-bottom: 1px solid #ededed; color: #6d6d6d; font-size: 12.5px; line-height: 1.5; }
.tcc-buy-control-panel li::before { content: "✓"; position: absolute; left: 0; color: var(--tcc-buy-red); font-weight: 850; }
.tcc-buy-control-note { margin-top: 22px; padding: 15px 18px; border: 1px solid #ececec; border-radius: 13px; background: #fafafa; color: #747474; font-size: 11.5px; line-height: 1.65; text-align: center; }
.tcc-buy-control-note strong { color: #1b1b1b; }

/* Logistics */
.tcc-buy-logistics {
  color: #fff;
  background:
    radial-gradient(circle at 84% 80%, rgba(217,65,45,.13), transparent 28%),
    #101214;
}
.tcc-buy-logistics .tcc-section-heading p { color: #a7aaac; }
.tcc-buy-logistics-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.tcc-buy-logistics-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid #2d3133;
  border-radius: 18px;
  background: #181b1d;
  transition: transform .2s ease,border-color .2s ease,background .2s ease;
}
.tcc-buy-logistics-card:hover { transform: translateY(-4px); border-color: rgba(217,65,45,.55); background: #1d1f21; }
.tcc-buy-logistics-card > span { position: absolute; top: 20px; right: 20px; color: #686d70; font-size: 9px; font-weight: 850; }
.tcc-buy-logistics-card > div { height: 130px; display: grid; place-items: center; margin: 14px 0 20px; border-radius: 14px; background: #0f1112; overflow: hidden; }
.tcc-buy-logistics-card > div img { width: 100px; max-height: 104px; object-fit: contain; }
.tcc-buy-logistics-card:nth-child(2) > div img { width: 145px; }
.tcc-buy-logistics-card:nth-child(4) > div img { width: 160px; }
.tcc-buy-logistics-card small { color: var(--tcc-buy-red); font-size: 8px; font-weight: 850; letter-spacing: .08em; }
.tcc-buy-logistics-card h3 { margin: 7px 0 10px; font-size: 20px; }
.tcc-buy-logistics-card p { margin: 0 0 18px; color: #aeb2b4; font-size: 12.5px; line-height: 1.58; }
.tcc-buy-logistics-card b { margin-top: auto; color: #fff; font-size: 12px; }

/* Platform */
.tcc-buy-platform { background: #fff; }
.tcc-buy-platform-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: center; }
.tcc-buy-platform-list { margin: 26px 0 24px; }
.tcc-buy-platform-list > div { display: grid; grid-template-columns: 38px 135px 1fr; gap: 12px; align-items: center; min-height: 58px; border-bottom: 1px solid #ededed; }
.tcc-buy-platform-list span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: #fff1ee; color: var(--tcc-buy-red); font-size: 9px; font-weight: 850; }
.tcc-buy-platform-list strong { font-size: 13px; }
.tcc-buy-platform-list small { color: #8a8a8a; font-size: 11px; }
.tcc-buy-platform-ui { overflow: hidden; border: 1px solid #e2e2e2; border-radius: 22px; background: #fff; box-shadow: 0 24px 65px rgba(17,17,17,.08); }
.tcc-buy-ui-head { min-height: 58px; display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center; padding: 0 18px; border-bottom: 1px solid #ececec; }
.tcc-buy-ui-head > span { display: flex; gap: 5px; }
.tcc-buy-ui-head i { width: 8px; height: 8px; border-radius: 50%; background: #d46c58; }
.tcc-buy-ui-head i:nth-child(2) { background: #d0ad61; }
.tcc-buy-ui-head i:nth-child(3) { background: #80b77f; }
.tcc-buy-ui-head strong { font-size: 11px; }
.tcc-buy-ui-head b { color: var(--tcc-buy-red); font-size: 10px; }
.tcc-buy-ui-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; padding: 14px; }
.tcc-buy-ui-stats > div { min-height: 82px; display: grid; align-content: center; gap: 2px; padding: 13px; border: 1px solid #eaeaea; border-radius: 12px; }
.tcc-buy-ui-stats small { color: #999; font-size: 8px; }
.tcc-buy-ui-stats strong { font-size: 14px; }
.tcc-buy-ui-stats span { color: #929292; font-size: 9px; }
.tcc-buy-ui-body { display: grid; grid-template-columns: .95fr 1.05fr; gap: 10px; padding: 0 14px 14px; }
.tcc-buy-ui-timeline,
.tcc-buy-ui-route { min-height: 240px; padding: 18px; border: 1px solid #eaeaea; border-radius: 12px; background: #fcfcfc; }
.tcc-buy-ui-timeline > div { display: grid; grid-template-columns: 28px 1fr; grid-template-rows: auto auto; column-gap: 10px; padding: 8px 0; }
.tcc-buy-ui-timeline > div > span { grid-row: 1 / 3; width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid #ddd; border-radius: 50%; color: #bbb; font-size: 10px; }
.tcc-buy-ui-timeline .is-done > span { border-color: #81bb80; background: #81bb80; color: #fff; }
.tcc-buy-ui-timeline .is-active > span { border-color: var(--tcc-buy-red); color: var(--tcc-buy-red); }
.tcc-buy-ui-timeline strong { font-size: 10px; }
.tcc-buy-ui-timeline small { color: #999; font-size: 8px; }
.tcc-buy-ui-route { display: grid; align-content: center; justify-items: center; text-align: center; }
.tcc-buy-ui-route img { width: 88%; max-height: 150px; object-fit: contain; margin-bottom: 10px; }
.tcc-buy-ui-route strong { display: block; font-size: 11px; }
.tcc-buy-ui-route small { color: #999; font-size: 8px; }
.tcc-buy-ui-foot { min-height: 38px; display: flex; justify-content: space-between; align-items: center; padding: 0 16px; border-top: 1px solid #ececec; color: #999; font-size: 8px; }
.tcc-buy-ui-foot b { color: var(--tcc-buy-red); }

/* FAQ */
.tcc-buy-faq { background: #f8f8f8; }
.tcc-buy-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 76px; align-items: start; }
.tcc-buy-faq-copy { position: sticky; top: 170px; }
.tcc-buy-faq-list { overflow: hidden; border: 1px solid #e4e4e4; border-radius: 20px; background: #fff; box-shadow: 0 18px 50px rgba(17,17,17,.055); }
.tcc-buy-faq-list .tcc-faq-item { border-bottom: 1px solid #ececec; }
.tcc-buy-faq-list .tcc-faq-item:last-child { border-bottom: 0; }
.tcc-buy-faq-list .tcc-faq-item button { min-height: 74px; padding: 12px 18px; background: #fff; }
.tcc-buy-faq-list .tcc-faq-item button > span { display: flex; align-items: center; gap: 16px; font-size: 14px; font-weight: 800; line-height: 1.35; }
.tcc-buy-faq-list .tcc-faq-item button em { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(217,65,45,.23); border-radius: 50%; color: var(--tcc-buy-red); font-size: 9px; font-style: normal; font-weight: 850; }
.tcc-buy-faq-list .tcc-faq-item.is-open button { border-bottom: 1px solid rgba(217,65,45,.18); background: #fffdfc; }
.tcc-buy-faq-list .tcc-faq-answer { padding: 13px 54px 25px 68px; }
.tcc-buy-faq-list .tcc-faq-answer p { max-width: 700px; color: #717171; font-size: 13.5px; line-height: 1.72; }
.tcc-buy-faq-list .tcc-faq-answer strong { color: #202020; }

/* Final CTA */
.tcc-buy-final-cta {
  padding: 106px 0 100px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 84% 68%, rgba(217,65,45,.17), transparent 27%),
    radial-gradient(circle at 10% 20%, rgba(217,65,45,.08), transparent 23%),
    #0e1011;
}
.tcc-buy-final-cta .tcc-eyebrow { margin-bottom: 14px; }
.tcc-buy-final-route { display: flex; justify-content: center; align-items: center; gap: 10px; margin-bottom: 24px; }
.tcc-buy-final-route span,
.tcc-buy-final-route b { font-size: 8px; font-weight: 850; letter-spacing: .07em; }
.tcc-buy-final-route i { width: 54px; border-top: 1px dashed rgba(217,65,45,.55); }
.tcc-buy-final-route b { color: #fff; }
.tcc-buy-final-cta h2 { max-width: 900px; margin: 0 auto 16px; font-size: clamp(42px,4.8vw,64px); line-height: 1.02; letter-spacing: -.045em; }
.tcc-buy-final-cta p { max-width: 760px; margin: 0 auto 28px; color: #a9adaf; font-size: 14px; line-height: 1.65; }
.tcc-buy-final-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* Responsive */
@media (max-width: 1100px) {
  .tcc-buy-hero-grid { gap: 38px; }
  .tcc-buy-board-stage { min-height: 320px; }
  .tcc-buy-subnav .tcc-container { justify-content: flex-start; }
  .tcc-buy-process-track { grid-template-columns: repeat(4,1fr); row-gap: 36px; }
  .tcc-buy-process-track::before { display: none; }
  .tcc-buy-logistics-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .tcc-buy-hero-grid,
  .tcc-buy-fit-grid,
  .tcc-buy-payments-grid,
  .tcc-buy-control-grid,
  .tcc-buy-platform-grid,
  .tcc-buy-faq-grid { grid-template-columns: 1fr; }
  .tcc-buy-hero-grid { min-height: auto; padding-top: 70px; padding-bottom: 54px; }
  .tcc-buy-hero-copy h1 { max-width: 700px; }
  .tcc-buy-hero-visual { max-width: 760px; width: 100%; margin-inline: auto; }
  .tcc-buy-fit-grid,
  .tcc-buy-payments-grid,
  .tcc-buy-control-grid,
  .tcc-buy-platform-grid,
  .tcc-buy-faq-grid { gap: 46px; }
  .tcc-buy-mode-grid { grid-template-columns: 1fr; }
  .tcc-buy-mode-center { min-height: 40px; }
  .tcc-buy-mode-center::before { left: 30px; right: 30px; top: 50%; bottom: auto; border-left: 0; border-top: 1px dashed rgba(255,255,255,.12); }
  .tcc-buy-process-track { grid-template-columns: repeat(3,1fr); }
  .tcc-buy-channel-grid { grid-template-columns: repeat(2,1fr); }
  .tcc-buy-channel-card--wide { grid-template-columns: 120px 220px 1fr; }
  .tcc-buy-control-panel { max-width: 760px; width: 100%; margin-inline: auto; }
  .tcc-buy-faq-copy { position: static; }
}

@media (max-width: 700px) {
  .tcc-buy-subnav { top: 70px; }
  .tcc-buy-subnav .tcc-container { width: 100%; padding-inline: 20px; gap: 28px; }
  .tcc-buy-hero-grid { padding-top: 46px; }
  .tcc-buy-hero-copy h1 { font-size: clamp(44px,12vw,58px); }
  .tcc-buy-hero-lead { font-size: 16px; }
  .tcc-buy-board-head { grid-template-columns: 1fr auto; min-height: 60px; padding: 0 16px; }
  .tcc-buy-board-head > span { display: none; }
  .tcc-buy-mini-brand img { width: 105px; }
  .tcc-buy-board-route { padding: 16px 14px 12px; gap: 11px; }
  .tcc-buy-board-route strong { font-size: 11px; }
  .tcc-buy-board-stage { min-height: 420px; margin: 0 12px 12px; padding: 18px 12px; }
  .tcc-buy-source-panel,
  .tcc-buy-supplier-panel { position: relative; top: auto; left: auto; right: auto; width: 100%; min-height: 118px; }
  .tcc-buy-supplier-panel { margin-top: 42px; }
  .tcc-buy-board-arrow { top: 154px; }
  .tcc-buy-board-flowline { display: none; }
  .tcc-buy-board-bottom { left: 12px; right: 12px; bottom: 14px; gap: 6px; }
  .tcc-buy-board-bottom > div { min-height: 70px; display: grid; grid-template-columns: 1fr; grid-template-rows: 34px auto; justify-items: center; padding: 8px 5px; }
  .tcc-buy-board-bottom img { grid-row: auto; width: 31px; height: 31px; }
  .tcc-buy-board-bottom small { display: none; }
  .tcc-buy-board-bottom strong { font-size: 9px; }
  .tcc-buy-board-stats > div { padding: 0 10px; }
  .tcc-buy-board-stats small { font-size: 7px; }
  .tcc-buy-board-stats strong { font-size: 9px; }
  .tcc-buy-fit-cards,
  .tcc-buy-payments-steps,
  .tcc-buy-control-panel,
  .tcc-buy-logistics-grid,
  .tcc-buy-channel-grid { grid-template-columns: 1fr; }
  .tcc-buy-control-panel article + article { border-left: 0; border-top: 1px solid #e7e7e7; }
  .tcc-buy-channel-card--wide { grid-column: auto; min-height: 220px !important; display: block; }
  .tcc-buy-channel-card--wide > span { margin-bottom: 38px !important; }
  .tcc-buy-channel-card--wide h3 { margin-bottom: 9px; }
  .tcc-buy-process-track { grid-template-columns: repeat(2,1fr); }
  .tcc-buy-ui-body { grid-template-columns: 1fr; }
  .tcc-buy-ui-route { min-height: 190px; }
  .tcc-buy-faq-list .tcc-faq-item button { min-height: 68px; padding: 10px 13px; }
  .tcc-buy-faq-list .tcc-faq-item button > span { align-items: flex-start; gap: 10px; font-size: 13px; }
  .tcc-buy-faq-list .tcc-faq-item button em { flex-basis: 30px; width: 30px; height: 30px; }
  .tcc-buy-faq-list .tcc-faq-answer { padding: 12px 14px 22px; }
  .tcc-buy-faq-list .tcc-faq-answer p { font-size: 13px; line-height: 1.68; }
}

@media (max-width: 520px) {
  .tcc-buy-page .tcc-section { padding-top: 78px; padding-bottom: 78px; }
  .tcc-buy-hero-grid { width: min(calc(100% - 32px), var(--tcc-container)); }
  .tcc-buy-hero-actions .tcc-button { width: 100%; }
  .tcc-buy-hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; }
  .tcc-buy-board-route > span:first-child strong { max-width: 90px; }
  .tcc-buy-board-route > span:last-child strong { max-width: 90px; justify-self: end; }
  .tcc-buy-board-stats { grid-template-columns: 1fr; }
  .tcc-buy-board-stats > div { min-height: 48px; border-right: 0; border-bottom: 1px solid #ececec; }
  .tcc-buy-board-stats > div:last-child { border-bottom: 0; }
  .tcc-buy-visual-caption { font-size: 8px; }
  .tcc-buy-fit-copy h2,
  .tcc-buy-payments-copy h2,
  .tcc-buy-control-copy h2,
  .tcc-buy-platform-copy h2,
  .tcc-buy-faq-copy h2 { font-size: 39px; }
  .tcc-buy-fit-cards article { min-height: 0; }
  .tcc-buy-mode-card { min-height: 0; padding: 28px 22px 24px; }
  .tcc-buy-mode-card h3 { font-size: 24px; }
  .tcc-buy-process-track { grid-template-columns: 1fr; gap: 24px; }
  .tcc-buy-process-track article { display: grid; grid-template-columns: 48px 76px 1fr; grid-template-rows: auto auto auto; column-gap: 12px; text-align: left; align-items: center; }
  .tcc-buy-process-num { grid-row: 1 / 4; margin: 0; }
  .tcc-buy-process-icon { grid-row: 1 / 4; margin: 0; }
  .tcc-buy-process-track small,
  .tcc-buy-process-track h3,
  .tcc-buy-process-track p { max-width: none; margin-left: 0; margin-right: 0; }
  .tcc-buy-process-track small { margin-bottom: 2px; }
  .tcc-buy-process-track h3 { margin-bottom: 3px; }
  .tcc-buy-control-panel article { min-height: 0; padding: 24px; }
  .tcc-buy-platform-list > div { grid-template-columns: 34px 1fr; grid-template-rows: auto auto; gap: 4px 10px; padding: 9px 0; }
  .tcc-buy-platform-list span { grid-row: 1 / 3; }
  .tcc-buy-platform-list small { grid-column: 2; }
  .tcc-buy-ui-stats { grid-template-columns: 1fr; }
  .tcc-buy-final-cta { padding-top: 82px; padding-bottom: 82px; }
  .tcc-buy-final-cta h2 { font-size: 40px; }
  .tcc-buy-final-actions .tcc-button { width: 100%; }
}

/* =========================================================
   TCC WEB v1.6.1 · Compras en China Desktop Polish
   Scoped exclusively to /compras-en-china/ via .tcc-buy-page.
   ========================================================= */

.tcc-buy-page {
  --tcc-buy-card-shadow: 0 16px 44px rgba(17,17,17,.055);
}

/* Hero: slightly calmer proportions and cleaner optical balance. */
.tcc-buy-page .tcc-buy-hero-grid {
  column-gap: 64px;
}
.tcc-buy-page .tcc-buy-hero-copy h1 {
  letter-spacing: -.052em;
}
.tcc-buy-page .tcc-buy-hero-lead {
  max-width: 610px;
  line-height: 1.68;
}
.tcc-buy-page .tcc-buy-hero-actions {
  margin-bottom: 24px;
}
.tcc-buy-page .tcc-buy-hero-trust {
  row-gap: 9px;
}
.tcc-buy-page .tcc-buy-board {
  box-shadow: 0 26px 70px rgba(17,17,17,.085);
}

/* When-to-use: stop the headline overpowering the cards. */
.tcc-buy-page .tcc-buy-fit-grid {
  grid-template-columns: .9fr 1.1fr;
  gap: 68px;
}
.tcc-buy-page .tcc-buy-fit-copy h2 {
  max-width: 570px;
  font-size: clamp(46px,3.65vw,58px);
  line-height: 1.01;
}
.tcc-buy-page .tcc-buy-fit-cards {
  gap: 16px;
}
.tcc-buy-page .tcc-buy-fit-cards article {
  min-height: 194px;
  padding: 27px 26px;
  box-shadow: var(--tcc-buy-card-shadow);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.tcc-buy-page .tcc-buy-fit-cards article:hover {
  transform: translateY(-2px);
  border-color: rgba(217,65,45,.22);
  box-shadow: 0 20px 48px rgba(17,17,17,.07);
}

/* Two starting paths: clearer central divider and tighter internal rhythm. */
.tcc-buy-page .tcc-buy-mode-grid {
  grid-template-columns: minmax(0,1fr) 70px minmax(0,1fr);
  gap: 14px;
}
.tcc-buy-page .tcc-buy-mode-card {
  padding: 32px 32px 30px;
}
.tcc-buy-page .tcc-buy-mode-card h3 {
  margin-bottom: 21px;
}
.tcc-buy-page .tcc-buy-mode-card li {
  padding-top: 11px;
  padding-bottom: 11px;
}
.tcc-buy-page .tcc-buy-mode-center::before {
  top: 20px;
  bottom: 20px;
  border-left-color: rgba(255,255,255,.16);
}
.tcc-buy-page .tcc-buy-mode-center span {
  width: 40px;
  height: 40px;
  box-shadow: 0 0 0 7px #101214;
}

/* Seven-step process: larger microcopy and slightly less unused vertical space. */
.tcc-buy-page .tcc-buy-process {
  padding-top: 94px;
  padding-bottom: 92px;
}
.tcc-buy-page .tcc-buy-process .tcc-section-heading--center {
  margin-bottom: 38px;
}
.tcc-buy-page .tcc-buy-process-track {
  column-gap: 15px;
}
.tcc-buy-page .tcc-buy-process-num {
  margin-bottom: 15px;
}
.tcc-buy-page .tcc-buy-process-icon {
  width: 74px;
  height: 64px;
  margin-bottom: 12px;
  box-shadow: 0 10px 26px rgba(17,17,17,.035);
}
.tcc-buy-page .tcc-buy-process-track h3 {
  max-width: 158px;
  font-size: 15.5px;
  line-height: 1.16;
}
.tcc-buy-page .tcc-buy-process-track p {
  max-width: 158px;
  font-size: 11.6px;
  line-height: 1.5;
}

/* Payments: stronger balance between copy and four cards. */
.tcc-buy-page .tcc-buy-payments-grid {
  grid-template-columns: .94fr 1.06fr;
  gap: 64px;
}
.tcc-buy-page .tcc-buy-payments-copy h2 {
  max-width: 570px;
  font-size: clamp(46px,3.55vw,57px);
}
.tcc-buy-page .tcc-buy-payments-steps article {
  min-height: 178px;
  padding: 25px;
  box-shadow: 0 12px 34px rgba(17,17,17,.035);
}

/* Marketplaces: turn the plain boxes into a more deliberate sourcing system. */
.tcc-buy-page .tcc-buy-channel-grid {
  gap: 16px;
}
.tcc-buy-page .tcc-buy-channel-grid article {
  position: relative;
  overflow: hidden;
  min-height: 224px;
  padding: 27px 25px;
  border-color: #e7e4e3;
  box-shadow: 0 14px 40px rgba(17,17,17,.04);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.tcc-buy-page .tcc-buy-channel-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--tcc-buy-red), rgba(217,65,45,.14) 38%, transparent 70%);
  opacity: .78;
}
.tcc-buy-page .tcc-buy-channel-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(217,65,45,.24);
  box-shadow: 0 20px 50px rgba(17,17,17,.065);
}
.tcc-buy-page .tcc-buy-channel-grid article > span {
  margin-bottom: 32px;
  letter-spacing: .01em;
}
.tcc-buy-page .tcc-buy-channel-grid h3 {
  font-size: 18px;
}
.tcc-buy-page .tcc-buy-channel-card--wide {
  min-height: 128px !important;
  grid-template-columns: 130px 260px 1fr;
}
.tcc-buy-page .tcc-buy-channel-card--wide::before {
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--tcc-buy-red), rgba(217,65,45,.08));
}

/* Control in China: modestly tighter, with a clearer two-tier service split. */
.tcc-buy-page .tcc-buy-control-grid {
  gap: 66px;
}
.tcc-buy-page .tcc-buy-control-panel article {
  min-height: 372px;
  padding: 28px;
}
.tcc-buy-page .tcc-buy-control-note {
  margin-top: 18px;
}

/* Logistics: uniform asset treatment. FCL now uses transparent approved artwork. */
.tcc-buy-page .tcc-buy-logistics-grid {
  gap: 16px;
}
.tcc-buy-page .tcc-buy-logistics-card {
  min-height: 376px;
}
.tcc-buy-page .tcc-buy-logistics-card > div {
  height: 126px;
  margin-top: 10px;
  background: linear-gradient(145deg,#0d0f10,#121516);
}
.tcc-buy-page .tcc-buy-logistics-card:nth-child(4) > div img {
  width: 176px;
  max-height: 112px;
  object-fit: contain;
}

/* Platform: reduce excess air so CTA remains visually attached to its content. */
.tcc-buy-page .tcc-buy-platform {
  padding-top: 88px;
  padding-bottom: 90px;
}
.tcc-buy-page .tcc-buy-platform-grid {
  grid-template-columns: .8fr 1.2fr;
  gap: 62px;
}
.tcc-buy-page .tcc-buy-platform-copy h2 {
  max-width: 560px;
  font-size: clamp(45px,3.5vw,56px);
  line-height: 1.02;
}
.tcc-buy-page .tcc-buy-platform-copy > p {
  margin-bottom: 19px;
}
.tcc-buy-page .tcc-buy-platform-list {
  margin-top: 19px;
  margin-bottom: 20px;
}
.tcc-buy-page .tcc-buy-platform-list > div {
  min-height: 53px;
}
.tcc-buy-page .tcc-buy-platform-ui {
  box-shadow: 0 22px 58px rgba(17,17,17,.075);
}

/* FAQ: compact headers, more comfortable open-answer measure. */
.tcc-buy-page .tcc-buy-faq {
  padding-top: 94px;
  padding-bottom: 96px;
}
.tcc-buy-page .tcc-buy-faq-grid {
  gap: 68px;
}
.tcc-buy-page .tcc-buy-faq-copy h2 {
  max-width: 480px;
  font-size: clamp(46px,3.5vw,56px);
}
.tcc-buy-page .tcc-buy-faq-list .tcc-faq-item button {
  min-height: 70px;
  padding: 11px 18px;
}
.tcc-buy-page .tcc-buy-faq-list .tcc-faq-answer {
  padding: 14px 52px 24px 68px;
}
.tcc-buy-page .tcc-buy-faq-list .tcc-faq-answer p {
  max-width: 670px;
  font-size: 13.4px;
  line-height: 1.68;
}

/* Keep tablet/mobile behavior from v1.6.0 intact. */
@media (max-width: 900px) {
  .tcc-buy-page .tcc-buy-fit-grid,
  .tcc-buy-page .tcc-buy-payments-grid,
  .tcc-buy-page .tcc-buy-platform-grid {
    grid-template-columns: 1fr;
  }
  .tcc-buy-page .tcc-buy-mode-grid {
    grid-template-columns: 1fr;
  }
  .tcc-buy-page .tcc-buy-process {
    padding-top: 78px;
    padding-bottom: 78px;
  }
  .tcc-buy-page .tcc-buy-platform,
  .tcc-buy-page .tcc-buy-faq {
    padding-top: 78px;
    padding-bottom: 78px;
  }
}

@media (max-width: 700px) {
  .tcc-buy-page .tcc-buy-fit-copy h2,
  .tcc-buy-page .tcc-buy-payments-copy h2,
  .tcc-buy-page .tcc-buy-platform-copy h2,
  .tcc-buy-page .tcc-buy-faq-copy h2 {
    font-size: 42px;
  }
  .tcc-buy-page .tcc-buy-channel-grid article {
    min-height: 0;
  }
  .tcc-buy-page .tcc-buy-channel-card--wide {
    min-height: 0 !important;
  }
}

/* ========================================================================== 
   TCC WEB v1.7.0 · PRÓXIMOS ENVÍOS
   New page only. Previous approved pages inherit the exact v1.6.1 rules above.
   ========================================================================== */
.tcc-schedule-page {
  --schedule-red: #d9412d;
  --schedule-ink: #101214;
  --schedule-muted: #66615f;
  --schedule-line: #e8e4e2;
  --schedule-soft: #f8f7f6;
  background: #fff;
}
.tcc-schedule-page h1,
.tcc-schedule-page h2,
.tcc-schedule-page h3 { text-wrap: balance; }

/* Hero */
.tcc-schedule-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--schedule-line);
  background:
    radial-gradient(circle at 87% 18%, rgba(217,65,45,.10), transparent 28%),
    radial-gradient(circle at 95% 88%, rgba(217,65,45,.035), transparent 24%),
    linear-gradient(180deg,#fff 0%,#fbfaf9 100%);
}
.tcc-schedule-hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -270px;
  bottom: -245px;
  border: 1px solid rgba(217,65,45,.13);
  border-radius: 50%;
  pointer-events: none;
}
.tcc-schedule-hero-grid {
  min-height: 660px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 58px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
}
.tcc-schedule-hero-copy { position: relative; z-index: 2; }
.tcc-schedule-hero-copy h1 {
  max-width: 590px;
  margin: 16px 0 22px;
  font-size: clamp(50px,4.5vw,68px);
  line-height: .99;
  letter-spacing: -.052em;
  font-weight: 820;
}
.tcc-schedule-hero-copy h1 span { color: var(--schedule-red); }
.tcc-schedule-hero-lead {
  max-width: 595px;
  margin: 0 0 28px;
  color: #595554;
  font-size: 17px;
  line-height: 1.62;
}
.tcc-schedule-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.tcc-schedule-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #dedad8;
}
.tcc-schedule-hero-facts span {
  display: grid;
  gap: 2px;
  color: #6e6967;
  font-size: 12px;
}
.tcc-schedule-hero-facts b {
  color: #171717;
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.tcc-schedule-hero-board {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #e3dfdd;
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 28px 72px rgba(17,17,17,.09);
}
.tcc-schedule-board-head {
  min-height: 70px;
  display: grid;
  grid-template-columns: 138px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid #ece8e6;
}
.tcc-schedule-board-brand img { width: 118px; }
.tcc-schedule-board-head strong { font-size: 15px; text-align: center; }
.tcc-schedule-board-head > span {
  color: var(--schedule-red);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .11em;
}
.tcc-schedule-board-route {
  display: grid;
  grid-template-columns: 1fr minmax(180px,2.5fr) 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 25px 16px;
}
.tcc-schedule-board-route > div:first-child,
.tcc-schedule-board-route > div:last-child { display: grid; gap: 2px; }
.tcc-schedule-board-route > div:last-child { text-align: right; }
.tcc-schedule-board-route small { color: #888280; font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.tcc-schedule-board-route strong { font-size: 15px; }
.tcc-schedule-route-line { display: flex; align-items: center; }
.tcc-schedule-route-line i { flex: 1; border-top: 1px dashed rgba(217,65,45,.6); }
.tcc-schedule-route-line b {
  min-width: 45px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 7px;
  border: 1px solid rgba(217,65,45,.22);
  border-radius: 999px;
  color: var(--schedule-red);
  font-size: 9px;
  letter-spacing: .05em;
  background: #fff;
}
.tcc-schedule-board-list {
  display: grid;
  gap: 10px;
  margin: 0 22px 18px;
  padding: 14px;
  border: 1px solid #ebe7e5;
  border-radius: 16px;
  background: linear-gradient(145deg,#fafafa,#f7f6f5);
}
.tcc-schedule-board-list article {
  min-height: 88px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid #e8e4e2;
  border-radius: 13px;
  background: #fff;
}
.tcc-schedule-board-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid #ebe7e5;
  border-radius: 12px;
  background: #faf9f8;
}
.tcc-schedule-board-icon img { width: 31px; max-height: 30px; object-fit: contain; }
.tcc-schedule-board-list article > div { display: grid; gap: 2px; }
.tcc-schedule-board-list small { color: var(--schedule-red); font-size: 9px; font-weight: 850; letter-spacing: .08em; }
.tcc-schedule-board-list strong { font-size: 15px; line-height: 1.15; }
.tcc-schedule-board-list em { color: #7c7674; font-size: 10.5px; font-style: normal; }
.tcc-schedule-board-list article > b {
  min-width: 68px;
  padding: 7px 8px;
  border-radius: 999px;
  text-align: center;
  font-size: 8px;
  letter-spacing: .08em;
}
.tcc-schedule-board-list .is-open { color: #27774a; background: #edf7f1; }
.tcc-schedule-board-list .is-watch { color: #aa6c00; background: #fff5de; }
.tcc-schedule-board-list .is-booking { color: var(--schedule-red); background: #fff0ed; }
.tcc-schedule-board-foot {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  padding: 0 24px 20px;
  color: #5f5a58;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
}
.tcc-schedule-board-foot i { width: 5px; height: 5px; border-radius: 50%; background: var(--schedule-red); }

/* Internal nav */
.tcc-schedule-subnav {
  position: sticky;
  top: 78px;
  z-index: 80;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid #ece9e7;
  backdrop-filter: blur(12px);
}
.tcc-schedule-subnav .tcc-container {
  min-height: 58px;
  display: flex;
  justify-content: center;
  gap: 42px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.tcc-schedule-subnav .tcc-container::-webkit-scrollbar { display: none; }
.tcc-schedule-subnav a {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 720;
  transition: color .18s ease;
}
.tcc-schedule-subnav a:hover { color: var(--schedule-red); }

/* Service schedule blocks */
.tcc-schedule-services { padding: 104px 0 96px; }
.tcc-schedule-services .tcc-section-heading { max-width: 830px; }
.tcc-schedule-services .tcc-section-heading h2 { font-size: clamp(42px,3.7vw,56px); }
.tcc-schedule-service-list { display: grid; gap: 26px; }
.tcc-schedule-service {
  scroll-margin-top: 160px;
  overflow: hidden;
  border: 1px solid #e5e1df;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(17,17,17,.045);
}
.tcc-schedule-service-topline {
  min-height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 28px;
  border-bottom: 1px solid #eeeae8;
  background: #fcfbfb;
}
.tcc-schedule-service-number { color: #98918e; font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.tcc-schedule-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.tcc-schedule-status i { width: 7px; height: 7px; border-radius: 50%; }
.tcc-schedule-status--open { color: #27774a; background: #edf7f1; }
.tcc-schedule-status--open i { background: #3ca268; }
.tcc-schedule-status--watch { color: #9a6100; background: #fff5de; }
.tcc-schedule-status--watch i { background: #e2a22e; }
.tcc-schedule-status--booking { color: #b83323; background: #fff0ed; }
.tcc-schedule-status--booking i { background: var(--schedule-red); }
.tcc-schedule-service-grid {
  min-height: 345px;
  display: grid;
  grid-template-columns: 1.05fr .9fr .75fr;
  gap: 34px;
  align-items: center;
  padding: 35px 36px 38px;
}
.tcc-schedule-service-copy { min-width: 0; }
.tcc-schedule-kicker { display: block; margin-bottom: 8px; color: var(--schedule-red); font-size: 10px; font-weight: 850; letter-spacing: .09em; }
.tcc-schedule-service-copy h3 {
  max-width: 500px;
  margin: 0 0 12px;
  font-size: clamp(30px,2.6vw,41px);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.tcc-schedule-route-pill { margin: 0 0 15px; }
.tcc-schedule-route-pill span {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid #e6e1df;
  border-radius: 999px;
  background: #faf9f8;
  font-size: 10px;
  font-weight: 780;
}
.tcc-schedule-service-copy > p { max-width: 520px; margin: 0; color: #6c6664; font-size: 14px; line-height: 1.62; }
.tcc-schedule-service-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 23px; }
.tcc-schedule-service-actions .tcc-button { min-height: 46px; font-size: 13px; }
.tcc-schedule-text-link { color: #242120; font-size: 12px; font-weight: 780; }
.tcc-schedule-text-link span { margin-left: 7px; color: var(--schedule-red); }
.tcc-schedule-text-link--red { color: var(--schedule-red); }
.tcc-schedule-service-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #e9e5e3;
  border-radius: 17px;
  overflow: hidden;
  background: #faf9f8;
}
.tcc-schedule-service-facts > div { min-height: 112px; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 18px; border-bottom: 1px solid #e9e5e3; border-right: 1px solid #e9e5e3; }
.tcc-schedule-service-facts > div:nth-child(2n) { border-right: 0; }
.tcc-schedule-service-facts > div:nth-last-child(-n+2) { border-bottom: 0; }
.tcc-schedule-service-facts small { color: #918a87; font-size: 8px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.tcc-schedule-service-facts strong { font-size: 12.5px; line-height: 1.3; }
.tcc-schedule-service-art {
  min-height: 235px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(145deg,#faf9f8,#f4f2f1);
}
.tcc-schedule-service-art img { width: 90%; max-height: 215px; object-fit: contain; }
.tcc-schedule-service--air .tcc-schedule-service-art img { width: 84%; }
.tcc-schedule-service--ocean .tcc-schedule-service-art img { width: 96%; }
.tcc-schedule-service--fcl .tcc-schedule-service-art img { width: 91%; }
.tcc-schedule-external-note {
  margin-top: 22px;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid #e4dfdc;
  border-radius: 13px;
  background: #faf9f8;
  color: #77706d;
  font-size: 11px;
  line-height: 1.55;
}
.tcc-schedule-external-note strong { color: #201e1d; }

/* Timeline */
.tcc-schedule-calendar { padding: 98px 0 108px; background: #f8f8f8; }
.tcc-schedule-calendar .tcc-section-heading h2 { font-size: clamp(42px,3.6vw,55px); }
.tcc-schedule-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 14px;
  padding-top: 18px;
}
.tcc-schedule-timeline::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 38px;
  border-top: 1px dashed rgba(217,65,45,.30);
}
.tcc-schedule-timeline article { position: relative; z-index: 1; text-align: center; }
.tcc-schedule-timeline-num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border: 1px solid rgba(217,65,45,.24);
  border-radius: 50%;
  background: #fff;
  color: var(--schedule-red);
  font-size: 9px;
  font-weight: 850;
}
.tcc-schedule-timeline-icon {
  width: 76px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
  border: 1px solid #e8e4e2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17,17,17,.025);
}
.tcc-schedule-timeline-icon img { width: 34px; max-height: 34px; object-fit: contain; }
.tcc-schedule-timeline-icon strong { color: var(--schedule-red); font-size: 16px; }
.tcc-schedule-timeline h3 { margin: 0 0 7px; font-size: 16px; line-height: 1.15; }
.tcc-schedule-timeline p { max-width: 175px; margin: 0 auto; color: #85807d; font-size: 11px; line-height: 1.5; }

/* Dark date dictionary */
.tcc-schedule-terms {
  padding: 100px 0 105px;
  color: #fff;
  background:
    radial-gradient(circle at 88% 80%, rgba(217,65,45,.15), transparent 25%),
    radial-gradient(circle at 8% 18%, rgba(217,65,45,.07), transparent 22%),
    #101214;
}
.tcc-schedule-terms .tcc-eyebrow { color: #ef563f; }
.tcc-schedule-terms-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.tcc-schedule-terms-grid article {
  min-height: 255px;
  padding: 26px 24px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 17px;
  background: rgba(255,255,255,.035);
}
.tcc-schedule-terms-grid article > span { float: right; color: rgba(255,255,255,.26); font-size: 10px; font-weight: 850; }
.tcc-schedule-terms-grid small { display: block; margin: 38px 0 11px; color: #ef563f; font-size: 9px; font-weight: 850; letter-spacing: .1em; }
.tcc-schedule-terms-grid h3 { margin: 0 0 11px; font-size: 22px; line-height: 1.05; }
.tcc-schedule-terms-grid p { margin: 0; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.58; }
.tcc-schedule-terms-grid em { color: rgba(255,255,255,.82); font-style: normal; }
.tcc-schedule-port-note {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 42px 1fr;
  align-items: center;
  padding: 18px 23px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(0,0,0,.18);
}
.tcc-schedule-port-note div { display: grid; gap: 3px; text-align: center; }
.tcc-schedule-port-note b { font-size: 15px; }
.tcc-schedule-port-note span { color: rgba(255,255,255,.52); font-size: 10px; }
.tcc-schedule-port-note i { color: #ef563f; text-align: center; font-size: 22px; font-style: normal; }

/* Before warehouse */
.tcc-schedule-origin { padding: 110px 0; }
.tcc-schedule-origin-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.tcc-schedule-origin-copy h2 { max-width: 510px; margin: 14px 0 18px; font-size: clamp(44px,3.8vw,58px); line-height: 1.01; letter-spacing: -.045em; }
.tcc-schedule-origin-copy p { max-width: 520px; margin: 0 0 22px; color: #696462; font-size: 15px; line-height: 1.65; }
.tcc-schedule-origin-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tcc-schedule-origin-paths article {
  min-height: 350px;
  padding: 28px;
  border: 1px solid #e7e3e1;
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(17,17,17,.045);
  background: #fff;
}
.tcc-schedule-origin-paths article > span { color: var(--schedule-red); font-size: 9px; font-weight: 850; letter-spacing: .08em; }
.tcc-schedule-origin-icon { width: 78px; height: 72px; display: grid; place-items: center; margin: 28px 0 22px; border: 1px solid #ebe7e5; border-radius: 14px; background: #faf9f8; }
.tcc-schedule-origin-icon img { width: 53px; max-height: 53px; object-fit: contain; }
.tcc-schedule-origin-paths h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.1; }
.tcc-schedule-origin-paths p { margin: 0 0 22px; color: #797370; font-size: 12px; line-height: 1.55; }
.tcc-schedule-origin-paths a { font-size: 11px; font-weight: 800; }
.tcc-schedule-origin-paths a b { margin-left: 5px; color: var(--schedule-red); }

/* External logistics context */
.tcc-schedule-alerts { padding: 84px 0; background: #f8f7f6; }
.tcc-schedule-alerts-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: center; }
.tcc-schedule-alerts-grid > div:first-child h2 { max-width: 520px; margin: 13px 0 15px; font-size: clamp(38px,3.2vw,50px); line-height: 1.02; letter-spacing: -.04em; }
.tcc-schedule-alerts-grid > div:first-child p { max-width: 530px; margin: 0; color: #6b6663; font-size: 14px; line-height: 1.64; }
.tcc-schedule-alert-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.tcc-schedule-alert-cards article { min-height: 210px; padding: 25px; border: 1px solid #e6e2df; border-radius: 17px; background: #fff; }
.tcc-schedule-alert-cards span { color: var(--schedule-red); font-size: 9px; font-weight: 850; letter-spacing: .08em; }
.tcc-schedule-alert-cards h3 { margin: 34px 0 10px; font-size: 20px; }
.tcc-schedule-alert-cards p { margin: 0; color: #77716f; font-size: 12px; line-height: 1.55; }

/* FAQ */
.tcc-schedule-faq { padding: 106px 0 108px; }
.tcc-schedule-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; align-items: start; }
.tcc-schedule-faq-copy { position: sticky; top: 170px; }
.tcc-schedule-faq-copy h2 { max-width: 450px; margin: 15px 0 19px; font-size: clamp(45px,3.6vw,58px); line-height: 1.02; letter-spacing: -.045em; }
.tcc-schedule-faq-copy p { max-width: 450px; margin: 0 0 23px; color: #6d6865; font-size: 14px; line-height: 1.62; }
.tcc-schedule-faq-list { overflow: hidden; border: 1px solid #e5e1df; border-radius: 19px; background: #fff; box-shadow: 0 18px 48px rgba(17,17,17,.05); }
.tcc-schedule-faq-list .tcc-faq-item { border-bottom: 1px solid #ece8e6; }
.tcc-schedule-faq-list .tcc-faq-item:last-child { border-bottom: 0; }
.tcc-schedule-faq-list .tcc-faq-item button {
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 46px 1fr 18px;
  gap: 14px;
  align-items: center;
  padding: 10px 18px;
  border: 0;
  background: #fff;
  cursor: pointer;
  text-align: left;
}
.tcc-schedule-faq-list .tcc-faq-item button > span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(217,65,45,.23); border-radius: 50%; color: var(--schedule-red); font-size: 9px; font-weight: 820; }
.tcc-schedule-faq-list .tcc-faq-item button strong { font-size: 13.5px; line-height: 1.25; }
.tcc-schedule-faq-list .tcc-faq-item button b { color: var(--schedule-red); font-size: 17px; font-weight: 400; }
.tcc-schedule-faq-list .tcc-faq-item.is-open button { border-bottom: 2px solid var(--schedule-red); }
.tcc-schedule-faq-list .tcc-faq-answer { padding: 14px 52px 24px 78px; }
.tcc-schedule-faq-list .tcc-faq-answer p { max-width: 690px; margin: 0; color: #77716e; font-size: 13px; line-height: 1.68; }

/* Final CTA */
.tcc-schedule-cta {
  padding: 96px 0 94px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 87% 88%, rgba(217,65,45,.14), transparent 25%),
    radial-gradient(circle at 10% 10%, rgba(217,65,45,.08), transparent 22%),
    #0e1011;
}
.tcc-schedule-cta .tcc-eyebrow { color: #ef563f; }
.tcc-schedule-cta-inner { max-width: 900px; }
.tcc-schedule-cta-route { display: flex; justify-content: center; align-items: center; gap: 10px; margin: 15px auto 25px; font-size: 8px; font-weight: 850; letter-spacing: .09em; }
.tcc-schedule-cta-route i { width: 46px; border-top: 1px dashed rgba(239,86,63,.5); }
.tcc-schedule-cta-route b { color: #fff; }
.tcc-schedule-cta-inner h2 { margin: 0 auto 17px; font-size: clamp(45px,4vw,62px); line-height: 1.02; letter-spacing: -.045em; }
.tcc-schedule-cta-inner > p { max-width: 720px; margin: 0 auto 27px; color: rgba(255,255,255,.60); font-size: 14px; line-height: 1.55; }
.tcc-schedule-cta-inner > div:last-child { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

@media (max-width: 1100px) {
  .tcc-schedule-hero-grid { gap: 36px; grid-template-columns: .86fr 1.14fr; }
  .tcc-schedule-service-grid { grid-template-columns: 1fr 1fr; }
  .tcc-schedule-service-art { grid-column: 1 / -1; min-height: 190px; }
  .tcc-schedule-service-art img { max-height: 175px; }
  .tcc-schedule-subnav .tcc-container { justify-content: flex-start; }
  .tcc-schedule-timeline { grid-template-columns: repeat(3,1fr); row-gap: 38px; }
  .tcc-schedule-timeline::before { display: none; }
}

@media (max-width: 900px) {
  .tcc-schedule-hero-grid { min-height: 0; grid-template-columns: 1fr; padding-top: 60px; padding-bottom: 64px; }
  .tcc-schedule-hero-copy { text-align: left; }
  .tcc-schedule-hero-board { max-width: 680px; width: 100%; margin: 0 auto; }
  .tcc-schedule-subnav { top: 70px; }
  .tcc-schedule-service-grid { grid-template-columns: 1fr; }
  .tcc-schedule-service-art { grid-column: auto; }
  .tcc-schedule-terms-grid { grid-template-columns: 1fr 1fr; }
  .tcc-schedule-origin-grid,
  .tcc-schedule-alerts-grid,
  .tcc-schedule-faq-grid { grid-template-columns: 1fr; gap: 46px; }
  .tcc-schedule-faq-copy { position: static; }
  .tcc-schedule-origin-copy h2,
  .tcc-schedule-alerts-grid > div:first-child h2 { max-width: 650px; }
}

@media (max-width: 700px) {
  .tcc-schedule-hero-grid { padding-top: 44px; padding-bottom: 48px; }
  .tcc-schedule-hero-copy h1 { font-size: 46px; }
  .tcc-schedule-hero-lead { font-size: 16px; }
  .tcc-schedule-hero-facts { display: grid; grid-template-columns: 1fr 1fr; }
  .tcc-schedule-board-head { grid-template-columns: 110px 1fr; padding: 0 16px; }
  .tcc-schedule-board-head > span { display: none; }
  .tcc-schedule-board-brand img { width: 98px; }
  .tcc-schedule-board-route { grid-template-columns: 1fr 1.6fr 1fr; gap: 8px; padding-inline: 16px; }
  .tcc-schedule-board-list { margin-inline: 12px; padding: 9px; }
  .tcc-schedule-board-list article { grid-template-columns: 45px 1fr; min-height: 82px; padding: 10px; }
  .tcc-schedule-board-icon { width: 43px; height: 43px; }
  .tcc-schedule-board-list article > b { grid-column: 2; justify-self: start; min-width: 0; padding: 4px 7px; }
  .tcc-schedule-board-foot { flex-wrap: wrap; padding-inline: 14px; }
  .tcc-schedule-subnav .tcc-container { width: 100%; padding: 0 20px; gap: 28px; }
  .tcc-schedule-services,
  .tcc-schedule-calendar,
  .tcc-schedule-origin,
  .tcc-schedule-faq { padding-top: 76px; padding-bottom: 78px; }
  .tcc-schedule-services .tcc-section-heading h2,
  .tcc-schedule-calendar .tcc-section-heading h2 { font-size: 39px; }
  .tcc-schedule-service-topline { padding-inline: 18px; }
  .tcc-schedule-service-grid { padding: 28px 20px 26px; gap: 24px; }
  .tcc-schedule-service-copy h3 { font-size: 34px; }
  .tcc-schedule-service-facts { grid-template-columns: 1fr; }
  .tcc-schedule-service-facts > div { min-height: 88px; border-right: 0; border-bottom: 1px solid #e9e5e3 !important; }
  .tcc-schedule-service-facts > div:last-child { border-bottom: 0 !important; }
  .tcc-schedule-external-note { grid-template-columns: 1fr; }
  .tcc-schedule-timeline { grid-template-columns: 1fr 1fr; row-gap: 34px; }
  .tcc-schedule-terms { padding: 76px 0 80px; }
  .tcc-schedule-terms-grid { grid-template-columns: 1fr; }
  .tcc-schedule-terms-grid article { min-height: 210px; }
  .tcc-schedule-port-note { grid-template-columns: 1fr; gap: 12px; }
  .tcc-schedule-port-note i { transform: rotate(90deg); }
  .tcc-schedule-origin-paths,
  .tcc-schedule-alert-cards { grid-template-columns: 1fr; }
  .tcc-schedule-origin-copy h2,
  .tcc-schedule-faq-copy h2 { font-size: 42px; }
  .tcc-schedule-faq-list .tcc-faq-item button { grid-template-columns: 42px 1fr 16px; padding-inline: 12px; }
  .tcc-schedule-faq-list .tcc-faq-answer { padding: 14px 22px 22px 66px; }
  .tcc-schedule-cta { padding: 78px 0; }
  .tcc-schedule-cta-inner h2 { font-size: 43px; }
}

@media (max-width: 480px) {
  .tcc-schedule-hero-copy h1 { font-size: 41px; }
  .tcc-schedule-hero-facts { grid-template-columns: 1fr; }
  .tcc-schedule-board-route { grid-template-columns: 1fr 1.25fr 1fr; }
  .tcc-schedule-timeline { grid-template-columns: 1fr; }
  .tcc-schedule-timeline article { display: grid; grid-template-columns: 44px 66px 1fr; column-gap: 12px; text-align: left; align-items: center; }
  .tcc-schedule-timeline-num,
  .tcc-schedule-timeline-icon { margin: 0; }
  .tcc-schedule-timeline h3,
  .tcc-schedule-timeline p { grid-column: 3; max-width: none; margin-inline: 0; }
  .tcc-schedule-timeline h3 { align-self: end; }
  .tcc-schedule-timeline p { align-self: start; }
  .tcc-schedule-service-copy h3 { font-size: 31px; }
}

/* ========================================================================== 
   TCC WEB v1.7.1 · PRÓXIMOS ENVÍOS · DESKTOP POLISH + SCHEDULE READY
   Exclusively scoped to .tcc-schedule-page. Approved pages remain unchanged.
   ========================================================================== */

/* Compact live/operational summary */
.tcc-schedule-page .tcc-schedule-now {
  padding: 34px 0 0;
  background: #fff;
}
.tcc-schedule-page .tcc-schedule-now-panel {
  overflow: hidden;
  border: 1px solid #e6e1df;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(17,17,17,.045);
}
.tcc-schedule-page .tcc-schedule-now-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 34px;
  align-items: end;
  padding: 24px 28px 20px;
  border-bottom: 1px solid #ece8e6;
  background: linear-gradient(180deg,#fff,#fdfcfb);
}
.tcc-schedule-page .tcc-schedule-now-heading h2 {
  margin: 5px 0 0;
  font-size: clamp(25px,2.3vw,33px);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.tcc-schedule-page .tcc-schedule-now-heading p {
  max-width: 500px;
  justify-self: end;
  margin: 0;
  color: #77716e;
  font-size: 11px;
  line-height: 1.55;
  text-align: right;
}
.tcc-schedule-page .tcc-schedule-now-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
}
.tcc-schedule-page .tcc-schedule-now-row {
  min-width: 0;
  display: grid;
  gap: 15px;
  padding: 20px 24px 19px;
  border-right: 1px solid #ece8e6;
  background: #fff;
  transition: background .18s ease, transform .18s ease;
}
.tcc-schedule-page .tcc-schedule-now-row:last-child { border-right: 0; }
.tcc-schedule-page .tcc-schedule-now-row:hover {
  background: #fcfbfa;
}
.tcc-schedule-page .tcc-schedule-now-mode {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.tcc-schedule-page .tcc-schedule-now-mode > strong {
  font-size: 14px;
  letter-spacing: -.015em;
}
.tcc-schedule-page .tcc-schedule-now-mode .tcc-schedule-status {
  flex: 0 0 auto;
  padding: 5px 8px;
  font-size: 7.5px;
}
.tcc-schedule-page .tcc-schedule-now-data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tcc-schedule-page .tcc-schedule-now-data span {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding-top: 11px;
  border-top: 1px solid #f0ecea;
}
.tcc-schedule-page .tcc-schedule-now-data small {
  color: #9a9491;
  font-size: 7.5px;
  font-weight: 850;
  letter-spacing: .08em;
}
.tcc-schedule-page .tcc-schedule-now-data b {
  overflow-wrap: anywhere;
  font-size: 11.5px;
  line-height: 1.35;
}
.tcc-schedule-page .tcc-schedule-now-link {
  color: var(--schedule-red);
  font-size: 10px;
  font-weight: 800;
}
.tcc-schedule-page .tcc-schedule-now-link b {
  display: inline-block;
  margin-left: 5px;
  transition: transform .18s ease;
}
.tcc-schedule-page .tcc-schedule-now-row:hover .tcc-schedule-now-link b { transform: translateX(3px); }

/* Desktop density and hierarchy polish */
@media (min-width: 901px) {
  .tcc-schedule-page .tcc-schedule-services {
    padding: 70px 0 84px;
  }
  .tcc-schedule-page .tcc-schedule-services .tcc-section-heading {
    margin-bottom: 36px;
  }
  .tcc-schedule-page .tcc-schedule-service-list { gap: 20px; }
  .tcc-schedule-page .tcc-schedule-service-topline {
    min-height: 48px;
    padding: 0 24px;
  }
  .tcc-schedule-page .tcc-schedule-service-grid {
    min-height: 300px;
    grid-template-columns: 1.08fr .9fr .7fr;
    gap: 27px;
    padding: 28px 30px 30px;
  }
  .tcc-schedule-page .tcc-schedule-service-copy h3 {
    max-width: 470px;
    margin-bottom: 10px;
    font-size: clamp(30px,2.35vw,38px);
  }
  .tcc-schedule-page .tcc-schedule-route-pill { margin-bottom: 12px; }
  .tcc-schedule-page .tcc-schedule-service-copy > p {
    font-size: 13.2px;
    line-height: 1.58;
  }
  .tcc-schedule-page .tcc-schedule-service-actions {
    margin-top: 19px;
    gap: 16px;
  }
  .tcc-schedule-page .tcc-schedule-service-actions .tcc-button {
    min-height: 43px;
    padding-inline: 18px;
  }
  .tcc-schedule-page .tcc-schedule-service-facts > div {
    min-height: 94px;
    padding: 14px 15px;
  }
  .tcc-schedule-page .tcc-schedule-service-facts strong {
    font-size: 12px;
  }
  .tcc-schedule-page .tcc-schedule-service-art {
    min-height: 205px;
  }
  .tcc-schedule-page .tcc-schedule-service-art img {
    max-height: 182px;
  }
  .tcc-schedule-page .tcc-schedule-external-note {
    margin-top: 18px;
    padding: 14px 18px;
  }
  .tcc-schedule-page .tcc-schedule-calendar {
    padding-top: 90px;
    padding-bottom: 98px;
  }
  .tcc-schedule-page .tcc-schedule-terms {
    padding-top: 92px;
    padding-bottom: 96px;
  }
  .tcc-schedule-page .tcc-schedule-origin {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .tcc-schedule-page .tcc-schedule-alerts {
    padding-top: 88px;
    padding-bottom: 88px;
  }
  .tcc-schedule-page .tcc-schedule-faq {
    padding-top: 92px;
    padding-bottom: 94px;
  }
}

/* Operational values receive stronger hierarchy when TCC Platform injects dates. */
.tcc-schedule-page [data-schedule-fact="proxima-salida"] strong,
.tcc-schedule-page [data-schedule-fact="recepcion-hasta"] strong,
.tcc-schedule-page [data-schedule-fact="booking"] strong,
.tcc-schedule-page [data-schedule-fact="corte"] strong {
  color: #171514;
  font-size: 13px;
  font-weight: 820;
}

/* The hero board is also ready to show live filtered values without growing. */
.tcc-schedule-page .tcc-schedule-board-list article > b {
  max-width: 112px;
  white-space: normal;
  line-height: 1.15;
}

@media (max-width: 900px) {
  .tcc-schedule-page .tcc-schedule-now { padding-top: 28px; }
  .tcc-schedule-page .tcc-schedule-now-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .tcc-schedule-page .tcc-schedule-now-heading p {
    justify-self: start;
    text-align: left;
  }
  .tcc-schedule-page .tcc-schedule-now-grid { grid-template-columns: 1fr; }
  .tcc-schedule-page .tcc-schedule-now-row {
    border-right: 0;
    border-bottom: 1px solid #ece8e6;
  }
  .tcc-schedule-page .tcc-schedule-now-row:last-child { border-bottom: 0; }
}

@media (max-width: 560px) {
  .tcc-schedule-page .tcc-schedule-now-panel { border-radius: 16px; }
  .tcc-schedule-page .tcc-schedule-now-heading { padding: 20px 18px 17px; }
  .tcc-schedule-page .tcc-schedule-now-heading h2 { font-size: 27px; }
  .tcc-schedule-page .tcc-schedule-now-row { padding: 18px; }
  .tcc-schedule-page .tcc-schedule-now-mode { align-items: flex-start; }
  .tcc-schedule-page .tcc-schedule-now-data { grid-template-columns: 1fr; gap: 9px; }
}

/* Additional schedule states accepted by future TCC Platform integrations. */
.tcc-schedule-page .tcc-schedule-status--limited { color: #9a6100; background: #fff5de; }
.tcc-schedule-page .tcc-schedule-status--limited i { background: #e2a22e; }
.tcc-schedule-page .tcc-schedule-status--closing { color: #b85a00; background: #fff0e3; }
.tcc-schedule-page .tcc-schedule-status--closing i { background: #e77b1b; }
.tcc-schedule-page .tcc-schedule-status--closed { color: #7a3430; background: #f6e9e7; }
.tcc-schedule-page .tcc-schedule-status--closed i { background: #ad4b43; }
.tcc-schedule-page .tcc-schedule-status--transit { color: #315f7c; background: #eaf3f8; }
.tcc-schedule-page .tcc-schedule-status--transit i { background: #4f88aa; }
.tcc-schedule-page .tcc-schedule-board-list .is-limited { color: #9a6100; background: #fff5de; }
.tcc-schedule-page .tcc-schedule-board-list .is-closing { color: #b85a00; background: #fff0e3; }
.tcc-schedule-page .tcc-schedule-board-list .is-closed { color: #7a3430; background: #f6e9e7; }
.tcc-schedule-page .tcc-schedule-board-list .is-transit { color: #315f7c; background: #eaf3f8; }

/* ============================================================
   TCC Web v1.8.0 · Cómo funciona
   Scope exclusivo: .tcc-how-page
   ============================================================ */
.tcc-how-page {
  --how-red: #d9412d;
  --how-red-dark: #bb3325;
  --how-ink: #101112;
  --how-soft: #f7f7f7;
  --how-line: #e9e7e5;
  --how-muted: #6d6f72;
  overflow: clip;
}
.tcc-how-page .tcc-eyebrow { color: var(--how-red); }
.tcc-how-page .tcc-section { padding: 104px 0; }
.tcc-how-page .tcc-section-heading { max-width: 840px; }
.tcc-how-page .tcc-section-heading h2 { font-size: clamp(38px, 4vw, 54px); }
.tcc-how-page .tcc-section-heading p { max-width: 760px; margin-inline: auto; font-size: 17px; line-height: 1.6; }

/* Hero */
.tcc-how-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--how-line);
  background:
    radial-gradient(circle at 89% 23%, rgba(217,65,45,.105), transparent 24%),
    radial-gradient(circle at 73% 69%, rgba(217,65,45,.045), transparent 21%),
    linear-gradient(180deg, #fff 0%, #fbfaf9 100%);
}
.tcc-how-hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: -250px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(217,65,45,.11);
  border-radius: 50%;
  pointer-events: none;
}
.tcc-how-hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(560px,1.1fr);
  gap: 54px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 52px;
}
.tcc-how-hero-copy { position: relative; z-index: 2; }
.tcc-how-hero-copy h1 {
  margin: 15px 0 23px;
  max-width: 620px;
  font-size: clamp(49px, 4.9vw, 68px);
  line-height: .99;
  letter-spacing: -.052em;
  font-weight: 840;
}
.tcc-how-hero-copy h1 span { color: var(--how-red); }
.tcc-how-hero-copy > p {
  max-width: 610px;
  margin: 0;
  color: #66696c;
  font-size: 17px;
  line-height: 1.7;
}
.tcc-how-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.tcc-how-hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 8px;
  max-width: 650px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #e9e6e3;
}
.tcc-how-hero-points span { display: flex; align-items: center; gap: 7px; font-size: 11px; line-height: 1.25; font-weight: 760; }
.tcc-how-hero-points b { color: var(--how-red); font-size: 9px; letter-spacing: .05em; }

.tcc-how-hero-board {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid #e5e2df;
  border-radius: 23px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 58px rgba(16,17,18,.11);
}
.tcc-how-board-head {
  height: 66px;
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid #ebe9e7;
}
.tcc-how-board-head img { width: 116px; height: auto; }
.tcc-how-board-head strong { text-align: center; font-size: 14px; }
.tcc-how-board-head > span { justify-self: end; color: var(--how-red); font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.tcc-how-board-route {
  display: grid;
  grid-template-columns: 94px 1fr 94px;
  gap: 12px;
  align-items: center;
  padding: 14px 20px 13px;
}
.tcc-how-board-route > div:first-child { text-align: left; }
.tcc-how-board-route > div:last-child { text-align: right; }
.tcc-how-board-route small { display: block; color: #9a9b9d; font-size: 8px; font-weight: 850; letter-spacing: .1em; }
.tcc-how-board-route strong { font-size: 13px; }
.tcc-how-board-route-line { display: flex; align-items: center; gap: 8px; }
.tcc-how-board-route-line i { flex: 1; border-top: 1px dashed rgba(217,65,45,.45); }
.tcc-how-board-route-line b { min-width: 40px; padding: 5px 8px; border: 1px solid rgba(217,65,45,.22); border-radius: 999px; color: var(--how-red); font-size: 8px; text-align: center; }
.tcc-how-board-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin: 0 18px 16px;
  padding: 14px;
  border: 1px solid #eceae8;
  border-radius: 17px;
  background:
    linear-gradient(rgba(217,65,45,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,65,45,.025) 1px, transparent 1px),
    #fbfbfb;
  background-size: 22px 22px;
}
.tcc-how-board-flow article {
  position: relative;
  min-height: 150px;
  padding: 16px 13px 13px;
  border: 1px solid #e7e5e3;
  border-radius: 13px;
  background: rgba(255,255,255,.96);
}
.tcc-how-board-flow article::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -11px;
  width: 10px;
  border-top: 1px dashed rgba(217,65,45,.42);
}
.tcc-how-board-flow article:nth-child(3)::after,
.tcc-how-board-flow article:nth-child(6)::after { display: none; }
.tcc-how-board-flow em { position: absolute; top: 9px; right: 10px; color: #aaa; font-size: 8px; font-style: normal; font-weight: 850; }
.tcc-how-board-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 10px; border: 1px solid #ece8e5; border-radius: 11px; background: #fff; }
.tcc-how-board-icon img { width: 29px; max-height: 29px; object-fit: contain; }
.tcc-how-board-flow small { display: block; margin-bottom: 3px; color: var(--how-red); font-size: 7px; font-weight: 850; letter-spacing: .09em; }
.tcc-how-board-flow strong { display: block; font-size: 12px; line-height: 1.2; }
.tcc-how-board-flow span { display: block; margin-top: 5px; color: #85878a; font-size: 9px; line-height: 1.35; }
.tcc-how-board-foot { min-height: 40px; display: flex; justify-content: center; align-items: center; gap: 8px; padding: 0 18px 4px; }
.tcc-how-board-foot span { color: #55585b; font-size: 7px; font-weight: 850; letter-spacing: .1em; }
.tcc-how-board-foot i { width: 12px; border-top: 1px solid var(--how-red); }

/* Subnav */
.tcc-how-subnav { position: sticky; top: 78px; z-index: 120; border-bottom: 1px solid #e8e8e8; background: rgba(255,255,255,.96); backdrop-filter: blur(14px); }
.tcc-how-subnav .tcc-container { min-height: 52px; display: flex; justify-content: center; align-items: center; gap: 38px; overflow-x: auto; scrollbar-width: none; }
.tcc-how-subnav .tcc-container::-webkit-scrollbar { display: none; }
.tcc-how-subnav a { white-space: nowrap; font-size: 11px; font-weight: 760; transition: color .2s ease; }
.tcc-how-subnav a:hover { color: var(--how-red); }

/* Entry */
.tcc-how-entry { background: #fff; }
.tcc-how-entry-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.tcc-how-entry-grid article {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid #e5e4e2;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16,17,18,.045);
}
.tcc-how-entry-grid article.is-featured { border-color: rgba(217,65,45,.46); background: linear-gradient(145deg,#fff 0%,#fffaf8 100%); }
.tcc-how-entry-index { position: absolute; top: 20px; right: 22px; color: #a8aaac; font-size: 9px; font-weight: 850; }
.tcc-how-entry-icon { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 25px; border: 1px solid #ebe9e7; border-radius: 14px; background: #fafafa; }
.tcc-how-entry-icon img { width: 36px; max-height: 36px; }
.tcc-how-entry-grid small { color: var(--how-red); font-size: 9px; font-weight: 850; letter-spacing: .1em; }
.tcc-how-entry-grid h3 { margin: 8px 0 12px; font-size: 25px; line-height: 1.08; letter-spacing: -.025em; }
.tcc-how-entry-grid p { margin: 0 0 24px; color: #727477; font-size: 14px; line-height: 1.6; }
.tcc-how-entry-grid a { margin-top: auto; color: #151515; font-size: 13px; font-weight: 850; }
.tcc-how-entry-grid a span { margin-left: 5px; color: var(--how-red); }

/* Master process */
.tcc-how-process { padding: 112px 0 110px; background: radial-gradient(circle at 90% 65%, rgba(217,65,45,.12), transparent 26%), #101213; color: #fff; }
.tcc-how-process-track { position: relative; display: grid; grid-template-columns: repeat(7, minmax(0,1fr)); gap: 18px; margin-top: 64px; }
.tcc-how-process-track::before { content: ""; position: absolute; left: 5.8%; right: 5.8%; top: 16px; border-top: 1px dotted rgba(217,65,45,.45); }
.tcc-how-process-track article { position: relative; z-index: 1; text-align: center; }
.tcc-how-process-num { width: 34px; height: 34px; display: grid; place-items: center; margin: 0 auto 17px; border: 1px solid rgba(217,65,45,.5); border-radius: 50%; background: #111314; color: #ff6b57; font-size: 8px; font-weight: 850; }
.tcc-how-process-icon { width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 17px; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; background: #17191a; }
.tcc-how-process-icon img { width: 39px; max-height: 39px; object-fit: contain; filter: none; }
.tcc-how-process-icon strong { color: #fff; font-size: 15px; }
.tcc-how-process-track small { display: block; margin-bottom: 7px; color: #ee604d; font-size: 8px; font-weight: 850; letter-spacing: .1em; }
.tcc-how-process-track h3 { margin: 0 0 8px; font-size: 17px; line-height: 1.15; }
.tcc-how-process-track p { margin: 0; color: #9da0a3; font-size: 11.5px; line-height: 1.55; }
.tcc-how-process-note { margin-top: 42px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; color: #8f9396; font-size: 11px; text-align: center; }
.tcc-how-process-note strong { color: #fff; }

/* Warehouse */
.tcc-how-warehouse { background: #fbfbfb; }
.tcc-how-warehouse-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 76px; align-items: center; }
.tcc-how-warehouse-copy h2 { margin: 13px 0 19px; max-width: 505px; font-size: clamp(39px,4vw,56px); line-height: 1.01; letter-spacing: -.045em; }
.tcc-how-warehouse-copy p { max-width: 500px; margin: 0 0 23px; color: #707275; font-size: 16px; line-height: 1.7; }
.tcc-how-text-link { color: var(--how-red); font-size: 13px; font-weight: 850; }
.tcc-how-text-link span { margin-left: 6px; }
.tcc-how-warehouse-panel { overflow: hidden; border: 1px solid #e4e2df; border-radius: 20px; background: #fff; box-shadow: 0 18px 45px rgba(16,17,18,.07); }
.tcc-how-warehouse-top { min-height: 57px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; padding: 0 20px; border-bottom: 1px solid #ece9e7; }
.tcc-how-warehouse-top span { color: #686b6e; font-size: 8px; font-weight: 850; letter-spacing: .1em; }
.tcc-how-warehouse-top strong { font-size: 13px; }
.tcc-how-warehouse-top em { justify-self: end; color: var(--how-red); font-size: 8px; font-style: normal; font-weight: 850; letter-spacing: .1em; }
.tcc-how-warehouse-columns { display: grid; grid-template-columns: 1fr 1fr; }
.tcc-how-warehouse-columns article { padding: 28px 25px 30px; }
.tcc-how-warehouse-columns article + article { border-left: 1px solid #ece9e7; }
.tcc-how-warehouse-columns article.is-featured { background: linear-gradient(145deg,#fff 0%,#fffaf8 100%); }
.tcc-how-warehouse-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 20px; border: 1px solid #ece9e7; border-radius: 13px; background: #fafafa; }
.tcc-how-warehouse-icon img { width: 35px; max-height: 35px; }
.tcc-how-warehouse-columns small { color: var(--how-red); font-size: 8px; font-weight: 850; letter-spacing: .1em; }
.tcc-how-warehouse-columns h3 { margin: 7px 0 15px; font-size: 21px; line-height: 1.15; }
.tcc-how-warehouse-columns ul { list-style: none; padding: 0; margin: 0; }
.tcc-how-warehouse-columns li { position: relative; padding: 11px 0 11px 18px; border-bottom: 1px solid #efedeb; color: #747679; font-size: 12px; line-height: 1.45; }
.tcc-how-warehouse-columns li::before { content: "✓"; position: absolute; left: 0; color: var(--how-red); font-weight: 850; }
.tcc-how-warehouse-note { margin-top: 22px; padding: 13px 18px; border: 1px solid #e5e3e0; border-radius: 11px; background: #fff; color: #77797c; font-size: 11px; text-align: center; }
.tcc-how-warehouse-note strong { color: #1b1b1b; }

/* Routes */
.tcc-how-routes { padding: 110px 0; background: radial-gradient(circle at 86% 74%, rgba(217,65,45,.13), transparent 28%), #101213; color: #fff; }
.tcc-how-route-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 13px; }
.tcc-how-route-grid article { position: relative; min-height: 374px; display: flex; flex-direction: column; padding: 18px 18px 21px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; background: rgba(25,27,28,.9); }
.tcc-how-route-index { position: absolute; top: 11px; right: 13px; color: #6e7174; font-size: 8px; font-weight: 850; }
.tcc-how-route-art { height: 142px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 12px; background: #f6f6f5; overflow: hidden; }
.tcc-how-route-art img { width: 72%; height: 76%; object-fit: contain; }
.tcc-how-route-grid article:nth-child(2) .tcc-how-route-art img { width: 90%; height: 88%; object-fit: contain; }
.tcc-how-route-grid small { color: #e85b47; font-size: 8px; font-weight: 850; letter-spacing: .1em; }
.tcc-how-route-grid h3 { margin: 7px 0 9px; font-size: 23px; line-height: 1.1; }
.tcc-how-route-grid p { margin: 0 0 18px; color: #a4a7aa; font-size: 12.5px; line-height: 1.55; }
.tcc-how-route-grid a { margin-top: auto; color: #fff; font-size: 12px; font-weight: 850; }
.tcc-how-route-grid a span { margin-left: 5px; color: #f15d49; }
.tcc-how-routes-action { margin-top: 18px; min-height: 58px; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 0 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; color: #a1a4a7; font-size: 12px; }
.tcc-how-routes-action a { color: #fff; font-weight: 850; }
.tcc-how-routes-action b { margin-left: 7px; color: #f15d49; }

/* Responsibilities */
.tcc-how-responsibility { background: #fff; }
.tcc-how-responsibility-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.tcc-how-responsibility-grid article { min-height: 370px; padding: 29px 28px; border: 1px solid #e6e4e2; border-radius: 18px; background: #fff; box-shadow: 0 14px 35px rgba(16,17,18,.04); }
.tcc-how-responsibility-grid article.is-featured { border-color: rgba(217,65,45,.45); background: linear-gradient(145deg,#fff 0%,#fffaf8 100%); }
.tcc-how-responsibility-grid span { color: var(--how-red); font-size: 9px; font-weight: 850; letter-spacing: .1em; }
.tcc-how-responsibility-grid h3 { margin: 12px 0 18px; font-size: 25px; line-height: 1.08; letter-spacing: -.025em; }
.tcc-how-responsibility-grid ul { list-style: none; padding: 0; margin: 0; }
.tcc-how-responsibility-grid li { position: relative; padding: 12px 0 12px 18px; border-bottom: 1px solid #efedeb; color: #707275; font-size: 13px; line-height: 1.45; }
.tcc-how-responsibility-grid li::before { content: "•"; position: absolute; left: 0; color: var(--how-red); font-size: 16px; }

/* Platform */
.tcc-how-platform { padding: 110px 0; background: #f7f7f7; }
.tcc-how-platform-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: center; }
.tcc-how-platform-copy h2 { margin: 13px 0 18px; max-width: 520px; font-size: clamp(39px,4vw,55px); line-height: 1.01; letter-spacing: -.045em; }
.tcc-how-platform-copy > p { max-width: 510px; margin: 0; color: #707275; font-size: 15px; line-height: 1.65; }
.tcc-how-platform-copy ol { list-style: none; padding: 0; margin: 25px 0 25px; max-width: 520px; }
.tcc-how-platform-copy li { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid #e7e5e3; }
.tcc-how-platform-copy li > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: #fff0ed; color: var(--how-red); font-size: 8px; font-weight: 850; }
.tcc-how-platform-copy li strong { display: block; font-size: 13px; }
.tcc-how-platform-copy li small { display: block; margin-top: 2px; color: #85878a; font-size: 10px; }
.tcc-how-platform-ui { overflow: hidden; border: 1px solid #dedddb; border-radius: 20px; background: #fff; box-shadow: 0 23px 54px rgba(16,17,18,.08); }
.tcc-how-ui-bar { height: 54px; display: flex; align-items: center; gap: 6px; padding: 0 17px; border-bottom: 1px solid #eceae8; }
.tcc-how-ui-bar i { width: 7px; height: 7px; border-radius: 50%; background: #d66956; }
.tcc-how-ui-bar i:nth-child(2) { background: #d0af62; }
.tcc-how-ui-bar i:nth-child(3) { background: #7eb47f; }
.tcc-how-ui-bar strong { margin-left: 5px; font-size: 10px; }
.tcc-how-ui-bar span { margin-left: auto; color: var(--how-red); font-size: 8px; font-weight: 850; }
.tcc-how-ui-summary { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 12px; }
.tcc-how-ui-summary article { padding: 14px; border: 1px solid #eceae8; border-radius: 11px; }
.tcc-how-ui-summary small { display: block; color: #a0a1a3; font-size: 7px; font-weight: 800; }
.tcc-how-ui-summary strong { display: block; margin: 4px 0 2px; font-size: 14px; }
.tcc-how-ui-summary span { color: #939598; font-size: 8px; }
.tcc-how-ui-body { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8px; padding: 0 12px 12px; }
.tcc-how-ui-progress, .tcc-how-ui-route { min-height: 240px; padding: 18px; border: 1px solid #eceae8; border-radius: 12px; }
.tcc-how-ui-progress > div { display: grid; grid-template-columns: 25px 1fr; gap: 9px; align-items: center; margin-bottom: 16px; }
.tcc-how-ui-progress > div > span { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid #dedddb; border-radius: 50%; color: #aaa; font-size: 9px; }
.tcc-how-ui-progress > div > span.is-done { border-color: #84bd85; background: #84bd85; color: #fff; }
.tcc-how-ui-progress > div > span.is-active { border-color: #e25c49; color: #e25c49; }
.tcc-how-ui-progress p { margin: 0; }
.tcc-how-ui-progress strong { display: block; font-size: 10px; }
.tcc-how-ui-progress small { display: block; margin-top: 1px; color: #9a9b9d; font-size: 7px; }
.tcc-how-ui-route { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.tcc-how-ui-map { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 25px; }
.tcc-how-ui-map span { font-size: 8px; font-weight: 850; }
.tcc-how-ui-map i { flex: 1; max-width: 65px; border-top: 1px dashed rgba(217,65,45,.5); }
.tcc-how-ui-map b { width: 33px; height: 33px; display: grid; place-items: center; border-radius: 50%; background: #fff0ed; color: var(--how-red); font-size: 8px; }
.tcc-how-ui-route > strong { font-size: 13px; }
.tcc-how-ui-route > small { margin-top: 4px; color: #989a9d; font-size: 8px; }
.tcc-how-ui-meter { width: 85%; height: 7px; margin: 25px 0 7px; border-radius: 999px; background: #ecebea; overflow: hidden; }
.tcc-how-ui-meter span { display: block; height: 100%; border-radius: inherit; background: var(--how-red); }
.tcc-how-ui-route em { color: #77797c; font-size: 9px; font-style: normal; font-weight: 750; }
.tcc-how-ui-foot { min-height: 38px; display: flex; align-items: center; justify-content: space-between; padding: 0 16px; border-top: 1px solid #eceae8; color: #9a9b9d; font-size: 7px; }
.tcc-how-ui-foot strong { color: var(--how-red); font-size: 7px; }

/* Ready */
.tcc-how-ready { background: #fff; }
.tcc-how-ready-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 13px; }
.tcc-how-ready-grid article { min-height: 230px; padding: 24px 22px; border: 1px solid #e6e4e2; border-radius: 16px; background: #fff; }
.tcc-how-ready-grid article > span { width: 34px; height: 34px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 50%; background: #fff0ed; color: var(--how-red); font-size: 8px; font-weight: 850; }
.tcc-how-ready-grid small { color: var(--how-red); font-size: 8px; font-weight: 850; letter-spacing: .1em; }
.tcc-how-ready-grid h3 { margin: 7px 0 9px; font-size: 20px; line-height: 1.15; }
.tcc-how-ready-grid p { margin: 0; color: #76787b; font-size: 12px; line-height: 1.55; }

/* FAQ */
.tcc-how-faq { padding-bottom: 118px !important; background: #f8f8f8; }
.tcc-how-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.tcc-how-faq-copy { position: sticky; top: 160px; }
.tcc-how-faq-copy h2 { margin: 13px 0 18px; max-width: 430px; font-size: clamp(39px,4vw,55px); line-height: 1.02; letter-spacing: -.045em; }
.tcc-how-faq-copy p { max-width: 420px; margin: 0 0 22px; color: #76787b; font-size: 15px; line-height: 1.65; }
.tcc-how-faq-list { overflow: hidden; border: 1px solid #e4e2df; border-radius: 18px; background: #fff; box-shadow: 0 18px 45px rgba(16,17,18,.06); }
.tcc-how-faq-list .tcc-faq-item { border-bottom: 1px solid #ece9e7; }
.tcc-how-faq-list .tcc-faq-item:last-child { border-bottom: 0; }
.tcc-how-faq-list .tcc-faq-item button { width: 100%; min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 11px 17px; border: 0; background: #fff; color: #151515; text-align: left; cursor: pointer; }
.tcc-how-faq-list .tcc-faq-item button > span { display: flex; align-items: center; gap: 15px; font-size: 13px; font-weight: 820; line-height: 1.3; }
.tcc-how-faq-list .tcc-faq-item button em { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(217,65,45,.24); border-radius: 50%; color: var(--how-red); font-size: 8px; font-style: normal; font-weight: 850; }
.tcc-how-faq-list .tcc-faq-item button b { color: var(--how-red); font-size: 17px; font-weight: 400; }
.tcc-how-faq-list .tcc-faq-item.is-open button { border-bottom: 1px solid rgba(217,65,45,.22); background: #fffdfc; }
.tcc-how-faq-list .tcc-faq-answer { padding: 3px 66px 20px; color: #77797c; font-size: 12px; line-height: 1.65; }
.tcc-how-faq-list .tcc-faq-answer p { margin: 0; }
.tcc-how-faq-list .tcc-faq-answer strong { color: #222; }

/* Final CTA */
.tcc-how-final-cta { padding: 88px 0 82px; background: radial-gradient(circle at 83% 58%, rgba(217,65,45,.16), transparent 30%), #0f1112; color: #fff; text-align: center; }
.tcc-how-final-cta .tcc-container { max-width: 980px; }
.tcc-how-final-route { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 11px 0 27px; }
.tcc-how-final-route span, .tcc-how-final-route b { font-size: 7px; font-weight: 850; letter-spacing: .08em; }
.tcc-how-final-route i { width: 55px; border-top: 1px dotted rgba(217,65,45,.62); }
.tcc-how-final-cta h2 { margin: 0 auto 17px; font-size: clamp(42px,5vw,61px); line-height: 1.02; letter-spacing: -.045em; }
.tcc-how-final-cta p { max-width: 760px; margin: 0 auto; color: #a7aaad; font-size: 14px; line-height: 1.6; }
.tcc-how-final-actions { display: flex; justify-content: center; gap: 11px; margin-top: 27px; }

@media (max-width: 1100px) {
  .tcc-how-hero-grid { grid-template-columns: .9fr 1.1fr; gap: 28px; }
  .tcc-how-hero-copy h1 { font-size: clamp(46px,5vw,59px); }
  .tcc-how-board-flow { grid-template-columns: repeat(2,1fr); }
  .tcc-how-board-flow article:nth-child(3)::after { display: block; }
  .tcc-how-board-flow article:nth-child(2n)::after { display: none; }
  .tcc-how-process-track { grid-template-columns: repeat(4,1fr); row-gap: 38px; }
  .tcc-how-process-track::before { display: none; }
  .tcc-how-route-grid { grid-template-columns: repeat(2,1fr); }
  .tcc-how-platform-grid, .tcc-how-warehouse-grid { gap: 42px; }
}

@media (max-width: 900px) {
  .tcc-how-page .tcc-section { padding: 84px 0; }
  .tcc-how-hero-grid { min-height: auto; grid-template-columns: 1fr; padding-top: 58px; padding-bottom: 68px; }
  .tcc-how-hero-copy { text-align: center; }
  .tcc-how-hero-copy h1, .tcc-how-hero-copy > p { margin-inline: auto; }
  .tcc-how-hero-actions, .tcc-how-hero-points { justify-content: center; margin-inline: auto; }
  .tcc-how-subnav { top: 72px; }
  .tcc-how-subnav .tcc-container { justify-content: flex-start; gap: 28px; }
  .tcc-how-entry-grid, .tcc-how-responsibility-grid { grid-template-columns: 1fr; }
  .tcc-how-entry-grid article { min-height: auto; }
  .tcc-how-process-track { grid-template-columns: repeat(2,1fr); }
  .tcc-how-warehouse-grid, .tcc-how-platform-grid, .tcc-how-faq-grid { grid-template-columns: 1fr; }
  .tcc-how-warehouse-copy h2, .tcc-how-warehouse-copy p, .tcc-how-platform-copy h2, .tcc-how-platform-copy > p, .tcc-how-platform-copy ol { max-width: none; }
  .tcc-how-faq-copy { position: static; }
  .tcc-how-faq-copy h2, .tcc-how-faq-copy p { max-width: none; }
  .tcc-how-ready-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 640px) {
  .tcc-how-page .tcc-section { padding: 68px 0; }
  .tcc-how-page .tcc-section-heading h2 { font-size: 36px; }
  .tcc-how-hero-grid { padding-top: 43px; padding-bottom: 50px; }
  .tcc-how-hero-copy h1 { font-size: 45px; }
  .tcc-how-hero-copy > p { font-size: 15px; }
  .tcc-how-hero-actions { display: grid; grid-template-columns: 1fr; }
  .tcc-how-hero-actions .tcc-button { width: 100%; }
  .tcc-how-hero-points { grid-template-columns: repeat(2,1fr); text-align: left; }
  .tcc-how-board-head { grid-template-columns: 1fr auto; height: 59px; }
  .tcc-how-board-head img { width: 110px; }
  .tcc-how-board-head strong { display: none; }
  .tcc-how-board-head > span { font-size: 7px; }
  .tcc-how-board-route { grid-template-columns: 70px 1fr 70px; padding-inline: 13px; }
  .tcc-how-board-flow { grid-template-columns: 1fr 1fr; margin-inline: 10px; padding: 9px; }
  .tcc-how-board-flow article { min-height: 138px; padding: 13px 10px; }
  .tcc-how-board-foot { flex-wrap: wrap; padding: 8px 12px 12px; }
  .tcc-how-entry-grid article { padding: 25px 22px; }
  .tcc-how-process { padding: 76px 0; }
  .tcc-how-process-track { grid-template-columns: 1fr; gap: 24px; margin-top: 38px; }
  .tcc-how-process-track article { display: grid; grid-template-columns: 42px 58px 1fr; grid-template-rows: auto auto auto; gap: 0 12px; text-align: left; }
  .tcc-how-process-num { grid-row: 1 / 4; align-self: start; margin: 3px 0 0; }
  .tcc-how-process-icon { grid-row: 1 / 4; align-self: start; width: 56px; height: 56px; margin: 0; }
  .tcc-how-process-track small { grid-column: 3; }
  .tcc-how-process-track h3 { grid-column: 3; }
  .tcc-how-process-track p { grid-column: 3; }
  .tcc-how-warehouse-columns { grid-template-columns: 1fr; }
  .tcc-how-warehouse-columns article + article { border-left: 0; border-top: 1px solid #ece9e7; }
  .tcc-how-warehouse-top { grid-template-columns: 1fr auto; }
  .tcc-how-warehouse-top strong { display: none; }
  .tcc-how-route-grid { grid-template-columns: 1fr; }
  .tcc-how-route-grid article { min-height: 350px; }
  .tcc-how-routes-action { align-items: flex-start; flex-direction: column; padding-block: 16px; }
  .tcc-how-ui-summary, .tcc-how-ui-body { grid-template-columns: 1fr; }
  .tcc-how-ui-progress, .tcc-how-ui-route { min-height: auto; }
  .tcc-how-ready-grid { grid-template-columns: 1fr; }
  .tcc-how-ready-grid article { min-height: auto; }
  .tcc-how-faq-list .tcc-faq-item button { min-height: 64px; padding-inline: 12px; }
  .tcc-how-faq-list .tcc-faq-item button > span { align-items: flex-start; gap: 10px; font-size: 12px; }
  .tcc-how-faq-list .tcc-faq-item button em { flex-basis: 30px; width: 30px; height: 30px; }
  .tcc-how-faq-list .tcc-faq-answer { padding: 3px 16px 18px 52px; }
  .tcc-how-final-cta { padding: 70px 0; }
  .tcc-how-final-cta h2 { font-size: 42px; }
  .tcc-how-final-actions { display: grid; grid-template-columns: 1fr; }
  .tcc-how-final-actions .tcc-button { width: 100%; }
}

/* ============================================================
   TCC Web v1.8.1 · Cómo funciona Desktop Polish
   Ajustes exclusivos de /como-funciona/.
   No modifica HOME, Casillero, Aéreo, LCL, FCL, Compras ni Próximos Envíos.
   ============================================================ */

/* Tres puntos de entrada, una sola operación */
.tcc-how-page .tcc-how-entry-guide {
  max-width: 520px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: -8px auto 26px;
  color: #9a9b9d;
}
.tcc-how-page .tcc-how-entry-guide span,
.tcc-how-page .tcc-how-entry-guide strong {
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .11em;
  white-space: nowrap;
}
.tcc-how-page .tcc-how-entry-guide strong { color: var(--how-red); }
.tcc-how-page .tcc-how-entry-guide i {
  flex: 1;
  max-width: 90px;
  border-top: 1px dotted rgba(217,65,45,.38);
}

/* Master process: iconografía más pareja y lectura más limpia */
.tcc-how-page .tcc-how-process-icon img {
  width: 34px;
  height: 34px;
  max-height: none;
  object-fit: contain;
  object-position: center;
}
.tcc-how-page .tcc-how-process-icon strong {
  font-size: 14px;
  line-height: 1;
}
.tcc-how-page .tcc-how-process-track p {
  font-size: 11px;
  line-height: 1.5;
}

/* Bodega: nota crítica más legible sin competir con el contenido */
.tcc-how-page .tcc-how-warehouse-note {
  padding: 14px 20px;
  color: #6f7275;
  font-size: 12px;
  line-height: 1.55;
}
.tcc-how-page .tcc-how-warehouse-note strong { font-weight: 850; }

/* Modalidades: la ilustración aérea ya no se recorta ni domina la tarjeta */
.tcc-how-page .tcc-how-route-grid article:nth-child(2) .tcc-how-route-art img {
  width: 66%;
  height: 66%;
  max-width: 175px;
  object-fit: contain;
  object-position: center;
}

/* FAQ: respuesta abierta con mejor separación y jerarquía */
.tcc-how-page .tcc-how-faq-list .tcc-faq-item.is-open {
  background: #fffdfc;
}
.tcc-how-page .tcc-how-faq-list .tcc-faq-item.is-open button {
  box-shadow: inset 0 -1px 0 rgba(217,65,45,.13);
}
.tcc-how-page .tcc-how-faq-list .tcc-faq-answer {
  padding-top: 12px;
  padding-bottom: 22px;
  line-height: 1.72;
}

@media (min-width: 1101px) {
  /* Hero: misma presencia, menos altura visual y mejor balance con el panel */
  .tcc-how-page .tcc-how-hero-grid {
    min-height: 650px;
    gap: 50px;
    padding-top: 44px;
    padding-bottom: 48px;
  }
  .tcc-how-page .tcc-how-hero-copy h1 {
    max-width: 595px;
    margin-top: 14px;
    margin-bottom: 21px;
    font-size: clamp(48px, 4.55vw, 64px);
    line-height: .985;
  }
  .tcc-how-page .tcc-how-hero-copy > p {
    max-width: 590px;
    font-size: 16.5px;
    line-height: 1.67;
  }
  .tcc-how-page .tcc-how-hero-actions { margin-top: 26px; }
  .tcc-how-page .tcc-how-hero-points { margin-top: 26px; }

  /* Entrada: tarjetas más claramente presentadas como puntos del mismo flujo */
  .tcc-how-page .tcc-how-entry-grid article { min-height: 366px; }
  .tcc-how-page .tcc-how-entry-grid article.is-featured {
    box-shadow: 0 18px 40px rgba(217,65,45,.075);
  }

  /* Siete etapas: compactar sin perder respiración */
  .tcc-how-page .tcc-how-process { padding-top: 104px; padding-bottom: 104px; }
  .tcc-how-page .tcc-how-process-track { gap: 15px; margin-top: 58px; }
  .tcc-how-page .tcc-how-process-icon { margin-bottom: 15px; }
  .tcc-how-page .tcc-how-process-track h3 { font-size: 16.5px; }
  .tcc-how-page .tcc-how-process-note { margin-top: 36px; }

  /* Antes de programar: menos vacío vertical */
  .tcc-how-page .tcc-how-ready {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .tcc-how-page .tcc-how-ready .tcc-section-heading { margin-bottom: 42px; }
  .tcc-how-page .tcc-how-ready-grid article {
    min-height: 218px;
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .tcc-how-page .tcc-how-ready-grid article > span { margin-bottom: 23px; }

  /* FAQ: una fracción más compacta para desktop */
  .tcc-how-page .tcc-how-faq { padding-top: 96px !important; padding-bottom: 108px !important; }
  .tcc-how-page .tcc-how-faq-grid { gap: 64px; }
}

@media (max-width: 640px) {
  .tcc-how-page .tcc-how-entry-guide {
    width: 100%;
    gap: 8px;
    margin-top: -2px;
    margin-bottom: 20px;
  }
  .tcc-how-page .tcc-how-entry-guide i { max-width: 45px; }
  .tcc-how-page .tcc-how-entry-guide span,
  .tcc-how-page .tcc-how-entry-guide strong { font-size: 7px; }
  .tcc-how-page .tcc-how-faq-list .tcc-faq-answer { padding-top: 10px; }
}

/* =========================================================
   TCC Web v1.9.0 · Tarifas / Cotizar
   Page-scoped additions. Closed pages remain unchanged.
   ========================================================= */
.tcc-quote-page {
  --quote-red: #d9412d;
  --quote-red-dark: #bd3122;
  --quote-ink: #101112;
  --quote-muted: #73706e;
  --quote-soft: #f8f8f8;
  --quote-border: #e6e3e1;
  --quote-dark: #0f1112;
  overflow: hidden;
  background: #fff;
}
.tcc-quote-page .tcc-eyebrow { color: var(--quote-red); font-size: 12px; letter-spacing: .075em; font-weight: 850; }
.tcc-quote-page .tcc-button--primary { background: var(--quote-red); box-shadow: 0 12px 28px rgba(217,65,45,.2); }
.tcc-quote-page .tcc-button--primary:hover { background: var(--quote-red-dark); }
.tcc-quote-page .tcc-button--secondary { border-color: #d6d1ce; }
.tcc-quote-page .tcc-button--dark-outline { border-color: rgba(255,255,255,.28); }
.tcc-quote-page .tcc-button--dark-outline:hover { border-color: rgba(255,255,255,.7); }

/* Hero */
.tcc-quote-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #ece8e5;
  background:
    radial-gradient(circle at 84% 28%, rgba(217,65,45,.075), transparent 25%),
    linear-gradient(180deg, #fff 0%, #fdfcfb 100%);
}
.tcc-quote-hero::after {
  content: "";
  position: absolute;
  width: 510px;
  height: 510px;
  right: -285px;
  bottom: -235px;
  border: 1px solid rgba(217,65,45,.12);
  border-radius: 50%;
  pointer-events: none;
}
.tcc-quote-hero-grid {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr);
  gap: 48px;
  align-items: center;
  padding-top: 52px;
  padding-bottom: 48px;
}
.tcc-quote-hero-copy { position: relative; z-index: 2; }
.tcc-quote-hero-copy h1 {
  max-width: 585px;
  margin: 14px 0 20px;
  font-size: clamp(52px,4.8vw,67px);
  line-height: .99;
  letter-spacing: -.052em;
  font-weight: 820;
}
.tcc-quote-hero-copy h1 span { color: var(--quote-red); }
.tcc-quote-hero-lead { max-width: 580px; margin: 0 0 28px; color: #686563; font-size: 16px; line-height: 1.65; }
.tcc-quote-hero-actions { display: flex; gap: 11px; flex-wrap: wrap; }
.tcc-quote-hero-facts {
  max-width: 590px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 27px;
  border-top: 1px solid #e6e2df;
}
.tcc-quote-hero-facts span { min-height: 54px; display: flex; flex-direction: column; justify-content: center; gap: 1px; color: #8a8582; font-size: 10px; }
.tcc-quote-hero-facts b { color: #222; font-size: 10px; text-transform: uppercase; }

.tcc-quote-hero-board {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid #dfdcda;
  border-radius: 22px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 26px 62px rgba(20,20,20,.1);
}
.tcc-quote-board-head {
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid #ebe7e4;
}
.tcc-quote-board-head img { width: 106px; height: auto; }
.tcc-quote-board-head strong { font-size: 13px; }
.tcc-quote-board-head span { justify-self: end; color: var(--quote-red); font-size: 9px; font-weight: 850; letter-spacing: .1em; }
.tcc-quote-board-route {
  display: grid;
  grid-template-columns: 120px 1fr 120px;
  gap: 16px;
  align-items: end;
  padding: 17px 20px 13px;
}
.tcc-quote-board-route > div:first-child,
.tcc-quote-board-route > div:last-child { display: flex; flex-direction: column; }
.tcc-quote-board-route > div:last-child { text-align: right; }
.tcc-quote-board-route small { color: #99928f; font-size: 8px; letter-spacing: .11em; font-weight: 800; }
.tcc-quote-board-route strong { font-size: 13px; }
.tcc-quote-board-route-line { display: flex; align-items: center; gap: 10px; padding-bottom: 2px; }
.tcc-quote-board-route-line i { flex: 1; border-top: 1px dashed rgba(217,65,45,.4); }
.tcc-quote-board-route-line b { display: grid; place-items: center; min-width: 39px; height: 24px; padding: 0 8px; border: 1px solid rgba(217,65,45,.2); border-radius: 20px; color: var(--quote-red); font-size: 8px; }
.tcc-quote-board-flow {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
  margin: 0 18px 17px;
  padding: 13px;
  border: 1px solid #ebe8e6;
  border-radius: 17px;
  background:
    linear-gradient(rgba(217,65,45,.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217,65,45,.027) 1px, transparent 1px),
    #fbfbfb;
  background-size: 22px 22px;
}
.tcc-quote-board-flow article {
  min-height: 105px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  padding: 15px 13px;
  border: 1px solid #e6e2df;
  border-radius: 13px;
  background: rgba(255,255,255,.92);
}
.tcc-quote-board-flow article > span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: #fbefeb; color: var(--quote-red); font-size: 8px; font-weight: 850; }
.tcc-quote-board-flow small { display: block; margin: 2px 0 4px; color: var(--quote-red); font-size: 8px; font-weight: 850; letter-spacing: .08em; }
.tcc-quote-board-flow strong { display: block; margin-bottom: 3px; font-size: 12px; line-height: 1.2; }
.tcc-quote-board-flow em { color: #85807d; font-size: 9px; font-style: normal; line-height: 1.35; }
.tcc-quote-board-flow article.is-result { border-color: rgba(217,65,45,.35); background: linear-gradient(135deg,#fff,#fff8f5); }
.tcc-quote-board-foot { height: 45px; display: flex; align-items: center; justify-content: center; gap: 8px; border-top: 1px solid #ebe7e4; color: #52504e; font-size: 7px; font-weight: 850; letter-spacing: .1em; }
.tcc-quote-board-foot i { width: 18px; border-top: 1px solid var(--quote-red); opacity: .6; }

/* Subnav */
.tcc-quote-subnav { position: relative; z-index: 5; border-bottom: 1px solid #ece9e7; background: rgba(255,255,255,.97); }
.tcc-quote-subnav .tcc-container { min-height: 55px; display: flex; justify-content: center; align-items: center; gap: 42px; }
.tcc-quote-subnav a { color: #2d2c2b; font-size: 10px; font-weight: 750; white-space: nowrap; }
.tcc-quote-subnav a:hover { color: var(--quote-red); }

/* Shared heading */
.tcc-quote-center-heading { max-width: 810px; margin: 0 auto 52px; text-align: center; }
.tcc-quote-center-heading h2,
.tcc-quote-calculator-heading h2,
.tcc-quote-structure-copy h2,
.tcc-quote-tax-copy h2,
.tcc-quote-data-head h2,
.tcc-quote-faq-copy h2,
.tcc-quote-final h2 { margin: 12px 0 14px; color: var(--quote-ink); font-size: clamp(39px,4vw,55px); line-height: 1.02; letter-spacing: -.045em; }
.tcc-quote-center-heading p { max-width: 720px; margin: 0 auto; color: var(--quote-muted); font-size: 15px; line-height: 1.62; }

/* Start */
.tcc-quote-start { padding-top: 94px; padding-bottom: 102px; }
.tcc-quote-start-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.tcc-quote-start-grid article {
  position: relative;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  padding: 29px 28px 25px;
  border: 1px solid var(--quote-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(20,20,20,.035);
}
.tcc-quote-start-grid article.is-featured { border-color: rgba(217,65,45,.34); background: linear-gradient(145deg,#fff,#fffaf8); }
.tcc-quote-card-number { position: absolute; top: 18px; right: 19px; color: #aaa4a0; font-size: 8px; font-weight: 850; }
.tcc-quote-card-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 24px; border: 1px solid #ebe6e3; border-radius: 13px; background: #fafafa; }
.tcc-quote-card-icon img { width: 30px; height: 30px; object-fit: contain; }
.tcc-quote-start-grid small { color: var(--quote-red); font-size: 8px; font-weight: 850; letter-spacing: .08em; }
.tcc-quote-start-grid h3 { margin: 8px 0 10px; font-size: 22px; line-height: 1.08; letter-spacing: -.025em; }
.tcc-quote-start-grid p { margin: 0; color: #77726f; font-size: 13px; line-height: 1.58; }
.tcc-quote-start-grid a { margin-top: auto; padding-top: 22px; font-size: 12px; font-weight: 800; }
.tcc-quote-start-grid a span { margin-left: 7px; color: var(--quote-red); }

/* Calculator */
.tcc-quote-calculator { padding: 104px 0 110px; color: #fff; background: radial-gradient(circle at 89% 80%,rgba(217,65,45,.13),transparent 28%), #0e1011; }
.tcc-quote-calculator-heading { max-width: 850px; margin: 0 auto 45px; text-align: center; }
.tcc-quote-calculator-heading h2 { color: #fff; }
.tcc-quote-calculator-heading p { max-width: 730px; margin: 0 auto; color: #a9abad; font-size: 15px; line-height: 1.65; }
.tcc-quote-calculator-shell { overflow: hidden; border: 1px solid rgba(255,255,255,.11); border-radius: 21px; background: #151819; box-shadow: 0 28px 72px rgba(0,0,0,.23); }
.tcc-quote-calc-tabs { display: grid; grid-template-columns: repeat(3,1fr); border-bottom: 1px solid rgba(255,255,255,.1); }
.tcc-quote-calc-tabs button { min-height: 75px; padding: 12px 20px; border: 0; border-right: 1px solid rgba(255,255,255,.08); background: transparent; color: #d2d3d4; cursor: pointer; font-weight: 800; text-align: left; }
.tcc-quote-calc-tabs button:last-child { border-right: 0; }
.tcc-quote-calc-tabs button small { display: block; margin-top: 3px; color: #777b7d; font-size: 9px; font-weight: 650; }
.tcc-quote-calc-tabs button.is-active { background: linear-gradient(135deg,rgba(217,65,45,.16),rgba(217,65,45,.04)); color: #fff; box-shadow: inset 0 -2px var(--quote-red); }
.tcc-quote-calc-tabs button.is-active small { color: #d9b0a7; }
.tcc-quote-calc-body { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 330px; }
.tcc-quote-calc-inputs { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; align-content: center; padding: 36px 40px; border-right: 1px solid rgba(255,255,255,.08); }
.tcc-quote-calc-field label { display: block; margin-bottom: 8px; color: #a9abad; font-size: 10px; font-weight: 750; }
.tcc-quote-calc-field > div { display: grid; grid-template-columns: 1fr 48px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 11px; background: #101213; }
.tcc-quote-calc-field input { width: 100%; height: 49px; padding: 0 14px; border: 0; outline: 0; background: transparent; color: #fff; font-size: 15px; font-weight: 750; }
.tcc-quote-calc-field input::placeholder { color: #5f6264; }
.tcc-quote-calc-field > div span { display: grid; place-items: center; border-left: 1px solid rgba(255,255,255,.09); color: #888b8d; font-size: 9px; font-weight: 750; }
.tcc-quote-calc-result { display: flex; flex-direction: column; justify-content: center; padding: 36px 38px; background: radial-gradient(circle at 100% 0,rgba(217,65,45,.14),transparent 42%); }
.tcc-quote-calc-result-head small { display: block; color: #e17666; font-size: 9px; font-weight: 850; letter-spacing: .09em; }
.tcc-quote-calc-result-head strong { display: inline-block; margin: 8px 5px 10px 0; font-size: 58px; line-height: .95; letter-spacing: -.05em; }
.tcc-quote-calc-result-head span { color: #bbb; font-size: 16px; font-weight: 750; }
.tcc-quote-calc-result-grid { display: grid; grid-template-columns: 1fr 1.15fr; margin: 10px 0 16px; border-top: 1px solid rgba(255,255,255,.09); border-bottom: 1px solid rgba(255,255,255,.09); }
.tcc-quote-calc-result-grid > div { padding: 14px 12px 14px 0; }
.tcc-quote-calc-result-grid > div + div { padding-left: 14px; border-left: 1px solid rgba(255,255,255,.09); }
.tcc-quote-calc-result-grid small { display: block; color: #777b7d; font-size: 8px; text-transform: uppercase; letter-spacing: .06em; }
.tcc-quote-calc-result-grid strong { display: block; margin-top: 3px; color: #f4f4f4; font-size: 11px; line-height: 1.35; }
.tcc-quote-calc-result p { margin: 0; color: #96999b; font-size: 11px; line-height: 1.55; }
.tcc-quote-calc-disclaimer { max-width: 1000px; margin: 18px auto 0; color: #7f8284; font-size: 10px; line-height: 1.55; text-align: center; }
.tcc-quote-calc-disclaimer strong { color: #c8c9ca; }

/* Modes */
.tcc-quote-modes { padding-top: 103px; padding-bottom: 108px; background: #f8f8f8; }
.tcc-quote-mode-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.tcc-quote-mode-grid article { min-height: 405px; display: flex; flex-direction: column; padding: 15px 15px 23px; border: 1px solid #e4e1df; border-radius: 17px; background: #fff; }
.tcc-quote-mode-art { height: 137px; display: grid; place-items: center; overflow: hidden; margin-bottom: 18px; border-radius: 12px; background: #f5f5f5; }
.tcc-quote-mode-art img { width: 76%; height: 110px; object-fit: contain; }
.tcc-quote-mode-grid small { color: var(--quote-red); font-size: 8px; font-weight: 850; letter-spacing: .08em; }
.tcc-quote-mode-grid h3 { margin: 6px 0 10px; font-size: 20px; line-height: 1.05; }
.tcc-quote-mode-basis { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 0 10px; margin-bottom: 12px; padding: 10px 11px; border: 1px solid #ece7e4; border-radius: 10px; background: #fbfaf9; }
.tcc-quote-mode-basis span { grid-row: span 2; color: #aaa29d; font-size: 7px; font-weight: 850; letter-spacing: .08em; }
.tcc-quote-mode-basis strong { font-size: 11px; }
.tcc-quote-mode-basis em { color: #908a87; font-size: 8px; font-style: normal; }
.tcc-quote-mode-grid p { margin: 0; color: #77716e; font-size: 11.5px; line-height: 1.55; }
.tcc-quote-mode-grid a { margin-top: auto; padding-top: 18px; font-size: 11px; font-weight: 800; }
.tcc-quote-mode-grid a span { margin-left: 6px; color: var(--quote-red); }

/* Cost structure */
.tcc-quote-structure { padding: 105px 0; color: #fff; background: radial-gradient(circle at 84% 68%,rgba(217,65,45,.12),transparent 30%), #0f1112; }
.tcc-quote-structure-grid { display: grid; grid-template-columns: .83fr 1.17fr; gap: 84px; align-items: center; }
.tcc-quote-structure-copy h2 { color: #fff; max-width: 510px; }
.tcc-quote-structure-copy p { max-width: 520px; margin: 0 0 27px; color: #a5a7a9; font-size: 15px; line-height: 1.67; }
.tcc-quote-cost-stack { border-top: 1px solid rgba(255,255,255,.1); }
.tcc-quote-cost-stack article { min-height: 90px; display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-items: center; padding: 12px 8px; border-bottom: 1px solid rgba(255,255,255,.09); }
.tcc-quote-cost-stack article > span { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid rgba(217,65,45,.35); border-radius: 50%; color: #e97664; font-size: 8px; font-weight: 850; }
.tcc-quote-cost-stack small { color: #e97664; font-size: 7.5px; font-weight: 850; letter-spacing: .08em; }
.tcc-quote-cost-stack h3 { margin: 2px 0 2px; font-size: 16px; }
.tcc-quote-cost-stack p { margin: 0; color: #8f9294; font-size: 10.5px; line-height: 1.45; }

/* Taxes/classification */
.tcc-quote-tax { padding-top: 104px; padding-bottom: 106px; }
.tcc-quote-tax-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 76px; align-items: center; }
.tcc-quote-tax-copy h2 { max-width: 520px; }
.tcc-quote-tax-copy > p { max-width: 520px; margin: 0; color: #77716e; font-size: 14px; line-height: 1.65; }
.tcc-quote-tax-note { max-width: 520px; margin-top: 24px; padding: 15px 17px; border-left: 2px solid var(--quote-red); border-radius: 0 10px 10px 0; background: #fcf4f1; color: #7d746f; font-size: 10.5px; line-height: 1.55; }
.tcc-quote-tax-note strong { color: #2b2928; }
.tcc-quote-tax-options { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.tcc-quote-tax-options article { position: relative; min-height: 300px; display: flex; flex-direction: column; padding: 30px 26px 25px; border: 1px solid var(--quote-border); border-radius: 18px; background: #fff; box-shadow: 0 15px 42px rgba(20,20,20,.04); }
.tcc-quote-tax-options article.is-featured { border-color: rgba(217,65,45,.34); background: linear-gradient(145deg,#fff,#fffaf8); }
.tcc-quote-tax-options article > span { position: absolute; right: 18px; top: 17px; color: #aaa4a0; font-size: 8px; font-weight: 850; }
.tcc-quote-tax-options small { color: var(--quote-red); font-size: 8px; font-weight: 850; letter-spacing: .08em; }
.tcc-quote-tax-options h3 { margin: 10px 0 10px; font-size: 22px; line-height: 1.08; letter-spacing: -.02em; }
.tcc-quote-tax-options p { margin: 0; color: #77716e; font-size: 12px; line-height: 1.6; }
.tcc-quote-tax-options a { margin-top: auto; padding-top: 20px; font-size: 11px; font-weight: 800; }
.tcc-quote-tax-options a span { margin-left: 7px; color: var(--quote-red); }

/* Data needed */
.tcc-quote-data { padding: 102px 0 106px; background: #f8f8f8; }
.tcc-quote-data-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; margin-bottom: 46px; }
.tcc-quote-data-head h2 { max-width: 660px; margin-bottom: 0; }
.tcc-quote-data-head > p { margin: 0 0 5px; color: #77716e; font-size: 13px; line-height: 1.62; }
.tcc-quote-data-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.tcc-quote-data-grid article { position: relative; min-height: 180px; padding: 23px 21px 20px; border: 1px solid #e3e0de; border-radius: 15px; background: #fff; }
.tcc-quote-data-grid article > span { position: absolute; top: 18px; right: 18px; width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; background: #fbefeb; color: var(--quote-red); font-size: 7px; font-weight: 850; }
.tcc-quote-data-grid small { color: var(--quote-red); font-size: 7.5px; font-weight: 850; letter-spacing: .08em; }
.tcc-quote-data-grid h3 { margin: 19px 0 7px; font-size: 17px; }
.tcc-quote-data-grid p { margin: 0; max-width: 270px; color: #807a77; font-size: 10.5px; line-height: 1.52; }
.tcc-quote-data-actions { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; align-items: center; margin-top: 14px; padding: 20px 20px 20px 23px; border: 1px solid #e3dfdd; border-radius: 15px; background: #fff; }
.tcc-quote-data-actions > div { display: flex; flex-direction: column; gap: 2px; }
.tcc-quote-data-actions strong { font-size: 12px; }
.tcc-quote-data-actions span { color: #88827e; font-size: 9.5px; }
.tcc-quote-data-actions .tcc-button { min-height: 47px; font-size: 12px; }

/* FAQ */
.tcc-quote-faq { padding-top: 108px; padding-bottom: 116px; }
.tcc-quote-faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 68px; align-items: start; }
.tcc-quote-faq-copy { position: sticky; top: 160px; }
.tcc-quote-faq-copy h2 { max-width: 450px; }
.tcc-quote-faq-copy p { max-width: 420px; margin: 0 0 22px; color: #77716e; font-size: 14px; line-height: 1.62; }
.tcc-quote-faq-copy a { color: var(--quote-red); font-size: 11px; font-weight: 800; }
.tcc-quote-faq-copy a span { margin-left: 7px; }
.tcc-quote-faq-list { overflow: hidden; border: 1px solid #e3e0de; border-radius: 18px; background: #fff; box-shadow: 0 18px 46px rgba(20,20,20,.055); }
.tcc-quote-faq-list .tcc-faq-item { border-bottom: 1px solid #ece8e6; }
.tcc-quote-faq-list .tcc-faq-item:last-child { border-bottom: 0; }
.tcc-quote-faq-list .tcc-faq-item button { width: 100%; min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 17px; border: 0; background: #fff; color: #161616; text-align: left; cursor: pointer; }
.tcc-quote-faq-list .tcc-faq-item button > span { display: flex; align-items: center; gap: 15px; font-size: 12.5px; font-weight: 820; line-height: 1.3; }
.tcc-quote-faq-list .tcc-faq-item button em { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(217,65,45,.24); border-radius: 50%; color: var(--quote-red); font-size: 8px; font-style: normal; font-weight: 850; }
.tcc-quote-faq-list .tcc-faq-item button b { color: var(--quote-red); font-size: 17px; font-weight: 400; }
.tcc-quote-faq-list .tcc-faq-item.is-open button { border-bottom: 1px solid rgba(217,65,45,.22); background: #fffdfc; }
.tcc-quote-faq-list .tcc-faq-answer { padding: 5px 64px 21px; color: #77716e; font-size: 11.5px; line-height: 1.65; }
.tcc-quote-faq-list .tcc-faq-answer p { margin: 0; }
.tcc-quote-faq-list .tcc-faq-answer strong { color: #252322; }

/* Final CTA */
.tcc-quote-final { padding: 88px 0 91px; color: #fff; background: radial-gradient(circle at 85% 70%,rgba(217,65,45,.16),transparent 30%), #0d0f10; }
.tcc-quote-final-inner { text-align: center; }
.tcc-quote-final .tcc-eyebrow { color: #e66a57; }
.tcc-quote-final-route { display: flex; align-items: center; justify-content: center; gap: 9px; margin: 12px 0 25px; color: #eee; font-size: 7px; font-weight: 850; letter-spacing: .08em; }
.tcc-quote-final-route i { width: 35px; border-top: 1px dashed rgba(217,65,45,.55); }
.tcc-quote-final h2 { max-width: 930px; margin-inline: auto; color: #fff; font-size: clamp(43px,4.5vw,61px); }
.tcc-quote-final p { max-width: 760px; margin: 0 auto 26px; color: #a5a7a9; font-size: 13px; line-height: 1.6; }
.tcc-quote-final-inner > div:last-child { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

/* Responsive quote page */
@media (max-width: 1100px) {
  .tcc-quote-hero-grid { grid-template-columns: .9fr 1.1fr; gap: 30px; }
  .tcc-quote-hero-copy h1 { font-size: 54px; }
  .tcc-quote-subnav .tcc-container { justify-content: flex-start; gap: 28px; overflow-x: auto; scrollbar-width: none; }
  .tcc-quote-subnav .tcc-container::-webkit-scrollbar { display: none; }
  .tcc-quote-mode-grid { grid-template-columns: repeat(2,1fr); }
  .tcc-quote-structure-grid, .tcc-quote-tax-grid { gap: 50px; }
}
@media (max-width: 900px) {
  .tcc-quote-hero-grid { grid-template-columns: 1fr; padding-top: 70px; padding-bottom: 70px; }
  .tcc-quote-hero-copy { max-width: 680px; }
  .tcc-quote-hero-board { max-width: 680px; width: 100%; }
  .tcc-quote-start-grid { grid-template-columns: 1fr; }
  .tcc-quote-start-grid article { min-height: 260px; }
  .tcc-quote-calc-body { grid-template-columns: 1fr; }
  .tcc-quote-calc-inputs { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .tcc-quote-structure-grid, .tcc-quote-tax-grid, .tcc-quote-faq-grid { grid-template-columns: 1fr; }
  .tcc-quote-faq-copy { position: static; }
  .tcc-quote-tax-options { max-width: 760px; }
  .tcc-quote-data-head { grid-template-columns: 1fr; gap: 18px; }
  .tcc-quote-data-grid { grid-template-columns: repeat(2,1fr); }
  .tcc-quote-data-actions { grid-template-columns: 1fr 1fr; }
  .tcc-quote-data-actions > div { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .tcc-quote-hero-grid { min-height: 0; padding-top: 56px; padding-bottom: 56px; }
  .tcc-quote-hero-copy h1 { font-size: clamp(45px,14vw,58px); }
  .tcc-quote-hero-facts { grid-template-columns: repeat(2,1fr); }
  .tcc-quote-hero-facts span { border-bottom: 1px solid #ece7e4; }
  .tcc-quote-board-head { grid-template-columns: 1fr auto; }
  .tcc-quote-board-head strong { display: none; }
  .tcc-quote-board-route { grid-template-columns: 90px 1fr 90px; padding-inline: 14px; }
  .tcc-quote-board-flow { grid-template-columns: 1fr; margin-inline: 12px; }
  .tcc-quote-board-flow article { min-height: 92px; }
  .tcc-quote-subnav .tcc-container { width: 100%; padding-inline: 18px; min-height: 51px; }
  .tcc-quote-center-heading { margin-bottom: 38px; }
  .tcc-quote-center-heading h2,
  .tcc-quote-calculator-heading h2,
  .tcc-quote-structure-copy h2,
  .tcc-quote-tax-copy h2,
  .tcc-quote-data-head h2,
  .tcc-quote-faq-copy h2 { font-size: 39px; }
  .tcc-quote-start, .tcc-quote-modes, .tcc-quote-tax, .tcc-quote-faq { padding-top: 78px; padding-bottom: 82px; }
  .tcc-quote-calculator, .tcc-quote-structure, .tcc-quote-data { padding-top: 78px; padding-bottom: 82px; }
  .tcc-quote-calc-tabs { grid-template-columns: 1fr; }
  .tcc-quote-calc-tabs button { min-height: 61px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .tcc-quote-calc-inputs { grid-template-columns: 1fr; padding: 28px 21px; }
  .tcc-quote-calc-result { padding: 30px 22px; }
  .tcc-quote-calc-result-head strong { font-size: 50px; }
  .tcc-quote-mode-grid, .tcc-quote-tax-options, .tcc-quote-data-grid { grid-template-columns: 1fr; }
  .tcc-quote-mode-grid article { min-height: 385px; }
  .tcc-quote-structure-grid { gap: 42px; }
  .tcc-quote-cost-stack article { grid-template-columns: 42px 1fr; }
  .tcc-quote-data-actions { grid-template-columns: 1fr; }
  .tcc-quote-data-actions > div { grid-column: auto; }
  .tcc-quote-data-actions .tcc-button { width: 100%; }
  .tcc-quote-faq-list .tcc-faq-item button { padding-inline: 12px; }
  .tcc-quote-faq-list .tcc-faq-item button > span { gap: 10px; font-size: 11.5px; align-items: flex-start; }
  .tcc-quote-faq-list .tcc-faq-item button em { flex-basis: 30px; width: 30px; height: 30px; }
  .tcc-quote-faq-list .tcc-faq-answer { padding: 6px 17px 19px 52px; }
  .tcc-quote-final { padding-top: 76px; padding-bottom: 79px; }
  .tcc-quote-final h2 { font-size: 42px; }
  .tcc-quote-final-route { flex-wrap: wrap; }
}
