:root{
  --blue: #1d7fc6;          /* primary accent (matches frame vibe) */
  --blue2: #2d8fe0;
  --text: #0a0a0a;
  --muted: #5d646b;
  --line: rgba(0,0,0,.12);
  --cardLine: rgba(0,0,0,.16);

  --shadow: 0 10px 28px rgba(0,0,0,.10);
  --pillShadow: 0 8px 18px rgba(0,0,0,.10);

  --container: 1080px;
  --radius: 18px;
  --radiusLg: 28px;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: none; }
img{ max-width: 100%; display: block; }
button,input,textarea{ font: inherit; }

/* Form Overlay Styles */
.formOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
  z-index: 10;
}

.formOverlay.show {
  display: flex;
}

.formLoader {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(29, 127, 198, 0.2);
  border-top: 4px solid var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.formSuccess {
  display: none;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  opacity: 0.5;
}

.formOverlay.success .formLoader {
  display: none;
}

.formOverlay.success .formSuccess {
  display: block;
}

.container{
  width: 85%;
  margin-inline: auto;
  fill: #FFF;
  stroke-width: 1px;
  stroke: rgba(0, 0, 0, 0.41);
  opacity: 0.9;
  /*filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.23));*/
}

/* ---------- Header pill ---------- */
.top{ padding: 30px 0 6px; position: relative; z-index: 100; }

.navPill{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 10px 24px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.18);
  box-shadow: var(--pillShadow);
}

