.webioo-packages-page {
  --pkg-ink: #081226;
  --pkg-text: #52617f;
  --pkg-muted: #7180a0;
  --pkg-line: rgba(0, 45, 120, 0.14);
  --pkg-blue: var(--home2-primary-2, #004d9c);
  --pkg-blue-dark: var(--home2-primary, #00235a);
  --pkg-blue-soft: var(--home2-primary-soft, #e6eef7);
  --pkg-green: #128552;
  --pkg-cyan: #14a6d8;
  --pkg-amber: #f28833;
  --pkg-shadow: 0 28px 70px rgba(0, 47, 120, 0.14);
  color: var(--pkg-ink);
  background: #fff;
}

.packages-main {
  overflow: hidden;
  background: #fff;
}

.packages-hero {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding: 54px 0 88px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 248, 255, 0.96) 48%, rgba(255, 255, 255, 1) 100%),
    linear-gradient(115deg, rgba(0, 92, 255, 0.1), rgba(20, 166, 216, 0.08) 48%, rgba(255, 255, 255, 0));
}

.packages-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(100deg, transparent 0 8%, rgba(0, 92, 255, 0.07) 32%, transparent 62%),
    repeating-linear-gradient(90deg, rgba(0, 77, 156, 0.025) 0 1px, transparent 1px 96px);
  opacity: 0.75;
}

.packages-hero-bg,
.packages-hero-bg::before,
.packages-hero-bg::after {
  display: none;
  content: none;
}

.packages-hero-container {
  position: relative;
  z-index: 1;
}

.packages-hero-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.packages-hero-copy h1 {
  margin: 0;
  color: var(--pkg-ink);
  font-family: var(--tc-heading-font-family, "Satoshi-Variable"), Arial, sans-serif;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.packages-hero-copy p {
  max-width: 650px;
  margin: 18px auto 0;
  color: #526286;
  font-size: 18px;
  line-height: 1.62;
}

.packages-carousel {
  position: relative;
  max-width: 1320px;
  min-height: 690px;
  margin: 34px auto 0;
  --pkg-card-w: clamp(342px, 29vw, 430px);
}

.packages-stage {
  position: relative;
  height: 642px;
  outline: none;
  perspective: 1600px;
}

.packages-stage:focus-visible {
  border-radius: 22px;
  box-shadow: 0 0 0 4px rgba(0, 92, 255, 0.16);
}

.packages-plate {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 2;
  transform: translateX(-50%);
  border-radius: 50%;
  pointer-events: none;
}

.packages-plate-back {
  width: min(96vw, 1300px);
  height: 148px;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 1) 0 34%, rgba(239, 247, 255, 0.9) 58%, rgba(219, 235, 255, 0.78) 100%);
  border: 1px solid rgba(0, 92, 255, 0.16);
  box-shadow:
    inset 0 -18px 0 rgba(0, 92, 255, 0.08),
    inset 0 18px 32px rgba(255, 255, 255, 0.9),
    0 38px 78px rgba(0, 54, 135, 0.14);
}

.packages-plate-back::before,
.packages-plate-back::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

.packages-plate-back::before {
  top: 30px;
  width: 76%;
  height: 42%;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 0 38px rgba(255, 255, 255, 0.64);
}

.packages-plate-back::after {
  bottom: 8px;
  width: 92%;
  height: 42%;
  border-bottom: 14px solid rgba(0, 92, 255, 0.1);
  filter: blur(0.1px);
}

.packages-plate-front {
  display: none;
}

.package-card {
  position: absolute;
  left: 50%;
  top: 4px;
  width: var(--pkg-card-w);
  min-height: 540px;
  display: flex;
  flex-direction: column;
  padding: 36px 38px 34px;
  color: var(--pkg-ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 92, 255, 0.22);
  border-radius: 18px;
  box-shadow: 0 26px 62px rgba(0, 56, 140, 0.13);
  transform-style: preserve-3d;
  transition:
    transform 660ms cubic-bezier(0.2, 0.82, 0.18, 1),
    opacity 460ms ease,
    filter 460ms ease,
    box-shadow 460ms ease;
  will-change: transform, opacity;
}

.package-card[data-position="active"] {
  z-index: 5;
  opacity: 1;
  filter: none;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 95px) rotateZ(0) rotateY(0) scale(1);
  box-shadow: 0 32px 82px rgba(0, 71, 178, 0.2);
}

.package-card[data-position="left"] {
  z-index: 3;
  opacity: 0.96;
  pointer-events: auto;
  transform: translate3d(calc(-50% - 430px), 38px, -150px) rotateZ(-4.5deg) rotateY(10deg) scale(0.88);
}

.package-card[data-position="right"] {
  z-index: 3;
  opacity: 0.96;
  pointer-events: auto;
  transform: translate3d(calc(-50% + 430px), 38px, -150px) rotateZ(4.5deg) rotateY(-10deg) scale(0.88);
}

.package-card[data-position="hidden"] {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 92px, -280px) scale(0.7);
}

.package-card-featured {
  padding-top: 76px;
  border-color: rgba(0, 92, 255, 0.38);
}

