:root {
  --sneyco-blue: #004eea;
  --sneyco-blue-dark: #0442bf;
  --sneyco-yellow: #ffaa00;
  --sneyco-orange: #ff5b00;
  --ink: #17212b;
  --muted: #5f6c7b;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --line: #dbe5f2;
  --shadow: 0 20px 55px rgba(0, 78, 234, 0.1);
  --radius: 22px;
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  line-height: 1.55;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 229, 242, 0.85);
}

.header-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  width: 160px;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.navigation a {
  color: #415162;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 11px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.navigation a:hover,
.navigation a.active {
  color: var(--sneyco-blue);
  background: rgba(0, 78, 234, 0.08);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #213244;
  border-radius: 3px;
  position: relative;
  transition: 0.25s ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: #213244;
  border-radius: 3px;
  transition: 0.25s ease;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.menu-toggle.active span {
  background: transparent;
}

.menu-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  margin-bottom: 5rem;
}

.hero-carousel {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.hero-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 100%;
  min-height: calc(100vh - 84px);
  position: relative;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
}

.bg-image,
.bg-overlay {
  position: absolute;
  inset: 0;
}

.bg-image {
  object-fit: cover;
  height: 100vh;
  width: 100%;
}

.bg-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(0, 16, 54, 0.84) 0%,
      rgba(0, 34, 120, 0.58) 45%,
      rgba(0, 15, 48, 0.35) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
  padding: 80px 0 110px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sneyco-yellow);
  box-shadow: 0 0 0 6px rgba(255, 170, 0, 0.18);
}

.hero h1,
.hero h2 {
  font-size: clamp(2.3rem, 4.6vw, 4.4rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero p {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  max-width: 760px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--sneyco-yellow);
  color: #0f1c2c;
  box-shadow: 0 14px 32px rgba(255, 170, 0, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #ffb933;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.carousel-nav {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: 0.25s ease;
}

.nav-dot:hover {
  background: var(--sneyco-yellow);
  transform: scale(1.2);
}

/* Section base */
section {
  padding: 88px 0;
}

.section-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.section-kicker {
  display: inline-block;
  color: var(--sneyco-orange);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.02;
  font-weight: 900;
  color: #203044;
  letter-spacing: -0.03em;
}

.section-subtitle {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
  margin-top: 12px;
}

/* Value strips */
.trust-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: -46px;
  position: relative;
  z-index: 3;
}

.trust-card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 26px;
  padding: 24px 26px;
  box-shadow: 0 18px 48px rgba(0, 26, 96, 0.12);
}

.trust-card.dark {
  background: linear-gradient(
    135deg,
    rgba(0, 78, 234, 0.96),
    rgba(4, 66, 191, 0.96)
  );
  color: #fff;
  border-color: transparent;
}

.trust-card small {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: inherit;
  opacity: 0.82;
}

.trust-card p {
  font-size: 1rem;
  color: inherit;
}

/* Intro cards */
.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.copy-card,
.spec-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.copy-card p,
.spec-card p {
  font-size: 1.02rem;
  color: var(--muted);
}

.brand-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  font-weight: 800;
  color: #2d3c4d;
  font-size: 0.92rem;
}

.pill i {
  color: var(--sneyco-blue);
}

/* Buttons row */
.cta-row {
  display: flex;
  justify-content: center;
  margin: 0 0 28px;
}

.btn-tech {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 24px;
  border-radius: 18px;
  background: #fff;
  border: 2px solid rgba(255, 170, 0, 0.7);
  color: #203044;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(255, 170, 0, 0.15);
  transition: 0.25s ease;
}

.btn-tech:hover {
  transform: translateY(-2px);
  background: var(--sneyco-yellow);
  border-color: var(--sneyco-yellow);
}

.btn-badge {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 78, 234, 0.08);
  color: var(--sneyco-blue);
  font-size: 0.74rem;
  font-weight: 900;
}

