body.gb-redesign-active #root {
  display: none !important;
}

.gb-page {
  --page-navy: #071426;
  --page-navy-2: #0c2342;
  --page-blue: #1768e5;
  --page-cyan: #66d5ff;
  --page-gold: #f3b94f;
  --page-ink: #0b1730;
  --page-text: #52627a;
  --page-line: rgba(11, 23, 48, 0.1);
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--page-text);
}

.gb-page *,
.gb-page *::before,
.gb-page *::after {
  box-sizing: border-box;
}

.gb-page-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.gb-page h1,
.gb-page h2,
.gb-page h3,
.gb-page h4 {
  margin-top: 0;
  color: var(--page-ink);
  font-family: 'Poppins', system-ui, sans-serif;
}

.gb-page p {
  color: var(--page-text);
}

.gb-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--page-blue);
  font: 700 0.76rem/1.2 'Poppins', sans-serif;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gb-page-eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--page-gold);
}

.gb-home-hero {
  position: relative;
  min-height: 790px;
  padding: 165px 0 95px;
  display: flex;
  align-items: center;
  isolation: isolate;
  background:
    radial-gradient(circle at 9% 18%, rgba(23, 104, 229, 0.24), transparent 31%),
    radial-gradient(circle at 86% 80%, rgba(102, 213, 255, 0.15), transparent 34%),
    linear-gradient(132deg, #061222 0%, #0a203e 56%, #0e315f 100%);
}

.gb-home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.gb-home-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(52px, 7vw, 96px);
}

.gb-home-hero .gb-page-eyebrow {
  color: #a8e6ff;
}

.gb-home-hero h1 {
  max-width: 720px;
  margin-bottom: 26px;
  color: #fff;
  font-size: clamp(3.1rem, 6vw, 5.65rem);
  line-height: 0.99;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.gb-home-hero h1 span {
  display: block;
  color: var(--page-cyan);
}

.gb-home-hero__lead {
  max-width: 680px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.78) !important;
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
  line-height: 1.78;
}

.gb-home-carousel {
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  background: var(--page-navy);
}

.gb-home-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.gb-home-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.gb-home-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.07);
  transition: transform 8s ease;
}

.gb-home-slide.is-active > img {
  transform: scale(1);
}

.gb-home-slide__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3,12,27,.96) 0%, rgba(4,20,42,.84) 43%, rgba(4,15,30,.28) 76%),
    linear-gradient(0deg, rgba(3,12,27,.64), transparent 46%);
}

.gb-home-slide__content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  padding-top: 145px;
  padding-bottom: 125px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease .25s, transform .75s cubic-bezier(.2,.8,.2,1) .25s;
}

.gb-home-slide.is-active .gb-home-slide__content {
  opacity: 1;
  transform: none;
}

.gb-home-slide__content > * {
  max-width: 780px;
}

.gb-home-slide__content .gb-page-eyebrow i {
  color: var(--page-gold);
  font-size: 1rem;
}

.gb-home-carousel__controls {
  position: absolute;
  z-index: 8;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
}

.gb-home-carousel__count {
  color: rgba(255,255,255,.65);
  font: 600 .73rem/1 'Poppins', sans-serif;
  letter-spacing: .14em;
}

.gb-home-carousel__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gb-home-carousel__dots button {
  position: relative;
  width: 38px;
  min-width: 0 !important;
  height: 4px;
  min-height: 4px !important;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 99px !important;
  background: rgba(255,255,255,.28);
  box-shadow: none !important;
}

.gb-home-carousel__dots button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--page-gold);
  transform: scaleX(0);
  transform-origin: left;
}

.gb-home-carousel__dots button.is-active::after {
  animation: gbCarouselTimer 6.5s linear forwards;
}

