:root {
  --navy: #102746;
  --navy-2: #162f51;
  --ink: #152238;
  --muted: #718096;
  --soft: #f7f8fc;
  --line: #e7ebf2;
  --blue: #5f73f4;
  --blue-2: #3f82f5;
  --green: #35cd8b;
  --cyan: #17b9dc;
  --red: #f45e68;
  --amber: #f3ad43;
  --purple: #7665e8;
  --shadow: 0 20px 60px rgba(16, 39, 70, .10);
  --shadow-soft: 0 12px 34px rgba(16, 39, 70, .07);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden
}

a {
  text-decoration: none
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--green));
  z-index: 3000
}

/* ================================
   YatraNest Page Loader
   ================================ */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 5000;
  display: grid;
  place-items: center;
  transition: .5s ease
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden
}

.loader-brand {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 12px
}

.loader-brand span span {
  color: #20d97e
}

.loader-brand small {
  display: block;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #aab7cb;
  margin-top: 2px
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue), #8a96ff);
  display: grid;
  place-items: center
}

.site-nav {
  padding: 20px 0;
  transition: .35s ease;
  z-index: 1000
}

.site-nav.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(16, 39, 70, .08)
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-nav.scrolled .brand {
  color: var(--navy) !important
}

.brand-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1.3px;
  position: relative
}

.brand-yatra {
  color: #1264e8
}

.brand-nest {
  color: #17bd6d
}

.brand-logo i {
  font-size: 11px;
  color: #1264e8;
  position: absolute;
  top: -4px;
  right: -12px
}

.brand-product {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding-left: 12px;
  border-left: 1px solid rgba(105, 105, 105, .25);
 
}

.site-nav {
  height: 78px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231, 235, 242, .75);
  transition: .3s;
  z-index: 1000
}

.site-nav.scrolled {
  box-shadow: 0 10px 30px rgba(16, 39, 70, .08)
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: #5c6c81;
  padding: .75rem .85rem !important
}

.nav-link:hover {
  color: var(--blue)
}

.btn-nav {
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(16, 39, 70, .16)
}

 .btn-nav {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff
}

.btn-nav:hover {
  background: #1b3c65;
  color: #fff;
  transform: translateY(-1px)
}

.nav-toggler {
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--navy);
  font-size: 22px
}

