@charset "UTF-8";

:root {
  --bs-primary: var(--bs-blue);
  --bs-secondary: var(--bs-purple);
  --bs-link-color: var(--bs-blue);
  --bs-link-hover-color: var(--bs-purple);
  --bs-body-font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --bs-body-color: #151821;
  --bs-body-bg: #f8f9fb;
  --front-ink: #151821;
  --front-muted: #687083;
  --front-line: rgba(18, 24, 38, .06);
  --front-soft: rgba(255, 255, 255, .44);
  --front-glass: rgba(255, 255, 255, .34);
  --front-shadow: none;
  --front-shadow-soft: none;
  --front-radius: .9rem;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--front-ink);
  background:
    linear-gradient(180deg, #fbfcfd 0, #f7f8fa 28rem, #fff 100%);
  font-family: var(--bs-body-font-family);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--bs-blue) 9%, transparent), transparent 36%),
    linear-gradient(300deg, color-mix(in srgb, var(--bs-purple) 7%, transparent), transparent 42%);
}

a {
  color: var(--bs-blue);
  transition: color .18s ease, opacity .18s ease, transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

a:hover {
  color: var(--bs-purple);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: var(--front-ink);
  font-family: var(--bs-body-font-family);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

p {
  color: inherit;
}

section,
header,
aside {
  position: relative;
}

section {
  padding: 6rem 0;
}

.text-muted {
  color: var(--front-muted) !important;
}

.lead {
  color: var(--front-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5 {
  letter-spacing: 0;
}

.display-1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
}

.display-2 {
  font-size: clamp(2.65rem, 6vw, 5rem);
}

.display-3 {
  font-size: clamp(2.35rem, 5vw, 4.35rem);
}

.display-4 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.display-5 {
  font-size: clamp(1.9rem, 3.3vw, 3rem);
}

.font-alt {
  font-family: var(--bs-body-font-family);
}

.container {
  position: relative;
}

.bg-light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(248, 250, 252, .92)) !important;
}

.bg-black {
  background: #080a0f !important;
}

.bg-gradient-primary-to-secondary {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--bs-blue) 94%, #fff), color-mix(in srgb, var(--bs-purple) 94%, #000)) !important;
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  border-color: var(--bs-blue);
  background: var(--bs-blue);
  box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus {
  border-color: var(--bs-purple);
  background: var(--bs-purple);
  box-shadow: none;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, .46);
  color: #fff;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  border-color: #fff;
  color: var(--bs-purple);
  background: #fff;
}

.form-control,
.form-select {
  min-height: 3.25rem;
  border: 1px solid var(--front-line);
  border-radius: .8rem;
  color: var(--front-ink);
  background-color: rgba(255, 255, 255, .82);
  box-shadow: none;
}

.form-control:focus,
.form-select:focus {
  border-color: color-mix(in srgb, var(--bs-blue) 50%, #fff);
  box-shadow: 0 0 0 .24rem color-mix(in srgb, var(--bs-blue) 14%, transparent);
}

.form-floating > label,
.form-label {
  color: #5d6678;
  font-weight: 700;
}

.alert {
  border: 0;
  border-radius: .8rem;
}

#mainNav {
  padding: .85rem 0;
  border-bottom: 1px solid rgba(18, 24, 38, .045);
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(18px);
  box-shadow: none !important;
}

#mainNav .navbar-brand img {
  width: auto;
  max-width: 12rem;
  object-fit: contain;
}

#mainNav .nav-link {
  border-radius: 999px;
  color: rgba(21, 24, 33, .72);
  font-size: .9rem;
  font-weight: 800;
  padding: .55rem .85rem;
}

#mainNav .nav-link:hover {
  color: var(--bs-blue);
  background: color-mix(in srgb, var(--bs-blue) 7%, transparent);
}

.navbar-toggler {
  border: 1px solid var(--front-line);
  border-radius: 999px;
  color: var(--front-ink);
  font-weight: 800;
  padding: .55rem .8rem;
}