.package-ribbon {
  position: absolute;
  inset: 0 0 auto;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  background: linear-gradient(135deg, var(--home2-primary, #00235a), var(--home2-primary-2, #004d9c));
  border-radius: 17px 17px 0 0;
  font-size: 15px;
  font-weight: 800;
}

.package-discount {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  color: #fff;
  background: #ff4f5a;
  border-radius: 999px;
  box-shadow: 0 0 0 11px rgba(255, 79, 90, 0.12);
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}

.package-card-head {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.package-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--pkg-blue);
  background: linear-gradient(135deg, var(--pkg-blue-soft), #f6f9ff);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 92, 255, 0.07);
}

.package-icon i {
  font-size: 28px;
  line-height: 1;
}

.package-card-primary .package-icon,
.package-card-royal .package-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--home2-primary, #00235a), var(--home2-primary-2, #004d9c));
  box-shadow: 0 14px 28px rgba(0, 35, 90, 0.2);
}

.package-card-royal .package-icon {
  background: linear-gradient(135deg, var(--home2-primary, #00235a), var(--home2-primary-2, #004d9c));
}

.package-card h2 {
  margin: 0;
  color: var(--pkg-blue-dark);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 900;
}

.package-card p {
  margin: 10px 0 0;
  color: #5d6b8f;
  font-size: 14px;
  line-height: 1.55;
}

.package-divider {
  width: 100%;
  height: 1px;
  margin: 28px 0 24px;
  background: linear-gradient(90deg, rgba(0, 92, 255, 0.14), rgba(0, 92, 255, 0.04));
}

.package-old-price {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin: -4px 0 2px;
  color: #6d7892;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  text-decoration: line-through;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--pkg-ink);
}

.package-currency {
  font-size: 20px;
  font-weight: 900;
}

.package-price strong {
  font-size: clamp(38px, 3vw, 50px);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: 0;
}

.package-period {
  color: #536280;
  font-size: 16px;
  font-weight: 700;
}

.package-price-suffix {
  color: var(--pkg-ink);
  font-size: clamp(28px, 2.35vw, 38px);
  line-height: 1;
  font-weight: 950;
}

.package-price-note {
  max-width: 320px;
  color: var(--pkg-blue);
  font-size: clamp(30px, 2.35vw, 40px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.package-campaign {
  margin-top: 14px !important;
  color: #078147 !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 900;
}

.package-billing {
  margin-top: 7px !important;
  color: #6a7898 !important;
  font-size: 13px !important;
}

.package-feature-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.package-feature-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: #26344f;
  font-size: 14px;
  line-height: 1.45;
}

.package-feature-list span {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--pkg-green);
  border: 1px solid rgba(25, 164, 99, 0.65);
  border-radius: 50%;
}

.package-feature-list i {
  font-size: 12px;
  line-height: 1;
}

.package-feature-list em {
  font-style: normal;
}

.package-card-cta {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding: 14px 18px;
  color: var(--pkg-blue-dark);
  background: #fff;
  border: 1.5px solid rgba(0, 77, 156, 0.42);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.package-card-cta:hover,
.package-card-cta:focus-visible {
  color: #fff;
  background: var(--pkg-blue-dark);
  box-shadow: 0 16px 34px rgba(0, 35, 90, 0.22);
  transform: translateY(-2px);
}

.package-card[data-position="active"] .package-card-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--home2-primary, #00235a), var(--home2-primary-2, #004d9c));
  border-color: transparent;
}

.package-card[data-position="active"] .package-card-cta:hover,
.package-card[data-position="active"] .package-card-cta:focus-visible {
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 35, 90, 0.28);
}

.packages-nav {
  position: absolute;
  top: 45%;
  z-index: 7;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #005cff;
  background: #fff;
  border: 1px solid rgba(0, 92, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(0, 48, 120, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.packages-nav:hover,
.packages-nav:focus-visible {
  color: #003fb8;
  box-shadow: 0 18px 42px rgba(0, 92, 255, 0.22);
  transform: translateY(-2px);
}

.packages-nav svg {
  width: 25px;
  height: 25px;
}

.packages-nav path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.packages-nav-prev {
  left: 0;
}

.packages-nav-next {
  right: 0;
}

.packages-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 8;
  display: inline-flex;
  gap: 18px;
  transform: translateX(-50%);
}

.packages-dots button {
  width: 14px;
  height: 14px;
  padding: 0;
  background: rgba(0, 92, 255, 0.24);
  border: 0;
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.packages-dots button.is-active {
  background: #005cff;
  box-shadow: 0 0 0 7px rgba(0, 92, 255, 0.1);
  transform: scale(1.08);
}

.packages-assurance {
  padding: 28px 0 70px;
  background: #fff;
}

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

.packages-assurance-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 3px;
  align-items: center;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(0, 45, 120, 0.11);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(0, 42, 105, 0.07);
}

.packages-assurance-item i {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #005cff;
  background: #edf5ff;
  border-radius: 8px;
  font-size: 21px;
}

.packages-assurance-item strong {
  color: var(--pkg-ink);
  font-size: 17px;
  line-height: 1.15;
  font-weight: 900;
}

.packages-assurance-item span {
  color: var(--pkg-text);
  font-size: 14px;
  line-height: 1.55;
}

.packages-detail {
  padding: 74px 0 96px;
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
}

.packages-detail-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.packages-detail-head h2 {
  margin: 0;
  color: var(--pkg-ink);
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.packages-detail-head p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--pkg-text);
  font-size: 17px;
  line-height: 1.65;
}

.packages-detail-consult {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 14px 20px;
  color: #fff;
  background: linear-gradient(135deg, #005cff, #14a6d8);
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(0, 92, 255, 0.2);
}

.packages-detail-consult:hover,
.packages-detail-consult:focus-visible {
  color: #fff;
  transform: translateY(-2px);
}

.packages-detail-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.packages-detail-tabs button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 12px 16px;
  color: var(--pkg-ink);
  background: #fff;
  border: 1px solid rgba(0, 45, 120, 0.12);
  border-radius: 8px;
  font-weight: 900;
  text-align: left;
  box-shadow: 0 10px 28px rgba(0, 42, 105, 0.05);
}

.packages-detail-tabs button strong {
  color: #005cff;
  white-space: nowrap;
}

.packages-detail-tabs button.is-active {
  color: #fff;
  background: #005cff;
  border-color: #005cff;
  box-shadow: 0 16px 34px rgba(0, 92, 255, 0.18);
}

.packages-detail-tabs button.is-active strong {
  color: #fff;
}

.packages-compare-table {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 45, 120, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 45, 120, 0.08);
}

.packages-compare-row {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 45, 120, 0.1);
}

.packages-compare-row:first-child {
  border-top: 0;
}

.packages-compare-row>div {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 17px 20px;
  color: #52617f;
  font-size: 15px;
  line-height: 1.45;
  border-left: 1px solid rgba(0, 45, 120, 0.1);
}

.packages-compare-row>div:first-child {
  color: var(--pkg-ink);
  border-left: 0;
  font-weight: 900;
}

.packages-compare-row>div.is-active-column {
  color: #10234d;
  background: rgba(0, 92, 255, 0.035);
}

.packages-compare-row-head {
  background: #f0f6ff;
}

.packages-compare-row-head>div {
  color: #0d234c;
  font-weight: 950;
}

.packages-compare-row-head>div.is-featured {
  color: #005cff;
}

.webioo-packages-long-copy .packages-carousel {
  min-height: 930px;
  --pkg-card-w: clamp(360px, 31vw, 470px);
}

.webioo-packages-long-copy .packages-stage {
  height: 880px;
}

.webioo-packages-long-copy .package-card {
  min-height: 770px;
}

.webioo-packages-long-copy .package-card[data-position="left"] {
  transform: translate3d(calc(-50% - 470px), 38px, -150px) rotateZ(-4.5deg) rotateY(10deg) scale(0.86);
}

.webioo-packages-long-copy .package-card[data-position="right"] {
  transform: translate3d(calc(-50% + 470px), 38px, -150px) rotateZ(4.5deg) rotateY(-10deg) scale(0.86);
}

.webioo-packages-long-copy .package-divider {
  margin: 24px 0 20px;
}

.webioo-packages-long-copy .package-feature-list {
  gap: 8px;
  margin: 18px 0 24px;
}

.webioo-packages-long-copy .package-feature-list li {
  font-size: 13px;
  line-height: 1.38;
}

.webioo-packages-ecommerce {
  --pkg-ink: #071329;
  --pkg-blue: #003a83;
  --pkg-blue-dark: #002b68;
}

.webioo-packages-ecommerce .packages-hero {
  background:
    linear-gradient(180deg, rgba(247, 250, 255, 1) 0%, rgba(238, 243, 250, 0.98) 54%, rgba(255, 255, 255, 1) 100%),
    linear-gradient(115deg, rgba(0, 47, 112, 0.09), rgba(99, 102, 241, 0.06) 45%, rgba(255, 255, 255, 0));
}

.webioo-packages-ecommerce .packages-hero::before {
  background:
    repeating-linear-gradient(90deg, rgba(89, 98, 255, 0.08) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(89, 98, 255, 0.06) 0 1px, transparent 1px 64px);
  mask-image: linear-gradient(180deg, transparent 0, #000 34%, #000 74%, transparent 100%);
  opacity: 0.75;
}

.webioo-packages-ecommerce .packages-carousel {
  --pkg-card-w: clamp(352px, 29vw, 440px);
}

.webioo-packages-ecommerce .package-card {
  min-height: 575px;
  padding-top: 46px;
  border-color: rgba(8, 19, 41, 0.1);
  box-shadow: 0 28px 70px rgba(8, 19, 41, 0.12);
}

.webioo-packages-ecommerce .package-card-featured {
  min-height: 610px;
  padding-top: 62px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #002c70 0%, #004c93 100%);
  background-size: 64px 64px, 64px 64px, auto;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 34px 86px rgba(0, 44, 112, 0.28);
}

.webioo-packages-ecommerce .package-card-featured h2,
.webioo-packages-ecommerce .package-card-featured .package-price,
.webioo-packages-ecommerce .package-card-featured .package-price-suffix {
  color: #fff;
}

.webioo-packages-ecommerce .package-card-featured p,
.webioo-packages-ecommerce .package-card-featured .package-feature-list li,
.webioo-packages-ecommerce .package-card-featured .package-old-price {
  color: rgba(255, 255, 255, 0.82);
}

.webioo-packages-ecommerce .package-card-featured .package-divider {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05));
}