.hero-section {
  position: relative;
  min-height: 900px;
  padding: 150px 0 90px;
  background: linear-gradient(180deg, #f7f9fd 0%, #fff 72%);
  overflow: hidden
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(73, 95, 126, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(73, 95, 126, .045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
  pointer-events: none
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  opacity: .6;
  pointer-events: none
}

.orb-a {
  width: 520px;
  height: 520px;
  right: -170px;
  top: 100px;
  background: radial-gradient(circle, rgba(95, 115, 244, .18), transparent 66%)
}

.orb-b {
  width: 460px;
  height: 460px;
  left: -180px;
  bottom: 50px;
  background: radial-gradient(circle, rgba(53, 205, 139, .12), transparent 68%)
}

.hero-row {
  min-height: 650px
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.7px;
  color: #667791
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(53, 205, 139, .12);
  animation: pulse 1.8s infinite
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 12px rgba(53, 205, 139, 0)
  }
}

.hero-title {
  font-size: clamp(46px, 5.2vw, 75px);
  line-height: 1.02;
  letter-spacing: -4px;
  font-weight: 800;
  margin: 20px 0 24px;
  max-width: 760px
}

.gradient-text {
  background: linear-gradient(90deg, #5d73f4 0%, #28bd91 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.hero-copy {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.75;
  color: #63738a;
  margin-bottom: 28px
}

.hero-copy strong {
  color: var(--navy)
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.btn-primary-custom,
.btn-ghost-custom {
  border-radius: 11px;
  padding: 13px 18px;
  font-size: 12px;
  font-weight: 800;
  transition: .25s
}

.btn-primary-custom {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 30px rgba(16, 39, 70, .18)
}

.btn-primary-custom:hover {
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(16, 39, 70, .22)
}

.btn-ghost-custom {
  border: 1px solid #d9e0ea;
  color: var(--navy);
  background: #fff
}

.btn-ghost-custom:hover {
  color: var(--blue);
  border-color: #cbd5e3;
  transform: translateY(-2px)
}

.hero-proof {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 25px;
  color: #687990;
  font-size: 11px;
  font-weight: 600
}

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

.hero-proof i {
  color: var(--green);
  font-size: 14px
}

.hero-note {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  max-width: 610px;
  margin-top: 22px;
  padding: 12px 14px;
  border: 1px solid #e5eaf2;
  background: rgba(255, 255, 255, .72);
  border-radius: 10px;
  color: #738198;
  font-size: 10px;
  line-height: 1.5
}

.hero-note i {
  color: var(--blue);
  font-size: 14px
}

.dashboard-stage {
  position: relative;
  padding: 25px 5px 25px 20px
}

.dashboard-window {
  position: relative;
  background: #fff;
  border: 1px solid #dfe5ee;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(16, 39, 70, .16);
  overflow: hidden;
  z-index: 2;
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
  transition: transform .6s
}

.dashboard-window:hover {
  transform: perspective(1400px) rotateY(0) rotateX(0) translateY(-4px)
}

.window-top {
  height: 43px;
  background: #fbfcfe;
  border-bottom: 1px solid #e9edf3;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 14px
}

.browser-dots {
  display: flex;
  gap: 5px
}

.browser-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cfd6e1
}

.window-title {
  font-size: 9px;
  color: #7b8798;
  display: flex;
  gap: 6px;
  align-items: center
}

.window-title i {
  color: var(--blue)
}

.window-actions {
  margin-left: auto;
  display: flex;
  gap: 12px;
  color: #9aa6b6;
  font-size: 11px
}

.dashboard-body {
  display: flex;
  min-height: 470px;
  background: #f7f8fb
}

.dash-sidebar {
  width: 142px;
  background: #fff;
  border-right: 1px solid #e7ebf1;
  padding: 16px 10px
}

.mini-brand {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 7px 13px
}

.mini-brand span {
  color: #6275f7
}

.mini-brand b {
  color: #2fc88b
}

.switch-hms {
  background: var(--green);
  color: #fff;
  border-radius: 5px;
  text-align: center;
  font-size: 7px;
  font-weight: 700;
  padding: 7px 3px;
  margin-bottom: 16px
}

.dash-sidebar small {
  display: block;
  color: #a1aaba;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 12px 6px 8px
}

.side-active,
.side-item {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 6px;
  border-radius: 5px;
  font-size: 7px;
  color: #77849a;
  margin: 2px 0
}

.side-active {
  color: var(--blue);
  background: #f2f4ff;
  font-weight: 700
}

.side-item.active {
  color: var(--blue);
  font-weight: 700
}

.side-item i {
  font-size: 9px
}

.dash-main {
  flex: 1;
  padding: 17px 14px
}

.dash-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px
}

.dash-heading span:first-child {
  font-size: 10px;
  font-weight: 800
}

.dash-heading small {
  display: block;
  color: #98a4b4;
  font-size: 7px;
  margin-top: 3px
}

.live-chip {
  font-size: 6px;
  font-weight: 800;
  color: #21b980;
  background: #eafaf4;
  border-radius: 10px;
  padding: 5px 7px
}

.live-chip i {
  font-size: 5px
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px
}

.metric-card {
  position: relative;
  min-height: 62px;
  border-radius: 6px;
  color: #fff;
  padding: 10px;
  overflow: hidden
}

.metric-card small {
  display: block;
  font-size: 5.5px;
  font-weight: 700;
  opacity: .95
}

.metric-card strong {
  display: block;
  font-size: 18px;
  margin-top: 4px
}

.metric-card i {
  position: absolute;
  right: 8px;
  top: 10px;
  font-size: 14px;
  opacity: .9
}

.metric-card.blue {
  background: #3b84ef
}

.metric-card.purple {
  background: #6976ee
}

.metric-card.cyan {
  background: #17b8db
}

.metric-card.red {
  background: #f3626d
}

.dash-panels {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 8px;
  margin-top: 8px
}

.sync-panel,
.health-panel,
.mini-chart,
.activity-list {
  background: #fff;
  border: 1px solid #e9edf2;
  border-radius: 6px
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  border-bottom: 1px solid #edf0f4;
  font-size: 7px
}

.panel-head span {
  font-size: 6px;
  color: #7180f2;
  background: #f0f2ff;
  border-radius: 7px;
  padding: 3px 5px
}

.panel-head .healthy {
  color: #23b980;
  background: #e9faf3
}

.donut-wrap {
  padding: 15px 10px
}

.donut {
  width: 105px;
  height: 105px;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(#19935e 0 100%, #e7ebf0 100%);
  display: grid;
  place-items: center;
  position: relative
}

.donut:after {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff
}

.donut div {
  position: relative;
  z-index: 1;
  font-size: 8px;
  font-weight: 800;
  color: #168a58;
  text-align: center
}

.donut small {
  display: block;
  font-size: 4px;
  color: #8a98aa;
  margin-top: 2px
}

.sync-legend {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 5.5px;
  color: #8290a2
}

.sync-legend span {
  display: flex;
  align-items: center;
  gap: 3px
}

.sync-legend b {
  color: #33445a
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%
}

.green-dot {
  background: #19935e
}

.red-dot {
  background: #ef6470
}

.amber-dot {
  background: #f1ad39
}

.channel-health-row {
  display: grid;
  grid-template-columns: 23px 1fr auto;
  align-items: center;
  gap: 7px;
  padding: 10px 9px 5px
}

.channel-logo {
  width: 23px;
  height: 23px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 9px;
  font-weight: 800
}

.agoda {
  background: #edf3ff;
  color: #3c83ef
}

.booking {
  background: #eaf9f3;
  color: #17955e
}

.channel-health-row b {
  font-size: 6px
}

.channel-health-row small {
  display: block;
  font-size: 5px;
  color: #8b98a8;
  margin-top: 2px
}

.channel-health-row>span {
  font-size: 6px;
  color: #23b980;
  font-weight: 700
}

.health-bar {
  height: 3px;
  background: #edf1f5;
  margin: 0 9px 8px;
  border-radius: 3px;
  overflow: hidden
}

.health-bar i {
  display: block;
  height: 100%;
  background: var(--green)
}

.dash-bottom {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 8px;
  margin-top: 8px
}

.bars {
  height: 94px;
  display: flex;
  align-items: end;
  justify-content: space-around;
  padding: 8px 10px 7px
}

.bar-col {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  gap: 4px
}

.bar-col span {
  width: 25px;
  background: #3984ef;
  border-radius: 2px 2px 0 0
}

.bar-col:nth-child(2) span {
  background: #3ca274
}

.bar-col.faded span {
  background: #c7d1e0
}

.bar-col small {
  font-size: 5px;
  color: #8b97a7
}

.activity-list>div:not(.panel-head) {
  display: grid;
  grid-template-columns: 25px 1fr auto;
  gap: 4px;
  align-items: center;
  padding: 6px 9px;
  border-bottom: 1px solid #f0f2f5;
  font-size: 5.5px
}

.activity-list em {
  font-style: normal;
  color: #fff;
  background: #2cc988;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 5px
}

.activity-list small {
  color: #8d99aa
}

.floating-status {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid #e4e9f1;
  box-shadow: 0 18px 35px rgba(16, 39, 70, .12);
  padding: 9px 11px;
  border-radius: 10px;
  animation: float 4s ease-in-out infinite
}

.status-one {
  top: 2px;
  right: -20px
}

.status-two {
  bottom: 3px;
  left: -10px;
  animation-delay: -1.7s
}

.status-icon {
  width: 29px;
  height: 29px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 13px
}

.status-icon.green {
  background: #e7faf2;
  color: #20b980
}

.status-icon.blue {
  background: #eaf0ff;
  color: #5470ef
}

.floating-status b {
  display: block;
  font-size: 9px;
  color: #2c3d55
}

.floating-status small {
  display: block;
  font-size: 6px;
  color: #8a98a9;
  margin-top: 2px
}

.floating-status small i {
  font-size: 4px;
  color: var(--green);
  margin-right: 3px
}

@keyframes float {
  50% {
    transform: translateY(-8px)
  }
}

.stage-glow {
  position: absolute;
  width: 90%;
  height: 45%;
  right: -5%;
  bottom: -8%;
  background: radial-gradient(ellipse, rgba(94, 114, 244, .20), transparent 67%);
  filter: blur(24px);
  z-index: 0
}

.logo-strip {
  background: #fff;
  border-top: 1px solid #edf0f5;
  border-bottom: 1px solid #edf0f5
}

.logo-strip-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

.logo-strip-inner span {
  font-size: 9px;
  letter-spacing: 1.7px;
  color: #a1adbc;
  font-weight: 800
}

.logo-strip-inner b {
  font-size: 12px;
  color: #65758a;
  font-weight: 700
}

.logo-strip-inner i {
  color: var(--blue);
  margin-right: 5px
}

.section-padding {
  padding: 115px 0
}

.feature-section {
  background: #f8f9fc
}

.section-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 58px
}

.section-heading h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -2.5px;
  margin: 15px 0;
  color: var(--ink)
}

.section-heading h2 span,
.display-heading span {
  color: #5d72f2
}

.section-heading p {
  font-size: 15px;
  line-height: 1.75;
  color: #7b899d;
  max-width: 680px;
  margin: 0 auto
}

.section-heading h2,
.display-heading {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -2.6px;
  font-weight: 800;
  margin: 0;
  color: var(--ink)
}

.section-heading h2 span,
.display-heading span {
  color: var(--blue)
}

.section-side-copy,
.section-copy {
  font-size: 15px;
  line-height: 1.8;
  color: #718096;
  margin: 0
}

.feature-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 15px;
  padding: 27px;
  box-shadow: 0 10px 30px rgba(16, 39, 70, .045);
  transition: .35s;
  position: relative;
  overflow: hidden
}