.masthead,
.corporate-hero,
.corporate-page-hero {
  overflow: hidden;
  padding: 9.5rem 0 6.25rem;
}

.masthead {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .4)),
    linear-gradient(135deg, color-mix(in srgb, var(--bs-blue) 10%, #fff), color-mix(in srgb, var(--bs-purple) 7%, #f7f8fb));
}

.masthead h1,
.corporate-hero h1,
.corporate-page-hero h1 {
  max-width: 58rem;
}

.masthead .lead {
  max-width: 44rem;
  color: #545d70;
}

.app-badge {
  height: 3.4rem;
  width: auto;
  filter: none;
}

.masthead-device-mockup,
.features-device-mockup {
  position: relative;
  display: grid;
  min-height: 37rem;
  place-items: center;
}

.masthead-device-mockup .circle,
.features-device-mockup .circle {
  position: absolute;
  width: min(32rem, 82vw);
  opacity: .16;
  fill: url(#circleGradient);
}

.features-device-mockup .circle {
  fill: url(#featuresCircleGradient);
}

.gradient-start-color {
  stop-color: var(--bs-blue);
}

.gradient-end-color {
  stop-color: var(--bs-purple);
}

.device-wrapper {
  position: relative;
  z-index: 1;
  width: min(17rem, 72vw);
}

.device {
  position: relative;
  aspect-ratio: 9 / 19.5;
  border-radius: 2.25rem;
  padding: .75rem;
  background: linear-gradient(145deg, #222633, #050609);
  box-shadow: none;
}

.device::before {
  content: "";
  position: absolute;
  top: .65rem;
  left: 50%;
  z-index: 2;
  width: 36%;
  height: .35rem;
  border-radius: 999px;
  background: #080a0f;
  transform: translateX(-50%);
}

.device .screen {
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 1.65rem;
  background: #000;
}

.device video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-device-mockup {
  position: relative;
  display: grid;
  min-height: 33rem;
  justify-items: center;
  place-items: center;
  overflow: visible;
  max-width: 100%;
}

.desktop-device-mockup.is-feature-visual {
  min-height: 25rem;
}

.desktop-orbit {
  position: absolute;
  width: min(36rem, 86vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--bs-blue) 13%, transparent), color-mix(in srgb, var(--bs-purple) 10%, transparent));
  opacity: .9;
}

.desktop-device-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 38rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .38)),
    color-mix(in srgb, var(--bs-purple) 10%, #f7f8fb);
  box-shadow:
    0 1.6rem 4rem rgba(15, 23, 42, .16),
    inset 0 1px 0 rgba(255, 255, 255, .74);
  backdrop-filter: blur(22px);
}

.desktop-device-mockup.is-feature-visual .desktop-device-frame {
  width: min(100%, 30rem);
}

.desktop-frame-bar {
  display: flex;
  gap: .38rem;
  align-items: center;
  height: 2.3rem;
  padding: 0 .9rem;
  border-bottom: 1px solid rgba(18, 24, 38, .08);
}

.desktop-frame-bar span {
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: rgba(18, 24, 38, .2);
}

.desktop-screen {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: .65rem;
  border: 1px solid rgba(18, 24, 38, .08);
  border-radius: .65rem;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--bs-blue) 11%, #fff), #f8fafc);
}

.desktop-screen video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.desktop-device-base {
  position: relative;
  z-index: 0;
  width: min(16rem, 42vw);
  height: .75rem;
  margin-top: -5.35rem;
  border-radius: 0 0 1.5rem 1.5rem;
  background: linear-gradient(180deg, rgba(18, 24, 38, .18), rgba(18, 24, 38, .04));
}

.masthead + aside {
  padding: 4.5rem 0;
}

.masthead + aside .h2 {
  max-width: 60rem;
  margin-right: auto;
  margin-left: auto;
}

#features {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .86), rgba(250, 251, 253, .72));
}

.icon-feature {
  font-size: 2.35rem;
}