/* Product carousels */
.products-wrap {
  padding: 34px;
  background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

.product-carousel {
  display: flex;
  gap: 18px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.product-carousel::-webkit-scrollbar {
  height: 8px;
}

.product-carousel::-webkit-scrollbar-thumb {
  background: #c8d7f6;
  border-radius: 999px;
}

.product-carousel::-webkit-scrollbar-track {
  background: #edf2fb;
  border-radius: 999px;
}

.product-card {
  flex: 0 0 305px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(18, 46, 97, 0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--sneyco-yellow),
    var(--sneyco-orange)
  );
}

.product-image {
  height: 220px;
  background: linear-gradient(180deg, #ffffff, #f5f8fd);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid #eef3fb;
}

.product-image img {
  max-height: 100%;
  object-fit: contain;
}

.product-card h3 {
  font-size: 1.26rem;
  line-height: 1.05;
  color: #1e3350;
  font-weight: 900;
  min-height: 2.5rem;
}

.product-card .desc {
  color: var(--muted);
  font-size: 0.97rem;
  flex: 1;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sneyco-blue);
}

.product-card button {
  width: 100%;
  padding: 13px 16px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sneyco-yellow), #ffbc29);
  font-weight: 900;
  color: #203044;
  cursor: pointer;
  transition: 0.25s ease;
}

.product-card button:hover {
  transform: translateY(-2px);
  background: linear-gradient(
    135deg,
    var(--sneyco-blue),
    var(--sneyco-blue-dark)
  );
  color: #fff;
}

/* Respaldo */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.support-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.support-card::after {
  content: "";
  position: absolute;
  right: -35px;
  top: -35px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(0, 78, 234, 0.05);
}

.support-card p {
  color: var(--muted);
  font-size: 1.03rem;
  position: relative;
  z-index: 1;
}

/* Footer */
.site-footer {
  padding: 0 0 34px;
  background: linear-gradient(180deg, #0b2d87 0%, #0442bf 100%);
  color: #fff;
  margin-top: 80px;
}

.footer-top {
  transform: translateY(-44px);
  background: #fff;
  border-radius: 30px;
  padding: 34px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 39, 132, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr 0.9fr;
  gap: 24px;
}

.footer-card {
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.footer-card h4 {
  font-size: 1.25rem;
  color: #1d3150;
  margin-bottom: 14px;
  font-weight: 900;
}

.footer-card p {
  color: var(--muted);
}

.contact-details p {
  margin-bottom: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid #cfdcf3;
  background: #fff;
  font: inherit;
  transition: 0.2s ease;
}

.contact-form input:focus {
  outline: none;
  border-color: var(--sneyco-blue);
  box-shadow: 0 0 0 4px rgba(0, 78, 234, 0.1);
}

.form-btn {
  padding: 14px 18px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sneyco-yellow), #ffbc29);
  font-weight: 900;
  color: #17212b;
  cursor: pointer;
  transition: 0.25s ease;
}

.form-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(
    135deg,
    var(--sneyco-blue),
    var(--sneyco-blue-dark)
  );
  color: #fff;
}