.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow)
}

.feature-card>span {
  position: absolute;
  top: 29px;
  right: 28px;
  font-size: 9px;
  font-weight: 800;
  color: #a2adbd
}

.feature-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 25px
}

.blue-icon {
  background: #eaf0ff;
  color: #467cf1
}

.green-icon {
  background: #e6f8f0;
  color: #22aa77
}

.amber-icon {
  background: #fff4dd;
  color: #e7a431
}

.purple-icon {
  background: #f0edff;
  color: #7362e8
}

.cyan-icon {
  background: #e4f9fc;
  color: #16aeca
}

.red-icon {
  background: #ffeaed;
  color: #ef5d69
}

.feature-card h3 {
  font-size: 20px;
  letter-spacing: -.7px;
  margin-bottom: 10px
}

.feature-card p {
  font-size: 12.5px;
  line-height: 1.75;
  color: #77869b;
  margin-bottom: 25px
}

.ui-preview {
  border: 1px solid #e8ecf1;
  background: #fafbfd;
  border-radius: 10px;
  padding: 12px;
  min-height: 128px
}

.ui-title,
.rate-head,
.restriction-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  color: #4f6076;
  font-weight: 700;
  margin-bottom: 10px
}

.ui-title small,
.rate-head b,
.restriction-head em {
  font-size: 5px;
  color: #fff;
  background: #6276f3;
  border-radius: 5px;
  padding: 3px 5px;
  font-style: normal
}