.text-gradient {
  color: transparent;
  background: linear-gradient(135deg, var(--bs-blue), var(--bs-purple));
  -webkit-background-clip: text;
  background-clip: text;
}

#features .text-center,
.corporate-card,
.suite-card,
.workflow-panel,
.corporate-form,
.detail-panel,
.module-tile,
.contact-route-card,
.download-panel,
.status-summary,
.status-section,
.newsletter-panel,
.card-faq,
.support-panel,
.policy-panel {
  border: 1px solid rgba(18, 24, 38, .045);
  border-radius: var(--front-radius);
  background: var(--front-glass);
  box-shadow: var(--front-shadow-soft);
  backdrop-filter: blur(18px);
}

#features .text-center {
  height: 100%;
  padding: .35rem 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  text-align: left !important;
}

#features h3 {
  font-size: 1.12rem;
}

#features p {
  color: var(--front-muted);
}

.cta {
  isolation: isolate;
  min-height: 34rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 0;
  background-size: cover;
  background-position: center;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 9, 14, .82), rgba(7, 9, 14, .4), rgba(7, 9, 14, .18));
}

.cta-content {
  width: 100%;
}

.cta h2 {
  max-width: 48rem;
  color: #fff;
}

.corporate-hero,
.corporate-page-hero,
.dark-page-hero {
  color: #fff;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--bs-blue) 96%, #172033), color-mix(in srgb, var(--bs-purple) 96%, #02040a));
}

.corporate-hero h1,
.corporate-page-hero h1,
.corporate-hero .lead,
.corporate-page-hero .lead {
  color: #fff;
}

.corporate-hero .lead,
.corporate-page-hero .lead {
  opacity: .78;
}

.hero-kicker,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  margin-bottom: .85rem;
  color: color-mix(in srgb, var(--bs-blue) 74%, #fff);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.corporate-section {
  padding: 6.5rem 0;
}

.suite-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, .7), rgba(245, 247, 250, .84));
}

.section-heading {
  max-width: 48rem;
}

.corporate-product-panel {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 1rem;
  color: #0e1726;
  background: rgba(255, 255, 255, .56);
  box-shadow: none;
  backdrop-filter: blur(20px);
}

.panel-topline,
.panel-grid,
.insight-strip {
  display: grid;
  gap: 1rem;
}

.panel-topline {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: .25rem .25rem 1rem;
}

.panel-topline span,
.panel-grid span,
.insight-strip span {
  color: var(--front-muted);
  font-size: .8rem;
  font-weight: 800;
}