.webioo-packages-ecommerce .package-card-featured .package-feature-list span {
  color: #003a83;
  background: #fff;
  border-color: #fff;
}

.webioo-packages-ecommerce .package-card-featured .package-card-cta {
  color: #071329;
  background: #fff;
  border-color: rgba(255, 255, 255, 0.9);
}

.webioo-packages-ecommerce .package-card-featured .package-card-cta:hover,
.webioo-packages-ecommerce .package-card-featured .package-card-cta:focus-visible {
  color: #003a83;
  background: #fff;
}

.webioo-packages-ecommerce .package-card-featured .package-campaign {
  color: #ffd400 !important;
}

.webioo-packages-ecommerce .package-card-featured .package-icon {
  color: #003a83;
  background: #fff;
}

.webioo-packages-ecommerce .package-card-featured .package-discount {
  top: 20px;
}

@media (max-width: 1199.98px) {
  .packages-carousel {
    --pkg-card-w: 390px;
  }

  .webioo-packages-long-copy .packages-carousel {
    --pkg-card-w: 410px;
  }

  .package-card[data-position="left"] {
    transform: translate3d(calc(-50% - 338px), 42px, -150px) rotateZ(-4deg) rotateY(9deg) scale(0.82);
  }

  .package-card[data-position="right"] {
    transform: translate3d(calc(-50% + 338px), 42px, -150px) rotateZ(4deg) rotateY(-9deg) scale(0.82);
  }

  .webioo-packages-long-copy .package-card[data-position="left"] {
    transform: translate3d(calc(-50% - 352px), 42px, -150px) rotateZ(-4deg) rotateY(9deg) scale(0.82);
  }

  .webioo-packages-long-copy .package-card[data-position="right"] {
    transform: translate3d(calc(-50% + 352px), 42px, -150px) rotateZ(4deg) rotateY(-9deg) scale(0.82);
  }
}

@media (max-width: 991.98px) {
  .packages-hero {
    padding-top: 40px;
  }

  .packages-carousel {
    max-width: 720px;
    min-height: 610px;
    --pkg-card-w: min(86vw, 390px);
  }

  .packages-stage {
    height: 560px;
  }

  .webioo-packages-long-copy .packages-carousel {
    min-height: 950px;
    --pkg-card-w: min(88vw, 430px);
  }

  .webioo-packages-long-copy .packages-stage {
    height: 900px;
  }

  .package-card {
    padding: 30px 30px 32px;
  }

  .package-card-featured {
    padding-top: 70px;
  }

  .package-card[data-position="left"] {
    opacity: 0.28;
    pointer-events: none;
    transform: translate3d(calc(-50% - 145px), 42px, -210px) rotateZ(-5deg) scale(0.82);
  }

  .package-card[data-position="right"] {
    opacity: 0.28;
    pointer-events: none;
    transform: translate3d(calc(-50% + 145px), 42px, -210px) rotateZ(5deg) scale(0.82);
  }

  .webioo-packages-long-copy .package-card[data-position="left"] {
    transform: translate3d(calc(-50% - 145px), 42px, -210px) rotateZ(-5deg) scale(0.82);
  }

  .webioo-packages-long-copy .package-card[data-position="right"] {
    transform: translate3d(calc(-50% + 145px), 42px, -210px) rotateZ(5deg) scale(0.82);
  }

  .packages-nav {
    top: auto;
    bottom: 34px;
  }

  .packages-nav-prev {
    left: calc(50% - 128px);
  }

  .packages-nav-next {
    right: calc(50% - 128px);
  }

  .packages-dots {
    bottom: 14px;
  }

  .packages-assurance-grid,
  .packages-detail-tabs {
    grid-template-columns: 1fr;
  }

  .packages-detail-head {
    display: block;
  }

  .packages-detail-consult {
    margin-top: 22px;
  }

  .packages-compare-table {
    overflow-x: auto;
  }

  .packages-compare-row {
    min-width: 850px;
  }
}