.inventory-row {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 5px;
  align-items: center;
  font-size: 6px;
  padding: 7px 3px;
  border-top: 1px solid #edf0f4
}

.inventory-row.head {
  border-top: 0;
  color: #9aa5b4
}

.inventory-row i {
  font-style: normal;
  text-align: center;
  background: #e8f8f1;
  color: #20986a;
  border-radius: 7px;
  padding: 3px 0;
  font-weight: 700
}

.rate-line {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 8px 2px;
  border-top: 1px solid #edf0f4;
  font-size: 7px
}

.rate-line strong {
  color: #152238;
  font-size: 10px
}

.rate-line i {
  font-style: normal;
  color: #8d99a9
}

.rate-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px dashed #dfe5ed;
  margin-top: 4px;
  padding-top: 9px;
  font-size: 7px;
  color: #8b97a6
}

.rate-footer b {
  color: var(--green);
  font-size: 11px
}

.rule {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-top: 1px solid #edf0f4;
  font-size: 7px
}

.pill {
  font-size: 5px;
  color: #fff;
  padding: 3px 5px;
  border-radius: 4px
}

.green-pill {
  background: var(--green)
}

.amber-pill {
  background: var(--amber)
}

.map-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr .55fr .7fr;
  gap: 5px;
  align-items: center;
  padding: 8px 4px;
  background: #fff;
  border: 1px solid #edf0f4;
  border-radius: 6px;
  font-size: 6px
}

.map-row b {
  font-size: 7px
}

.map-row i {
  font-style: normal;
  color: #e56d55
}

.map-row em {
  font-style: normal;
  color: #fff;
  background: #2cc988;
  border-radius: 4px;
  padding: 3px 4px;
  text-align: center;
  font-size: 5px
}

.map-row.muted {
  opacity: .65
}

.map-arrow {
  text-align: center;
  color: #8c98aa;
  font-size: 10px;
  height: 18px;
  display: grid;
  place-items: center
}

.sync-log {
  display: grid;
  grid-template-columns: .6fr 1fr auto auto;
  gap: 7px;
  padding: 8px 3px;
  border-top: 1px solid #edf0f4;
  align-items: center;
  font-size: 6px
}

.sync-log em {
  font-style: normal;
  background: #2bc889;
  color: #fff;
  border-radius: 4px;
  padding: 3px 5px;
  font-size: 5px
}

.sync-log small {
  color: #8d99a9
}

.channel-preview>div {
  display: grid;
  grid-template-columns: 25px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #edf0f4;
  font-size: 7px
}