.panel-topline strong {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  color: var(--bs-blue);
  background: color-mix(in srgb, var(--bs-blue) 9%, #fff);
  font-size: .82rem;
}

.panel-grid,
.insight-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel-grid > div,
.insight-strip > div {
  padding: .65rem 0;
  border: 0;
  border-top: 1px solid rgba(18, 24, 38, .07);
  border-radius: 0;
  background: transparent;
}

.panel-grid strong,
.insight-strip strong {
  display: block;
  color: var(--front-ink);
  font-size: 1.35rem;
}

.route-map {
  overflow: hidden;
  border: 1px solid rgba(18, 24, 38, .05);
  border-radius: .85rem;
  background: rgba(246, 248, 251, .64);
}

.route-map-header,
.route-map-footer {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  padding: .8rem 1rem;
  color: #5d6678;
  font-size: .78rem;
  font-weight: 800;
}

.route-map-footer {
  flex-wrap: wrap;
  border-top: 1px solid var(--front-line);
}

.paris-route-map {
  display: block;
  width: 100%;
  height: auto;
}

.map-district {
  fill: #edf3f7;
}

.district-center {
  fill: #f8fbfd;
}

.map-streets path,
.map-ring {
  fill: none;
  stroke: rgba(89, 104, 122, .2);
  stroke-width: 2;
}

.map-river-shadow,
.route-shadow {
  fill: none;
  stroke: rgba(15, 23, 42, .12);
  stroke-width: 18;
  stroke-linecap: round;
}

.map-river {
  fill: none;
  stroke: url(#parisRiverGradient);
  stroke-width: 12;
  stroke-linecap: round;
}

.map-labels text {
  fill: #6b7280;
  font-size: 17px;
  font-weight: 700;
}

.route-path {
  fill: none;
  stroke: url(#parisRouteGradient);
  stroke-width: 8;
  stroke-linecap: round;
  filter: url(#routeGlow);
}

.route-stops circle {
  fill: #fff;
  stroke: var(--bs-blue);
  stroke-width: 5;
}

.route-pins path {
  fill: var(--bs-purple);
}

.route-pins circle {
  fill: #fff;
}

.corporate-card,
.suite-card,
.workflow-panel,
.corporate-form,
.detail-panel,
.module-tile,
.contact-route-card {
  padding: 1.4rem;
}

.corporate-card,
.module-tile {
  border-color: transparent;
  background: transparent;
  backdrop-filter: none;
}

.suite-card {
  border-color: rgba(18, 24, 38, .055);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .34), rgba(255, 255, 255, .14));
  box-shadow: none;
}

.corporate-card i,
.suite-icon,
.suite-app-badge {
  display: inline-grid;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 1rem;
  place-items: center;
  border-radius: .8rem;
  color: var(--bs-blue);
  background: color-mix(in srgb, var(--bs-blue) 9%, #fff);
  font-size: 1.2rem;
}

.corporate-card p,
.suite-card p,
.module-tile p,
.license-row p {
  color: var(--front-muted);
}

.suite-card {
  transition: transform .18s ease, box-shadow .18s ease;
}

.suite-card:hover,
.corporate-card:hover,
.module-tile:hover,
.detail-panel:hover {
  transform: none;
  box-shadow: var(--front-shadow);
}

.suite-card-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.suite-app-icon,
.detail-app-icon {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  flex: 0 0 4.5rem;
  place-items: center;
  border: 1px solid var(--front-line);
  border-radius: .9rem;
  background: rgba(255, 255, 255, .75);
}

.suite-app-icon img,
.detail-app-icon img {
  max-width: 72%;
  max-height: 72%;
  object-fit: contain;
}

.suite-card ul {
  display: grid;
  gap: .55rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.suite-card li {
  position: relative;
  padding-left: 1.45rem;
  color: #4f5869;
}

.suite-card li::before {
  content: "";
  position: absolute;
  top: .72rem;
  left: 0;
  width: .42rem;
  height: .42rem;
  border-radius: 999px;
  background: var(--bs-blue);
}

.licensing-section {
  color: #fff;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--bs-purple) 94%, #02040a), color-mix(in srgb, var(--bs-blue) 85%, #101827));
}

.licensing-section h2,
.licensing-section h3,
.licensing-section .lead {
  color: #fff;
}

.licensing-section p,
.licensing-section .license-note {
  color: rgba(255, 255, 255, .74);
}

.license-note {
  margin-top: 1.25rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .8rem;
  background: rgba(255, 255, 255, .08);
}

.license-stack {
  display: grid;
  gap: .9rem;
}

.license-row {
  display: flex;
  gap: 1rem;
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: .85rem;
  background: rgba(255, 255, 255, .055);
}

.license-row i {
  color: #fff;
  font-size: 1.25rem;
}

.workflow-panel {
  display: grid;
  gap: .9rem;
}

.workflow-panel > div {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(18, 24, 38, .06);
  border-radius: 0;
  background: transparent;
}

.workflow-panel > div:last-child {
  border-bottom: 0;
}

.workflow-panel span,
.steps span {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 2rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--bs-blue);
  font-weight: 900;
}

.workflow-panel p {
  margin: 0;
  color: #4f5869;
  font-weight: 700;
}

.use-case {
  min-height: 100%;
  padding: .7rem 0;
  border: 0;
  border-bottom: 1px solid rgba(18, 24, 38, .06);
  border-radius: 0;
  color: #4f5869;
  background: transparent;
  font-weight: 700;
}

.contact-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(245, 247, 250, .9));
}

.contact-points {
  display: grid;
  gap: .75rem;
  margin-top: 1.5rem;
}

.contact-points div {
  display: flex;
  gap: .65rem;
  align-items: center;
  color: #4f5869;
  font-weight: 700;
}

.contact-points i {
  color: var(--bs-blue);
}

.corporate-project-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.corporate-project-option {
  display: flex;
  gap: .75rem;
  min-height: 100%;
  padding: .9rem;
  border: 1px solid rgba(18, 24, 38, .055);
  border-radius: .85rem;
  background: rgba(255, 255, 255, .34);
  cursor: pointer;
}

.corporate-project-option strong,
.corporate-project-option small {
  display: block;
}

.corporate-project-option small {
  color: var(--front-muted);
}

.detail-grid {
  display: grid;
  gap: 1.25rem;
}

.detail-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-panel {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.detail-panel + .detail-panel {
  border-top: 1px solid rgba(18, 24, 38, .075);
}

.detail-app-card {
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem;
  border-radius: .95rem;
  color: #fff;
  background: linear-gradient(135deg, var(--suite-primary, var(--bs-blue)), color-mix(in srgb, var(--suite-primary, var(--bs-blue)) 58%, #111827));
}

.detail-app-meta span,
.detail-app-meta strong {
  display: block;
}

.detail-app-meta span {
  margin-bottom: .35rem;
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  font-weight: 800;
}

.detail-app-meta strong {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 900;
}

.module-tile {
  min-height: 100%;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(18, 24, 38, .06);
}

.newsletter-panel {
  padding: 2.25rem;
  border-color: transparent;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--bs-blue) 7%, transparent), transparent 45%),
    rgba(255, 255, 255, .3);
  text-align: center;
}

.newsletter-panel form {
  align-items: stretch;
}

.newsletter-panel .form-control {
  min-height: 3.55rem;
}

.app-suite-band {
  padding: 5.5rem 0;
}

.app-suite-tile {
  display: grid;
  height: 7.2rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: .95rem;
  background: rgba(255, 255, 255, .68);
  box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.app-suite-tile:hover {
  transform: none;
  box-shadow: none;
}

.app-suite-tile img {
  max-width: 78%;
  max-height: 4.25rem;
  object-fit: contain;
}

footer a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

.modal-content {
  overflow: hidden;
  border: 1px solid rgba(18, 24, 38, .06);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .86);
  box-shadow: none;
  backdrop-filter: blur(20px);
}

.modal-header {
  border: 0;
}

.modal-body {
  border: 0 !important;
}

.accordion-item,
.card {
  border: 1px solid rgba(18, 24, 38, .05);
  border-radius: var(--front-radius) !important;
  background: rgba(255, 255, 255, .32);
  box-shadow: var(--front-shadow-soft);
  backdrop-filter: blur(18px);
}

.accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0 !important;
  background: transparent;
  backdrop-filter: none;
}