@media (max-width: 767.98px) {
  .packages-hero {
    padding: 30px 0 52px;
  }

  .packages-hero-copy h1 {
    font-size: 38px;
  }

  .packages-hero-copy p {
    font-size: 16px;
  }

  .packages-carousel {
    min-height: 640px;
    margin-top: 26px;
  }

  .packages-stage {
    height: 588px;
  }

  .webioo-packages-long-copy .packages-carousel {
    min-height: 1020px;
  }

  .webioo-packages-long-copy .packages-stage {
    height: 968px;
  }

  .package-card {
    min-height: 548px;
    padding: 26px 24px 28px;
    border-radius: 16px;
  }

  .webioo-packages-long-copy .package-card {
    min-height: 860px;
  }

  .package-card-featured {
    padding-top: 67px;
  }

  .package-ribbon {
    height: 46px;
    border-radius: 15px 15px 0 0;
  }

  .package-card-head {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .package-icon {
    width: 54px;
    height: 54px;
  }

  .package-card h2 {
    font-size: 22px;
  }

  .package-card p {
    font-size: 13px;
  }

  .package-price strong {
    font-size: 38px;
  }

  .package-feature-list {
    gap: 10px;
  }

  .package-feature-list li {
    font-size: 13px;
  }

  .webioo-packages-long-copy .package-feature-list {
    gap: 7px;
  }

  .package-card-cta {
    min-height: 50px;
    font-size: 14px;
  }

  .packages-nav {
    width: 52px;
    height: 52px;
  }

  .packages-dots {
    gap: 13px;
  }

  .packages-assurance {
    padding-bottom: 48px;
  }

  .packages-assurance-item {
    padding: 20px;
  }

  .packages-detail {
    padding: 54px 0 72px;
  }
}

@media (max-width: 390px) {
  .packages-carousel {
    --pkg-card-w: min(90vw, 338px);
  }

  .package-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .package-card-featured {
    padding-top: 64px;
  }

  .package-price strong {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .package-card,
  .package-card-cta,
  .packages-nav,
  .packages-dots button,
  .packages-detail-consult {
    transition: none !important;
  }
}

/* Modern paket sayfaları: premium, karşılaştırılabilir sayfa düzeni */
.packages-hero-intro {
  position: relative;
}

.packages-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--pkg-blue);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.packages-eyebrow i {
  font-size: 15px;
}

.webioo-packages-modern-catalog .packages-hero {
  overflow: hidden;
  padding: 66px 0 78px;
  background:
    radial-gradient(circle at 82% 15%, rgba(0, 77, 156, 0.11), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #fff 46%, #f7fbff 100%);
}

.webioo-packages-modern-catalog .packages-hero::before {
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(0, 77, 156, 0.04) 50%, transparent 50.2%),
    linear-gradient(rgba(0, 77, 156, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 77, 156, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 72px 72px, 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 70%);
  opacity: 0.8;
}

.webioo-packages-modern-catalog .packages-hero-intro-split {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(460px, 1.07fr);
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
  min-height: 455px;
}

.webioo-packages-modern-catalog .packages-hero-copy {
  max-width: 640px;
  margin: 0;
  text-align: left;
}

.webioo-packages-modern-catalog .packages-hero-copy h1 {
  max-width: 650px;
  color: #07162f;
  font-size: clamp(46px, 5.1vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.webioo-packages-modern-catalog .packages-hero-copy p {
  max-width: 600px;
  margin: 22px 0 0;
  color: #53627e;
  font-size: 18px;
  line-height: 1.65;
}

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

.packages-hero-primary,
.packages-hero-secondary {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease, background 180ms ease;
}

.packages-hero-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--home2-primary, #00235a), var(--home2-primary-2, #004d9c));
  box-shadow: 0 14px 30px rgba(0, 35, 90, 0.22);
}

.packages-hero-primary:hover,
.packages-hero-primary:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--home2-primary, #00235a), var(--home2-primary-2, #004d9c));
  box-shadow: 0 18px 38px rgba(0, 35, 90, 0.29);
  transform: translateY(-2px);
}

.packages-hero-secondary {
  color: #102342;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(7, 22, 47, 0.13);
}

.packages-hero-secondary:hover,
.packages-hero-secondary:focus-visible {
  color: var(--pkg-blue);
  background: #fff;
  border-color: rgba(0, 77, 156, 0.28);
  transform: translateY(-2px);
}

.packages-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 22px;
  color: #56647d;
  font-size: 13px;
  font-weight: 750;
}

.packages-hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.packages-hero-proof i {
  color: var(--pkg-green);
}

.packages-hero-visual {
  position: relative;
  min-width: 0;
  padding: 54px 0 26px;
}

.packages-hero-visual-glow {
  position: absolute;
  inset: 5% 2% 0 8%;
  background: radial-gradient(ellipse at center, rgba(0, 77, 156, 0.2), rgba(230, 238, 247, 0.36) 48%, transparent 72%);
  filter: blur(15px);
}

.packages-hero-visual img {
  position: relative;
  z-index: 1;
  width: 112%;
  max-width: none;
  height: auto;
  margin-left: -6%;
  filter: drop-shadow(0 28px 30px rgba(0, 35, 90, 0.2));
}

.packages-visual-stat {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 38px auto;
  gap: 10px;
  align-items: center;
  min-width: 172px;
  padding: 13px 15px;
  color: #53617a;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 77, 156, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 45, 112, 0.15);
  font-size: 12px;
  line-height: 1.25;
}

.packages-visual-stat i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pkg-blue);
  background: var(--pkg-blue-soft);
  border-radius: 8px;
  font-size: 18px;
}

.packages-visual-stat span,
.packages-visual-stat strong {
  display: block;
}

.packages-visual-stat strong {
  margin-bottom: 2px;
  color: #07162f;
  font-size: 14px;
}

.packages-visual-stat-top {
  top: 22px;
  right: -4px;
}

.packages-visual-stat-bottom {
  left: -8px;
  bottom: 18px;
}

.webioo-packages-modern-catalog .packages-carousel {
  min-height: 0;
  margin: 78px auto 0;
  scroll-margin-top: 110px;
}