.channel-dot {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-weight: 800
}

.agoda-dot {
  background: #edf3ff;
  color: #3982ef
}

.booking-dot {
  background: #eaf9f3;
  color: #15955d
}

.expedia-dot {
  background: #fff0df;
  color: #ed9b2f
}

.channel-preview em {
  font-style: normal;
  color: #22ad79;
  background: #e9faf3;
  border-radius: 4px;
  padding: 3px 5px;
  font-size: 5px
}

.automation-section {
  background: #fff;
  overflow: hidden
}

.automation-stage {
  position: relative;
  min-height: 430px;
  margin: 0 auto;
  max-width: 1100px;
  background: linear-gradient(180deg, #f8faff, #fff);
  border: 1px solid #e5eaf2;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr 1.3fr 1.2fr;
  align-items: center;
  padding: 55px 45px;
  gap: 30px
}

.flow-node {
  background: #fff;
  border: 1px solid #e3e8f0;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(16, 39, 70, .06);
  position: relative;
  z-index: 2
}

.flow-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #eaf0ff;
  color: var(--blue);
  font-size: 20px
}

.flow-node b {
  display: block;
  font-size: 13px
}

.flow-node small {
  display: block;
  color: #8995a7;
  font-size: 9px;
  margin-top: 4px
}

.core-node {
  background: linear-gradient(145deg, #132b4b, #1b3c63);
  color: #fff;
  border: none;
  padding: 28px 18px;
  box-shadow: 0 25px 50px rgba(16, 39, 70, .24);
  overflow: hidden
}

.core-node b {
  color: #fff;
  font-size: 14px
}

.core-node strong {
  display: block;
  color: #65dbac;
  font-size: 20px;
  letter-spacing: -.7px
}

.core-node small {
  color: #bdc9d8
}

.core-ring {
  width: 62px;
  height: 62px;
  margin: 0 auto 13px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(95, 115, 244, .18);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 0 0 12px rgba(95, 115, 244, .06)
}

.core-pulse {
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(53, 205, 139, .2);
  border-radius: 50%;
  animation: corepulse 2.3s infinite
}

.flow-line {
  height: 2px;
  background: #dce4ee;
  position: relative
}

.flow-line span {
  position: absolute;
  width: 65px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  top: -1px;
  animation: flowmove 2.2s linear infinite
}

.line-one {
  position: absolute;
  left: 28%;
  width: 13%;
  top: 50%
}

.line-two {
  position: absolute;
  left: 59%;
  width: 12%;
  top: 50%
}

.ota-cluster {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.ota-node {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  text-align: left;
  padding: 10px 12px
}

.ota-node .flow-icon {
  grid-row: 1/3;
  margin: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 14px
}

.ota-node b {
  font-size: 10px
}

.ota-node small {
  font-size: 7px
}

.agoda-flow {
  background: #edf3ff;
  color: #3982ef
}

.booking-flow {
  background: #eaf9f3;
  color: #15955d
}

.expedia-flow {
  background: #fff0df;
  color: #ed9b2f
}

.flow-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 22px;
  color: #7f8da0;
  font-size: 9px;
  font-weight: 700
}

.flow-caption i {
  color: var(--green)
}

@keyframes flowmove {
  0% {
    left: -65px
  }

  100% {
    left: 100%
  }
}

@keyframes corepulse {
  50% {
    transform: scale(1.15);
    opacity: .3
  }
}

.console-section {
  background: #f8f9fc
}

.console-checks {
  display: grid;
  gap: 11px;
  margin: 28px 0
}

.console-checks div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #5e6e83
}

.console-checks i {
  color: var(--green);
  font-size: 15px
}

.text-link {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue)
}

.text-link i {
  margin-left: 4px
}

.console-card {
  background: #fff;
  border: 1px solid #e0e6ee;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden
}

.console-topbar {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border-bottom: 1px solid #e9edf3;
  font-size: 8px;
  font-weight: 700;
  color: #68788d
}

.console-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(53, 205, 139, .1)
}

.topbar-icon,
.topbar-avatar {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #f3f5f8;
  color: #8490a1;
  font-size: 9px
}

.topbar-avatar {
  background: #eaf0ff;
  color: #5570ed;
  font-weight: 800
}

.console-layout {
  display: flex;
  min-height: 510px;
  background: #f7f8fb
}

.console-layout>aside {
  width: 155px;
  background: #fff;
  border-right: 1px solid #e7ebf1;
  padding: 18px 12px
}

.console-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 8px 16px
}