.support-panel {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--bs-blue) 6%, transparent), transparent 48%),
    rgba(255, 255, 255, .34);
}

.accordion-item + .accordion-item {
  margin-top: 0;
}

.accordion-button {
  border-radius: var(--front-radius) !important;
  color: var(--front-ink);
  background: transparent;
  font-weight: 800;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-blue);
  background: color-mix(in srgb, var(--bs-blue) 7%, transparent);
}

.accordion-body {
  color: var(--front-muted);
}

.page-shell {
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.page-hero {
  max-width: 58rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.page-hero p {
  margin-bottom: 0;
}

.policy-panel {
  padding: 2rem;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.policy-panel ul {
  padding-left: 0;
  list-style: none;
}

.policy-panel li {
  position: relative;
  margin-bottom: .55rem;
  padding-left: 1.55rem;
}

.policy-panel li i {
  position: absolute;
  left: 0;
  top: .22rem;
}

.card-faq {
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid rgba(18, 24, 38, .065);
  border-radius: 0 !important;
  background: transparent;
  backdrop-filter: none;
}

.card-faq .card-body {
  padding: 1.15rem 1.25rem;
}

.card-faq h6 {
  margin: 0;
  padding-right: 2rem;
  cursor: pointer;
}

.card-faq .collapse {
  padding-top: .75rem;
  color: var(--front-muted);
}

.status-row {
  border-color: var(--front-line) !important;
}

.status-dot {
  margin-top: .32rem;
}

@media (max-width: 992px) {
  #mainNav .navbar-collapse {
    margin-top: .85rem;
    padding: .85rem;
    border: 1px solid var(--front-line);
    border-radius: .95rem;
    background: rgba(255, 255, 255, .9);
  }

  .masthead,
  .corporate-hero,
  .corporate-page-hero {
    padding: 8rem 0 4.5rem;
  }

  .masthead-device-mockup,
  .features-device-mockup {
    min-height: 30rem;
  }

  .corporate-project-options,
  .detail-grid.compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section,
  .corporate-section {
    padding: 4.25rem 0;
  }

  .container.px-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .masthead,
  .corporate-hero,
  .corporate-page-hero {
    padding-top: 7rem;
  }

  .panel-grid,
  .insight-strip {
    grid-template-columns: 1fr;
  }

  .route-map-footer {
    display: grid;
  }

  .newsletter-panel,
  .policy-panel,
  .corporate-form,
  .detail-panel {
    padding: 1.35rem;
  }

  .app-suite-tile {
    height: 5.8rem;
  }
}

/* Final surface balance: keep useful structure without a boxed/table look. */
.suite-card,
.corporate-form,
.newsletter-panel,
.support-panel,
.status-summary,
.status-section,
.download-panel {
  border: 1px solid rgba(18, 24, 38, .07);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .58), rgba(255, 255, 255, .32));
  box-shadow: 0 .75rem 2rem rgba(15, 23, 42, .045);
  backdrop-filter: blur(18px);
}