.webioo-packages-modern-catalog .packages-stage {
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
  overflow: visible;
  perspective: none;
}

.webioo-packages-modern-catalog .package-card,
.webioo-packages-modern-catalog .package-card[data-position="active"],
.webioo-packages-modern-catalog .package-card[data-position="left"],
.webioo-packages-modern-catalog .package-card[data-position="right"],
.webioo-packages-modern-catalog .package-card[data-position="hidden"] {
  position: relative;
  inset: auto;
  z-index: 1;
  width: auto;
  min-height: 590px;
  padding: 30px 30px 28px;
  opacity: 1;
  filter: none;
  pointer-events: auto;
  transform: none;
  will-change: auto;
  border-color: rgba(0, 52, 130, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 44, 105, 0.09);
}

.webioo-packages-modern-catalog .package-card:hover {
  z-index: 3;
  border-color: rgba(0, 77, 156, 0.24);
  box-shadow: 0 26px 60px rgba(0, 35, 90, 0.13);
  transform: translateY(-5px);
}

.webioo-packages-modern-catalog .package-card-featured,
.webioo-packages-modern-catalog .package-card-featured[data-position="active"] {
  z-index: 2;
  min-height: 626px;
  margin: -18px 0;
  padding: 76px 32px 30px;
  color: #fff;
  background: linear-gradient(135deg, var(--home2-primary, #00235a), var(--home2-primary-2, #004d9c)) !important;
  border-color: rgba(230, 238, 247, 0.36);
  box-shadow: 0 30px 74px rgba(0, 35, 90, 0.28);
}

.webioo-packages-modern-catalog .package-card-featured:hover {
  border-color: rgba(230, 238, 247, 0.5);
  box-shadow: 0 36px 82px rgba(0, 35, 90, 0.34);
  transform: translateY(-5px);
}

.webioo-packages-modern-catalog .package-ribbon {
  height: 50px;
  color: #fff;
  background: rgba(230, 238, 247, 0.14);
  border-bottom: 1px solid rgba(230, 238, 247, 0.2);
  border-radius: 8px 8px 0 0;
  letter-spacing: 0.01em;
}

.webioo-packages-modern-catalog .package-card-featured h2,
.webioo-packages-modern-catalog .package-card-featured .package-price,
.webioo-packages-modern-catalog .package-card-featured .package-price strong,
.webioo-packages-modern-catalog .package-card-featured .package-currency,
.webioo-packages-modern-catalog .package-card-featured .package-price-suffix,
.webioo-packages-modern-catalog .package-card-featured .package-price-note {
  color: #fff !important;
}

.webioo-packages-modern-catalog .package-card-featured p,
.webioo-packages-modern-catalog .package-card-featured .package-billing,
.webioo-packages-modern-catalog .package-card-featured .package-feature-list li,
.webioo-packages-modern-catalog .package-card-featured .package-more-count {
  color: rgba(255, 255, 255, 0.8) !important;
}

.webioo-packages-modern-catalog .package-card-featured .package-divider {
  background: rgba(255, 255, 255, 0.2);
}

.webioo-packages-modern-catalog .package-card-featured .package-icon {
  color: var(--home2-primary, #00235a);
  background: var(--home2-primary-soft, #e6eef7);
  box-shadow: 0 12px 26px rgba(0, 35, 105, 0.2);
}

.webioo-packages-modern-catalog .package-card-featured .package-feature-list span {
  color: var(--home2-primary, #00235a);
  background: var(--home2-primary-soft, #e6eef7);
  border-color: rgba(230, 238, 247, 0.78);
}

.webioo-packages-modern-catalog .package-card-featured .package-card-cta,
.webioo-packages-modern-catalog .package-card-featured[data-position="active"] .package-card-cta {
  color: var(--home2-primary, #00235a);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 15px 34px rgba(0, 35, 90, 0.22);
}

.webioo-packages-modern-catalog .package-card-featured .package-card-cta:hover,
.webioo-packages-modern-catalog .package-card-featured .package-card-cta:focus-visible {
  color: var(--home2-primary, #00235a);
  background: var(--home2-primary-soft, #e6eef7);
  border-color: var(--home2-primary-soft, #e6eef7);
}

.webioo-packages-modern-catalog .package-card-head {
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
}

.webioo-packages-modern-catalog .package-icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
}

.webioo-packages-modern-catalog .package-icon i {
  font-size: 23px;
}

.webioo-packages-modern-catalog .package-card h2 {
  color: #0b1a34;
  font-size: 22px;
}

.webioo-packages-modern-catalog .package-card.package-card-featured h2 {
  color: #fff;
}

.webioo-packages-modern-catalog .package-card p {
  margin-top: 7px;
}

.webioo-packages-modern-catalog .package-divider {
  margin: 22px 0 19px;
}

.webioo-packages-modern-catalog .package-price strong {
  font-size: 42px;
  letter-spacing: 0;
}

.webioo-packages-modern-catalog .package-price-suffix {
  font-size: 24px;
}

.webioo-packages-modern-catalog .package-price-note {
  min-height: 77px;
  display: flex;
  align-items: center;
  font-size: 29px;
}

.webioo-packages-modern-catalog .package-feature-list {
  gap: 10px;
  margin: 22px 0 14px;
}

.webioo-packages-modern-catalog .package-feature-list li {
  font-size: 13px;
  line-height: 1.42;
}

.package-more-count {
  display: block;
  margin-bottom: 20px;
  color: #697895;
  font-size: 12px;
  font-weight: 800;
}

.webioo-packages-modern-catalog .package-card-cta {
  min-height: 50px;
  border-radius: 8px;
  font-size: 14px;
}

.webioo-packages-modern-catalog .packages-assurance {
  padding: 0 0 68px;
  background: #f7fbff;
}

.webioo-packages-modern-catalog .packages-assurance-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.webioo-packages-modern-catalog .packages-assurance-item {
  grid-template-columns: 38px minmax(0, 1fr);
  padding: 19px;
  border-radius: 8px;
  box-shadow: none;
}

.webioo-packages-modern-catalog .packages-assurance-item i {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  font-size: 18px;
}

.webioo-packages-modern-catalog .packages-assurance-item strong {
  font-size: 15px;
}

.webioo-packages-modern-catalog .packages-assurance-item span {
  font-size: 12px;
  line-height: 1.45;
}

.packages-full-details {
  margin-top: 22px;
}

.packages-full-detail {
  overflow: hidden;
  padding: clamp(24px, 3vw, 38px);
  background: #fff;
  border: 1px solid rgba(0, 45, 120, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 45, 120, 0.08);
}

.packages-full-detail[hidden] {
  display: none;
}

.packages-full-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 45, 120, 0.1);
}

.packages-full-detail-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--pkg-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.packages-full-detail h3 {
  margin: 0;
  color: #08162e;
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.1;
  font-weight: 950;
}

.packages-full-detail-head p {
  max-width: 660px;
  margin: 9px 0 0;
  color: #5b6984;
  font-size: 15px;
  line-height: 1.55;
}

.packages-full-detail-price {
  flex: 0 0 auto;
  text-align: right;
}

.packages-full-detail-price strong,
.packages-full-detail-price span {
  display: block;
}

.packages-full-detail-price strong {
  color: var(--pkg-blue);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 950;
}

.packages-full-detail-price span {
  margin-top: 6px;
  color: #6a7894;
  font-size: 12px;
  font-weight: 700;
}

.packages-full-feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 22px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.packages-full-feature-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: #2d3b55;
  font-size: 14px;
  line-height: 1.45;
}

.packages-full-feature-list i {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #087744;
  background: #e8f8f0;
  border-radius: 6px;
  font-size: 14px;
}

.packages-full-detail-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 45, 120, 0.1);
}

.packages-full-detail-actions>a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--home2-primary, #00235a), var(--home2-primary-2, #004d9c));
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.packages-full-detail-actions>a:hover,
.packages-full-detail-actions>a:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--home2-primary, #00235a), var(--home2-primary-2, #004d9c));
}

.packages-full-detail-actions>span {
  color: #63708a;
  font-size: 12px;
  line-height: 1.45;
}

.packages-full-detail-actions>span i {
  margin-right: 5px;
  color: #087744;
}

@media (max-width: 1199.98px) {
  .webioo-packages-modern-catalog .packages-hero-intro-split {
    grid-template-columns: minmax(0, 0.9fr) minmax(410px, 1.1fr);
    gap: 28px;
  }

  .webioo-packages-modern-catalog .packages-hero-copy h1 {
    font-size: clamp(44px, 5vw, 62px);
  }

  .webioo-packages-modern-catalog .package-card,
  .webioo-packages-modern-catalog .package-card[data-position="active"],
  .webioo-packages-modern-catalog .package-card[data-position="left"],
  .webioo-packages-modern-catalog .package-card[data-position="right"] {
    padding-left: 24px;
    padding-right: 24px;
  }

  .webioo-packages-modern-catalog .package-card-featured,
  .webioo-packages-modern-catalog .package-card-featured[data-position="active"] {
    padding-top: 76px;
  }
}

@media (max-width: 991.98px) {
  .webioo-packages-modern-catalog .packages-hero {
    padding-top: 48px;
  }

  .webioo-packages-modern-catalog .packages-hero-intro-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .webioo-packages-modern-catalog .packages-hero-copy {
    max-width: 720px;
  }

  .packages-hero-visual {
    width: min(720px, 100%);
    margin: -8px auto 0;
  }

  .webioo-packages-modern-catalog .packages-carousel {
    max-width: none;
    min-height: 0;
    margin-top: 54px;
  }

  .webioo-packages-modern-catalog .packages-stage {
    grid-template-columns: 1fr;
    max-width: 660px;
    margin: 0 auto;
  }

  .webioo-packages-modern-catalog .package-card,
  .webioo-packages-modern-catalog .package-card[data-position="active"],
  .webioo-packages-modern-catalog .package-card[data-position="left"],
  .webioo-packages-modern-catalog .package-card[data-position="right"] {
    min-height: 0;
  }

  .webioo-packages-modern-catalog .package-card-featured,
  .webioo-packages-modern-catalog .package-card-featured[data-position="active"] {
    min-height: 0;
    margin: 0;
  }

  .webioo-packages-modern-catalog .packages-assurance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .packages-full-feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .webioo-packages-modern-catalog .packages-hero {
    padding: 36px 0 54px;
  }

  .webioo-packages-modern-catalog .packages-hero-copy h1 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: 1.02;
  }

  .webioo-packages-modern-catalog .packages-hero-copy p {
    margin-top: 18px;
    font-size: 16px;
  }

  .packages-eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .packages-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .packages-hero-primary,
  .packages-hero-secondary {
    width: 100%;
  }

  .packages-hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .packages-hero-visual {
    padding: 38px 0 12px;
  }

  .packages-hero-visual img {
    width: 120%;
    margin-left: -10%;
  }

  .packages-visual-stat {
    min-width: 146px;
    grid-template-columns: 32px auto;
    padding: 10px;
  }

  .packages-visual-stat i {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .packages-visual-stat-top {
    top: 16px;
    right: 0;
  }

  .packages-visual-stat-bottom {
    left: 0;
    bottom: 2px;
  }

  .webioo-packages-modern-catalog .packages-carousel {
    min-height: 0;
    margin-top: 42px;
  }

  .webioo-packages-modern-catalog .packages-stage {
    height: auto;
  }

  .webioo-packages-modern-catalog .package-card,
  .webioo-packages-modern-catalog .package-card[data-position="active"],
  .webioo-packages-modern-catalog .package-card[data-position="left"],
  .webioo-packages-modern-catalog .package-card[data-position="right"] {
    min-height: 0;
    padding: 25px 22px;
  }

  .webioo-packages-modern-catalog .package-card-featured,
  .webioo-packages-modern-catalog .package-card-featured[data-position="active"] {
    padding-top: 70px;
  }

  .webioo-packages-modern-catalog .package-card:hover,
  .webioo-packages-modern-catalog .package-card-featured:hover {
    transform: none;
  }

  .webioo-packages-modern-catalog .packages-assurance {
    padding-bottom: 48px;
  }

  .webioo-packages-modern-catalog .packages-assurance-grid,
  .packages-full-feature-list {
    grid-template-columns: 1fr;
  }

  .packages-full-detail-head,
  .packages-full-detail-actions {
    display: block;
  }

  .packages-full-detail-price {
    margin-top: 18px;
    text-align: left;
  }

  .packages-full-detail-actions>a {
    width: 100%;
  }

  .packages-full-detail-actions>span {
    display: block;
    margin-top: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .packages-hero-primary,
  .packages-hero-secondary {
    transition: none !important;
  }
}

/* Paketler hub: kategori seçimine odaklanan yönlendirme sayfası */
.webioo-packages-hub .packages-main,
.packages-hub-main {
  overflow: hidden;
  color: var(--pkg-ink);
  background: #fff;
}

.packages-hub-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(66px, 8vw, 112px) 0 clamp(74px, 9vw, 126px);
  background:
    linear-gradient(180deg, rgba(230, 238, 247, 0.56), rgba(255, 255, 255, 0.96) 72%),
    #fff;
}

.packages-hub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(0, 77, 156, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 77, 156, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}

.packages-hub-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(46px, 7vw, 104px);
  align-items: center;
}

.packages-hub-copy {
  max-width: 710px;
}

.packages-hub-eyebrow,
.packages-hub-gateway-eyebrow,
.packages-hub-section-head>span,
.packages-hub-consult-box>div>span {
  color: var(--pkg-blue);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.packages-hub-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
}

.packages-hub-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--pkg-blue-dark);
  font-family: var(--tc-heading-font-family, "Satoshi-Variable"), Arial, sans-serif;
  font-size: clamp(46px, 5.5vw, 76px);
  line-height: 0.99;
  font-weight: 900;
  letter-spacing: 0;
}

