.export-page {
  min-width: 0;
  background: #fbf8f4;
}

.export-page .footer {
  background: #4a3152;
}

.export-page .navbar {
  background: rgba(251, 248, 244, 0.9);
  border-bottom-color: rgba(37, 32, 43, 0.08);
  backdrop-filter: blur(16px);
}

.export-hub .nav-submenu-toggle {
  display: none;
}

@media (max-width: 760px) {
  .export-hub .nav-submenu-toggle {
    position: absolute;
    z-index: 1;
    top: 5px;
    right: 6px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--plum-deep);
    background: rgba(89, 66, 100, 0.07);
    border: 0;
    border-radius: 50%;
    font-size: 1.15rem;
    cursor: pointer;
    transition: transform 180ms ease;
  }

  .export-hub .nav-submenu-toggle[aria-expanded="true"] {
    transform: rotate(180deg);
  }
}

.export-hero {
  position: relative;
  min-height: 760px;
  padding: 160px 0 96px;
  overflow: hidden;
}

.export-hero::before {
  position: absolute;
  width: 640px;
  height: 640px;
  top: -240px;
  right: -160px;
  border: 1px solid rgba(89, 66, 100, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(89, 66, 100, 0.025), 0 0 0 140px rgba(89, 66, 100, 0.018);
  content: "";
}

.export-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 520px;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 76px;
}

.crumbs {
  display: flex;
  margin-bottom: 28px;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-family: var(--detail);
  font-size: 0.76rem;
}

.crumbs a {
  text-decoration: none;
}

.crumbs a:hover {
  color: var(--plum);
}

.export-title {
  max-width: 770px;
  font-size: clamp(4.4rem, 7.2vw, 7.7rem);
  line-height: 0.91;
}

.export-title em {
  display: block;
}

.export-lead {
  max-width: 650px;
  margin-top: 30px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

.export-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.btn-contact-secondary {
  color: var(--plum-deep);
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid rgba(89, 66, 100, 0.24);
  box-shadow: none;
}

.btn-contact-secondary:hover {
  color: var(--white);
  background: var(--plum);
}

.export-map {
  position: relative;
  display: flex;
  min-height: 500px;
  padding: 42px;
  justify-content: space-between;
  flex-direction: column;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 4%, rgba(217, 204, 226, 0.3), transparent 34%),
    var(--plum-deep);
  border-radius: 34px;
  box-shadow: 0 32px 90px rgba(48, 34, 56, 0.18);
  overflow: hidden;
}

.export-map::after {
  position: absolute;
  width: 310px;
  height: 310px;
  right: -120px;
  bottom: -130px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255,255,255,0.035), 0 0 0 96px rgba(255,255,255,0.02);
  content: "";
}