.console-logo span {
  color: #6275f7
}

.console-logo b {
  color: #2fc88b
}

.console-switch {
  font-size: 7px;
  font-weight: 700;
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 7px;
  border-radius: 6px;
  margin-bottom: 20px
}

.console-layout aside small {
  font-size: 6px;
  letter-spacing: 1px;
  color: #a0aaba;
  font-weight: 800;
  display: block;
  margin: 11px 7px 8px
}

.console-layout aside a {
  display: block;
  padding: 7px 8px;
  font-size: 7px;
  color: #7b8799;
  border-radius: 5px;
  margin: 2px 0
}

.console-layout aside a.active {
  color: var(--blue);
  background: #f1f3ff;
  font-weight: 700
}

.console-layout aside a i {
  float: right
}

.console-content {
  flex: 1;
  padding: 18px
}

.console-header {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  margin-bottom: 14px
}

.console-header span {
  color: #8490a2;
  font-size: 6px
}

.console-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px
}

.console-stats>div {
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 7px;
  padding: 10px;
  position: relative
}

.console-stats small {
  display: block;
  text-transform: uppercase;
  font-size: 5px;
  color: #78869a
}

.console-stats b {
  font-size: 16px
}

.console-stats i {
  position: absolute;
  right: 9px;
  top: 12px;
  color: var(--blue);
  font-size: 12px
}

.console-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8px;
  margin-top: 8px
}

.console-widget,
.console-table {
  background: #fff;
  border: 1px solid #e8ecf2;
  border-radius: 7px;
  overflow: hidden
}

.widget-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 10px;
  border-bottom: 1px solid #edf0f4;
  font-size: 7px
}

.widget-title span {
  font-size: 5px;
  color: #5f72ed;
  background: #eff2ff;
  padding: 3px 5px;
  border-radius: 4px
}

.widget-title .healthy {
  color: #1eae78;
  background: #eafaf3
}

.fake-donut {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  margin: 18px auto 8px;
  background: conic-gradient(#1c9360 0 100%, #e8ecf0 0);
  display: grid;
  place-items: center;
  position: relative
}

.fake-donut:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff
}

.fake-donut div {
  z-index: 1;
  text-align: center;
  color: #168b59;
  font-size: 9px;
  font-weight: 800
}

.fake-donut small {
  display: block;
  font-size: 5px;
  color: #9aa5b4;
  margin-top: 3px
}

.widget-legend {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 5px;
  color: #8491a2;
  padding: 4px 0 12px
}

.widget-legend span:first-child {
  color: #19935e
}

.widget-legend span:nth-child(2) {
  color: #ee626d
}

.health-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px;
  padding: 10px;
  font-size: 6px
}

.health-item small {
  display: block;
  color: #8b98a9
}

.health-item i {
  font-style: normal;
  color: #1ead78;
  background: #eafaf3;
  padding: 3px 5px;
  border-radius: 4px;
  grid-column: 2;
  grid-row: 1/3;
  align-self: center;
  font-size: 5px
}

.fake-progress {
  height: 4px;
  background: #edf1f5;
  margin: 0 10px 7px;
  border-radius: 4px;
  overflow: hidden
}

.fake-progress span {
  display: block;
  height: 100%;
  background: var(--green)
}

.console-table {
  margin-top: 8px
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr .8fr;
  gap: 5px;
  padding: 7px 10px;
  font-size: 6px;
  border-top: 1px solid #edf0f4
}

.table-head {
  border-top: 0;
  background: #f5f7fa;
  color: #526277;
  font-weight: 800
}

.table-row em {
  font-style: normal;
  color: #fff;
  background: var(--green);
  border-radius: 4px;
  padding: 2px 4px;
  text-align: center;
  font-size: 5px;
  width: max-content
}

.connectivity-section {
  background: #fff
}

.dark-panel,
.light-panel {
  height: 100%;
  border-radius: 18px;
  padding: 38px;
  border: 1px solid #e7ebf2
}

.dark-panel {
  background: linear-gradient(145deg, #102746, #17385f);
  color: #fff;
  box-shadow: 0 25px 60px rgba(16, 39, 70, .18);
  position: relative;
  overflow: hidden
}

.dark-panel:after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -100px;
  top: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 115, 244, .28), transparent 65%)
}

.light-panel {
  background: #f8f9fc
}

.section-kicker.light {
  color: #8ea1ba
}

.dark-panel h2 {
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -2px;
  margin: 17px 0
}

.dark-panel h2 span {
  color: #66d8ac
}