.packages-hub-copy>p {
  max-width: 660px;
  margin: 24px 0 0;
  color: #52617b;
  font-size: 18px;
  line-height: 1.65;
}

.packages-hub-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.packages-hub-primary,
.packages-hub-secondary {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.packages-hub-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--home2-primary, #00235a), var(--home2-primary-2, #004d9c));
  box-shadow: 0 16px 34px rgba(0, 35, 90, 0.2);
}

.packages-hub-primary:hover,
.packages-hub-primary:focus-visible {
  color: #fff;
  box-shadow: 0 20px 42px rgba(0, 35, 90, 0.27);
  transform: translateY(-2px);
}

.packages-hub-secondary {
  color: var(--pkg-blue-dark);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 35, 90, 0.15);
}

.packages-hub-secondary:hover,
.packages-hub-secondary:focus-visible {
  color: var(--pkg-blue);
  background: #fff;
  border-color: rgba(0, 77, 156, 0.32);
  transform: translateY(-2px);
}

.packages-hub-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 24px;
  color: #5c6980;
  font-size: 13px;
  font-weight: 800;
}

.packages-hub-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.packages-hub-trust i {
  color: #128552;
}

.packages-hub-route-map {
  overflow: hidden;
  padding: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--home2-primary, #00235a), var(--home2-primary-2, #004d9c));
  border: 1px solid rgba(230, 238, 247, 0.35);
  border-radius: 12px;
  box-shadow: 0 34px 74px rgba(0, 35, 90, 0.23);
}