.suite-card,
.corporate-form {
  padding: 1.55rem;
}

.corporate-card {
  padding: .35rem 0;
}

.module-tile,
.use-case,
.workflow-panel > div {
  border-color: rgba(18, 24, 38, .08);
}

.detail-panel {
  padding: 2rem 0;
}

.detail-panel:first-child {
  padding-top: 0;
}

.card-faq,
.accordion-item {
  border-bottom: 1px solid rgba(18, 24, 38, .075);
}

.app-suite-tile {
  border-color: rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 .7rem 1.8rem rgba(0, 0, 0, .055);
}

.desktop-device-mockup + *,
.masthead-device-mockup + * {
  min-width: 0;
}

/* Goliv Technologies corporate polish. */
.front-app-goliv_technologies {
  background:
    linear-gradient(180deg, #f8fbfd 0, #ffffff 36rem, #f7f9fb 100%);
}

.front-app-goliv_technologies #mainNav {
  border-bottom-color: rgba(7, 91, 143, .08);
  background: rgba(255, 255, 255, .76);
}

.front-app-goliv_technologies .corporate-hero {
  isolation: isolate;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 5.5rem;
  background:
    linear-gradient(135deg, rgba(6, 42, 68, .98), rgba(6, 91, 143, .88) 48%, rgba(11, 39, 64, .96)),
    radial-gradient(circle at 78% 18%, rgba(114, 205, 245, .4), transparent 34%);
}

.front-app-goliv_technologies .corporate-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent 72%);
  opacity: .55;
}

.front-app-goliv_technologies .corporate-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 8rem;
  background: linear-gradient(180deg, transparent, #fff);
  pointer-events: none;
}

.front-app-goliv_technologies .corporate-hero .row {
  width: 100%;
}

.front-app-goliv_technologies .corporate-hero h1 {
  max-width: 46rem;
  color: #fff;
  font-size: clamp(3.2rem, 6.3vw, 6.1rem);
  line-height: .94;
}

.front-app-goliv_technologies .corporate-hero .lead {
  max-width: 42rem;
  color: rgba(255, 255, 255, .76);
  font-size: 1.12rem;
}

