:root {
  --goes-navy-950: #061426;
  --goes-navy-900: #0b1f3a;
  --goes-navy-800: #12315f;
  --goes-blue: #2563eb;
  --goes-blue-light: #60a5fa;
  --goes-cyan: #0ea5e9;
  --goes-teal: #0f766e;
  --goes-green: #16a34a;
  --goes-gold: #f59e0b;
  --goes-ink: #0f172a;
  --goes-muted: #64748b;
  --goes-line: #dbe4f0;
  --goes-soft: #f4f8fd;
  --goes-white: #ffffff;
  --goes-shadow-sm: 0 12px 30px rgba(15, 23, 42, .07);
  --goes-shadow-md: 0 22px 55px rgba(15, 23, 42, .12);
  --goes-shadow-lg: 0 34px 90px rgba(2, 8, 23, .24);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, .07), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #f2f7fc 100%);
  color: var(--goes-ink);
}
h2{
    font-size: 3.5rem;
    font-weight: 950;
    letter-spacing: -.025em;
    line-height: .93;
}
.goes-about-page {
  overflow: hidden;
}

.goes-container {
  width: min(1240px, calc(100% - 2rem));
  margin-inline: auto;
}

.goes-section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.goes-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .75rem;
  color: var(--goes-blue);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(37, 99, 235, .16);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, .05);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.goes-eyebrow-light {
  color: #e0f2fe;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .18);
}

.goes-hero {
  position: relative;
  min-height: 770px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0 6rem;
  color: #fff;
  background:
    linear-gradient(125deg, rgba(6, 20, 38, .99), rgba(18, 49, 95, .96) 57%, rgba(15, 118, 110, .9));
}

.goes-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.goes-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.goes-hero-glow-one {
  width: 420px;
  height: 420px;
  top: -140px;
  right: 3%;
  background: rgba(14, 165, 233, .22);
}

.goes-hero-glow-two {
  width: 330px;
  height: 330px;
  bottom: -130px;
  left: 8%;
  background: rgba(15, 118, 110, .28);
}

.goes-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .7fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.goes-hero h1 {
  max-width: 880px;
  margin: 1.1rem 0 0;
  font-size: clamp(3.2rem, 7.2vw, 6.7rem);
  font-weight: 950;
  letter-spacing: -.065em;
  line-height: .93;
}

.goes-hero h1 span {
  display: block;
  margin-top: .12em;
  color: #7dd3fc;
}

.goes-hero-copy > p {
  max-width: 790px;
  margin: 1.4rem 0 0;
  color: #dbeafe;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.75;
}

.goes-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.7rem;
}

.goes-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: .8rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: .86rem;
  font-weight: 900;
  text-decoration: none !important;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.goes-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(2, 8, 23, .18);
}

.goes-btn-light {
  color: var(--goes-navy-900);
  background: #fff;
}

.goes-btn-glass {
  color: #fff;
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
}

.goes-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--goes-blue), var(--goes-teal));
}

.goes-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.2rem;
  margin-top: 1.3rem;
  color: #bfdbfe;
  font-size: .78rem;
  font-weight: 750;
}

.goes-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.goes-hero-console {
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: rgba(255,255,255,.11);
  box-shadow: var(--goes-shadow-lg);
  backdrop-filter: blur(20px);
}

.goes-console-header,
.goes-console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.goes-console-header {
  padding: .75rem .8rem 1rem;
}

.goes-console-label {
  display: block;
  color: #7dd3fc;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.goes-console-header strong {
  display: block;
  margin-top: .25rem;
  font-size: 1rem;
}

.goes-live-indicator {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem .6rem;
  color: #dcfce7;
  background: rgba(22, 163, 74, .22);
  border: 1px solid rgba(134, 239, 172, .25);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
}

.goes-live-indicator::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 6px rgba(74, 222, 128, .12);
}

.goes-console-grid {
  display: grid;
  gap: .75rem;
  padding: .9rem;
  border-radius: 20px;
  background: #fff;
}

.goes-console-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: center;
  padding: .85rem;
  color: var(--goes-ink);
  border: 1px solid var(--goes-line);
  border-radius: 15px;
  transition: transform .2s ease, border-color .2s ease;
}

.goes-console-card:hover {
  transform: translateX(4px);
  border-color: #93c5fd;
}

.goes-console-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--goes-blue), var(--goes-cyan));
}

.goes-console-card strong,
.goes-console-card small {
  display: block;
}

.goes-console-card strong {
  font-size: .88rem;
}

.goes-console-card small {
  margin-top: .18rem;
  color: var(--goes-muted);
  font-size: .7rem;
}

.goes-status-pill {
  padding: .3rem .5rem;
  color: #166534;
  background: #dcfce7;
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 900;
}

.goes-console-footer {
  padding: .9rem .8rem .3rem;
  color: #dbeafe;
  font-size: .78rem;
}

.goes-console-footer span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.goes-stats-section {
  position: relative;
  z-index: 4;
  margin-top: -52px;
}

