:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --text: #14233b;
  --muted: #61708a;
  --line: #dbe4f2;
  --brand: #2f66f5;
  --brand-2: #13b6a6;
  --dark: #10203a;
  --dark-2: #183052;
  --dark-text: #f7fbff;
  --dark-muted: #c0d0e8;
  --shadow: 0 14px 36px rgba(20, 35, 59, 0.08);
  --shadow-lg: 0 24px 60px rgba(20, 35, 59, 0.14);
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 22px;
  --max: 1200px; /* safe content width */
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(47, 102, 245, 0.08),
      transparent 20%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(19, 182, 166, 0.08),
      transparent 20%
    ),
    linear-gradient(180deg, #fbfcff 0%, var(--bg) 100%);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 252, 255, 0.9);
  border-bottom: 1px solid rgba(219, 228, 242, 0.95);
  backdrop-filter: blur(12px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(47, 102, 245, 0.2);
}
.brand small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #76849a;
}
.brand strong {
  display: block;
  font-size: 15px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: #31425c;
}
.nav-links a:hover {
  color: var(--brand);
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
}
.mobile-menu {
  display: none;
  padding: 0 0 14px;
}
.mobile-menu a {
  display: block;
  padding: 10px 0;
  color: #31425c;
  font-weight: 600;
}
.mobile-menu.open {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
  transition: 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand), #4d81f8);
  color: #fff !important;
  box-shadow: 0 12px 30px rgba(47, 102, 245, 0.18);
}
.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.hero {
  padding: 56px 0 34px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: #48627f;
  font-weight: 800;
  font-size: 13px;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(38px, 5.7vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  max-width: 760px;
  overflow-wrap: anywhere;
}
.hero .lead {
  margin: 0 0 24px;
  max-width: 760px;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.68;
  color: var(--muted);
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.stat {
  min-height: 154px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.stat strong {
  display: block;
  font-size: 26px;
  line-height: 1.12;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}
.stat span {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.hero-panel {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-lg);
  min-width: 0;
  /* make hero panel background full-bleed while keeping inner grid constrained */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.hero-panel.hero-panel-reset {
  width: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: var(--max);
  border-radius: var(--radius-lg);
}
@media (max-width: 767px) {
  .hero-panel.hero-panel-reset {
    padding: 14px;
  }
}
.hero-visual {
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: #fff;
}
.hero-visual::before {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 102, 245, 0.55),
    transparent 72%
  );
}
.hero-visual::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -70px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(19, 182, 166, 0.28),
    transparent 72%
  );
}
.hero-visual-grid {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 14px;
  padding: 18px;
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-feature {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
}
.hero-feature h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}
.hero-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.58;
  font-size: 14px;
}
.hero-feature.small h3 {
  font-size: 18px;
}
.hero-feature.small {
  min-height: 120px;
}
.hero-feature.large {
  grid-row: span 3;
  min-height: 260px;
}
.float-a {
  animation: floatA 7s ease-in-out infinite;
}
.float-b {
  animation: floatB 8s ease-in-out infinite;
}
.float-c {
  animation: floatC 6.8s ease-in-out infinite;
}
@keyframes floatA {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes floatB {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(5px) translateX(-4px);
  }
}
@keyframes floatC {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.logo-card {
  min-height: 112px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 10px;
  box-shadow: 0 8px 20px rgba(20, 35, 59, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  min-width: 0;
}
.logo-card img {
  max-height: 34px;
  width: auto;
  display: block;
  margin: 0 auto 8px;
}
.logo-card iconify-icon {
  font-size: 34px;
  line-height: 1;
  display: block;
}
.logo-card span {
  font-size: 10px;
  line-height: 1.3;
  color: #48576e;
  display: block;
  overflow-wrap: anywhere;
  font-weight: 500;
}

.page-banner {
  padding: 0;
}
.banner-shell {
  min-height: 290px;
  background: linear-gradient(135deg, var(--dark), var(--dark-2));
  color: #fff;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  /* full-bleed background while keeping inner content constrained */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.banner-shell::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(47, 102, 245, 0.45),
    transparent 72%
  );
}
.banner-shell::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(19, 182, 166, 0.28),
    transparent 72%
  );
}
.banner-grid {
  position: relative;
  z-index: 1;
  min-height: 500px;
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.banner-copy h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4.8vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  max-width: 680px;
  overflow-wrap: anywhere;
}
.banner-copy p {
  margin: 0;
  max-width: 700px;
  font-size: 18px;
  line-height: 1.72;
  color: var(--dark-muted);
}
.banner-art {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
.art-grid {
  width: 100%;
  max-width: 430px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.art-card {
  min-height: 128px;
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  min-width: 0;
}
.art-card iconify-icon {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}
.art-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 6px;
  overflow-wrap: anywhere;
}
.art-card span {
  display: block;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
  font-size: 14px;
}
.art-card.tall {
  min-height: 160px;
}
.art-card.wide {
  grid-column: span 2;
}

.section {
  padding: 68px 0;
}
.section-sm {
  padding: 40px 0;
}
.section-title {
  max-width: 820px;
  margin-bottom: 24px;
}
.section-title .mini {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5f79a6;
}
.section-title h2 {
  margin: 10px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  max-width: 900px;
  overflow-wrap: anywhere;
}
.section-title p {
  margin: 0;
  font-size: 18px;
  line-height: 1.68;
  color: var(--muted);
  max-width: 820px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card,
.feature,
.kpi-box,
.timeline-card,
.cert-card,
.contact-panel,
.contact-side,
.quote,
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card {
  padding: 24px;
}
.card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}
.feature {
  padding: 22px;
}
.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(47, 102, 245, 0.12),
    rgba(19, 182, 166, 0.12)
  );
  border: 1px solid rgba(47, 102, 245, 0.12);
  font-size: 22px;
  margin-bottom: 14px;
}
.feature h3 {
  margin: 0 0 10px;
  font-size: 20px;
  overflow-wrap: anywhere;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.dark-section {
  background: linear-gradient(180deg, var(--dark), var(--dark-2));
  color: #fff;
}
.dark-section .section-title .mini {
  color: #99b8e5;
}
.dark-section .section-title h2 {
  color: #fff;
}
.dark-section .section-title p {
  color: var(--dark-muted);
}
.dark-section .card,
.dark-section .feature,
.dark-section .kpi-box,
.dark-section .timeline-card,
.dark-section .cert-card,
.dark-section .contact-panel,
.dark-section .contact-side,
.dark-section .quote,
.dark-section .tag,
.dark-section .faq-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}
.dark-section .card h3,
.dark-section .feature h3,
.dark-section .kpi-box strong,
.dark-section .timeline-card h3,
.dark-section .timeline-card .role,
.dark-section .cert-card h3,
.dark-section .contact-panel h3,
.dark-section .contact-item strong,
.dark-section .quote p,
.dark-section .faq-item h3 {
  color: #fff;
}
.dark-section .card p,
.dark-section .feature p,
.dark-section .kpi-box span,
.dark-section .timeline-card li,
.dark-section .contact-item a,
.dark-section .contact-item span,
.dark-section .quote small,
.dark-section .faq-item p {
  color: var(--dark-muted);
}
.banner-cta {
  border-radius: 20px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 20px;
  align-items: center;
  background: linear-gradient(
    120deg,
    var(--brand),
    #4a7cf8 52%,
    var(--brand-2) 100%
  );
  color: #fff;
  box-shadow: 0 24px 60px rgba(47, 102, 245, 0.22);
}
.banner-cta h3 {
  margin: 0 0 12px;
  font-size: 32px;
  letter-spacing: -0.04em;
  max-width: 700px;
  overflow-wrap: anywhere;
}
.banner-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.68;
}
.pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 14px;
}
.kpi {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.kpi-box {
  padding: 24px;
}
.kpi-box strong {
  display: block;
  font-size: 32px;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}
.kpi-box span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.timeline {
  position: relative;
  padding-left: 26px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--brand), rgba(19, 182, 166, 0.42));
}
.time-item {
  position: relative;
  margin-bottom: 18px;
}
.time-item::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand);
  box-shadow: 0 0 0 6px rgba(47, 102, 245, 0.1);
}
.timeline-card {
  padding: 22px;
}
.timeline-card .meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.timeline-card h3 {
  margin: 0;
  font-size: 24px;
  overflow-wrap: anywhere;
}
.timeline-card .role {
  font-weight: 800;
  color: #30405a;
}
.timeline-card ul {
  margin: 14px 0 0 18px;
  padding: 0;
}
.timeline-card li {
  line-height: 1.68;
  color: var(--muted);
}
.timeline-card li + li {
  margin-top: 8px;
}

