﻿/** Shopify CDN: Minification failed

Line 13:0 All "@import" rules must come first

**/
:root,
.gl-pricing-page {
  --brand-primary: #0b6b94;
  --brand-secondary: #095a7d;
  --brand-logo: #2f9fd4;
}
.gl-pricing-btn { text-decoration: none; }
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap');

.gl-pricing-page {
  --gl-navy: #0a2540;
  --gl-navy-deep: #06182b;
  --gl-ink: #0a2540;
  --gl-muted: #425466;
  --gl-soft: #6b7c93;
  --gl-line: rgba(10, 37, 64, 0.1);
  --gl-surface: #ffffff;
  --gl-accent: var(--brand-primary);
  --gl-accent-deep: var(--brand-secondary);
  --gl-cyan: #00d4ff;
  --gl-mint: #80e9ff;
  --gl-page: #f6f9fc;
  --gl-font: 'Outfit', 'Segoe UI', sans-serif;
  --gl-serif: 'Instrument Serif', Georgia, serif;

  min-height: 100vh;
  background: var(--gl-page);
  font-family: var(--gl-font);
  color: var(--gl-ink);
}

.gl-pricing-container {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
}

#how-it-works,
#solutions,
#pricing {
  scroll-margin-top: 5rem;
}

/* â€”â€” Hero (Stripe-like atmospheric band) â€”â€” */
.gl-pricing-hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5.5rem;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(0, 212, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 10%, rgba(47, 159, 212, 0.35), transparent 50%),
    radial-gradient(ellipse 60% 45% at 60% 90%, rgba(128, 233, 255, 0.12), transparent 55%),
    linear-gradient(165deg, #06182b 0%, #0a2540 42%, #0f2f4f 100%);
  color: #fff;
}

.gl-pricing-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.55;
  animation: gl-float 12s ease-in-out infinite;
}

.gl-pricing-hero-glow--a {
  width: 280px;
  height: 280px;
  top: -60px;
  left: 8%;
  background: rgba(0, 212, 255, 0.45);
}

.gl-pricing-hero-glow--b {
  width: 360px;
  height: 360px;
  top: 20%;
  right: -40px;
  background: rgba(47, 159, 212, 0.4);
  animation-delay: -4s;
}

.gl-pricing-hero-glow--c {
  width: 220px;
  height: 220px;
  bottom: -40px;
  left: 42%;
  background: rgba(128, 233, 255, 0.28);
  animation-delay: -7s;
}

@keyframes gl-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(12px, -18px, 0) scale(1.06);
  }
}

.gl-pricing-eyebrow {
  position: relative;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gl-mint);
  animation: gl-rise 0.7s ease both;
}

.gl-pricing-headline {
  position: relative;
  max-width: 18ch;
  margin: 0 0 1.25rem;
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  animation: gl-rise 0.8s ease 0.08s both;
}

.gl-pricing-headline em {
  font-family: var(--gl-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gl-mint);
}

.gl-pricing-lead {
  position: relative;
  max-width: 42rem;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  animation: gl-rise 0.85s ease 0.16s both;
}

.gl-pricing-lead strong {
  color: #fff;
  font-weight: 600;
}

@keyframes gl-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* â€”â€” Cards band â€”â€” */
.gl-pricing-section {
  position: relative;
  margin-top: -3.25rem;
  padding: 0 0 5rem;
  z-index: 2;
}

.gl-pricing-status {
  text-align: center;
  margin: 0 0 1.5rem;
  color: var(--gl-muted);
  font-weight: 500;
}

.gl-pricing-status--error {
  color: #c41e3a;
}

.gl-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.gl-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  background: var(--gl-surface);
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow:
    0 2px 4px rgba(10, 37, 64, 0.04),
    0 18px 40px rgba(10, 37, 64, 0.08);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
  animation: gl-rise 0.75s ease var(--card-delay, 0ms) both;
}

.gl-pricing-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 16px rgba(10, 37, 64, 0.06),
    0 28px 56px rgba(10, 37, 64, 0.12);
}

.gl-pricing-card.is-popular {
  border-color: rgba(47, 159, 212, 0.45);
  box-shadow:
    0 0 0 1px rgba(47, 159, 212, 0.2),
    0 22px 48px rgba(47, 159, 212, 0.18);
}

.gl-pricing-badge {
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  text-align: center;
  padding: 0.7rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 2.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gl-pricing-badge-spacer {
  min-height: 2.55rem;
  flex-shrink: 0;
}

.gl-pricing-card-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.75rem 1.6rem 1.85rem;
}

.gl-pricing-card-top {
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 1.35rem;
}

.gl-pricing-card-title {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gl-navy);
  line-height: 1.25;
  text-align: center;

}

.margin-bottom-contact {
  margin-bottom: 3.2rem !important;
}