.partner-logos {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.logo-placeholder {
  background: #0a2f8f;
  border-radius: 18px;
  min-width: 118px;
  min-height: 118px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.logo-placeholder img {
  max-width: 100%;
  object-fit: contain;
}

.certification-logo img {
  max-width: 220px;
}

.footer-bottom {
  padding: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
}

.footer-legal {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--muted);
}

.footer-last {
  padding-top: 18px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 18px;
}

/* Helpers */
.bg-light-gray {
  background: var(--bg-soft);
}

.mb-0 {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .intro-grid,
  .support-grid,
  .footer-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .carousel-item {
    min-height: calc(88vh - 84px);
  }
}

@media (max-width: 840px) {
  .menu-toggle {
    display: flex;
  }

  .navigation {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .navigation.open {
    display: flex;
  }

  .navigation a {
    padding: 13px 14px;
    border-radius: 12px;
  }

  .logo img {
    width: 140px;
  }

  .hero-content {
    padding: 60px 1rem 92px;
  }

  .hero h1,
  .hero h2 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 72px 0;
  }

  .products-wrap {
    padding: 20px;
  }

  .product-card {
    flex-basis: 86vw;
  }

  .site-footer {
    margin-top: 64px;
  }

  .footer-top {
    padding: 20px;
    transform: translateY(-28px);
  }
}

/* Trajectory banner */
.trajectory-section {
  padding-top: 74px;
  padding-bottom: 28px;
}

.trajectory-shell {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.unified-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.trajectory-copy,
.trajectory-panel {
  border-radius: 24px;
  padding: 34px;
}

.trajectory-copy {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(246, 250, 255, 0.98)
    ),
    radial-gradient(
      circle at top right,
      rgba(0, 78, 234, 0.08),
      transparent 42%
    );
}

.trajectory-panel {
  display: grid;
  gap: 16px;
  align-content: start;
  background: linear-gradient(135deg, #0c2f89 0%, #0442bf 100%);
  color: #fff;
}

.trajectory-panel .trajectory-metric {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px 20px;
}

.trajectory-panel strong {
  display: block;
  font-size: 1.18rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.trajectory-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
}

/* Brand showcase */
.brands-close {
  padding-top: 14px;
}

.brands-shell {
  padding: 34px;
}

.brands-head {
  margin-bottom: 24px;
}

.brand-carousel {
  display: flex;
  gap: 18px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.brand-carousel::-webkit-scrollbar {
  height: 8px;
}

.brand-carousel::-webkit-scrollbar-thumb {
  background: #c8d7f6;
  border-radius: 999px;
}

.brand-carousel::-webkit-scrollbar-track {
  background: #edf2fb;
  border-radius: 999px;
}

.brand-showcase-card {
  flex: 0 0 255px;
  scroll-snap-align: start;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  min-height: 196px;
  box-shadow: 0 14px 34px rgba(18, 46, 97, 0.06);
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 78, 234, 0.08);
  color: var(--sneyco-blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.brand-showcase-card h3 {
  font-size: 1.3rem;
  line-height: 1.05;
  color: #203044;
  margin-bottom: 10px;
}

.brand-showcase-card p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* Categories */
.categories-head {
  margin-bottom: 26px;
}

.category-carousel {
  display: flex;
  gap: 18px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.category-carousel::-webkit-scrollbar {
  height: 8px;
}

.category-carousel::-webkit-scrollbar-thumb {
  background: #c8d7f6;
  border-radius: 999px;
}

.category-carousel::-webkit-scrollbar-track {
  background: #edf2fb;
  border-radius: 999px;
}

.category-card {
  flex: 0 0 305px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(18, 46, 97, 0.07);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--sneyco-blue), var(--sneyco-yellow));
}

.category-visual {
  height: 200px;
  border-radius: 18px;
  border: 1px solid #eef3fb;
  overflow: hidden; /* importante */
  position: relative;
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 170, 0, 0.15),
      transparent 30%
    ),
    linear-gradient(180deg, #ffffff, #f5f8fd);
}

/* Imagen adaptable */
.category-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* llena el contenedor sin deformarse */
  display: block;
  transition: transform 0.4s ease;
}

/* Efecto hover */
.category-card:hover .category-visual img {
  transform: scale(1.05);
}

.category-card h3 {
  font-size: 1.22rem;
  line-height: 1.08;
  color: #1e3350;
  font-weight: 900;
  min-height: 2.6rem;
}

.category-card p {
  color: var(--muted);
  font-size: 0.97rem;
}

select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid #cfdcf3;
  background: #fff;
  font: inherit;
  transition: 0.2s ease;
  color: var(--ink);
}

select:focus,
textarea:focus {
  outline: none;
  border-color: var(--sneyco-blue);
  box-shadow: 0 0 0 4px rgba(0, 78, 234, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 980px) {
  .trajectory-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .category-card {
    flex-basis: 86vw;
  }
}

@media (max-width: 980px) {
  .trajectory-shell {
    grid-template-columns: 1fr;
  }

  .unified-shell {
    padding: 16px;
  }

  .brand-showcase-card {
    flex-basis: 230px;
  }
}

.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
}