.gb-home-carousel__arrows {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

.gb-home-carousel__arrows button {
  width: 45px;
  min-width: 45px !important;
  height: 45px;
  min-height: 45px !important;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50% !important;
  background: rgba(255,255,255,.08);
  color: #fff;
  box-shadow: none !important;
  backdrop-filter: blur(12px);
}

.gb-home-carousel__arrows button:hover {
  background: rgba(255,255,255,.17);
  transform: none !important;
}

.gb-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.gb-page-button {
  min-height: 50px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 11px !important;
  font: 650 0.91rem/1 'Poppins', sans-serif;
  text-decoration: none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease !important;
}

.gb-page-button--primary {
  background: var(--page-blue);
  color: #fff !important;
  box-shadow: 0 15px 34px rgba(23, 104, 229, .3) !important;
}

.gb-page-button--secondary {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.07);
  color: #fff !important;
  backdrop-filter: blur(12px);
}

.gb-page-button:hover {
  transform: translateY(-3px) !important;
}

.gb-home-visual {
  position: relative;
  min-height: 510px;
  perspective: 1200px;
}

.gb-home-visual__frame {
  position: absolute;
  inset: 30px 0 25px 44px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 30px;
  background: #0a1b31;
  box-shadow: 0 45px 90px rgba(0,0,0,.36);
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform .2s ease-out;
}

.gb-home-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.05);
}

.gb-home-visual__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(4,17,34,.76));
}

.gb-home-visual__orbit {
  position: absolute;
  top: 0;
  right: -30px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(102,213,255,.27);
  border-radius: 50%;
  animation: gbOrbit 15s linear infinite;
}

.gb-home-visual__orbit::before,
.gb-home-visual__orbit::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.gb-home-visual__orbit::before {
  inset: 26px;
  border: 1px dashed rgba(243,185,79,.4);
}

.gb-home-visual__orbit::after {
  top: 17px;
  left: 21px;
  width: 10px;
  height: 10px;
  background: var(--page-gold);
  box-shadow: 0 0 22px rgba(243,185,79,.8);
}

.gb-float-card {
  position: absolute;
  z-index: 4;
  min-width: 195px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 15px;
  background: rgba(7,20,38,.78);
  color: #fff;
  box-shadow: 0 18px 38px rgba(0,0,0,.24);
  backdrop-filter: blur(16px);
  animation: gbFloat 5s ease-in-out infinite;
}

.gb-float-card i {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: rgba(102,213,255,.15);
  color: var(--page-cyan);
}

.gb-float-card strong {
  display: block;
  color: #fff;
  font-size: .84rem;
}

.gb-float-card span {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,.58);
  font-size: .7rem;
}

.gb-float-card--quality { left: 0; top: 78px; }
.gb-float-card--logistics { right: -12px; bottom: 70px; animation-delay: -1.7s; }
.gb-float-card--local { left: 66px; bottom: 0; animation-delay: -3.2s; }

.gb-home-proofbar {
  border-bottom: 1px solid var(--page-line);
  background: #fff;
}

.gb-home-proofbar__grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gb-home-proofbar__item {
  padding: 24px clamp(20px, 3vw, 42px);
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--page-line);
}

.gb-home-proofbar__item:last-child { border-right: 0; }

.gb-home-proofbar__item i {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: #ebf3ff;
  color: var(--page-blue);
  font-size: 1.25rem;
}

.gb-home-proofbar__item strong {
  display: block;
  color: var(--page-ink);
  font-size: .93rem;
}

.gb-home-proofbar__item span {
  display: block;
  margin-top: 4px;
  color: #78869a;
  font-size: .78rem;
}

.gb-home-section {
  padding: clamp(80px, 9vw, 122px) 0;
}

.gb-home-section--soft {
  background: #f5f8fc;
}

.gb-section-head {
  max-width: 760px;
  margin-bottom: 52px;
}

.gb-section-head--center {
  margin-inline: auto;
  text-align: center;
}

.gb-section-head h2,
.gb-home-split h2,
.gb-contact-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.07;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.gb-section-head p,
.gb-home-split__copy > p,
.gb-contact-copy > p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.75;
}

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

.gb-service-card {
  position: relative;
  min-height: 300px;
  padding: clamp(27px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid var(--page-line);
  border-radius: 22px;
  background: #fff;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.gb-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(23,104,229,.25);
  box-shadow: 0 28px 60px rgba(7,20,38,.1);
}

.gb-service-card__number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: #e7edf5;
  font: 700 3.4rem/1 'Poppins', sans-serif;
}