.front-app-goliv_technologies .hero-kicker,
.front-app-goliv_technologies .section-eyebrow {
  color: color-mix(in srgb, var(--bs-blue) 58%, #fff);
  letter-spacing: .12em;
}

.front-app-goliv_technologies .corporate-product-panel {
  margin-left: auto;
  max-width: 31rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .56)),
    rgba(255, 255, 255, .6);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, .18);
}

.front-app-goliv_technologies .route-map {
  border-color: rgba(7, 91, 143, .08);
  background: rgba(250, 253, 255, .72);
}

.front-app-goliv_technologies .panel-grid {
  margin-top: 1rem;
}

.front-app-goliv_technologies .panel-grid > div,
.front-app-goliv_technologies .insight-strip > div {
  padding: .9rem 0;
}

.front-app-goliv_technologies .corporate-section {
  padding: 7.5rem 0;
}

.front-app-goliv_technologies #platform {
  background:
    linear-gradient(180deg, #fff, #f7fafc);
}

.front-app-goliv_technologies .insight-strip {
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(7, 91, 143, .08);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, .56);
  box-shadow: 0 1.2rem 3rem rgba(7, 39, 64, .06);
}

.front-app-goliv_technologies .corporate-card {
  position: relative;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(7, 91, 143, .12);
}

.front-app-goliv_technologies .corporate-card i {
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1.2rem;
  border-radius: .8rem;
  background: color-mix(in srgb, var(--bs-blue) 9%, #fff);
}

.front-app-goliv_technologies .suite-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7fafc, #fff),
    radial-gradient(circle at 14% 20%, rgba(7, 91, 143, .09), transparent 34%);
}

.front-app-goliv_technologies .section-heading {
  max-width: 54rem;
}

.front-app-goliv_technologies .suite-card {
  min-height: 100%;
  padding: 1.7rem;
  border: 1px solid rgba(7, 91, 143, .08);
  border-radius: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .46));
  box-shadow: 0 1.5rem 4rem rgba(7, 39, 64, .075);
}

.front-app-goliv_technologies .suite-card-head {
  align-items: flex-start;
}

.front-app-goliv_technologies .suite-app-icon,
.front-app-goliv_technologies .detail-app-icon {
  border-color: rgba(7, 91, 143, .08);
  background: #fff;
}

.front-app-goliv_technologies .licensing-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, #071b2c, #075b8f 58%, #0b2740);
}

.front-app-goliv_technologies .licensing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: .45;
}

.front-app-goliv_technologies .license-row,
.front-app-goliv_technologies .license-note {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .075);
  backdrop-filter: blur(16px);
}

.front-app-goliv_technologies .workflow-panel,
.front-app-goliv_technologies .corporate-form {
  border: 1px solid rgba(7, 91, 143, .08);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, .62);
  box-shadow: 0 1.4rem 3.8rem rgba(7, 39, 64, .065);
}

.front-app-goliv_technologies .workflow-panel > div {
  padding: 1rem 0;
}

.front-app-goliv_technologies .use-case {
  padding: 1rem 0;
  border-bottom-color: rgba(7, 91, 143, .12);
}

.front-app-goliv_technologies .contact-section {
  background:
    linear-gradient(180deg, #fff, #f7fafc);
}

.front-app-goliv_technologies .corporate-page-hero {
  padding: 9.5rem 0 5rem;
  background:
    linear-gradient(135deg, #062a44, #075b8f 62%, #0b2740);
}

.front-app-goliv_technologies .detail-panel {
  padding: 3rem 0;
}

.front-app-goliv_technologies .detail-app-card {
  border-radius: 1.15rem;
  box-shadow: 0 1.5rem 4rem rgba(7, 39, 64, .12);
}

@media (max-width: 992px) {
  .front-app-goliv_technologies .corporate-hero {
    min-height: auto;
    padding-top: 8rem;
  }

  .front-app-goliv_technologies .corporate-product-panel {
    max-width: none;
    margin-left: 0;
  }
}