.dark-panel>p {
  position: relative;
  z-index: 1;
  color: #b8c5d5;
  font-size: 13px;
  line-height: 1.8;
  max-width: 650px
}

.roadmap {
  position: relative;
  z-index: 1;
  margin-top: 28px
}

.roadmap-item {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.road-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .07);
  color: #91a0b5;
  font-size: 11px
}

.roadmap-item.complete .road-dot {
  background: rgba(53, 205, 139, .14);
  color: #5fdbab
}

.roadmap-item.current .road-dot {
  background: rgba(95, 115, 244, .18);
  color: #8da0ff
}

.roadmap-item b {
  display: block;
  font-size: 12px
}

.roadmap-item small {
  display: block;
  color: #8ea0b5;
  font-size: 9px;
  line-height: 1.55;
  margin-top: 3px
}

.roadmap-item em {
  font-style: normal;
  font-size: 7px;
  border-radius: 5px;
  padding: 4px 7px;
  background: rgba(255, 255, 255, .07);
  color: #9aaabd
}

.roadmap-item.complete em {
  color: #60dcae;
  background: rgba(53, 205, 139, .1)
}

.roadmap-item.current em {
  color: #a2b1ff;
  background: rgba(95, 115, 244, .12)
}

.light-panel h3 {
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -1.3px;
  margin: 17px 0 25px
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.ecosystem-grid>div {
  background: #fff;
  border: 1px solid #e7ebf1;
  border-radius: 12px;
  padding: 14px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 2px 9px
}

.eco-icon {
  grid-row: 1/3;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px
}

.agoda-eco {
  background: #edf3ff;
  color: #3c82ef
}

.booking-eco {
  background: #eaf9f3;
  color: #16955e
}

.expedia-eco {
  background: #fff0df;
  color: #ec9b2f
}

.direct-eco {
  background: #f0edff;
  color: #7564e8
}

.ecosystem-grid b {
  font-size: 9px
}

.ecosystem-grid small {
  font-size: 6px;
  color: #8996a8
}

.ecosystem-grid em {
  font-style: normal;
  font-size: 5px;
  color: #e3a03a;
  background: #fff5e4;
  border-radius: 4px;
  padding: 3px 5px;
  width: max-content;
  grid-column: 2
}

.ecosystem-grid .green-label {
  color: #1eae78;
  background: #eafaf3
}

.api-note {
  margin-top: 14px;
  background: #fff;
  border: 1px solid #e7ebf1;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  gap: 10px
}

.api-note>i {
  font-size: 18px;
  color: var(--green)
}

.api-note b {
  display: block;
  font-size: 9px
}

.api-note small {
  display: block;
  font-size: 7px;
  color: #8b98aa;
  line-height: 1.5;
  margin-top: 3px
}

.trust-section {
  background: #f8f9fc
}

.trust-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e7ebf1;
  border-radius: 15px;
  padding: 28px;
  transition: .3s
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft)
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #edf1ff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 19px;
  margin-bottom: 20px
}

.trust-card h3 {
  font-size: 19px
}

.trust-card p {
  font-size: 12px;
  line-height: 1.75;
  color: #7b899c;
  margin: 0
}

.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0e2542, #17385f);
  padding: 105px 0;
  color: #fff
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px)
}

.cta-section .orb-one {
  width: 480px;
  height: 480px;
  right: -180px;
  top: -200px;
  background: radial-gradient(circle, rgba(95, 115, 244, .28), transparent 65%)
}

.cta-section .orb-two {
  width: 400px;
  height: 400px;
  left: -200px;
  bottom: -230px;
  background: radial-gradient(circle, rgba(53, 205, 139, .18), transparent 65%)
}

.cta-inner {
  text-align: center;
  max-width: 820px;
  margin: auto
}

.cta-inner h2 {
  font-size: clamp(35px, 5vw, 59px);
  line-height: 1.04;
  letter-spacing: -3px;
  margin: 18px 0
}

.cta-inner h2 span {
  color: #62d7a8
}

.cta-inner p {
  color: #b8c5d6;
  line-height: 1.8;
  font-size: 14px;
  max-width: 700px;
  margin: 0 auto 28px
}

.cta-contact {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: #aebdce;
  font-size: 10px
}

.cta-contact i {
  color: #61d6a7;
  margin-right: 5px
}

.site-footer {
  background: #0b2039;
  color: #9aabbe;
  padding: 65px 0 25px
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-weight: 700;
  font-size: 12px
}

.footer-logo {
  font-size: 23px
}