.gb-service-card__icon {
  width: 55px;
  height: 55px;
  margin-bottom: 34px;
  border-radius: 15px;
  background: var(--page-navy);
  color: var(--page-cyan);
  font-size: 1.45rem;
}

.gb-service-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.gb-service-card p {
  max-width: 500px;
  margin: 0 0 24px;
  line-height: 1.7;
}

.gb-service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--page-blue);
  font-weight: 650;
  text-decoration: none;
}

.gb-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gb-process::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--page-blue), var(--page-cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s ease .25s;
}

.gb-process.is-visible::before { transform: scaleX(1); }

.gb-process-step {
  position: relative;
  z-index: 1;
  padding: 0 9px;
}

.gb-process-step__dot {
  width: 55px;
  height: 55px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border: 5px solid #f5f8fc;
  border-radius: 50%;
  background: var(--page-blue);
  color: #fff;
  font: 700 .78rem/1 'Poppins', sans-serif;
  box-shadow: 0 0 0 1px rgba(23,104,229,.28);
}

.gb-process-step h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.gb-process-step p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.65;
}

.gb-home-split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.gb-home-split__image {
  position: relative;
}

.gb-home-split__image::before {
  content: '';
  position: absolute;
  inset: -18px 32px 24px -18px;
  z-index: 0;
  border-radius: 26px;
  background: #e6f0ff;
}

.gb-home-split__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 34px 70px rgba(7,20,38,.16);
}

.gb-check-list {
  margin: 30px 0 0;
  padding: 0;
  display: grid;
  gap: 15px;
  list-style: none;
}

.gb-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--page-ink);
  font-weight: 600;
}

.gb-check-list i {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #e7f1ff;
  color: var(--page-blue);
  font-size: .85rem;
}

.gb-contact-section {
  padding: clamp(80px, 9vw, 120px) 0;
  background:
    radial-gradient(circle at 10% 80%, rgba(102,213,255,.15), transparent 34%),
    linear-gradient(135deg, var(--page-navy), var(--page-navy-2));
}

.gb-contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
  gap: clamp(45px, 7vw, 90px);
}

.gb-contact-copy {
  position: sticky;
  top: 120px;
}

.gb-contact-copy h2,
.gb-contact-copy h3 {
  color: #fff !important;
}

.gb-contact-copy > p {
  color: rgba(255,255,255,.68) !important;
}

.gb-contact-points {
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
  list-style: none;
}

.gb-contact-points li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255,255,255,.82);
}

.gb-contact-points i {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(102,213,255,.12);
  color: var(--page-cyan);
}

.gb-contact-form {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 35px 70px rgba(0,0,0,.2);
}

.gb-contact-form h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.gb-contact-form__intro {
  margin: 0 0 28px;
  font-size: .9rem;
}

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

.gb-field--full { grid-column: 1 / -1; }

.gb-field label {
  display: block;
  margin-bottom: 7px;
  color: #35445b;
  font-size: .8rem;
  font-weight: 650;
}