.packages-hub-route-head {
  padding: 20px 20px 17px;
}

.packages-hub-route-head span,
.packages-hub-route-head strong {
  display: block;
}

.packages-hub-route-head span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.packages-hub-route-head strong {
  font-size: 22px;
  line-height: 1.2;
}

.packages-hub-route-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 22px;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
  padding: 18px;
  color: var(--pkg-blue-dark);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.packages-hub-route-row:hover,
.packages-hub-route-row:focus-visible {
  color: var(--pkg-blue-dark);
  background: var(--pkg-blue-soft);
  transform: translateX(3px);
}

.packages-hub-route-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pkg-blue);
  background: var(--pkg-blue-soft);
  border-radius: 8px;
  font-size: 21px;
}

.packages-hub-route-row>span:nth-child(2),
.packages-hub-route-row strong,
.packages-hub-route-row small {
  display: block;
}

.packages-hub-route-row strong {
  font-size: 14px;
  line-height: 1.35;
}

.packages-hub-route-row small {
  margin-top: 3px;
  color: #65738d;
  font-size: 12px;
  font-weight: 700;
}

.packages-hub-route-row>i {
  color: var(--pkg-blue);
  font-size: 18px;
}

.packages-hub-route-note {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding: 18px 20px 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  line-height: 1.5;
}

.packages-hub-route-note>i {
  font-size: 22px;
}

.packages-hub-route-note strong {
  color: #fff;
}

.packages-hub-gateways {
  padding: clamp(72px, 9vw, 124px) 0;
  background: #f7faff;
  scroll-margin-top: 90px;
}

.packages-hub-section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.packages-hub-section-head h2 {
  margin: 12px 0 0;
  color: var(--pkg-blue-dark);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
  font-weight: 900;
}

.packages-hub-section-head p {
  max-width: 680px;
  margin: 16px 0 0;
  color: #5a6881;
  font-size: 16px;
  line-height: 1.65;
}

.packages-hub-gateway-grid {
  display: grid;
  gap: 24px;
}

.packages-hub-gateway {
  min-height: 510px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 35, 90, 0.12);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 35, 90, 0.09);
}

.packages-hub-gateway-commerce {
  grid-template-columns: minmax(380px, 0.96fr) minmax(0, 1.04fr);
}

.packages-hub-gateway-commerce .packages-hub-gateway-content {
  order: 2;
}

.packages-hub-gateway-commerce .packages-hub-gateway-visual {
  order: 1;
}

.packages-hub-gateway-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 68px);
}

.packages-hub-gateway-content h2 {
  margin: 13px 0 0;
  color: var(--pkg-blue-dark);
  font-size: clamp(32px, 3.7vw, 50px);
  line-height: 1.05;
  font-weight: 900;
}

.packages-hub-gateway-content>p {
  max-width: 620px;
  margin: 17px 0 0;
  color: #59677f;
  font-size: 16px;
  line-height: 1.65;
}

.packages-hub-gateway-content ul {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.packages-hub-gateway-content li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  color: #293a57;
  font-size: 14px;
  font-weight: 750;
}

.packages-hub-gateway-content li i {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pkg-blue);
  background: var(--pkg-blue-soft);
  border-radius: 6px;
}

.packages-hub-gateway-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 35, 90, 0.1);
}

.packages-hub-gateway-footer>span {
  color: var(--pkg-blue-dark);
  font-size: 14px;
  font-weight: 900;
}