.goes-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--goes-line);
  border-radius: 24px;
  background: rgba(255,255,255,.97);
  box-shadow: var(--goes-shadow-md);
  backdrop-filter: blur(14px);
}

.goes-stat {
  padding: 1.35rem;
  text-align: center;
  border-right: 1px solid var(--goes-line);
}

.goes-stat:last-child {
  border-right: 0;
}

.goes-stat strong {
  display: block;
  color: var(--goes-navy-900);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 950;
}

.goes-stat span {
  display: block;
  margin-top: .2rem;
  color: var(--goes-muted);
  font-size: .77rem;
  font-weight: 750;
}

.goes-two-column {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}

.goes-story-visual {
  position: relative;
  min-height: 520px;
}

.goes-story-main-card {
  position: absolute;
  inset: 7% 8% 10% 3%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: #fff;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(125, 211, 252, .28), transparent 35%),
    linear-gradient(145deg, var(--goes-navy-950), var(--goes-navy-800) 58%, var(--goes-teal));
  box-shadow: var(--goes-shadow-lg);
}

.goes-story-main-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -80px;
  right: -80px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}

.goes-visual-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  color: var(--goes-navy-900);
  background: #fff;
  border-radius: 18px;
  font-size: 1.5rem;
}

.goes-story-main-card h3 {
  position: relative;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 950;
}

.goes-story-main-card p {
  position: relative;
  margin: .75rem 0 0;
  color: #dbeafe;
  line-height: 1.65;
}

.goes-story-mini-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .55rem;
  margin-top: 1.2rem;
}

.goes-story-mini-grid div {
  padding: .7rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 13px;
  background: rgba(255,255,255,.08);
}

.goes-story-mini-grid strong,
.goes-story-mini-grid span {
  display: block;
}

.goes-story-mini-grid strong {
  font-size: .8rem;
}

.goes-story-mini-grid span {
  margin-top: .15rem;
  color: #bfdbfe;
  font-size: .65rem;
}

.goes-floating-note {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(315px, 78%);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: .75rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--goes-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--goes-shadow-md);
  font-size: .8rem;
  line-height: 1.5;
}

.goes-floating-note i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #92400e;
  background: #fef3c7;
  border-radius: 12px;
}

.goes-content-block h2,
.goes-section-heading h2 {
  margin: 1rem 0 0;
  font-size: clamp(2.25rem, 4.6vw, 4.3rem);
  font-weight: 950;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.goes-content-block > p,
.goes-section-heading > p {
  color: var(--goes-muted);
  line-height: 1.8;
}

.goes-content-block .goes-lead {
  margin-top: 1.2rem;
  color: #334155;
  font-size: 1.08rem;
}

.goes-feature-list {
  display: grid;
  gap: .9rem;
  margin-top: 1.5rem;
}

.goes-feature-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: .8rem;
  align-items: start;
}

.goes-feature-item > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--goes-blue);
  background: #dbeafe;
  border-radius: 13px;
}

.goes-feature-item strong {
  display: block;
}

.goes-feature-item p {
  margin: .22rem 0 0;
  color: var(--goes-muted);
  line-height: 1.6;
}

.goes-soft-section {
  background:
    radial-gradient(circle at top left, rgba(37,99,235,.07), transparent 28%),
    linear-gradient(180deg, #f8fbff, #eef6ff);
}

.goes-section-heading {
  max-width: 800px;
}

.goes-section-heading > p {
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

.goes-card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.goes-card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.goes-info-card,
.goes-service-card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  border: 1px solid var(--goes-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--goes-shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.goes-info-card:hover,
.goes-service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--goes-shadow-md);
  border-color: #bfdbfe;
}

.goes-card-icon,
.goes-service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--goes-blue), var(--goes-teal));
  font-size: 1.15rem;
}

.goes-card-number {
  position: absolute;
  top: 1rem;
  right: 1.15rem;
  color: #dbeafe;
  font-size: 2.2rem;
  font-weight: 950;
}

.goes-info-card h3,
.goes-service-card h3 {
  margin: 1rem 0 .45rem;
  font-size: 1.15rem;
  font-weight: 900;
}

.goes-info-card p,
.goes-service-card p {
  margin: 0;
  color: var(--goes-muted);
  line-height: 1.68;
}

.goes-dark-section {
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(14,165,233,.18), transparent 35%),
    linear-gradient(135deg, var(--goes-navy-950), var(--goes-navy-800) 62%, var(--goes-teal));
}

.goes-section-heading-light > p {
  color: #cbd5e1;
}

.goes-dark-section .goes-service-card {
  color: var(--goes-ink);
}

.goes-service-card a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  color: var(--goes-blue);
  font-size: .83rem;
  font-weight: 900;
  text-decoration: none;
}

.goes-service-card a i {
  transition: transform .2s ease;
}

.goes-service-card a:hover i {
  transform: translateX(4px);
}

.goes-tabs {
  margin-top: 2rem;
}

.goes-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.goes-tab-button {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 44px;
  padding: .65rem .85rem;
  color: #334155;
  border: 1px solid var(--goes-line);
  border-radius: 12px;
  background: #fff;
  font-size: .82rem;
  font-weight: 900;
  transition: .2s ease;
}