.footer-copy {
  max-width: 440px;
  color: #8093aa;
  font-size: 11px;
  line-height: 1.8;
  margin: 20px 0
}

.site-footer h6 {
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px
}

.site-footer a:not(.footer-brand) {
  display: block;
  color: #8295ac;
  font-size: 10px;
  margin: 10px 0
}

.site-footer a:not(.footer-brand):hover {
  color: #62d7a8
}

.footer-small {
  font-size: 10px;
  line-height: 1.8;
  color: #8295ac
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 45px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 9px;
  color: #70859e
}

.back-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #dce3ec;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(16, 39, 70, .14);
  z-index: 800;
  opacity: 0;
  transform: translateY(15px);
  transition: .3s
}

.back-top.show {
  opacity: 1;
  transform: translateY(0)
}

.back-top:hover {
  background: var(--navy);
  color: #fff
}

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

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

.reveal-delay-1 {
  transition-delay: .12s
}

.reveal-delay-2 {
  transition-delay: .22s
}

.reveal-delay-3 {
  transition-delay: .32s
}

.reveal-delay-4 {
  transition-delay: .42s
}

@media (max-width:1199px) {
  .hero-section {
    min-height: auto
  }

  .hero-title {
    letter-spacing: -3px
  }

  .dashboard-stage {
    padding-left: 0
  }

  .dash-sidebar {
    width: 125px
  }

  .automation-stage {
    padding-left: 30px;
    padding-right: 30px
  }
}

@media (max-width:991px) {
  .site-nav {
    height: 70px
  }

  .navbar-collapse {
    background: #fff;
    border: 1px solid #e5eaf1;
    border-radius: 12px;
    padding: 12px;
    margin-top: 10px;
    box-shadow: var(--shadow-soft)
  }

  .hero-section {
    padding-top: 125px
  }

  .hero-row {
    min-height: auto
  }

  .dashboard-stage {
    margin-top: 15px
  }

  .dashboard-window {
    transform: none
  }

  .floating-status {
    display: none
  }

  .logo-strip-inner {
    padding: 22px 0
  }

  .section-padding {
    padding: 85px 0
  }

  .automation-stage {
    min-height: 650px;
    grid-template-columns: 1fr;
    max-width: 700px;
    padding: 45px 30px
  }

  .line-one,
  .line-two {
    display: none
  }

  .flow-line {
    display: none
  }

  .ota-cluster {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
  }

  .flow-caption {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    flex-wrap: wrap;
    margin-top: 25px
  }

  .source-node,
  .core-node {
    max-width: 280px;
    width: 100%;
    margin: auto
  }

  .console-layout>aside {
    width: 120px
  }

  .console-content {
    padding: 12px
  }
}

@media (max-width:767px) {
  .brand-product {
    display: none
  }

  .hero-title {
    font-size: 44px;
    letter-spacing: -2.5px
  }

  .hero-copy {
    font-size: 15px
  }

  .hero-proof {
    gap: 10px;
    display: grid
  }

  .dashboard-window {
    border-radius: 12px
  }

  .dash-sidebar {
    display: none
  }

  .dashboard-body {
    min-height: auto
  }

  .metric-grid {
    grid-template-columns: 1fr 1fr
  }

  .dash-panels {
    grid-template-columns: 1fr
  }

  .dash-bottom {
    grid-template-columns: 1fr
  }

  .section-heading {
    margin-bottom: 42px
  }

  .display-heading {
    font-size: 36px
  }

  .ecosystem-grid {
    grid-template-columns: 1fr
  }

  .dark-panel,
  .light-panel {
    padding: 25px
  }

  .roadmap-item {
    grid-template-columns: 30px 1fr
  }

  .roadmap-item em {
    grid-column: 2;
    width: max-content
  }

  .console-layout>aside {
    display: none
  }

  .console-stats {
    grid-template-columns: 1fr 1fr
  }

  .console-grid {
    grid-template-columns: 1fr
  }

  .console-content {
    padding: 10px
  }

  .console-header span {
    display: none
  }

  .table-head,
  .table-row {
    grid-template-columns: 1fr 1fr 1fr
  }

  .table-head span:last-child,
  .table-row span:last-child {
    display: none
  }

  .ota-cluster {
    grid-template-columns: 1fr
  }

  .automation-stage {
    min-height: 850px
  }

  .cta-inner h2 {
    letter-spacing: -2px
  }

  .cta-contact {
    display: grid;
    gap: 9px
  }
}

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

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

  .floating-status,
  .pulse-dot,
  .flow-line span,
  .core-pulse,
  .loader-bar span {
    animation: none
  }
}