.packages-hub-gateway-footer>a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 17px;
  color: #fff;
  background: linear-gradient(135deg, var(--home2-primary, #00235a), var(--home2-primary-2, #004d9c));
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 13px 28px rgba(0, 35, 90, 0.17);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.packages-hub-gateway-footer>a:hover,
.packages-hub-gateway-footer>a:focus-visible {
  color: #fff;
  box-shadow: 0 17px 34px rgba(0, 35, 90, 0.24);
  transform: translateY(-2px);
}

.packages-hub-gateway-visual {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 34px 8px;
  background:
    linear-gradient(145deg, rgba(230, 238, 247, 0.95), rgba(255, 255, 255, 0.62)),
    #e6eef7;
}

.packages-hub-gateway-commerce .packages-hub-gateway-visual {
  background:
    linear-gradient(145deg, rgba(0, 35, 90, 0.96), rgba(0, 77, 156, 0.92)),
    var(--pkg-blue-dark);
}

.packages-hub-gateway-visual::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(0, 77, 156, 0.12);
  border-radius: 50%;
}

.packages-hub-gateway-commerce .packages-hub-gateway-visual::before {
  border-color: rgba(255, 255, 255, 0.14);
}

.packages-hub-gateway-visual img {
  position: relative;
  z-index: 1;
  width: 118%;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgba(0, 35, 90, 0.22));
  transition: transform 240ms ease;
}

.packages-hub-gateway-visual:hover img,
.packages-hub-gateway-visual:focus-visible img {
  transform: translateY(-5px) scale(1.015);
}

.packages-hub-gateway-number {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(0, 35, 90, 0.14);
  font-size: 66px;
  line-height: 1;
  font-weight: 900;
}

.packages-hub-gateway-commerce .packages-hub-gateway-number {
  color: rgba(255, 255, 255, 0.15);
}

.packages-hub-standards {
  padding: 0 0 clamp(72px, 8vw, 104px);
  background: #f7faff;
}

.packages-hub-standards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(0, 35, 90, 0.12);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(0, 35, 90, 0.07);
}

.packages-hub-standards-grid>div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 25px;
}

.packages-hub-standards-grid>div+div {
  border-left: 1px solid rgba(0, 35, 90, 0.1);
}

.packages-hub-standards-grid i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pkg-blue);
  background: var(--pkg-blue-soft);
  border-radius: 8px;
  font-size: 20px;
}

.packages-hub-standards-grid span,
.packages-hub-standards-grid strong {
  display: block;
}

.packages-hub-standards-grid span {
  color: #69758a;
  font-size: 12px;
  line-height: 1.45;
}

.packages-hub-standards-grid strong {
  margin-bottom: 3px;
  color: var(--pkg-blue-dark);
  font-size: 14px;
}

.packages-hub-consult {
  padding: 0 0 clamp(72px, 9vw, 120px);
  background: #fff;
}

.packages-hub-consult-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(34px, 5vw, 58px);
  color: #fff;
  background: linear-gradient(135deg, var(--home2-primary, #00235a), var(--home2-primary-2, #004d9c));
  border-radius: 12px;
  box-shadow: 0 30px 70px rgba(0, 35, 90, 0.2);
}

.packages-hub-consult-box>div>span {
  color: rgba(255, 255, 255, 0.68);
}

.packages-hub-consult-box h2 {
  max-width: 780px;
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(27px, 3.3vw, 43px);
  line-height: 1.08;
  font-weight: 900;
}

.packages-hub-consult-box>a {
  flex: 0 0 auto;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  color: var(--pkg-blue-dark);
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.packages-hub-consult-box>a:hover,
.packages-hub-consult-box>a:focus-visible {
  color: var(--pkg-blue-dark);
  background: var(--pkg-blue-soft);
}

@media (max-width: 1199.98px) {
  .packages-hub-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
    gap: 42px;
  }

  .packages-hub-gateway {
    grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  }

  .packages-hub-gateway-commerce {
    grid-template-columns: minmax(340px, 0.96fr) minmax(0, 1.04fr);
  }
}

@media (max-width: 991.98px) {
  .packages-hub-hero-grid,
  .packages-hub-gateway,
  .packages-hub-gateway-commerce {
    grid-template-columns: 1fr;
  }

  .packages-hub-route-map {
    max-width: 720px;
  }

  .packages-hub-gateway-content,
  .packages-hub-gateway-commerce .packages-hub-gateway-content {
    order: 1;
  }

  .packages-hub-gateway-visual,
  .packages-hub-gateway-commerce .packages-hub-gateway-visual {
    min-height: 390px;
    order: 2;
  }

  .packages-hub-gateway-visual img {
    width: min(760px, 112%);
  }

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

  .packages-hub-standards-grid>div+div {
    border-top: 1px solid rgba(0, 35, 90, 0.1);
    border-left: 0;
  }

  .packages-hub-consult-box {
    display: block;
  }

  .packages-hub-consult-box>a {
    width: fit-content;
    margin-top: 26px;
  }
}

@media (max-width: 767.98px) {
  .packages-hub-hero {
    padding: 46px 0 70px;
  }

  .packages-hub-copy h1 {
    font-size: clamp(39px, 11vw, 54px);
    line-height: 1.01;
  }

  .packages-hub-copy>p {
    margin-top: 19px;
    font-size: 16px;
  }

  .packages-hub-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .packages-hub-primary,
  .packages-hub-secondary {
    width: 100%;
  }

  .packages-hub-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .packages-hub-route-map {
    padding: 8px;
  }

  .packages-hub-route-row {
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    gap: 10px;
    padding: 14px;
  }

  .packages-hub-route-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .packages-hub-gateways {
    padding: 68px 0;
  }

  .packages-hub-section-head {
    margin-bottom: 30px;
  }

  .packages-hub-gateway {
    min-height: 0;
  }

  .packages-hub-gateway-content {
    padding: 29px 22px 32px;
  }

  .packages-hub-gateway-content h2 {
    font-size: 34px;
  }

  .packages-hub-gateway-footer {
    display: block;
  }

  .packages-hub-gateway-footer>a {
    width: 100%;
    margin-top: 16px;
  }

  .packages-hub-gateway-visual,
  .packages-hub-gateway-commerce .packages-hub-gateway-visual {
    min-height: 280px;
  }

  .packages-hub-gateway-visual img {
    width: 125%;
  }

  .packages-hub-gateway-number {
    font-size: 50px;
  }

  .packages-hub-standards-grid>div {
    padding: 20px;
  }

  .packages-hub-consult-box {
    padding: 30px 22px;
  }

  .packages-hub-consult-box>a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .packages-hub-primary,
  .packages-hub-secondary,
  .packages-hub-route-row,
  .packages-hub-gateway-footer>a,
  .packages-hub-gateway-visual img {
    transition: none !important;
  }
}