.list {
  margin: 14px 0 0 18px;
  padding: 0;
}

.list li {
  line-height: 1.68;
  color: var(--muted);
}

.list li + li {
  margin-top: 10px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #33425b;
  font-size: 14px;
  box-shadow: 0 8px 18px rgba(20, 35, 59, 0.04);
}

.service-tags .tag {
  color: white;
}

.cert-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cert-badge {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}
.badge-blue {
  background: linear-gradient(135deg, #0b72dc, #56a7ff);
}
.badge-gold {
  background: linear-gradient(135deg, #c88b24, #ebc56d);
}
.badge-green {
  background: linear-gradient(135deg, #0da08a, #35c9b7);
}
.quote {
  padding: 26px;
}
.quote p {
  margin: 0;
  font-size: 21px;
  line-height: 1.7;
  letter-spacing: -0.02em;
}
.quote small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
}

.contact-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 20px;
}
.contact-panel,
.contact-side {
  padding: 24px;
}
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(47, 102, 245, 0.1);
  color: var(--brand);
  font-weight: 800;
  flex: 0 0 42px;
}
.contact-item strong {
  display: block;
  margin-bottom: 4px;
}
.contact-item a,
.contact-item span {
  color: var(--muted);
  overflow-wrap: anywhere;
}
.cta-box {
  height: 100%;
  padding: 20px;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(47, 102, 245, 0.08),
    rgba(19, 182, 166, 0.08)
  );
  border: 1px solid rgba(47, 102, 245, 0.1);
}
.faq-grid {
  display: grid;
  gap: 16px;
}
.faq-item {
  padding: 22px;
}
.faq-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
  overflow-wrap: anywhere;
}
.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.footer {
  padding: 30px 0 44px;
  color: #61728b;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.footer-row span {
  font-size: 12px;
}
.footer-row a {
  font-size: 12px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .banner-grid,
  .banner-cta,
  .contact-box,
  .grid-3,
  .kpi {
    grid-template-columns: 1fr 1fr;
  }
  .grid-2,
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .banner-shell,
  .hero-panel {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
  .banner-grid,
  .hero-visual-grid {
    max-width: 100%;
  }
  .container {
    padding: 0 16px;
  }
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .hero {
    padding-top: 40px;
  }
  .hero-grid,
  .banner-grid,
  .banner-cta,
  .contact-box,
  .grid-3,
  .grid-2,
  .kpi,
  .stats {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    padding: 14px;
  }
  .hero-visual {
    min-height: unset;
  }
  .hero-visual-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }
  .hero-feature.large,
  .hero-feature.small {
    grid-row: auto;
    min-height: unset;
  }
  .logo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .banner-grid {
    padding: 24px;
  }
  .art-grid {
    grid-template-columns: 1fr;
  }
  .art-card.wide {
    grid-column: auto;
  }
  .art-card.tall,
  .art-card {
    min-height: auto;
  }
  .banner-shell {
    min-height: auto;
  }
  .hero h1,
  .banner-copy h1,
  .section-title h2,
  .banner-cta h3 {
    hyphens: none;
  }
  .hero .lead,
  .section-title p,
  .banner-copy p,
  .banner-cta p {
    font-size: 16px;
  }
  .footer-row {
    flex-direction: column;
    font-size: 12px;
  }
}
.clients-compact .logo-card {
  min-height: auto;
  padding: 10px;
  border-radius: 10px;
}
.clients-compact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* New: taller courier strip for services page */
.courier-tall {
  gap: 18px;
  justify-content: center;
}
.courier-tall .logo-card {
  min-height: 140px; /* increased height */
  padding: 18px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.courier-tall .logo-card img {
  width: 130px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 10px;
}
.courier-tall .logo-card span {
  font-size: 13px;
  color: #48576e;
}

@media (max-width: 1080px) {
  .courier-tall .logo-card {
    min-height: 120px;
  }
}
@media (max-width: 767px) {
  .courier-tall {
    gap: 12px;
  }
  .courier-tall .logo-card {
    min-height: 90px;
    padding: 12px;
  }
  .courier-tall .logo-card img {
    width: 100px;
    height: 42px;
  }
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 120;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.cookie-banner .cookie-inner {
  width: 100%;
  max-width: var(--max);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.cookie-copy,
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-copy strong {
  display: block;
  margin-right: 12px;
  font-size: 15px;
}
.cookie-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}
.cookie-copy a {
  color: var(--brand);
  text-decoration: underline;
}
.cookie-actions .btn {
  padding: 10px 14px;
  font-size: 14px;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* New layout: heading stacked above paragraph; actions below copy */
.cookie-banner .cookie-inner {
  flex-direction: column;
  align-items: stretch;
}
.cookie-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  text-align: left;
}
.cookie-copy strong {
  margin: 0;
}
.cookie-actions {
  justify-content: flex-end;
  margin-top: 8px;
}

.cookie-actions .btn-primary {
  border: none;
}

.cookie-actions .btn-primary:focus,
.cookie-actions .btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(47, 102, 245, 0.25);
}

@media (min-width: 1081px) {
  .cookie-banner .cookie-inner {
    padding: 18px 22px;
  }
  /* keep actions aligned to the right but on the same row when enough space */
  .cookie-banner .cookie-inner.row-layout {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .cookie-banner .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .cookie-actions {
    justify-content: flex-end;
  }
}