.goes-tab-button:hover {
  border-color: #93c5fd;
  transform: translateY(-2px);
}

.goes-tab-button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--goes-blue), var(--goes-teal));
  border-color: transparent;
  box-shadow: 0 13px 28px rgba(37,99,235,.22);
}

.goes-tab-panels {
  margin-top: 1rem;
}

.goes-tab-panel {
  display: none;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.4rem;
  border: 1px solid var(--goes-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--goes-shadow-sm);
}

.goes-tab-panel.active {
  display: grid;
  animation: goes-panel-in .35s ease;
}

.goes-tab-visual {
  min-height: 270px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.2), transparent 30%),
    linear-gradient(135deg, var(--goes-blue), var(--goes-teal));
  font-size: 5rem;
}

.goes-tab-kicker {
  color: var(--goes-blue);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.goes-tab-panel h3 {
  margin: .55rem 0 .6rem;
  font-size: 1.75rem;
  font-weight: 950;
}

.goes-tab-panel p,
.goes-tab-panel li {
  color: var(--goes-muted);
  line-height: 1.65;
}

.goes-tab-panel ul {
  display: grid;
  gap: .35rem;
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.goes-approach-grid {
  align-items: start;
}

.goes-timeline {
  position: relative;
  display: grid;
  gap: .9rem;
}

.goes-timeline::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(var(--goes-blue), var(--goes-teal));
}

.goes-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: .85rem;
  align-items: center;
}

.goes-timeline-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  z-index: 1;
  color: #fff;
  border: 5px solid #eef6ff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--goes-blue), var(--goes-teal));
  font-size: .72rem;
  font-weight: 950;
}

.goes-timeline-item > div {
  padding: 1rem 1.1rem;
  border: 1px solid var(--goes-line);
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--goes-shadow-sm);
}

.goes-timeline-item h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
}

.goes-timeline-item p {
  margin: .25rem 0 0;
  color: var(--goes-muted);
  line-height: 1.55;
}

.goes-contact-section {
  padding-top: 1rem;
}

.goes-cta-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  border-radius: 30px;
  background:
    radial-gradient(circle at right top, rgba(255,255,255,.18), transparent 30%),
    linear-gradient(135deg, var(--goes-navy-800), var(--goes-blue) 58%, var(--goes-teal));
  box-shadow: var(--goes-shadow-lg);
}

.goes-cta-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -90px;
  bottom: -130px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.goes-cta-card h2 {
  max-width: 800px;
  margin: 1rem 0 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 950;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.goes-cta-card p {
  max-width: 760px;
  margin: 1rem 0 0;
  color: #dbeafe;
  line-height: 1.75;
}

.goes-cta-actions {
  position: relative;
  z-index: 1;
  justify-content: flex-end;
}

.goes-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s ease, transform .72s ease;
}

.goes-reveal.goes-visible {
  opacity: 1;
  transform: none;
}

@keyframes goes-panel-in {
  from {
    opacity: 0;
    transform: translateY(9px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .goes-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .goes-btn,
  .goes-info-card,
  .goes-service-card,
  .goes-tab-button {
    transition: none;
  }
}

@media (max-width: 991.98px) {
  .goes-hero-grid,
  .goes-two-column,
  .goes-tab-panel,
  .goes-cta-card {
    grid-template-columns: 1fr;
  }

  .goes-card-grid-three,
  .goes-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .goes-stat:nth-child(2) {
    border-right: 0;
  }

  .goes-stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--goes-line);
  }

  .goes-hero {
    min-height: auto;
  }

  .goes-hero-console {
    max-width: 620px;
  }

  .goes-story-visual {
    min-height: 500px;
  }

  .goes-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 575.98px) {
  .goes-container {
    width: min(100% - 1.25rem, 1240px);
  }

  .goes-hero {
    padding-top: 4.5rem;
  }

  .goes-hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.2rem);
  }

  .goes-stats-section {
    margin-top: -28px;
  }

  .goes-stats-grid,
  .goes-card-grid-three {
    grid-template-columns: 1fr;
  }

  .goes-stat {
    border-right: 0;
    border-bottom: 1px solid var(--goes-line);
  }

  .goes-stat:last-child {
    border-bottom: 0;
  }

  .goes-story-visual {
    min-height: 455px;
  }

  .goes-story-main-card {
    inset: 0 0 16% 0;
  }

  .goes-floating-note {
    width: 92%;
  }

  .goes-story-mini-grid {
    grid-template-columns: 1fr;
  }

  .goes-action-row,
  .goes-tab-list {
    flex-direction: column;
    align-items: stretch;
  }

  .goes-btn,
  .goes-tab-button {
    width: 100%;
  }

  .goes-console-card {
    grid-template-columns: 44px 1fr;
  }

  .goes-status-pill {
    grid-column: 2;
    justify-self: start;
  }

  .goes-tab-panel {
    padding: 1rem;
  }

  .goes-tab-visual {
    min-height: 210px;
    font-size: 4rem;
  }

  .goes-cta-card {
    border-radius: 22px;
  }
}