.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(0, 78, 234, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 78, 234, 0.08);
}

/* Unified journey override */
.unified-journey {
  padding-top: 74px;
}

.trajectory-master {
  padding: 34px;
  display: grid;
  gap: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.journey-intro {
  display: grid;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(219, 229, 242, 0.9);
}

.journey-anchor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.journey-block {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(18, 46, 97, 0.06);
  overflow: hidden;
}

.journey-story {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  padding: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98),
    rgba(246, 250, 255, 0.98)
  );
}

.journey-story-copy,
.journey-story-metrics {
  border-radius: 22px;
  padding: 26px;
}

.journey-story-copy {
  background: radial-gradient(
    circle at top right,
    rgba(0, 78, 234, 0.08),
    transparent 42%
  );
}

.journey-story-copy h3,
.journey-block-head h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.02;
  font-weight: 900;
  color: #203044;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.journey-story-copy p,
.journey-block-head p {
  color: var(--muted);
  font-size: 1rem;
}

.journey-story-metrics {
  display: grid;
  gap: 14px;
  align-content: start;
  background: linear-gradient(135deg, #0c2f89 0%, #0442bf 100%);
  color: #fff;
}

.journey-story-metrics .trajectory-metric {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px 20px;
}

.journey-story-metrics strong {
  display: block;
  font-size: 1.08rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.journey-story-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.92);
}

.journey-block-head {
  padding: 30px 30px 18px;
}

.brand-logo-carousel {
  display: flex;
  gap: 16px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  padding: 0 30px 24px;
}

.brand-logo-carousel::-webkit-scrollbar,
.journey-categories .category-carousel::-webkit-scrollbar {
  height: 8px;
}

.brand-logo-carousel::-webkit-scrollbar-thumb,
.journey-categories .category-carousel::-webkit-scrollbar-thumb {
  background: #c8d7f6;
  border-radius: 999px;
}

.brand-logo-carousel::-webkit-scrollbar-track,
.journey-categories .category-carousel::-webkit-scrollbar-track {
  background: #edf2fb;
  border-radius: 999px;
}

.brand-logo-card {
  flex: 0 0 220px;
  min-height: 120px;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 14px 34px rgba(18, 46, 97, 0.05);
  padding: 22px;
}

.brand-logo-card span {
  text-align: center;
  font-size: 1.35rem;
  line-height: 1.05;
  font-weight: 900;
  color: #203044;
  letter-spacing: -0.02em;
}

.bg-light-gray-inner {
  background: linear-gradient(180deg, #fbfcff 0%, #f4f8fe 100%);
}

.journey-categories .category-carousel {
  padding: 0 30px 24px;
}

@media (max-width: 980px) {
  .trajectory-master {
    padding: 24px;
  }

  .journey-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .trajectory-master {
    padding: 18px;
    gap: 18px;
  }

  .journey-story {
    padding: 14px;
  }

  .journey-story-copy,
  .journey-story-metrics,
  .journey-block-head,
  .brand-logo-carousel,
  .journey-categories .category-carousel {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-logo-card {
    flex-basis: 180px;
    min-height: 100px;
  }
}

/* legal button patch marker */

.footer-legal {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.legal-access {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.legal-access p {
  flex: 1;
}

.legal-doc-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(4, 66, 191, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  color: var(--sneyco-blue-dark);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  transition: 0.25s ease;
  box-shadow: 0 8px 22px rgba(4, 66, 191, 0.08);
}

.legal-doc-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(4, 66, 191, 0.35);
  background: #fff;
}

.legal-doc-btn i {
  font-size: 1rem;
}

@media (max-width: 840px) {
  .legal-access {
    flex-direction: column;
  }

  .legal-doc-btn {
    white-space: normal;
    width: fit-content;
  }
}
