
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  max-width: 100%;
}

body{
  margin:0;
  font-family:Inter,Arial;
  background:#f4f7fb;
  color:#0b1b33;
  width: 100%;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* background:rgb(199 207 224); */
  background: rgba(11, 27, 51, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.main-nav {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-brand {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  align-items: center;
  margin-left: auto;
  margin-right: 20px;
}

.nav-signin-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #ff8c42;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-left: 0;
}

.nav-signin-btn:hover {
  background: #ff9d5c;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.nav-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #c6cfdf;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
  cursor: pointer;
  display: inline-block;
  pointer-events: auto;
}

.nav-icon {
  width: 14px;
  height: 14px;
  margin-left: 6px;
  vertical-align: -2px;
  fill: currentColor;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff8c42;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  width: 100%;
}

.container{
  min-height:100vh;
  overflow-y:auto;
  overflow-x: hidden;
  scroll-snap-type:y mandatory;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  padding-top: 70px; /* Space for fixed header */
}
.screen{
  min-height:100vh;
  scroll-snap-align:start;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:80px 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.hero{
  background-image: url('images/chat-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #143c8c;
  text-align: left;
  position: relative;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  position: relative;
  z-index: 1;
  top:-50px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
}

.hero-logo {
  width: 350px;
  max-width: 350px;
  height: auto;
  margin-bottom: 8px;
  display: block;
}

.hero-text h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: left;
}

.hero-text p {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: left;
  font-size: 18px;
  color:#080808;
}

.hero-subtitle {
  font-weight: 600;
  background: linear-gradient(90deg, #0b1b33 0%, #3f5e8f 50%, #ff8c42 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-header-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive for hero */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text h1,
  .hero-text p {
    text-align: center;
  }
}
.split{display:grid;grid-template-columns:1fr 1fr;gap:40px}
.split div{background:white;border-radius:20px;padding:40px;box-shadow:0 20px 40px rgba(0,0,0,.1)}
.cta{background:linear-gradient(135deg,#0e5fa3,#2ecfd6);color:white}
h1{font-size:56px}
h2{font-size:42px}
/* ===== GAP SECTION ===== */
.gap-page {
  background: #eaecf4;
  padding: 30px 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont;
}

.gap-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* ===== HEADER ===== */
.gap-header {
  max-width: 600px;
  margin-bottom: 10px;
}

.gap-title {
  font-size: 44px;
  font-weight: 700;
  color: #143c8c;
  margin-bottom: 16px;
}

.gap-subtitle {
  font-size: 18px;
  color: #4a5568;
  line-height: 1.6;
}

/* ===== CONTENT GRID ===== */
.gap-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: flex-start;
}

/* ===== LEFT VISUAL ===== */
.gap-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  width: 100%;
}

.cylinder-stack {
  position: absolute;
  left: -40px;
  top: 40px;
}

.cylinder-stack img {
  width: 550px;
  max-width: 100%;
  display: block;
}

/* ===== RIGHT LIST ===== */
.gap-list {
  display: flex;
  flex-direction: column;
  /* gap: 26px; */
}

/* ===== ITEM ===== */
.gap-item {
  position: relative;
}

.gap-item-content {
  display: flex;
  align-items: center;
  background: transparent;
  gap: 16px;
}


/* Highlighted 4th item (orange) */
.gap-item:nth-child(4) .gap-icon::after {
  border-left-color: #f2994a;
}
/* ===== TEXT ===== */
.gap-item-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.gap-item-text p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  max-width: 420px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .gap-content {
    grid-template-columns: 1fr;
  }

  .cylinder-stack {
    position: relative;
    left: 0;
    top: 0;
    margin-bottom: 40px;
  }
}


/* Enterprise Control Plane Page */
.control-plane-page {
  background: #e8ecf0;
  padding: 60px 20px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.control-plane-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.control-plane-header {
  text-align: center;
  margin-bottom: 40px;
}

.control-plane-title {
  font-size: 42px;
  font-weight: 700;
  color: #1a2d4d;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.control-plane-subtitle {
  font-size: 20px;
  color: #111;
  margin: 0;
  font-weight: 500;
}

.control-plane-content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
}

.control-plane-rocket {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
}

.control-plane-rocket svg {
  width: 280px;
  height: auto;
}

.control-plane-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.control-cards-left,
.control-cards-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.control-cards-right {
  margin-top: 40px;
}

/* ===== CARD WRAPPER ===== */
.control-card {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 20px 20px 20px 70px;
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  max-width: 640px;
  min-height: 120px;
  overflow: visible; /* Allow ribbon to extend beyond card */
}

/* ===== LEFT NUMBER PILL (CORRECT DESIGN) ===== */
.control-pill {
  position: absolute;
  left: -26px;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 92px;

  border-radius: 18px;
  background: #0b1b33;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  font-weight: 700;
  color: #ffffff;

  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

/* ===== TEXT AREA ===== */
.control-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.control-card-body p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  max-width: 440px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .control-card {
    padding: 22px 24px 22px 78px;
  }

  .control-pill {
    width: 64px;
    font-size: 24px;
    --f: 0.35em;
    --r: 0.7em;
  }
}

/* ===== PILL COLOR VARIANTS ===== */
.control-pill-01 {
  background-color: #0b1b33;
}

.control-pill-02 {
  background-color: #3f5e8f;
}

.control-pill-03 {
  background-color: #c6cfdf;
  color: #1a2d4d;
}

.control-pill-04 {
  background-color: #e9dfd5;
  color: #1a2d4d;
}

.control-pill-05 {
  background-color: #ff8c42;
}

.control-card-04,
.control-card-05 {
  grid-template-columns: 80px 1fr;
}

.control-card-04 .control-pill,
.control-card-05 .control-pill {
  width: 64px;
}

/* Traditional vs Digital Page */
.traditional-digital-page {
  background: #e8ecf0;
  padding: 60px 20px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.traditional-digital-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.traditional-digital-header {
  text-align: center;
  margin-bottom: 40px;
}

.traditional-digital-header h1 {
  font-size: 44px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #1a2d4d;
}

.traditional-digital-header p {
  font-size: 20px;
  margin: 0;
  color: #111;
  font-weight: 500;
}

.traditional-digital-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.column-pill {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0 auto -18px auto;
  font-size: 18px;
  position: relative;
  z-index: 2;
}

.column-pill-traditional {
  background: #0b1b33;
}

.column-pill-digital {
  background: #e9dfd5;
  color: #0b1b33;
}

.column-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 30px 10px 30px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
}

.column-track {
  position: relative;
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  padding-top: 10px;
}

.column-track::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 18px;
  height: calc(100% - 20px);
  border-radius: 30px;
  background: #dfe4ed;
}

.column-track-traditional::before {
  background: linear-gradient(180deg, #0b1b33 0%, #3f5e8f 35%, #c6cfdf 70%, #ff8c42 100%);
}

.column-track-digital::before {
  background: linear-gradient(180deg, #e9dfd5 0%, #ff8c42 35%, #c6cfdf 70%, #0b1b33 100%);
}

.track-dot {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0b1b33;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 16px;
}

.column-track-digital .track-dot {
  background: #e9dfd5;
  color: #0b1b33;
}

.column-track-digital .track-dot-02 {
  background: #ff8c42;
  color: #fff;
}

.column-track-digital .track-dot-03 {
  background: #c6cfdf;
  color: #1a2d4d;
  top: 10px;
}

.column-track-digital .track-dot-04 {
  background: #3f5e8f;
  color: #fff;
  top: 30px;
}

.column-track-digital .track-dot-05 {
  background: #0b1b33;
  color: #fff;
  top: 40px;
}

.column-track-traditional .track-dot-01 {
  background: #0b1b33;
}

.column-track-traditional .track-dot-02 {
  background: #3f5e8f;
  top: 10px;
}

.column-track-traditional .track-dot-03 {
  background: #c6cfdf;
  color: #1a2d4d;
  top: 20px;
}

.column-track-traditional .track-dot-04 {
  background: #ff8c42;
  top: 40px;
}

.column-track-traditional .track-dot-05 {
  background: #e9dfd5;
  color: #1a2d4d;
  top: 50px;
}

.track-dot::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  width: 28px;
  border-top: 2px dotted #9aa3b3;
  transform: translateY(-50%);
}

.column-steps {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-top: 6px;
}

.step-item {
  padding-bottom: 16px;
  border-bottom: 2px solid #e8ecf0;
}

.step-item:last-child {
  border-bottom: none;
}

.step-item h3 {
  margin: 0 0 6px 0;
  font-size: 20px;
  color: #111;
  font-weight: 700;
}

.step-item p {
  margin: 0;
  font-size: 16px;
  color: #222;
  line-height: 1.5;
}

/* Digital Adoption Cycle Page */
.digital-adoption-page {
  background: #e8ecf0;
  padding: 60px 20px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.digital-adoption-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.digital-adoption-header {
  text-align: center;
}

.digital-adoption-header h1 {
  font-size: 44px;
  font-weight: 700;
  color: #1a2d4d;
  margin: 0 0 12px 0;
}

.digital-adoption-header p {
  font-size: 20px;
  color: #111;
  margin: 0;
  font-weight: 500;
}

.digital-adoption-steps {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.digital-adoption-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 40px;
}

.cycle-text-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: start;
  width: 100%;
}

.cycle-text-item {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.cycle-text-item h3 {
  font-size: 18px;
  margin: 0 0 4px 0;
  color: #3d6298;
  font-weight: 700;
}

.cycle-sub {
  font-size: 15px;
  margin: 0 0 10px 0;
  color: #1a2d4d;
  font-weight: 500;
}

.cycle-label {
  font-size: 15px;
  margin: 10px 0 6px 0;
  font-weight: 700;
  color: #111;
}

.cycle-text-item ol {
  margin: 0 0 8px 18px;
  padding: 0;
  text-align: left;
  font-size: 14px;
  color: #222;
  line-height: 1.5;
}

.cycle-note {
  font-size: 14px;
  color: #222;
  margin: 6px 0 0 0;
  line-height: 1.5;
}

.cycle-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cycle-badge {
  position: relative;
  width: 180px;
  height: 140px;
  margin-bottom: 20px;
}

.cycle-number {
  position: absolute;
  left: -10px;
  top: 10px;
  font-size: 64px;
  font-weight: 700;
  color: #c7cedf;
  z-index: 1;
}

.cycle-circle {
  position: absolute;
  right: 0;
  top: 20px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.cycle-circle svg {
  width: 48px;
  height: 48px;
}

.cycle-circle-dark {
  background: #0b1b33;
}

.cycle-circle-blue {
  background: #3f5e8f;
}

.cycle-circle-light {
  background: #c6cfdf;
}

.cycle-circle-orange {
  background: #ff8c42;
}

.cycle-circle-beige {
  background: #e9dfd5;
}

.cycle-text h3 {
  font-size: 18px;
  margin: 0 0 4px 0;
  color: #1a2d4d;
  font-weight: 700;
}

.cycle-sub {
  font-size: 15px;
  margin: 0 0 10px 0;
  color: #1a2d4d;
  font-weight: 500;
}

.cycle-label {
  font-size: 15px;
  margin: 10px 0 6px 0;
  font-weight: 700;
  color: #111;
}

.cycle-text ol {
  margin: 0 0 8px 18px;
  padding: 0;
  text-align: left;
  font-size: 14px;
  color: #222;
  line-height: 1.5;
}

.cycle-note {
  font-size: 14px;
  color: #222;
  margin: 6px 0 0 0;
}

/* ===== IMPLEMENTATION ROADMAP SECTION ===== */
.roadmap-page {
  background: #f5f7fb;
  padding: 60px 20px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.roadmap-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.roadmap-header {
  text-align: center;
  margin-bottom: 50px;
}

.roadmap-header h1 {
  font-size: 44px;
  font-weight: 700;
  color: #0b1b33;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.ram-highlight {
  color: #ffd700;
  font-weight: 700;
}

.roadmap-header p {
  font-size: 20px;
  color: #2d3748;
  margin: 0;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.roadmap-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.roadmap-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.roadmap-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.roadmap-column {
  width: 100%;
}

.column-track-roadmap::before {
  background: linear-gradient(180deg, #e9dfd5 0%, #ff8c42 33%, #c6cfdf 66%, #0b1b33 100%);
}

.column-track-roadmap .track-dot-01 {
  background: #e9dfd5;
  color: #0b1b33;
}

.column-track-roadmap .track-dot-02 {
  background: #ff8c42;
  color: #fff;
  top:60px;
}

.column-track-roadmap .track-dot-03 {
  background: #c6cfdf;
  color: #1a2d4d;
  top: 140px;
}

.column-track-roadmap .track-dot-04 {
  background: #0b1b33;
  color: #fff;
  top: 220px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .roadmap-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #0b1b33;
  color: #ffffff;
  padding: 60px 20px 30px;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.footer-brand p {
  font-size: 16px;
  color: #c6cfdf;
  margin: 0;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #c6cfdf;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #c6cfdf;
  margin: 0;
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer {
    padding: 40px 40px 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer {
    padding: 40px 15px 20px;
  }
  
  .screen {
    padding: 40px 15px;
  }
  
  .gap-container {
    padding: 0 15px;
  }
}

/* Prevent horizontal scrolling on all screen sizes */
@media (max-width: 768px) {
  .control-plane-container,
  .traditional-digital-container,
  .digital-adoption-container,
  .roadmap-container {
    padding: 0 15px;
  }
  
  .screen {
    padding: 40px 15px;
  }

  .container {
    padding-top: 90px;
  }
  
  .main-nav {
    height: 60px;
    padding: 0 15px;
  }
  
  .nav-brand {
    font-size: 20px;
  }
  
  .nav-menu {
    gap: 15px;
  }
  
  .nav-link {
    font-size: 13px;
  }
  
  .nav-signin-btn {
    padding: 8px 18px;
    font-size: 13px;
    margin-left: 15px;
  }
}

@media (max-width: 600px) {
  .nav-menu {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-link {
    font-size: 12px;
  }
  
  .main-nav {
    flex-direction: row;
    height: auto;
    padding: 10px 15px;
    flex-wrap: wrap;
  }
  
  .nav-signin-btn {
    padding: 8px 16px;
    font-size: 12px;
    margin-left: 10px;
  }
  
  .container {
    padding-top: 120px;
  }
}

/* ===== SECTION ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Initial state for sections */
.screen {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.screen.animate-in {
  opacity: 1;
}

/* Stagger animations for child elements */
.gap-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.gap-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.gap-item:nth-child(1) { transition-delay: 0.1s; }
.gap-item:nth-child(2) { transition-delay: 0.2s; }
.gap-item:nth-child(3) { transition-delay: 0.3s; }
.gap-item:nth-child(4) { transition-delay: 0.4s; }
.gap-item:nth-child(5) { transition-delay: 0.5s; }

.control-card {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.control-card.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.control-cards-left .control-card:nth-child(1) { transition-delay: 0.1s; }
.control-cards-left .control-card:nth-child(2) { transition-delay: 0.2s; }
.control-cards-left .control-card:nth-child(3) { transition-delay: 0.3s; }
.control-cards-right .control-card:nth-child(1) { transition-delay: 0.2s; }
.control-cards-right .control-card:nth-child(2) { transition-delay: 0.4s; }

.cycle-text-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.cycle-text-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.cycle-text-item:nth-child(1) { transition-delay: 0.1s; }
.cycle-text-item:nth-child(2) { transition-delay: 0.2s; }
.cycle-text-item:nth-child(3) { transition-delay: 0.3s; }
.cycle-text-item:nth-child(4) { transition-delay: 0.4s; }
.cycle-text-item:nth-child(5) { transition-delay: 0.5s; }

.column-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.column-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.roadmap-stage {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.roadmap-stage.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.roadmap-stage:nth-child(1) { transition-delay: 0.1s; }
.roadmap-stage:nth-child(2) { transition-delay: 0.2s; }
.roadmap-stage:nth-child(3) { transition-delay: 0.3s; }
.roadmap-stage:nth-child(4) { transition-delay: 0.4s; }

/* Hero section special animation */
.hero {
  opacity: 1;
  animation: fadeIn 1s ease-out forwards;
}

.hero-logo {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.1s forwards;
}

.hero-text h1 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-text p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.hero-header-image {
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 1s ease-out 0.4s forwards;
}

/* Ensure hero animates immediately */
.hero.animate-in {
  opacity: 1;
}

/* Image animations */
.roadmap-image,
.digital-adoption-image,
.cylinder-stack img {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.roadmap-image.animate-in,
.digital-adoption-image.animate-in,
.cylinder-stack.animate-in img {
  opacity: 1;
  transform: scale(1);
}

/* Section headers animation */
.gap-title,
.control-plane-title,
.digital-adoption-header h1,
.traditional-digital-header h1,
.roadmap-header h1 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.gap-title.animate-in,
.control-plane-title.animate-in,
.digital-adoption-header h1.animate-in,
.traditional-digital-header h1.animate-in,
.roadmap-header h1.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.gap-subtitle,
.control-plane-subtitle,
.digital-adoption-header p,
.traditional-digital-header p,
.roadmap-header p {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.gap-subtitle.animate-in,
.control-plane-subtitle.animate-in,
.digital-adoption-header p.animate-in,
.traditional-digital-header p.animate-in,
.roadmap-header p.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ff8c42;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
}

.scroll-to-top:active {
  transform: translateY(-1px);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .scroll-to-top svg {
    width: 18px;
    height: 18px;
  }
}

.hero-see-it {
  text-align: center;

}

.btn {
  padding: 10px 20px;
  margin: 10px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform-origin: center;
  text-decoration: none;
}

/* 1. Pulse Animation */
.btn-pulse {
  background: #1d78c2;
  background: linear-gradient(90deg,rgba(29, 120, 194, 1) 0%, rgba(73, 175, 191, 1) 70%, rgba(0, 212, 255, 1) 100%);
  color: white;
  font-weight: 600;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* ===== REQUEST DEMO ===== */
.demo-section {
  background: #0b1b33;
  color: #ffffff;
  padding: 80px 20px;
}

/* ===== PARTNER SECTION ===== */
.partner-section {
  background: linear-gradient(180deg, #0b1b33 0%, #1a2d4d 40%, #3f5e8f 100%);
  color: #ffffff;
  padding: 90px 20px;
}

.partner-container {
  max-width: 1200px;
  margin: 0 auto;
}

.partner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.partner-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: #ff8c42;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.partner-text h2 {
  margin: 0 0 14px 0;
  font-size: 40px;
}

.partner-text p {
  margin: 0 0 24px 0;
  color: #d6deec;
  line-height: 1.6;
}

.partner-points {
  display: grid;
  gap: 12px;
}

.partner-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.partner-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff8c42;
  color: #0b1b33;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.partner-form {
  background: #ffffff;
  color: #0b1b33;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 16px;
}

.partner-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.partner-form input,
.partner-form textarea,
.partner-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dfe4ed;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  background: #ffffff;
}

.partner-form input:focus,
.partner-form textarea:focus,
.partner-form select:focus {
  outline: none;
  border-color: #3f5e8f;
  box-shadow: 0 0 0 2px rgba(63, 94, 143, 0.15);
}

.partner-submit {
  width: 50%;
  margin: 0;
}

.demo-container {
  max-width: 1200px;
  margin: 0 auto;
}

.demo-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.demo-text h2 {
  margin: 0 0 12px 0;
  font-size: 40px;
}

.demo-text p {
  margin: 0 0 24px 0;
  color: #c6cfdf;
  line-height: 1.6;
}

.demo-points {
  display: grid;
  gap: 12px;
}

.demo-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}

.demo-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ff8c42;
  color: #0b1b33;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.demo-form {
  background: #ffffff;
  color: #0b1b33;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 16px;
}

.demo-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dfe4ed;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
}

.demo-form input:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: #3f5e8f;
  box-shadow: 0 0 0 2px rgba(63, 94, 143, 0.15);
}

.demo-submit {
  width: 50%;
  margin: 0;
}

@media (max-width: 900px) {
  .partner-content {
    grid-template-columns: 1fr;
  }

  .partner-text h2 {
    font-size: 32px;
  }

  .demo-content {
    grid-template-columns: 1fr;
  }

  .demo-text h2 {
    font-size: 32px;
  }
}

/* ===== PRODUCT PAGE ===== */
.product-page {
  padding-top: 70px;
  background: #f4f7fb;
}

.product-hero {
  padding: 120px 20px 80px;
  background: #f5f7fb;
}

.product-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.product-hero-text h1 {
  font-size: 48px;
  margin: 0 0 16px 0;
  color: #0b1b33;
}

.product-hero-text p {
  font-size: 18px;
  color: #1a2d4d;
  margin: 0 0 24px 0;
}

.product-kicker {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff8c42;
  margin-bottom: 12px;
}

.product-kicker-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
}

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

.product-secondary-btn {
  background: #0b1b33;
  color: #ffffff;
}

.product-hero-image {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 14px 30px rgba(11, 27, 51, 0.15);
}

.product-section {
  padding: 80px 20px;
  background: #ffffff;
}

.product-section.alt {
  background: #e8ecf0;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  margin: 0 0 12px 0;
  color: #1a2d4d;
}

.section-subtitle {
  font-size: 18px;
  margin: 0 0 30px 0;
  color: #4a5568;
}

.security-lead {
  font-size: 16px;
  color: #2d3748;
  line-height: 1.7;
  margin: 0 0 30px 0;
}

.feature-grid,
.pricing-grid,
.security-grid,
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-slider {
  position: relative;
  margin-top: 30px;
}

.feature-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding: 10px 6px 20px;
  scroll-snap-type: x mandatory;
  scroll-padding: 10px;
  -webkit-overflow-scrolling: touch;
}

.feature-track::-webkit-scrollbar {
  height: 6px;
}

.feature-track::-webkit-scrollbar-thumb {
  background: rgba(11, 27, 51, 0.3);
  border-radius: 10px;
}

.feature-slide {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  scroll-snap-align: start;
}

.feature-screenshot {
  background: #f4f7fb;
  border-radius: 12px;
  padding: 12px;
}

.feature-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.feature-text h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  color: #0b1b33;
}

.feature-text p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}

.feature-hint {
  margin-top: 10px;
  font-size: 13px;
  color: #64748b;
  text-align: right;
}

.security-grid {
  grid-template-columns: repeat(2, 1fr);
}

.security-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.security-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.security-card h3 {
  margin: 0;
  font-size: 20px;
  color: #0b1b33;
}

.security-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #0b1b33;
  color: #ff8c42;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.security-icon svg {
  width: 24px;
  height: 24px;
}

.security-list {
  margin: 0;
  padding-left: 18px;
  color: #4b5563;
  line-height: 1.6;
  font-size: 14px;
}

.security-result {
  margin: 0;
  font-weight: 600;
  color: #1a2d4d;
}

.security-summary {
  margin-top: 30px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.security-summary h3 {
  margin: 0 0 12px 0;
  font-size: 22px;
  color: #0b1b33;
}

.security-summary p {
  margin: 0 0 12px 0;
  color: #4b5563;
  line-height: 1.6;
}

.security-summary p:last-child {
  margin-bottom: 0;
}

.feature-card,
.security-item,
.docs-card,
.price-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.feature-card h3,
.security-item h3,
.docs-card h3,
.price-card h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  color: #0b1b33;
}

.feature-card p,
.security-item p,
.docs-card p,
.price-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}

.price {
  font-size: 32px;
  font-weight: 700;
  margin: 12px 0;
  color: #0b1b33;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.price-list li {
  margin-bottom: 8px;
  color: #4b5563;
}

.price-card.highlight {
  border: 1px solid #ff8c42;
  box-shadow: 0 16px 32px rgba(255, 140, 66, 0.2);
}

.product-cta {
  background: #0b1b33;
  color: #ffffff;
  padding: 70px 20px;
  text-align: center;
}

.product-cta p {
  color: #c6cfdf;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .product-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-hero-actions {
    justify-content: center;
  }

  .feature-grid,
  .pricing-grid,
  .security-grid,
  .docs-grid {
    grid-template-columns: 1fr;
  }

  .product-hero-text h1 {
    font-size: 40px;
  }
}
.request-submit{
  text-align: center;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: none;
  padding: 20px;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(100%);
}

.cookie-consent.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  /* background: transparent; */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(11, 27, 51, 0.1);
  border-radius: 12px;
  padding: 20px 60px 20px 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-consent-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #0b1b33;
}

.cookie-consent-text {
  margin: 0;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
}

.cookie-consent-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #0b1b33;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
  line-height: 1;
}

.cookie-consent-close:hover {
  background: rgba(11, 27, 51, 0.1);
  color: #ff8c42;
}

.cookie-consent-close:active {
  transform: scale(0.95);
}

/* Responsive styles for cookie consent */
@media (max-width: 768px) {
  .cookie-consent {
    padding: 15px;
  }
  
  .cookie-consent-content {
    padding: 16px 50px 16px 16px;
  }
  
  .cookie-consent-title {
    font-size: 16px;
  }
  
  .cookie-consent-text {
    font-size: 13px;
  }
  
  .cookie-consent-close {
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    font-size: 24px;
  }
}


ul.slides {
  display: block;
  position: relative;
  height: 400px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
}

.slides * {
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

ul.slides input {
  display: none; 
}


.slide-container { 
  display: block; 
}

.slide-image {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0;
  transition: all .7s ease-in-out;
}   

.slide-image img {
  width: auto;
  min-width: 100%;
  height: 100%;
}

.carousel-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  font-size: 100px;
  line-height: 600px;
  color: #fff;
}

.carousel-controls label {
  display: none;
  position: absolute;
  padding: 0 20px;
  opacity: 0;
  transition: opacity .2s;
  cursor: pointer;
}

.slide-image:hover + .carousel-controls label{
  opacity: 0.5;
}

.carousel-controls label:hover {
  opacity: 1;
}

.carousel-controls .prev-slide {
  width: 49%;
  text-align: left;
  left: 0;
}

.carousel-controls .next-slide {
  width: 49%;
  text-align: right;
  right: 0;
}

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 999;
  text-align: center;
}

.carousel-dots .carousel-dot {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
  margin: 10px;
}

input:checked + .slide-container .slide-image {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1s ease-in-out;
}

input:checked + .slide-container .carousel-controls label {
   display: block; 
}

input#img-1:checked ~ .carousel-dots label#img-dot-1,
input#img-2:checked ~ .carousel-dots label#img-dot-2,
input#img-3:checked ~ .carousel-dots label#img-dot-3,
input#img-4:checked ~ .carousel-dots label#img-dot-4,
input#img-5:checked ~ .carousel-dots label#img-dot-5,
input#img-6:checked ~ .carousel-dots label#img-dot-6 {
opacity: 1;
}


input:checked + .slide-container .nav label { display: block; }

.arrow-right{
  font-weight: 600;
  font-size: larger;
}