.gl-pricing-trial {
  display: inline-block;
  align-self: center;
  margin-bottom: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(47, 159, 212, 0.1);
  color: var(--gl-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  min-height: 1.55rem;
}

.gl-pricing-trial--spacer {
  visibility: hidden;
  background: transparent;
}

.gl-pricing-card-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--gl-muted);
}

.gl-pricing-price-block {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 5.8rem;
  margin-bottom: 0;
  flex-shrink: 0;
}

.gl-pricing-amount {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.15rem;
  margin-top: 0;
  color: var(--gl-navy);
  line-height: 1;
  min-height: 3.4rem;
}

.gl-pricing-currency {
  margin-top: 0.45rem;
  font-size: 1.35rem;
  font-weight: 700;
}

.gl-pricing-value {
  font-size: clamp(2.8rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.gl-pricing-amount--contact {
  display: flex;
  align-items: flex-end;
  font-size: clamp(1.85rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  min-height: 3.4rem;
}

.gl-pricing-period {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  color: var(--gl-soft);
  font-weight: 500;
  min-height: 1.35rem;
  text-align: center;
}

.gl-pricing-renew {
  margin: 0.35rem 0 1.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gl-muted);
  min-height: 1.2rem;
  text-align: center;
}

.gl-pricing-renew--spacer {
  visibility: hidden;
}

.gl-pricing-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-logo) 0%, var(--brand-primary) 45%, var(--brand-secondary) 100%);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(47, 159, 212, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.gl-pricing-btn i {
  font-size: 0.78rem;
  transition: transform 0.2s ease;
}

.gl-pricing-btn:hover:not(:disabled) {
  filter: brightness(1.05);
  box-shadow: 0 14px 30px rgba(47, 159, 212, 0.35);
}

.gl-pricing-btn:hover:not(:disabled) i {
  transform: translateX(3px);
}

.gl-pricing-btn:active:not(:disabled) {
  transform: translateY(1px);
}

.gl-pricing-btn--ghost,
.gl-pricing-btn:disabled {
  background: #e6ebf1;
  color: #697386;
  box-shadow: none;
  cursor: not-allowed;
  filter: none;
}

.gl-pricing-includes {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--gl-line);
}

.gl-pricing-includes h3 {
  margin: 0 0 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gl-soft);
}

.gl-pricing-includes ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gl-pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
  color: var(--gl-ink);
  line-height: 1.4;
}

.gl-pricing-includes li i {
  margin-top: 0.2rem;
  color: var(--gl-accent);
  font-size: 0.75rem;
}

.gl-pricing-device {
  margin-top: 1.5rem;
  text-align: center;
}

.gl-pricing-device img {
  width: 120px;
  max-width: 100%;
  filter: drop-shadow(0 12px 24px rgba(10, 37, 64, 0.18));
  transition: transform 0.35s ease;
}

.gl-pricing-card:hover .gl-pricing-device img {
  transform: translateY(-4px);
}

.gl-pricing-section--landing {
  margin-top: 0;
  padding: 4.5rem 0 4rem;
}

.gl-plans-page {
  background: #f6f9fc;
}

.gl-plans-page .gl-pricing-section--landing {
  padding-top: 3.25rem;
}

.gl-pricing-eyebrow--dark {
  color: var(--gl-accent);
}

/* â€”â€” Landing hero â€”â€” */
.gl-land-hero {
  position: relative;
  overflow: hidden;
  padding: 4.75rem 0 5rem;
  background:
    radial-gradient(ellipse 80% 60% at 12% 18%, rgba(0, 212, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 88% 8%, rgba(47, 159, 212, 0.35), transparent 50%),
    radial-gradient(ellipse 55% 40% at 55% 95%, rgba(128, 233, 255, 0.12), transparent 55%),
    linear-gradient(165deg, #06182b 0%, #0a2540 42%, #0f2f4f 100%);
  color: #fff;
}

.gl-land-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  opacity: 0.5;
  animation: gl-float 12s ease-in-out infinite;
}

.gl-land-hero-glow--a {
  width: 260px;
  height: 260px;
  top: -50px;
  left: 6%;
  background: rgba(0, 212, 255, 0.45);
}

.gl-land-hero-glow--b {
  width: 340px;
  height: 340px;
  top: 18%;
  right: -50px;
  background: rgba(47, 159, 212, 0.42);
  animation-delay: -4s;
}

.gl-land-hero-glow--c {
  width: 200px;
  height: 200px;
  bottom: -30px;
  left: 40%;
  background: rgba(128, 233, 255, 0.28);
  animation-delay: -7s;
}

.gl-land-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.gl-land-brand {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  animation: gl-rise 0.7s ease both;
}

.gl-land-headline {
  margin: 0 0 1.15rem;
  max-width: 14ch;
  font-size: clamp(2.35rem, 4.6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  animation: gl-rise 0.8s ease 0.06s both;
}

.gl-land-headline em {
  font-family: var(--gl-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gl-mint);
}

.gl-land-lead {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  animation: gl-rise 0.85s ease 0.12s both;
}

.gl-land-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
  animation: gl-rise 0.9s ease 0.18s both;
}

.gl-land-hero-cta {
  width: auto;
  min-width: 160px;
  padding: 0 1.35rem;
}

.gl-land-hero-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(128, 233, 255, 0.45);
  padding-bottom: 0.15rem;
  transition: color 0.15s ease;
}