.gb-field input,
.gb-field select,
.gb-field textarea {
  width: 100%;
  border: 1px solid #dbe2ec;
  border-radius: 10px;
  background: #fbfcfe;
  color: var(--page-ink);
  font: 400 .9rem/1.4 'Inter', sans-serif;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.gb-field input,
.gb-field select { height: 48px; padding: 0 14px; }
.gb-field textarea { min-height: 132px; padding: 13px 14px; resize: vertical; }

.gb-field input:focus,
.gb-field select:focus,
.gb-field textarea:focus {
  border-color: var(--page-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(23,104,229,.1);
}

.gb-form-hp { position: absolute !important; left: -9999px !important; }

.gb-form-bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.gb-form-bottom small {
  max-width: 380px;
  color: #7a8799;
  line-height: 1.5;
}

.gb-form-bottom small a { color: var(--page-blue); }

.gb-contact-form button {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px !important;
  background: var(--page-blue);
  color: #fff;
  font: 650 .88rem/1 'Poppins', sans-serif;
  box-shadow: 0 12px 28px rgba(23,104,229,.24) !important;
}

.gb-contact-form button[disabled] { opacity: .65; cursor: wait; }
.gb-form-status { min-height: 22px; margin: 16px 0 0; font-size: .86rem; }
.gb-form-status.is-success { color: #147a46; }
.gb-form-status.is-error { color: #b42318; }

/* Legal and privacy pages */
.gb-legal-hero {
  position: relative;
  padding: 170px 0 88px;
  overflow: hidden;
  background: linear-gradient(135deg, #071426, #0d2d59);
}

.gb-legal-hero::after {
  content: '';
  position: absolute;
  top: -180px;
  right: -90px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(102,213,255,.16);
  border-radius: 50%;
  box-shadow: inset 0 0 0 70px rgba(255,255,255,.018), inset 0 0 0 140px rgba(255,255,255,.018);
  animation: gbOrbit 20s linear infinite;
}

.gb-legal-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.gb-legal-hero p {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0;
  color: rgba(255,255,255,.7) !important;
  font-size: 1.06rem;
  line-height: 1.75;
}

.gb-legal-breadcrumb {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #a8e6ff;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gb-reading-progress {
  position: fixed;
  z-index: 10040;
  top: 82px;
  left: 0;
  width: var(--reading-progress, 0%);
  height: 3px;
  background: linear-gradient(90deg, var(--page-gold), var(--page-cyan), var(--page-blue));
  transition: width .08s linear;
}

.gb-legal-content {
  padding: 82px 0 110px;
  background: #f6f8fb;
}

.gb-legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: start;
  gap: clamp(45px, 7vw, 90px);
}

.gb-legal-nav {
  position: sticky;
  top: 124px;
  padding: 20px;
  border: 1px solid var(--page-line);
  border-radius: 16px;
  background: #fff;
}

.gb-legal-nav strong {
  display: block;
  margin-bottom: 14px;
  color: var(--page-ink);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gb-legal-nav a {
  display: block;
  padding: 9px 11px;
  border-left: 2px solid transparent;
  color: #65748a;
  font-size: .83rem;
  text-decoration: none;
}

.gb-legal-nav a:hover,
.gb-legal-nav a.is-active {
  border-left-color: var(--page-blue);
  background: #f3f7fd;
  color: var(--page-blue);
}

.gb-legal-article {
  display: grid;
  gap: 20px;
}

.gb-legal-card {
  padding: clamp(27px, 4vw, 43px);
  border: 1px solid var(--page-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(7,20,38,.045);
}

.gb-legal-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -.025em;
}

.gb-legal-card h3 {
  margin: 25px 0 10px;
  font-size: 1rem;
}

.gb-legal-card p,
.gb-legal-card li {
  font-size: .96rem;
  line-height: 1.78;
}

.gb-legal-card p:last-child { margin-bottom: 0; }

.gb-legal-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.gb-legal-card li + li { margin-top: 8px; }

.gb-legal-card a { color: var(--page-blue); }

.gb-legal-contact {
  margin-top: 22px;
  padding: 19px 21px;
  display: grid;
  gap: 8px;
  border-left: 3px solid var(--page-blue);
  border-radius: 0 12px 12px 0;
  background: #f2f7ff;
}

.gb-legal-update {
  color: #7a8798;
  font-size: .82rem !important;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes gbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}

@keyframes gbOrbit {
  to { transform: rotate(360deg); }
}

@keyframes gbCarouselTimer {
  to { transform: scaleX(1); }
}

@media (max-width: 980px) {
  .gb-home-hero { min-height: auto; }
  .gb-home-hero__layout { grid-template-columns: 1fr; }
  .gb-home-visual { min-height: 500px; }
  .gb-process { grid-template-columns: repeat(2, 1fr); gap: 45px 22px; }
  .gb-process::before { display: none; }
  .gb-home-split, .gb-contact-layout { grid-template-columns: 1fr; }
  .gb-contact-copy { position: static; }
  .gb-legal-layout { grid-template-columns: 1fr; }
  .gb-legal-nav { position: static; display: flex; overflow-x: auto; gap: 4px; }
  .gb-legal-nav strong { display: none; }
  .gb-legal-nav a { flex: 0 0 auto; border-left: 0; border-bottom: 2px solid transparent; }
  .gb-legal-nav a.is-active { border-bottom-color: var(--page-blue); }
}

@media (max-width: 720px) {
  .gb-page-container { width: min(100% - 32px, 1180px); }
  .gb-home-hero { padding: 132px 0 68px; }
  .gb-home-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem) !important;
    line-height: .99 !important;
  }
  .gb-home-hero h1 span {
    font-size: inherit !important;
    line-height: inherit !important;
  }
  .gb-home-carousel { min-height: 92svh; }
  .gb-home-slide > img { object-position: 64% center; }
  .gb-home-slide__shade {
    background: linear-gradient(180deg, rgba(3,12,27,.35), rgba(3,12,27,.93) 66%, #071426 100%);
  }
  .gb-home-slide__content {
    min-height: 92svh;
    padding-top: 130px;
    padding-bottom: 120px;
    justify-content: flex-end;
  }
  .gb-home-slide__content .gb-page-eyebrow { font-size: .67rem !important; }
  .gb-home-slide__content .gb-home-hero__lead { font-size: .9rem !important; }
  .gb-home-carousel__controls { bottom: 23px; gap: 12px; }
  .gb-home-carousel__dots { gap: 6px; }
  .gb-home-carousel__dots button { width: 23px; }
  .gb-home-carousel__arrows button { width: 40px; min-width: 40px !important; height: 40px; min-height: 40px !important; }
  .gb-section-head h2,
  .gb-home-split h2,
  .gb-contact-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem) !important;
    line-height: 1.08 !important;
  }
  .gb-service-card h3,
  .gb-process-step h3,
  .gb-contact-form h3,
  .gb-legal-card h2 {
    font-size: 1.25rem !important;
  }
  .gb-float-card strong { font-size: .78rem !important; }
  .gb-float-card span { font-size: .67rem !important; }
  .gb-home-visual { min-height: 410px; }
  .gb-home-visual__frame { inset: 20px 8px 25px 24px; transform: none; }
  .gb-home-visual__orbit { width: 120px; height: 120px; right: -30px; }
  .gb-float-card { min-width: 165px; padding: 11px 12px; }
  .gb-float-card--quality { top: 42px; }
  .gb-float-card--local { left: 6px; }
  .gb-float-card--logistics { right: 0; bottom: 58px; }
  .gb-home-proofbar__grid { grid-template-columns: 1fr; padding: 10px 0; }
  .gb-home-proofbar__item { border-right: 0; border-bottom: 1px solid var(--page-line); }
  .gb-home-proofbar__item:last-child { border-bottom: 0; }
  .gb-service-grid, .gb-process, .gb-form-grid { grid-template-columns: 1fr; }
  .gb-process { gap: 32px; }
  .gb-process-step { display: grid; grid-template-columns: 50px 1fr; column-gap: 14px; }
  .gb-process-step__dot { width: 48px; height: 48px; grid-row: 1 / 3; margin: 0; }
  .gb-home-split__image img { min-height: 390px; }
  .gb-form-bottom { align-items: flex-start; flex-direction: column; }
  .gb-field--full { grid-column: auto; }
  .gb-legal-hero { padding: 138px 0 64px; }
  .gb-legal-hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem) !important;
    line-height: 1.02 !important;
  }
  .gb-reading-progress { top: 74px; }
  .gb-legal-content { padding: 50px 0 80px; }
  .gb-legal-card { border-radius: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .gb-home-visual__orbit,
  .gb-float-card,
  .gb-legal-hero::after { animation: none; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .gb-home-slide > img,
  .gb-home-slide__content { transition: none; }
  .gb-home-carousel__dots button.is-active::after { animation: none; transform: scaleX(1); }
}