.map-label,
.export-card-label,
.detail-label,
.step-number {
  font-family: var(--detail);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.map-route {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.map-route a {
  display: flex;
  padding: 20px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1;
  text-decoration: none;
}

.map-route a span {
  font-family: var(--sans);
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.map-route a:hover span {
  transform: translateX(5px);
}

.export-paths {
  padding: 110px 0 130px;
  background: var(--white);
}

.export-hub .export-paths {
  min-height: calc(100vh - 200px);
  padding-top: 165px;
}

.export-section-head {
  display: grid;
  margin-bottom: 52px;
  align-items: end;
  grid-template-columns: 1fr 0.65fr;
  gap: 60px;
}

.export-section-head h2 {
  margin-top: 18px;
  font-size: clamp(3.2rem, 5.5vw, 5.3rem);
}

.export-section-head > p {
  color: var(--ink-soft);
  line-height: 1.8;
}

.export-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.export-hub .export-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.export-hub .export-card {
  min-height: 420px;
  padding: 30px;
}

.export-hub .export-card h3 {
  font-size: clamp(2.35rem, 3.3vw, 3.7rem);
}

.export-card {
  position: relative;
  display: flex;
  min-height: 480px;
  padding: 38px;
  justify-content: space-between;
  flex-direction: column;
  border: 1px solid rgba(37, 32, 43, 0.08);
  border-radius: 30px;
  box-shadow: 0 18px 46px rgba(48, 34, 56, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.export-card:hover {
  box-shadow: 0 28px 60px rgba(48,34,56,0.12);
  transform: translateY(-7px);
}

.export-card--beauty {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.72), transparent 27%),
    linear-gradient(145deg, #f6dce4 0%, #e9bcc9 100%);
  border-color: rgba(151, 91, 111, 0.18);
}

.export-card--tech {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.7), transparent 27%),
    linear-gradient(145deg, #e0ecdf 0%, #bdd4c1 100%);
  border-color: rgba(75, 112, 82, 0.18);
}

.export-card--finance {
  background: linear-gradient(145deg, #f0e7f5 0%, #d4bedf 100%);
  border-color: rgba(99, 68, 111, 0.2);
}

.export-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.export-card-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.25rem;
}

.export-card-logos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.export-card-logo {
  display: block;
  width: 58px;
  height: 58px;
  padding: 2px;
  object-fit: contain;
  border: 0;
  border-radius: 50%;
  background: transparent;
  filter: none;
  mix-blend-mode: normal;
  box-shadow: none;
}

.export-card h3 {
  max-width: 490px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 4.7vw, 5rem);
}

.export-card p {
  max-width: 500px;
  color: rgba(37, 32, 43, 0.72);
}

.export-card-cta {
  display: inline-flex;
  margin-top: 28px;
  align-items: center;
  gap: 12px;
  font-family: var(--detail);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.export-note {
  padding: 84px 0;
  color: var(--white);
  background: var(--plum-deep);
}

.export-note-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 42px;
}

.export-note h2 {
  max-width: 730px;
  font-size: clamp(3rem, 5vw, 5rem);
}

.detail-hero {
  padding: 160px 0 90px;
}

.detail-hero-grid {
  display: grid;
  min-height: 560px;
  align-items: stretch;
  grid-template-columns: 1fr 0.82fr;
  gap: 20px;
}

.detail-copy,
.detail-panel {
  display: flex;
  padding: clamp(34px, 5vw, 64px);
  justify-content: center;
  flex-direction: column;
  border-radius: 32px;
}

.detail-copy {
  background: var(--white);
  border: 1px solid rgba(37,32,43,0.08);
}

.detail-copy h1 {
  margin: 22px 0 26px;
  font-size: clamp(4rem, 6vw, 6.5rem);
}

.detail-copy > p:not(.detail-label) {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.wholesale-email {
  width: fit-content;
  margin-top: 22px;
  color: var(--plum);
  font-family: var(--detail);
  font-size: 0.9rem;
  font-weight: 600;
  text-underline-offset: 5px;
}

/* Teléfonos: landing mayorista */
.phone-landing {
  background: #f7f3ed;
}

.phone-hero {
  min-height: 100vh;
  padding: 132px 0 88px;
}

.phone-hero .crumbs {
  margin-bottom: 24px;
}

.phone-hero-shell {
  display: grid;
  min-height: 650px;
  grid-template-columns: 1.02fr 0.98fr;
  background: var(--white);
  border: 1px solid rgba(37,32,43,0.09);
  border-radius: 34px;
  box-shadow: 0 28px 90px rgba(48,34,56,0.08);
  overflow: hidden;
}

.phone-copy {
  display: flex;
  padding: clamp(48px, 6vw, 82px);
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.phone-copy h1 {
  max-width: 650px;
  margin: 22px 0 26px;
  font-size: clamp(4.6rem, 7vw, 7.5rem);
  line-height: 0.88;
}

.phone-intro {
  max-width: 590px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}

.phone-facts {
  display: flex;
  width: 100%;
  max-width: 520px;
  margin: 38px 0;
  padding: 22px 0;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.phone-facts div {
  display: flex;
  width: 50%;
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
}

.phone-facts div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.phone-facts strong {
  color: var(--plum-deep);
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1;
}

.phone-facts span {
  color: var(--ink-soft);
  font-family: var(--detail);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.phone-cta {
  min-width: 245px;
  justify-content: space-between;
}

.phone-contact-actions {
  margin-top: 34px;
}

.phone-email-label {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.phone-email-label a {
  color: var(--plum);
  font-weight: 600;
  text-underline-offset: 4px;
}

.phone-visual {
  position: relative;
  min-height: 650px;
  background: var(--plum-deep);
  overflow: hidden;
}

.phone-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,13,24,0.55));
  content: "";
  pointer-events: none;
}

.phone-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.phone-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  padding: 11px 16px;
  color: var(--white);
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  font-family: var(--detail);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.phone-request {
  display: flex;
  padding: 30px 8px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.phone-request > p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.phone-request ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.phone-request li {
  padding: 9px 13px;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--detail);
  font-size: 0.72rem;
}

/* Consultoría financiera */
.financial-hero {
  padding: 146px 0 100px;
  background: linear-gradient(145deg, #fffdf9 0%, #f4eaf5 100%);
}

.financial-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 7vw, 110px);
}

.financial-copy h1 {
  max-width: 780px;
  margin: 18px 0 28px;
  font-size: clamp(3.7rem, 5.7vw, 6.7rem);
  line-height: 0.98;
}

.financial-copy h1 em,
.financial-section-head h2 em { color: var(--plum); }

.financial-copy > p:not(.detail-label) {
  max-width: 640px;
  margin-top: 18px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.financial-copy .financial-lead { color: var(--ink); font-size: 1.13rem; }

.financial-text-link {
  color: var(--plum-deep);
  font-family: var(--detail);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.financial-visual {
  position: relative;
  min-height: 620px;
  margin: 0;
  border-radius: 230px 230px 30px 30px;
  box-shadow: 0 28px 75px rgba(48, 34, 56, 0.14);
  overflow: hidden;
}

.financial-visual img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.financial-visual figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 13px 17px;
  color: var(--plum-deep);
  background: rgba(255, 253, 249, 0.88);
  border-radius: 12px;
  font-family: var(--detail);
  font-size: 0.78rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.financial-process { padding: 100px 0 110px; background: #fffdf9; }

.financial-section-head {
  display: grid;
  margin-bottom: 42px;
  align-items: end;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 30px;
}

.financial-section-head h2 { font-size: clamp(2.8rem, 4vw, 4.6rem); line-height: 1; }
.financial-section-head > p:last-child { color: var(--ink-soft); line-height: 1.7; }

.financial-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.financial-steps article {
  min-height: 280px;
  padding: 32px;
  background: #f7f1f7;
  border: 1px solid rgba(89, 66, 100, 0.12);
  border-radius: 24px;
}

.financial-steps h3 {
  margin: 35px 0 13px;
  font-size: clamp(1.75rem, 2.2vw, 2.5rem);
  line-height: 1.05;
}

.financial-steps p { color: var(--ink-soft); line-height: 1.7; }
.financial-contact { padding: 0 0 105px; background: #fffdf9; }

.financial-contact-panel {
  display: flex;
  padding: 54px 60px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  color: #fffdf9;
  background: #4a3152;
  border-radius: 28px;
}

.financial-contact-panel h2 {
  max-width: 690px;
  margin: 12px 0;
  font-size: clamp(2.6rem, 4vw, 4.5rem);
}

.financial-contact-panel .detail-label,
.financial-contact-panel p { color: #fffdf9; }

.financial-contact-panel .btn {
  flex: none;
  background: #fffdf9;
  color: var(--plum-deep);
}

.financial-note {
  max-width: 850px;
  margin: 19px auto 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 980px) {
  .financial-hero-grid { grid-template-columns: 1fr; }
  .financial-visual { min-height: 520px; }
  .financial-section-head { grid-template-columns: 1fr 1fr; }
  .financial-section-head .eyebrow { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .financial-hero { padding: 115px 0 70px; }
  .financial-copy h1 { font-size: clamp(3.1rem, 11vw, 4.5rem); }
  .financial-visual { min-height: 420px; }
  .financial-section-head,
  .financial-steps { grid-template-columns: 1fr; }
  .financial-process { padding: 75px 0; }
  .financial-steps article { min-height: 0; }
  .financial-contact { padding-bottom: 75px; }
  .financial-contact-panel {
    padding: 35px 28px;
    align-items: start;
    flex-direction: column;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .export-hub .export-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .export-hub .export-card--finance {
    grid-column: 1 / -1;
    min-height: 300px;
  }
}

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

  .phone-visual {
    min-height: 520px;
  }

  .phone-request {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .phone-hero {
    padding: 112px 0 68px;
  }

  .phone-hero-shell {
    min-height: auto;
    border-radius: 25px;
  }

  .phone-copy {
    padding: 42px 26px;
  }

  .phone-copy h1 {
    font-size: clamp(3.7rem, 17vw, 5.1rem);
  }

  .phone-visual {
    min-height: 480px;
  }

  .phone-cta {
    width: 100%;
  }

  .phone-request {
    padding-top: 24px;
  }
}

@media (max-width: 430px) {
  .phone-facts {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .phone-facts div {
    width: 100%;
  }

  .phone-facts div + div {
    padding-top: 20px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .phone-visual {
    min-height: 410px;
  }
}

.detail-panel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.detail-panel--beauty {
  background: #f1dfe2;
}

.detail-panel--tech {
  background: #dde5dc;
}

.detail-panel--phone {
  color: var(--white);
  background: var(--plum-deep);
}

.detail-panel--phone .product-item {
  border-color: rgba(255,255,255,0.18);
}

.detail-panel--phone .product-item span,
.detail-panel--phone .product-item p {
  color: rgba(255,255,255,0.68);
}

.detail-panel--phone .product-item {
  padding-block: 18px;
}

.detail-panel h2 {
  max-width: 460px;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
}

.detail-panel p {
  max-width: 460px;
  margin-top: 22px;
  opacity: 0.72;
}

.partner-logos {
  display: grid;
  margin-top: 34px;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.partner-logo {
  display: grid;
  min-height: 120px;
  padding: 18px;
  place-items: center;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(37,32,43,0.08);
  border-radius: 18px;
}

.partner-logo img {
  width: 100%;
  max-width: 150px;
  max-height: 86px;
  object-fit: contain;
}

.detail-content {
  padding: 110px 0;
  background: var(--white);
}

.detail-content-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.detail-content h2 {
  font-size: clamp(3rem, 4.8vw, 4.8rem);
}

.detail-content-intro {
  margin-top: 24px;
  color: var(--ink-soft);
}

.product-list {
  display: grid;
  gap: 12px;
}

.product-item {
  display: grid;
  padding: 28px 0;
  align-items: start;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.product-item:first-child {
  border-top: 1px solid var(--line);
}

.product-item span {
  color: var(--plum);
  font-family: var(--detail);
  font-size: 0.72rem;
  font-weight: 600;
}

.product-item h3 {
  margin-bottom: 9px;
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.product-item p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.process-section {
  padding: 110px 0;
}

.process-section h2 {
  max-width: 760px;
  font-size: clamp(3.2rem, 5vw, 5rem);
}

.process-grid {
  display: grid;
  margin-top: 58px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.process-step {
  min-height: 260px;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(37,32,43,0.08);
  border-radius: 22px;
}

.process-step h3 {
  margin: 54px 0 13px;
  font-family: var(--sans);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.process-step p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.subroutes {
  padding: 78px 0;
  background: #eee8df;
}

.subroutes-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.subroutes h2 {
  font-size: clamp(2.4rem, 4vw, 3.7rem);
}

.subroute-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subroute-links a {
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--detail);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 980px) {
  .export-hero-grid,
  .detail-hero-grid,
  .detail-content-grid {
    grid-template-columns: 1fr;
  }

  .export-map {
    min-height: 420px;
  }

  .detail-content-grid {
    gap: 52px;
  }
}

@media (max-width: 880px) {
  .export-page .nav-toggle {
    display: flex;
  }

  .export-page .nav-links {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: flex;
    padding: 10px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 253, 249, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(48, 34, 56, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(16px);
  }

  .export-page .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .export-page .nav-links > li > a {
    display: block;
    padding: 13px 14px;
    font-size: 0.9rem;
  }

  .export-page .nav-links .nav-cta {
    margin-top: 5px;
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 760px) {
  .export-hero,
  .detail-hero {
    min-height: auto;
    padding: 120px 0 72px;
  }

  .export-hub .export-paths {
    padding-top: 120px;
  }

  .export-hero-grid {
    min-height: auto;
    gap: 54px;
  }

  .export-title {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .export-map {
    min-height: 390px;
    padding: 30px;
  }

  .export-section-head,
  .export-grid,
  .export-note-inner,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .export-hub .export-grid {
    grid-template-columns: 1fr;
  }

  .export-hub .export-card--finance {
    grid-column: auto;
  }

  .export-section-head {
    align-items: start;
    gap: 26px;
  }

  .export-card {
    min-height: 420px;
    padding: 28px;
  }

  .export-note-inner {
    justify-items: start;
  }

  .detail-hero-grid {
    min-height: auto;
  }

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

  .detail-panel {
    min-height: 430px;
  }

  .detail-copy h1 {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .detail-content,
  .process-section {
    padding: 82px 0;
  }

  .subroutes-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .export-actions .btn {
    width: 100%;
  }

  .partner-logos {
    grid-template-columns: 1fr;
  }
}