.brand{
  display: inline-flex;
  align-items: center;  
  gap: 8px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brandFooter{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brandText{ font-size: 20px; }
.brandMark{
  width: 18px; height: 18px;
  border-radius: 6px;
  background: radial-gradient(circle at 30% 30%, #8fd3ff, var(--blue));
  box-shadow: 0 2px 10px rgba(29,127,198,.28);
}

.navLinks{
  display: flex;
  gap: 65px;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.navLinks a{
  text-align: center;
  font-family: Poppins;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.1rem;
}
.navLinks a:hover{ color: var(--blue); }

.navActions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  transition: transform .12s ease, filter .12s ease, background .12s ease, border-color .12s ease;
}
.btn:active{ transform: translateY(1px); }

.btnBooking{
  background: linear-gradient(90deg,rgba(8, 92, 169, 1) 0%, rgba(3, 36, 67, 1) 100%);  
  box-shadow: 0 8px 18px rgba(29,127,198,.25);
  display: flex;
  width: 15.6875rem;
  height: 3.1875rem;
  padding: 0.625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  color: #F7F7F7;
  text-align: center;
  font-family: Poppins;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.1rem;
}
.btnBooking:hover{ filter: brightness(1.03); }

.btnBooking2{
  display: flex;
  width: 14.5rem;
  height: 2.75rem;
  padding: 0.625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.625rem;
  background: linear-gradient(257deg, #075BA8 0%, #097DC2 50%, #70B5E4 100%);
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.btnBooking2:hover{ filter: brightness(1.03); }

.btnPrimary{
  background: linear-gradient(90deg,rgba(8, 92, 169, 1) 0%, rgba(3, 36, 67, 1) 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(29,127,198,.25);
}
.btnPrimary:hover{ filter: brightness(1.03); }

.btnOutline{
  display: flex;
  width: auto;
  height: 2.75rem;
  padding: 0.625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.625rem;
  border: 1px solid #0870B8;
  background: #FFF;
  color: #0866B1;
  text-align: center;
  font-family: Inter;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 3.375rem */

}
.btnOutline:hover{
  background: rgba(29,127,198,.06);
  border-color: rgba(29,127,198,.55);
}

.btnWide{
  height: 36px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: none;
}

.playMini{
  width: 0; height: 0;
  border-left: 10px solid var(--blue);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-right: 8px;
}

.navToggle{
  display: none;
  width: 38px; height: 34px;
  border-radius: 999px;
  border: 0px solid rgba(0,0,0,.18);
  background: #fff;
}
.navToggle span{
  display: block;
  height: 2px;
  margin: 5px 10px;
  background: #111;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero{ padding: 45px 0 0; text-align: center; }
.heroInner{ display: grid; place-items: center; }

.heroTitle{
  margin: 18px 0 8px;
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 4.25rem; /* 104.167% */
  letter-spacing: -0.1rem;
}
.heroTitleBlack{ color: #0a0a0a; }
.heroTitleBlue{ 
  background-image: linear-gradient(90deg,rgba(45, 164, 226, 1) 0%, rgba(2, 21, 64, 1) 100%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  
}

.heroSub{
  width: 56.1875rem;
  color: rgba(0, 0, 0, 0.75);
  text-align: center;
  font-family: Poppins;
  font-size: 1.2rem;
  font-style: normal;  
  line-height: 2.25rem; /* 104.167% */  
}
.heroSub strong{ color: rgba(0, 0, 0, 0.75); font-weight: 800; }

.heroStat{
  margin: 4px 0 0;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
  font-family: Poppins;
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6rem;
}

.heroCtas{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 36px 0 18px;
  flex-wrap: wrap;
}

.metrics{
  width: 95%;
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.metric{
  display: grid;
  gap: 6px;
  padding: 0 50px;
}
.metricTop{
  background: linear-gradient(180deg, #0872BA 0%, #043354 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: Poppins;
  font-size: 2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.375rem; /* 59.375% */
  letter-spacing: -0.1rem;
}
.metricBottom{  
  color: rgba(0, 0, 0, 0.75);
  text-align: center;
  font-family: Poppins;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 2.8125rem */
}

.divider{
  width: 100%;
  border: none;
  height: 1px;
  background: rgba(0,0,0,.18);
  margin: 50px 0 0;
}

/* ---------- Meet / video ---------- */
.meet{ padding: 60px 0 0; text-align: center; }

.sectionTitle{
  margin: 0;
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 2.3rem;
  font-style: normal;
  font-weight: 600;  
  letter-spacing: -0.1rem;
}

.sectionTitle .blue{
  background: linear-gradient(90deg, #2DA4E2 0%, #021540 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Poppins;
  font-size: 2.3rem;
  font-style: normal;
  font-weight: 600;  
  letter-spacing: -0.1rem;
}

.sectionSub{
  margin: 6px 0 0;
  color: #0a0a0a;
  text-align: center;
  font-family: Poppins;
  font-size: 1.55rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.04rem;
}

.sectionDesc{
  margin: 8px 0 0;
  color: rgba(0, 0, 0, 0.55);
  text-align: center;
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
}

.blue{ color: var(--blue); }

.useCaseBadge{
  display: inline-block;  
  padding: 5px 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  margin: 12px auto 0;
  text-transform: uppercase;
  color: #0a0a0a;
}

.videosGrid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 40px auto;
  max-width: 880px;
}

.videoWrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.videoWrapper .videoCard{
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 0;
}

#demo{
  background-image: url(./assets/cpg_usecase_banner.png);
}


.videoCard{
  width: min(880px, 100%);
  height: 500px;
  margin: 50px auto 50px;

  border-radius: var(--radiusLg);
  overflow: hidden;
  position: relative;

  /* Swap this background with your exported texture if you have it */
  background: url(./assets/cpg_usecase_banner.png) lightgray 50% / cover no-repeat;

  box-shadow: var(--shadow);
}

.videoCard--fashion{
  background-image: url(./assets/fashion_usecase_banner.png);
}

.videoPlay{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  border: 4px solid rgba(255,255,255,.85);
  background: rgba(0,0,0,.08);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.videoPlay:hover{ background: rgba(0,0,0,.12); }

.videoPlayIcon{
  width: 0; height: 0;
  border-left: 28px solid rgba(255,255,255,.95);
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  margin-left: 6px;
}

/* ---------- Features panel ---------- */
.featuresPanel{
  margin-top: 5rem;
  margin-bottom: 3rem;
  width: 100%;
  height: 23rem;  
  aspect-ratio: 94/163;
  border-radius: 2.0rem;
  background: url('./assets/feature_background.svg') white 50% / cover no-repeat;
}

.featuresHead{
  padding: 45px 0;
  color: #0760AC;
  text-align: center;
  font-family: Poppins;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 3.75rem; /* 125% */
  letter-spacing: -0.06rem;
}

.featuresGrid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  text-align: left;

  
}

.feature{
  margin: 0 20px;
  padding: 14px 28px 16px;
  min-height: 125px;
  position: relative;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
}

.feature:not(:first-child)::before{
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: rgba(0,0,0,.10);
}

.feature h3{
  margin: 0 0 6px;
  color: #0865B0;
  font-family: Poppins;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 3rem */
}
.feature p{
  margin: 0;
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 2.25rem */
}

/* ---------- Why We Exist ---------- */
.whyExist{
  padding: 70px 0;
  background: linear-gradient(135deg, #021540 0%, #075BA8 55%, #021540 100%);
}

.whyExistInner{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.whyBadge{
  display: inline-block;
  padding: 6px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-family: Poppins;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.whyTitle{
  margin: 0;
  color: #fff;
  font-family: Poppins;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.06rem;
  max-width: 720px;
}

.whyBody{
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 580px;
}

.whyBody p{
  margin: 0;
  color: rgba(255,255,255,0.65);
  font-family: Poppins;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.9;
}

.whyBody p:last-child{
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin-top: 8px;
}

/* ---------- Enterprise ---------- */
.enterprise{ padding: 50px 0 0; text-align: center; background: #fff; }

.enterpriseTitle{
  margin: 10px 0 4px;
  text-align: center;
  font-family: Poppins;
  font-size: 2.3rem;
  font-style: normal;
  font-weight: 600;  
  letter-spacing: -0.1rem;


  background: linear-gradient(90deg, #2DA4E2 0%, #021540 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.enterpriseSub{
  margin: 0 0 18px;
  color: rgba(0, 0, 0, 0.75);
  text-align: center;
  font-family: Poppins;
  font-size: 0.775rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 2.8125rem */
}

.enterpriseCards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 45px;
  align-items: stretch;
  margin: 35px;
  padding: 30px 0;
}

.eCard{
  text-align: left;
  border: 1px solid rgba(0,0,0,.22);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
}
.eIcon{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(29,127,198,.10);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 16px;
  margin-bottom: 10px;
}
.eCard h3{
  margin: 0 0 6px;
  font-family: Poppins;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.04rem;
}
.eCard p{
  margin: 0;
  color: #828282;
  font-family: Poppins;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 2.25rem */
}

.dividerSpace{ margin-top: 24px; }

/* ---------- Differentiation ---------- */
.differentiation{
  padding: 80px 0;
  background: #fff;
}

.diffInner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.diffBadge{
  display: inline-block;
  padding: 5px 18px;
  border-radius: 999px;
  border: 1px solid rgba(8, 114, 186, 0.35);
  background: rgba(8, 114, 186, 0.07);
  color: #0872BA;
  font-family: Poppins;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.diffTitle{
  margin: 0 0 24px;
  font-family: Poppins;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.05rem;
  background: linear-gradient(90deg, #2DA4E2 0%, #021540 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.diffBody p{
  margin: 0 0 10px;
  color: rgba(0,0,0,0.65);
  font-family: Poppins;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
}

.diffList{
  list-style: none;
  margin: 6px 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.diffList li{
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(0,0,0,0.75);
  font-family: Poppins;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}

.diffList li::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2DA4E2, #075BA8);
  flex-shrink: 0;
}

.diffClosing{
  margin-top: 16px !important;
  color: #0a0a0a !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
}

.diffCallout{
  position: relative;
  padding: 40px 36px 36px;
  border-radius: 20px;
  background: linear-gradient(145deg, #021540 0%, #075BA8 100%);
  box-shadow: 0 20px 50px rgba(7, 91, 168, 0.28);
  overflow: hidden;
}

.diffQuoteMark{
  display: block;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 0.7;
  color: rgba(255,255,255,0.15);
  margin-bottom: 16px;
  user-select: none;
}

.diffQuoteText{
  margin: 0;
  color: #fff;
  font-family: Poppins;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: -0.02rem;
}

/* ---------- Contact ---------- */
.contact{ 
  margin: 30px 0;
  padding: 26px 0 34px;
}
.contactGrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.contactLeft{
  padding: 0 35px;
}

.contactTitle{
  margin: 0 0 15px;  
  color: #000;
  font-family: Poppins;
  font-size: 2.3rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.5rem; /* 104.167% */
  letter-spacing: -0.1rem;
}

.contactTitle .blue{
  background: linear-gradient(90deg, #2DA4E2 0%, #021540 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contactSub{
  margin: 0 0 14px; 
  color: rgba(0, 0, 0, 0.75);
  font-family: Poppins;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 2.8125rem */
}

.contactNotes{
  display: grid;
  gap: 15px;
  margin-top: 20px;
}
.note{
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.noteIcon{
  width: 36px; height: 36px;
  background: rgba(29,127,198,.12);
  display: grid;
  place-items: center;
  border-radius: 0.2875rem;
  background: rgba(21, 146, 230, 0.73);
}
.noteTitle{
  color: rgba(0, 0, 0, 0.75);
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 2.8125rem */
}
.noteText{  
  margin-top: 2px;
  color: rgba(0, 0, 0, 0.75);
  font-family: Poppins;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.formCard{
  position: relative;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(29,127,198,.10);
  border-radius: 0.5rem;
  border: 1px solid #1592E6;
  background: #FFF;
}

.row2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}

.field{
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
}
.field span{
  color: #0C0C0C;
  font-family: Poppins;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5rem; /* 120% */
}
.field input,
.field textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.20);
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 11px;
  outline: none;
}
.field input:focus,
.field textarea:focus{
  border-color: rgba(29,127,198,.70);
  box-shadow: 0 0 0 3px rgba(29,127,198,.12);
}

.btnFull{
  width: 100%;
  height: 34px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: none;
  border-radius: 0.325rem;
  background: linear-gradient(257deg, #075BA8 0%, #097DC2 50%, #70B5E4 100%);
}

/* ---------- Footer ---------- */
.footer{
  border-top: 1px solid rgba(0,0,0,.18);
  padding: 16px 0;
}
.footerInner{
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr;
  gap: 10px;
  align-items: center;
}

.brandSmall .brandText{ font-size: 16px; }
.brandSmall .brandMark{ width: 14px; height: 14px; border-radius: 5px; }

.footerLeft{
  display: flex;
  align-items: center;
  gap: 10px;
}
.footerTag{
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.1rem;

  background: linear-gradient(89deg, #70B5E4 0.24%, #075BA8 100.51%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footerLinks{
  justify-self: center;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #808080;
  font-family: Poppins;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.07188rem;

}
.footerLinks a:hover{ color: var(--blue); }
.sep{ opacity: .7; }

.footerRight{
  justify-self: end;
  color: #9B9B9B;
  font-family: Poppins;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 400;
}

/* ---------- Responsive ---------- */
/* Compact navigation (1024px and below) */
@media (max-width: 1024px){
  .navPill {
    justify-content: space-between;
    align-items: center;
    gap: 0;
    position: relative;
  }
  .navActions {
    display: flex;
    align-items: center;
    gap: 10px;
    order: -1;
  }
  .navToggle {
    display: inline-block;
    width: 38px;
    height: 34px;
  }
  .brand {
    flex: 1;
    display: flex;
    margin-right: 13%;
    justify-content: center;
  }
  .navLinks {
    display: none;
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.18);
    border-radius: 16px;
    box-shadow: var(--pillShadow);
    padding: 16px;
    flex-direction: column;
    gap: 0;
    z-index: 999;
    max-height: 80vh;
    overflow-y: auto;
    width: auto;
  }
  .navLinks a {
    font-size: 1rem;
    padding: 12px 0;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,.08);
    color: #000;
  }
  .navLinks a:last-child {
    border-bottom: none;
  }
  .navLinks .btnBookingMobile {
    display: none;
    border: none;
    border-top: 1px solid rgba(0,0,0,.12);
    margin-top: 12px;
    padding: 12px 0;
    color: #FFF;
    font-size: 1rem;
  }
  .btnBookingDesktop {
    display: none;
  }
  .navLinks.isOpen {
    display: flex;
  }
  .navLinks.isOpen .btnBookingMobile {
    display: flex;
    width: 100%;
    height: auto;
    padding: 12px 0;
  }
}

/* Desktop (over 1024px) */
@media (min-width: 1025px) {
  .navPill {
    justify-content: space-between;
  }
  .navLinks {
    display: flex;
    gap: 65px;
    align-items: center;
  }
  .btnBookingMobile {
    display: none !important;
  }
  .btnBookingDesktop {
    display: inline-flex;
  }
  .navToggle {
    display: none;
  }
  .navActions {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

/* Tablets & medium screens (900px and below) */
@media (max-width: 900px){
  .container { width: 90%; }
  .top { padding: 20px 0 4px; }
  .navPill { gap: 10px; padding: 8px 18px; }
  .brandText { font-size: 16px; }
  .brandMark { width: 14px; height: 14px; border-radius: 4px; }
  .navLinks { gap: 35px; }
  .navLinks a { font-size: 1.1rem; }
  .btnBooking { width: 12rem; height: 2.5rem; font-size: 1.1rem; }
  .btnPrimary { display: inline-flex; }
  .heroTitle { font-size: 3.5rem; line-height: 3.75rem; }
  .heroSub { width: 100%; font-size: 1.1rem; padding: 0 15px; }
  .heroCtas { gap: 30px; }
  .btnBooking2, .btnOutline { width: 280px; font-size: 1rem; }
  .metrics { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
  .metric { padding: 0 30px; }
  .metricTop { font-size: 1.8rem; }
  .metricBottom { font-size: 1rem; }
  .videoCard { height: 400px; margin: 40px auto; }
  .sectionTitle { font-size: 2rem; }
  .featuresGrid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .feature { margin: 0 15px; padding: 12px 20px; min-height: auto; }
  .feature h3 { font-size: 1.1rem; }
  .feature p { font-size: 0.7rem; }
  .feature:not(:first-child)::before { display: block; }
  .whyExist { padding: 55px 0; }
  .whyTitle { font-size: 2.1rem; }
  .whyBody p { font-size: 0.95rem; }
  .differentiation { padding: 60px 0; }
  .diffInner { gap: 40px; }
  .diffTitle { font-size: 1.65rem; }
  .enterpriseTitle { font-size: 2.1rem; }
  .enterpriseCards { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 30px; margin: 25px; }
  .eCard { padding: 14px; }
  .contactGrid { grid-template-columns: 1fr; gap: 30px; }
  .contactLeft { padding: 0 20px; }
  .contactRight { margin-top: 0; padding: 0 20px; }
  .contactTitle { font-size: 2rem; }
  .footerInner { gap: 15px; text-align: center; }
  .footerRight { justify-self: center; }
  .footerLinks { justify-self: center; }
  .footerLeft { justify-content: center; }
}

/* Small tablets (720px and below) */
@media (max-width: 720px){
  .container { width: 92%; }
  .top { padding: 20px 0 4px; }
  .navPill { gap: 12px; padding: 8px 20px; }
  .brandText { font-size: 18px; }
  .navLinks {
    display: none;
    position: absolute;
    left: 12px;
    right: 12px;
    top: 70px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.18);
    border-radius: 16px;
    box-shadow: var(--pillShadow);
    padding: 12px;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
    max-height: 70vh;
    overflow-y: auto;
  }
  .navLinks a { font-size: 1.1rem; padding: 8px 0; }
  .navLinks.isOpen { display: flex; }
  .navToggle { display: inline-block; }
  .btnPrimary { display: inline-flex; }
  .hero { padding: 30px 0 0; }
  .heroTitle { font-size: 2.8rem; line-height: 3.2rem; margin: 12px 0 6px; }
  .heroSub { width: 100%; font-size: 0.95rem; padding: 0 15px; line-height: 1.8rem; }
  .heroCtas { gap: 15px; margin: 36px 0 12px; }
  .btnBooking, .btnBooking2, .btnOutline { width: 260px; font-size: 0.95rem; height: auto; padding: 0.5rem; }
  .metrics { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 15px; width: 100%; margin-top: 30px; }
  .metric { padding: 0 15px; }
  .metricTop { font-size: 1.6rem; }
  .metricBottom { font-size: 0.95rem; }
  .divider { margin: 30px 0 0; }
  .meet { padding: 40px 0 0; }
  .sectionTitle { font-size: 1.8rem; }
  .sectionSub { font-size: 0.8rem; }
  .videoCard { height: 300px; margin: 30px auto; border-radius: 20px; }
  .videoPlay { width: 80px; height: 80px; border-width: 3px; }
  .videoPlayIcon { border-left: 24px solid rgba(255,255,255,.95); border-top: 15px solid transparent; border-bottom: 15px solid transparent; }
  .featuresPanel { margin-top: 3rem; margin-bottom: 2rem; padding: 30px 15px; height: auto; aspect-ratio: auto; border-radius: 1.5rem; }
  .featuresHead { padding: 25px 0; font-size: 1.8rem; color: #0760AC; }
  .featuresGrid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
  .feature { margin: 0 8px; padding: 10px 16px; min-height: auto; border-radius: 0.8rem; }
  .feature:not(:first-child)::before { display: none; }
  .feature h3 { font-size: 1rem; margin-bottom: 4px; }
  .feature p { font-size: 0.65rem; line-height: 1.4rem; }
  .whyExist { padding: 45px 0; }
  .whyTitle { font-size: 1.85rem; }
  .whyBody p { font-size: 0.9rem; }
  .differentiation { padding: 48px 0; }
  .diffInner { grid-template-columns: 1fr; gap: 36px; }
  .diffTitle { font-size: 1.5rem; }
  .diffCallout { padding: 30px 26px; }
  .diffQuoteMark { font-size: 5rem; }
  .diffQuoteText { font-size: 1.05rem; }
  .enterprise { padding: 35px 0 0; }
  .enterpriseTitle { font-size: 1.9rem; margin: 8px 0 3px; }
  .enterpriseSub { font-size: 0.7rem; margin: 0 0 15px; }
  .enterpriseCards { grid-template-columns: 1fr; gap: 20px; margin: 20px; padding: 20px 0; }
  .eCard { padding: 14px; border-radius: 12px; }
  .eCard h3 { font-size: 1.1rem; margin-bottom: 5px; }
  .eCard p { font-size: 0.75rem; line-height: 1.4rem; }
  .contact { margin: 20px 0; padding: 20px 0 25px; }
  .contactGrid { grid-template-columns: 1fr; gap: 20px; align-items: center; }
  .contactLeft { padding: 0 15px; }
  .contactRight { padding: 0 15px; margin-top: 0; margin-top: 1.5rem; }
  .contactTitle { font-size: 1.9rem; margin: 0 0 12px; line-height: 2.2rem; }
  .contactSub { font-size: 0.85rem; margin: 0 0 12px; }
  .contactNotes { gap: 12px; margin-top: 15px; }
  .noteTitle { font-size: 0.8rem; }
  .noteText { font-size: 0.65rem; }
  .formCard { padding: 12px; }
  .row2 { gap: 8px; }
  .field span { font-size: 0.6rem; }
  .field input, .field textarea { padding: 6px 8px; font-size: 10px; }
  .btnFull { height: 32px; font-size: 11px; }
  .footer { padding: 12px 0; }
  .footerInner { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .footerRight { justify-self: center; }
  .footerLinks { justify-self: center; gap: 8px; flex-wrap: wrap; font-size: 0.65rem; }
  .footerLeft { justify-content: center; }
  .footerTag { font-size: 0.9rem; }
}

/* Mobile devices (600px and below) */
@media (max-width: 600px) {
  .container { width: 90%; padding: 0 10px; }
  .heroTitle { font-size: 3rem; line-height: 3.5rem; }
  .heroSub { width: auto; padding: 0 20px; font-size: 1rem; }
  .heroCtas { flex-direction: column; gap: 20px; }
  .btnBooking, .btnBooking2 { width: 100%; max-width: 300px; font-size: 1.2rem; }
  .metrics { gap: 10px; }
  .metric { padding: 0 20px; }
  .featuresPanel { margin-bottom: 0; height: 29rem; }
  .feature { margin: 0 10px; padding: 12px; }
  .meet { margin-bottom: 2rem; }
  .videoCard { height: 350px; }
  .contactRight { margin-top: 1.5rem; }
}

/* Very small phones (480px and below) */
@media (max-width: 480px) {
  .brandText { font-size: 18px; }
  .btnBooking { width: 50%; }
  .btnBooking, .btnBooking2 { font-size: 1rem; height: auto; padding: 0.5rem; }
  .navLinks a { font-size: 1.2rem; }
  .heroTitle { font-size: 2.5rem; line-height: 3rem; }
  .heroSub { font-size: 0.95rem; }
  .videoCard { height: 250px; }
  .featuresPanel { height: auto; aspect-ratio: auto; padding: 40px 20px; margin-top: 3rem; }
  .featuresHead { padding: 20px 0; font-size: 1.8rem; }
  .featuresGrid { grid-template-columns: 1fr; }
  .feature { margin: 0 5px; padding: 10px; }
  .enterpriseTitle { font-size: 2rem; }
  .enterpriseSub { font-size: 0.7rem; }
  .enterpriseCards { grid-template-columns: 1fr; gap: 20px; }
  .contactGrid { grid-template-columns: 1fr; }
  .contactRight { margin-top: 1.5rem; }
  .footerLinks { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 1024px) {  
  .navPill { border-radius: 1.5rem; }
}