.gl-land-hero-link:hover {
  color: #fff;
}

.gl-land-hero-visual {
  animation: gl-rise 0.95s ease 0.2s both;
}

.gl-land-hero-panel {
  border-radius: 22px;
  padding: 1.1rem 1.15rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.gl-land-hero-panel-top {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.gl-land-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.gl-land-dot:nth-child(1) {
  background: #ff5f57;
}
.gl-land-dot:nth-child(2) {
  background: #febc2e;
}
.gl-land-dot:nth-child(3) {
  background: #28c840;
}

.gl-land-panel-label {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.gl-land-label-card {
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  background: #fff;
  color: var(--gl-navy);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.gl-land-label-brand {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gl-accent);
  margin-bottom: 0.45rem;
}

.gl-land-label-product {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}

.gl-land-label-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gl-muted);
  margin-bottom: 0.7rem;
}

.gl-land-label-allergens {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  background: rgba(47, 159, 212, 0.08);
  color: var(--gl-accent-deep);
}

.gl-land-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.gl-land-hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 0.55rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gl-land-hero-stats strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gl-mint);
}

.gl-land-hero-stats span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
}

/* â€”â€” Content sections â€”â€” */
.gl-land-section {
  padding: 4.75rem 0;
}

.gl-land-section--band {
  background:
    radial-gradient(ellipse 70% 50% at 90% 0%, rgba(47, 159, 212, 0.28), transparent 55%),
    radial-gradient(ellipse 55% 40% at 10% 100%, rgba(0, 212, 255, 0.12), transparent 50%),
    linear-gradient(180deg, #0a2540, #06182b);
  color: #fff;
}

.gl-land-section-head {
  max-width: 40rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.gl-land-section-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--gl-navy);
}

.gl-land-section-title em {
  font-family: var(--gl-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gl-accent);
}

.gl-land-section-title--light {
  color: #fff;
}

.gl-land-section-title--light em {
  color: var(--gl-mint);
}

.gl-land-section-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--gl-muted);
}

.gl-land-section-lead--light {
  color: rgba(255, 255, 255, 0.7);
}

.gl-land-section-lead strong {
  color: var(--gl-navy);
  font-weight: 600;
}

.gl-land-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.gl-land-step {
  padding: 1.5rem 1.35rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 14px 34px rgba(10, 37, 64, 0.06);
  transition: transform 0.25s ease;
}

.gl-land-step:hover {
  transform: translateY(-4px);
}

.gl-land-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.gl-land-step-num {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--gl-accent);
}

.gl-land-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(47, 159, 212, 0.1);
  color: var(--gl-accent);
}

.gl-land-step h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gl-navy);
}

.gl-land-step p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--gl-muted);
}

.gl-land-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.gl-land-capability {
  padding: 1.4rem 1.35rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gl-land-capability-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  background: rgba(128, 233, 255, 0.12);
  color: var(--gl-mint);
}

.gl-land-capability h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
}

.gl-land-capability p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
}

.gl-land-cta {
  padding: 3.25rem 0;
  background:
    linear-gradient(135deg, rgba(47, 159, 212, 0.12), rgba(0, 212, 255, 0.06)),
    #fff;
  border-top: 1px solid var(--gl-line);
  border-bottom: 1px solid var(--gl-line);
}

.gl-land-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.gl-land-cta h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gl-navy);
}

.gl-land-cta p {
  margin: 0;
  color: var(--gl-muted);
  max-width: 36rem;
}

.gl-land-footer {
  padding: 2.25rem 0 2.5rem;
  background: var(--gl-navy-deep);
  color: rgba(255, 255, 255, 0.7);
}

.gl-land-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.gl-land-footer-brand {
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -0.02em;
}

.gl-land-footer p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-size: 0.88rem;
}

.gl-land-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
}

.gl-land-footer-links a,
.gl-land-footer-links button {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

.gl-land-footer-links a:hover,
.gl-land-footer-links button:hover {
  color: var(--gl-mint);
}

@media (max-width: 991.98px) {
  .gl-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .gl-pricing-hero,
  .gl-land-hero {
    padding: 3.25rem 0 4rem;
  }

  .gl-pricing-section {
    margin-top: 0;
  }

  .gl-pricing-section--landing {
    padding-top: 3.5rem;
  }

  .gl-pricing-headline,
  .gl-land-headline {
    max-width: none;
  }

  .gl-land-hero-grid,
  .gl-land-steps,
  .gl-land-capabilities {
    grid-template-columns: 1fr;
  }

  .gl-land-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .gl-land-hero-cta {
    width: 100%;
  }
}

.expressShipping {
   font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  text-align: center;
  padding-top: 3px;
}
