:root{
  --blue:#2196f3;
  --blue-dark:#0d6fd1;
  --text-dark:#000000;
  --text-body:#4b5563;
  --bg:#ffffff;
  --line:#e3e8ef;
}
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; }

/* ===== HEADER ===== */
.site-header {
  width: 100%;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 60px;
  padding: 16px 50px;
}

/* Logo */
.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-box img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-box div {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-box h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  font-family: Georgia, 'Times New Roman', serif;
  margin: 0;
}

.logo-box span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #444444;
  font-family: Georgia, 'Times New Roman', serif;
  margin-top: 3px;
}

/* Nav */
nav {
  flex: 1;
  min-width: 0;
  margin-left:-30px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  width: 100%;
}

.nav-menu li {
  position: relative;
}

.nav-menu li:last-child {
  margin-left: auto;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 18.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-menu li.active a {
  color: var(--text-dark);
  border-bottom: 2.5px solid var(--blue);
  padding-bottom: 8px;
}

.caret {
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--text-dark);
  border-bottom: 2px solid var(--text-dark);
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform 0.2s ease;
}

.has-dropdown.open .caret {
  transform: rotate(225deg);
  margin-top: 3px;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 14px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  min-width: 200px;
  padding: 8px;
  z-index: 10;
}

.has-dropdown.open .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 500;
  color: #333;
  border-bottom: none !important;
}

.dropdown a:hover {
  background: #f2f6ff;
  color: var(--blue);
}

/* CTA button */
.cta-btn {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 11px 34px !important;
  border-radius: 10px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
  border: none !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  box-shadow: 0 4px 0 var(--blue-dark) !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}

.cta-btn:hover {
  color: #ffffff !important;
  transform: translateY(1px);
  box-shadow: 0 3px 0 var(--blue-dark) !important;
}

.cta-btn:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 var(--blue-dark) !important;
}

.cta-btn svg {
  width: 15px !important;
  height: 15px !important;
  stroke: #ffffff !important;
  fill: none !important;
}

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== MOBILE (768px breakpoint) ===== */
@media (max-width: 768px) {
  .header-inner { padding: 12px 18px; }

  nav { flex: none; }

  .nav-menu li:last-child { margin-left: 0; }

  .logo-box h3 { font-size: 16px; }
  .logo-box span { font-size: 7.5px; letter-spacing: 2px; }
  .logo-box img { width: 28px; height: 28px; }

  .hamburger { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 90px 26px 26px;
    box-shadow: -6px 0 24px rgba(0,0,0,0.15);
    transition: right 0.3s ease;
    overflow-y: auto;
  }

  .nav-menu.open { right: 0; }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-menu li a {
    width: 100%;
    padding: 16px 0;
    justify-content: space-between;
  }

  .nav-menu li.active a {
    border-bottom: none;
    padding-bottom: 16px;
    color: var(--blue);
  }

  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    margin-top: 0;
    padding: 0 0 8px 12px;
    display: none;
  }

  .has-dropdown.open .dropdown { display: block; }

  .cta-btn {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
    padding: 13px 24px;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 900;
  }

  .nav-overlay.open { display: block; }
}

/****************hero section**********************/

.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1760px;
  margin:0 auto;
  padding:28px 60px 50px;
  gap:40px;
  flex-wrap:wrap;
}
.left{
  flex:1 1 480px;
  max-width:640px;
  margin-top:20px;
}
.eyebrow{
  color:var(--blue);
  font-weight:700;
  font-size:14px;
  letter-spacing:1px;
  margin-bottom:14px;
}
h1{
  font-size:52px;
  line-height:1.1;
  font-weight:800;
  color:var(--text-dark);
  margin-bottom:18px;
  
}
h1 .accent{ color:var(--blue); }
.desc{
  font-size:18px;
  line-height:1.6;
  color:var(--text-body);
  margin-bottom:28px;
  max-width:560px;
}
.cta-row{
  display:flex;
  gap:16px;
  margin-bottom:36px;
  flex-wrap:wrap;
  
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 26px;
  border-radius:8px;
  font-weight:700;
  font-size:15px;
  text-decoration:none;
  cursor:pointer;
  border:2px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease;
  margin-top: 10px;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{
  background:var(--blue);
  color:#fff;
  box-shadow:0 8px 20px rgba(33,150,243,.25);
}
.btn-outline{
  background:#fff;
  color:var(--text-dark);
  border-color:var(--blue);
}
.trust{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.avatars{
  display:flex;
}
.avatar{
  width:44px;height:44px;border-radius:50%;
  border:3px solid #fff;
  margin-left:-12px;
  box-shadow:0 2px 6px rgba(0,0,0,.15);
  display:flex;align-items:center;justify-content:center;
  font-weight:700;color:#fff;font-size:15px;
}
.avatar:first-child{margin-left:0;}
.trust-text{
  font-size:14px;
  color:var(--text-body);
}
.trust-stats{
  display:flex;
  gap:8px;
  align-items:center;
  font-size:14px;
  font-weight:700;
  color:var(--text-dark);
  flex-wrap:wrap;
}
.dot{ color:var(--blue); font-weight:900; }

/* RIGHT VISUAL */
.right{
  flex:1 1 500px;
  max-width:500px;
  position:relative;
  height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:visible;
}
.orbit-bg{
  position:absolute;
  inset:0;
  z-index:0;
}
.badge{
  position:absolute;
  background:#fff;
  border-radius:12px;
  padding:8px 14px;
  box-shadow:0 8px 24px rgba(20,40,70,.12);
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  font-weight:700;
  color:var(--text-dark);
  z-index:3;
  white-space:nowrap;
}
.badge .label-sub{
  display:block;
  font-weight:800;
}
.badge .icon-svg{
  flex-shrink:0;
  display:flex;
}
.badge .accent-label{
  color:var(--blue);
  font-weight:800;
}
.badge .accent-label .label-sub{
  color:var(--text-dark);
}
.badge-ai{ top:6%; left:2%; }
.badge-human{ top:4%; right:2%; }
.badge-trusted{ top:44%; left:0%; }
.badge-endless{ bottom:8%; right:2%; }
.badge-chat{
  position:absolute;
  top:-2%; left:40%;
  background:var(--blue);
  width:48px;height:48px;
  border-radius:14px 14px 14px 4px;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 24px rgba(33,150,243,.35);
  z-index:3;
  color:#fff;
  font-size:20px;
}
.badge-people{
  position:absolute;
  top:36%; right:-1%;
  width:46px;height:46px;
  background:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 20px rgba(20,40,70,.12);
  z-index:3;
  font-size:18px;
}

.logo-wrap{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.logo-glow{
  filter:drop-shadow(0 16px 24px rgba(20,40,70,.25));
}
.logo-img{
  width:165px;
  height:auto;
  object-fit:contain;
}
.pedestal{
  margin-top:-24px;
  width:280px;
}

.connector{
  position:absolute;
  border-radius:50%;
  border:1px dashed #c7d3e6;
  z-index:0;
}
.conn1{ width:420px;height:420px; top:0; left:50%; transform:translateX(-50%); }
.conn2{ width:540px;height:540px; top:-60px; left:50%; transform:translateX(-50%); }
.node{
  position:absolute;
  width:9px;height:9px;
  border-radius:50%;
  background:var(--blue);
  z-index:1;
}

@media (max-width: 1000px){
  .hero{ padding:24px 24px 40px; }
  h1{ font-size:38px; }
  .right{ height:380px; }
}

/****************features section**********************/
 
.features{
  max-width:1760px;
  margin:0 auto;
  padding:10px 60px 70px;
  margin-top: 10px;
}
.features-card{
  display:flex;
  align-items:stretch;
  justify-content:space-between;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 12px 30px rgba(20,40,70,.06);
  padding:34px 28px;
  gap:10px;
  flex-wrap:wrap;
}
.feature-item{
  flex:1 1 0;
  display:flex;
  flex-direction:column;
  gap:12px;
  padding:0 22px;
  position:relative;
  min-width:180px;
}
.feature-item:not(:last-child)::after{
  content:"";
  position:absolute;
  top:4px;
  right:0;
  bottom:4px;
  width:1px;
  background:var(--line);
}
.feature-icon{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.feature-title{
  font-size:16px;
  font-weight:800;
  color:var(--text-dark);
}
.feature-desc{
  font-size:14px;
  line-height:1.55;
  color:var(--text-body);
}
 
@media (max-width: 1000px){
  .features{ padding:0 24px 50px; }
  .features-card{ flex-direction:column; padding:26px; }
  .feature-item{ padding:0 0 20px; }
  .feature-item:not(:last-child)::after{
    top:auto; right:auto;
    left:0; bottom:0;
    width:100%; height:1px;
  }
}

/****************buddy1am section**********************/
.buddy{
  max-width:1760px;
  margin:0 auto;
  padding:10px 60px 80px;
}

.buddy-card{
  position:relative;
  border-radius:28px;
  padding:44px 48px 48px;
  color:var(--text-dark);
  
}

.buddy-top{ max-width:760px; margin:0 auto 34px; text-align:center; }

.buddy-eyebrow{
  display:inline-block;
  background:rgba(33,150,243,.1);
  border:1px solid rgba(33,150,243,.3);
  color:var(--blue-dark);
  font-size:12px;
  font-weight:700;
  letter-spacing:.6px;
  padding:6px 14px;
  border-radius:20px;
  margin-bottom:16px;
}

.buddy-title{
  font-size:38px;
  font-weight:800;
  letter-spacing:-.5px;
  margin-bottom:10px;
  color:var(--text-dark);
}
.buddy-title .accent-blue{ color:var(--blue); }

.buddy-sub{
  font-size:17px;
  font-weight:700;
  color:var(--text-dark);
  margin-bottom:10px;
}
.buddy-desc{
  font-size:15px;
  line-height:1.65;
  color:var(--text-body);
  max-width:640px;
  margin:0 auto;
}

.buddy-middle{
  display:flex;
  gap:50px;
  align-items:center;
  flex-wrap:wrap;
  margin-bottom:40px;
}

.buddy-visual{
  flex:1 1 320px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  position:relative;
}

.buddy-visual::before{
  content:"";
  position:absolute;
  width:270px;
  height:270px;
  border:1px dashed #c7d3e6;
  border-radius:50%;
  z-index:0;
}

.phone-mock{
  position:relative;
  z-index:1;
  width:210px;
  background:#101319;
  border:6px solid #1c2028;
  border-radius:34px;
  padding:14px 12px;
  transform:rotate(-3deg);
  box-shadow:0 20px 40px rgba(20,40,70,.18);
  transition:transform .3s ease;
}
.phone-mock:hover{ transform:rotate(0deg); }

.phone-notch{
  width:60px;height:16px;
  background:#1c2028;
  border-radius:0 0 12px 12px;
  margin:0 auto 8px;
}
.phone-header{
  background:#fff;
  border-radius:10px 10px 0 0;
  padding:10px 12px 8px;
  color:#111;
}
.phone-title{ font-size:13px; font-weight:800; }
.phone-subtitle{ font-size:9px; color:#8a8f99; }
.phone-chat{
  background:#fff;
  padding:8px 10px 10px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.bubble{
  font-size:10px;
  line-height:1.4;
  padding:7px 9px;
  border-radius:10px;
  max-width:85%;
}
.bubble-bot{
  background:#f0f2f6;
  color:#222;
  align-self:flex-start;
  border-bottom-left-radius:2px;
}
.bubble-user{
  background:var(--blue);
  color:#fff;
  align-self:flex-end;
  border-bottom-right-radius:2px;
}
.phone-input{
  background:#fff;
  border-radius:0 0 10px 10px;
  padding:8px 10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-size:9px;
  color:#9aa0ab;
  border-top:1px solid #eee;
}
.phone-send{
  width:20px;height:20px;
  background:var(--blue);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}

.robot-mock{
  filter:drop-shadow(0 10px 20px rgba(33,150,243,.2));
}

.buddy-features{
  flex:1 1 340px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.bfeat{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  line-height:1.5;
  color:var(--text-body);
}
.bfeat-icon{ flex-shrink:0; margin-top:1px; }
.bfeat b{ color:var(--text-dark); }

.buddy-link{
  color:var(--blue);
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  margin-top:6px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition:gap .2s ease;
}
.buddy-link:hover{ gap:10px; }

/* ---- choice row: two separate illustrated cards, no connecting seam ---- */
.buddy-choice{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
  border-top:1px solid var(--line);
  padding-top:36px;
}

.choice-card{
  flex:1 1 340px;
  display:flex;
  align-items:center;
  gap:22px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:26px;
  box-shadow:0 12px 30px rgba(20,40,70,.06);
  transition:transform .2s ease, box-shadow .2s ease;
}
.choice-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 36px rgba(20,40,70,.1);
}

.choice-media{
  position:relative;
  width:110px;
  height:130px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.choice-blob{
  position:absolute;
  inset:0;
  margin:auto;
  width:120px;
  height:120px;
  border-radius:50%;
  background:radial-gradient(circle at 35% 30%, rgba(33,150,243,.18), rgba(33,150,243,.05) 70%);
  z-index:0;
}
.choice-illustration{ position:relative; z-index:1; }

.choice-content{ flex:1; min-width:0; }
.choice-title{
  font-size:19px;
  font-weight:800;
  color:var(--blue);
  margin-bottom:8px;
}
.choice-desc{
  font-size:14px;
  line-height:1.65;
  color:var(--text-body);
  margin-bottom:18px;
}
.choice-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  color:#fff;
  font-weight:700;
  font-size:14px;
  padding:11px 20px;
  border-radius:9px;
  text-decoration:none;
  box-shadow:0 8px 22px rgba(33,150,243,.25);
}

@media (max-width:1000px){
  .buddy{ padding:0 24px 60px; }
  .buddy-card{ padding:32px 24px; }
  .buddy-title{ font-size:30px; }
  .buddy-visual{ flex-direction:column; }
}

@media (max-width:768px){
  .buddy-card{ padding:26px 18px; border-radius:20px; }
  .buddy-title{ font-size:26px; }
  .buddy-desc,.buddy-sub{ max-width:100%; }
  .phone-mock{ transform:rotate(0deg); width:180px; }
  .buddy-visual::before{ width:210px; height:210px; }
  .choice-card{ flex:1 1 100%; flex-direction:column; text-align:center; }
  .choice-content{ width:100%; }
}




/******about innerly****************/
.about-innerly {
  position: relative;
  background: #060a14;
  overflow: hidden;
  padding: 90px 24px;
  margin-top: -40px;
  margin-bottom: -40px;
}

/* world map dot texture, left side only */
.about-innerly__map {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--blue) 1px, transparent 1.5px);
  background-size: 14px 14px;
  -webkit-mask-image: linear-gradient(to right, black 0%, black 35%, transparent 65%),
                       linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, black 0%, black 35%, transparent 65%),
              linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  mask-composite: intersect;
  opacity: 0.35;
  pointer-events: none;
}

.about-innerly__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-innerly__eyebrow {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 14px;
  margin-top: -80px;
}

.about-innerly__heading {
  color: #ffffff;
  font-size: 2.1rem;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 20px;
  max-width: 480px;
}

.about-innerly__text {
  color: #9aa4b8;
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 0 16px;
}

.about-innerly__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.about-innerly__cta:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.about-innerly__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
   margin-top: -60px;
}

.about-innerly__card {
  background: #0d1220;
  border: 1px solid #1c2436;
  border-radius: 14px;
  padding: 26px 22px;
 
}

.about-innerly__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.12);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about-innerly__card h3 {
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.about-innerly__card p {
  color: #8b95aa;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .about-innerly {
    padding: 60px 20px;
  }
  .about-innerly__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-innerly__heading {
    font-size: 1.6rem;
    max-width: 100%;
  }
  .about-innerly__text {
    max-width: 100%;
  }
  .about-innerly__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}


/*************why choose home pages**************/


.why-choose {
  background: #ffffff;
  padding: 70px 24px;
}

.why-choose__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.why-choose__header {
  text-align: center;
  margin-bottom: 48px;
}

.why-choose__header h2 {
  color: var(--text-dark);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.why-choose__underline {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

.why-choose__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.why-choose__item {
  padding-right: 20px;
  border-right: 1px solid var(--line);
}

.why-choose__item:last-child {
  border-right: none;
  padding-right: 0;
}

.why-choose__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.why-choose__item h3 {
  color: var(--text-dark);
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0 0 6px;
}

.why-choose__item p {
  color: var(--text-body);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
  .why-choose__row {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 32px;
  }
  .why-choose__item:nth-child(3) {
    border-right: none;
    padding-right: 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .why-choose {
    padding: 50px 20px;
  }
  .why-choose__header h2 {
    font-size: 1.3rem;
  }
  .why-choose__row {
    grid-template-columns: 1fr 1fr;
    row-gap: 28px;
  }
  .why-choose__item {
    border-right: none;
    padding-right: 0;
  }
  .why-choose__item:nth-child(3) {
    border-right: none;
  }
}
/*************ecosystem*****************/

.ecosystem {
  position: relative;
  background: #060a14;
  border-radius: 24px;
  overflow: hidden;
  padding: 56px 40px 48px;
  margin: 0 20px;
}

.ecosystem__glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.ecosystem__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.ecosystem__eyebrow {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 10px;
}

.ecosystem__heading {
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 0 40px;
}

.ecosystem__layout {
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  align-items: center;
  gap: 24px;
}

.ecosystem__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}



.ecosystem__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  background: #0d1220;
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 16px 18px;
}

.ecosystem__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(59,130,246,0.12);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecosystem__feature h3 {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 0 4px;
}

.ecosystem__feature p {
  color: #8b95aa;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}

.ecosystem__emblem {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ecosystem__ring {
  position: absolute;
  border: 1px solid rgba(59,130,246,0.4);
  border-radius: 50%;
}

.ecosystem__ring--outer {
  width: 200px;
  height: 200px;
  animation: ecosystem-spin 18s linear infinite;
  border-style: dashed;
}

.ecosystem__ring--inner {
  width: 150px;
  height: 150px;
}

.ecosystem__monogram {
  position: relative;
  z-index: 1;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1a2236, #0a0e1a);
  border: 1px solid rgba(59,130,246,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfd6e6;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 0 30px rgba(59,130,246,0.35);
}

.ecosystem__dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px 2px rgba(59,130,246,0.7);
}

.ecosystem__dot--1 { top: 0; left: 50%; transform: translateX(-50%); }
.ecosystem__dot--2 { bottom: 0; left: 50%; transform: translateX(-50%); }
.ecosystem__dot--3 { top: 50%; left: 0; transform: translateY(-50%); }
.ecosystem__dot--4 { top: 50%; right: 0; transform: translateY(-50%); }

@keyframes ecosystem-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.ecosystem__tagline {
  margin-top: 40px;
  color: #cfd6e6;
  font-size: 1.05rem;
  font-weight: 500;
}

.ecosystem__tagline span {
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 900px) {
  .ecosystem__layout {
    grid-template-columns: 1fr;
  }
  .ecosystem__emblem {
    order: -1;
    margin-bottom: 24px;
  }
  .ecosystem__col:first-child .ecosystem__feature:last-child,
  .ecosystem__col:last-child .ecosystem__feature:last-child {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 600px) {
  .ecosystem {
    padding: 40px 20px;
    margin: 0 12px;
  }
  .ecosystem__heading {
    font-size: 1.3rem;
  }
}

/*******impact***********/
.impact-steps {
  background: #ffffff;
  padding: 70px 24px 80px;
}

.impact-steps__header {
  text-align: center;
  margin-bottom: 56px;
}

.impact-steps__eyebrow {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 10px;
}

.impact-steps__header h2 {
  color: var(--text-dark);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}

.impact-steps__track {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.impact-steps__line {
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, rgba(59,130,246,0.15) 100%);
  z-index: 0;
}

.impact-steps__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.impact-steps__node {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 6px 16px rgba(59,130,246,0.3);
}

.impact-steps__num {
  display: block;
  color: #9aa4b8;
  font-size: 0.78rem;
  margin-bottom: 4px;
}

.impact-steps__step h3 {
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.impact-steps__step p {
  color: var(--text-body);
  font-size: 0.85rem;
  line-height: 1.55;
  margin: 0;
  max-width: 220px;
  margin-inline: auto;
}

@media (max-width: 900px) {
  .impact-steps__track {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
  .impact-steps__line {
    display: none;
  }
}

@media (max-width: 500px) {
  .impact-steps__track {
    grid-template-columns: 1fr;
  }
}


/**********blogs**********/

.blog {
  background: #f7f9fc;
  padding: 80px 24px;
}

.blog__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.blog__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}

.blog__eyebrow {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 10px;
}

.blog__header h2 {
  color: var(--text-dark);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog__card {
  background: #000000;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.blog__tag {
  display: inline-block;
  align-self: flex-start;
  background: #ffffff;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.blog__card h3 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px;
}

.blog__card p {
  color: #a8b2c7;
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 18px;
  flex-grow: 1;
}

.blog__meta {
  display: flex;
  gap: 8px;
  color: #9aa4b8;
  font-size: 0.78rem;
}

.blog__viewall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 40px auto 0;
  width: fit-content;
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.blog__viewall:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .blog__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .blog {
    padding: 56px 20px;
  }
  .blog__header h2 {
    font-size: 1.3rem;
  }
}

.cta-banner {
  position: relative;
  min-height: 220px;
  background: linear-gradient(115deg, #2f6ff0 0%, #4d8ff8 50%, #7db4fc 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.cta-banner__graphic {
  position: absolute;
  inset: 0;
  width: 80%;
  height: 80%;
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-banner__text {
  max-width: 480px;
}

.cta-banner__text h2 {
  color: #ffffff;
  font-size: 1.85rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.cta-banner__text p {
  color: rgba(255,255,255,0.92);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.cta-banner__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a0e1a;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 22px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, background 0.2s ease;
  
}

.cta-banner__btn:hover {
  background: #000000;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .cta-banner__graphic {
    opacity: 0.4;
  }
  .cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px;
  }
}

@media (max-width: 600px) {
  .cta-banner__text h2 {
    font-size: 1.4rem;
  }
  .cta-banner__graphic {
    display: none;
  }
}

/*********footer*******************/

.site-footer {
  background: #060a14;
  padding: 56px 40px 0;
}

.site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.site-footer__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.site-footer__name {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.site-footer__sub {
  color: #7c8aa8;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.site-footer__tagline {
  color: #8b95aa;
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 260px;
  margin: 0 0 18px;
}

.site-footer__socials {
  display: flex;
  gap: 12px;
}

.site-footer__socials a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #12182a;
  color: #cfd6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-footer__socials a:hover {
  background: var(--blue);
  color: #ffffff;
}

.site-footer__col h4 {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0 0 16px;
}

.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.site-footer__col a {
  color: #8b95aa;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.site-footer__col a:hover {
  color: var(--blue);
}

.site-footer__soon {
  color: #55607a;
  font-size: 0.8rem;
}

.site-footer__contact li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.site-footer__contact span,
.site-footer__contact a {
  color: #8b95aa;
  font-size: 0.85rem;
  text-decoration: none;
}

.site-footer__contact a:hover {
  color: var(--blue);
}

.site-footer__bottom {
  border-top: 1px solid #161d30;
  padding: 18px 0;
  text-align: center;
}

.site-footer__bottom p {
  color: #5c667e;
  font-size: 0.78rem;
  margin: 0;
}

.site-footer__logo img {
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 36px;
  }
  .site-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 44px 20px 0;
  }
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}


.faq {
  background: #ffffff;
  padding: 80px 24px;
}

.faq__inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: 32px;
}

.faq__eyebrow {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 10px;
}

.faq__header h2 {
  color: var(--text-dark);
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.faq__header p {
  color: var(--text-body);
  font-size: 0.95rem;
  margin: 0;
}

.faq__tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.faq__tab {
  background: #f2f5fa;
  border: 1px solid var(--line);
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.faq__tab.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
}

.faq__icon {
  flex-shrink: 0;
  color: var(--blue);
  transition: transform 0.25s ease;
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__answer p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  padding: 0 20px 18px;
}

.faq__item.is-open .faq__answer {
  max-height: 220px;
}

@media (max-width: 600px) {
  .faq {
    padding: 56px 20px;
  }
  .faq__header h2 {
    font-size: 1.35rem;
  }
  .faq__tabs {
    flex-wrap: wrap;
  }
  .faq__question {
    font-size: 0.9rem;
    padding: 15px 16px;
  }
}










/*********about page*****************/

.about-hero {
  --blue: #0f8fe0;
  --blue-bright: #1ca7ec;
  --blue-pale: #eaf6fd;
  --dark: #0a0e14;
  --text-muted: #5b6472;

  position: relative;
  background: #f7fbfe;
  overflow: hidden;
  padding: 100px 24px;
  margin-top: -40px;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(420px 420px at 85% 20%, rgba(28, 167, 236, 0.14), transparent 70%),
    radial-gradient(380px 380px at 8% 90%, rgba(28, 167, 236, 0.1), transparent 70%);
}

.about-hero-container {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

/* ---------- text ---------- */

.about-kicker {
  font-family: 'Inter', sans-serif;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.about-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--dark);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.28;
  margin: 0 0 20px;
}

.about-accent {
  color: var(--blue-bright);
}

.about-desc {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 46ch;
  margin: 0 0 32px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-cta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 8px var(--blue-bright);
}

.about-cta-arrow {
  transition: transform 0.2s ease;
}

.about-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(10, 14, 20, 0.22);
}

.about-cta:hover .about-cta-arrow {
  transform: translateX(3px);
}

.about-cta:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
}

/* ---------- visual ---------- */

.about-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  margin-right: 80px;
}

.about-visual-frame {
  position: relative;
  width: min(380px, 85%);
  aspect-ratio: 1;
}

.about-arc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about-blob {
  position: absolute;
  inset: 6%;
  z-index: 1;
  overflow: hidden;
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  box-shadow: 0 30px 60px rgba(10, 14, 20, 0.16);
  animation: aboutFloat 7s ease-in-out infinite;
  
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
 
}

@keyframes aboutFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.about-annotation {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Caveat', cursive;
  color: var(--blue-bright);
  font-weight: 700;
  font-size: 1.35rem;
  z-index: 2;
}

.about-annotation--top {
  top: -6%;
  left: -16%;
}

.about-annotation--right {
  top: 30%;
  right: -20%;
  text-align: left;
  max-width: 130px;
}

.about-annotation--bottom-left {
  top: 40%;
  left: -20%;
  text-align: left;
  max-width: 130px;
}



.about-arrow--right {
  align-self: flex-start;
}

/* ---------- responsive ---------- */

@media (max-width: 860px) {
  .about-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .about-cta {
    margin: 0 auto;
  }

  .about-hero-visual {
    margin-top: 24px;
  }

  .about-annotation--top {
    top: -2%;
    left: 2%;
  }

  .about-annotation--right {
    right: 0;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 72px 20px;
  }

  .about-annotation {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-blob {
    animation: none;
  }
}



.who-we-are {
  --blue: #0f8fe0;
  --blue-bright: #1ca7ec;
  --dark: #0a0e14;
  --text-muted: #5b6472;
  --line: #e3e8ef;

  background: #ffffff;
  padding: 90px 24px;
}

.who-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  gap: 64px;
  align-items: center;
}

/* ---------- media ---------- */

.who-media {
  position: relative;
}

.who-media-blob {
  position: absolute;
  inset: -20px -20px auto auto;
  width: 88%;
  height: 92%;
  background: var(--blue-pale, #eaf6fd);
  border-radius: 28px;
  z-index: 0;
}

.who-media-card {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3.3;
  box-shadow: 0 24px 50px rgba(10, 14, 20, 0.14);
}

.who-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.who-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 8, 16, 0.65) 0%, transparent 45%);
}

.who-media-caption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  margin: 0;
  color: #f4f9ff;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.15;
}

/* ---------- content ---------- */

.who-content {
  display: flex;
  gap: 44px;
  align-items: stretch;
}

.who-text {
  flex: 1.3;
  min-width: 0;
}

.who-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 14px;
}

.who-eyebrow-line {
  width: 34px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.who-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--dark);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  line-height: 1.3;
  margin: 0 0 18px;
}

.who-desc {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 46ch;
  margin: 0 0 16px;
}

.who-desc:last-child {
  margin-bottom: 0;
}

/* ---------- features ---------- */

.who-features {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 48px;              /* pehle 26px tha, space-between hata diya */
  padding-left: 32px;
  border-left: 1px solid var(--line);
  margin-top: 30px;
}

.who-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.who-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(15, 143, 224, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-feature-text h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--dark);
  font-size: 0.92rem;
  margin: 0 0 4px;
}

.who-feature-text p {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  .who-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .who-media-card {
    max-width: 480px;
    margin: 0 auto;
  }

  .who-media-blob {
    max-width: 480px;
    margin: 0 auto;
    left: 0;
    right: 0;
  }

  .who-content {
    flex-direction: column;
    gap: 32px;
  }

  .who-features {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 28px;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .who-we-are {
    padding: 60px 20px;
  }

  .who-title {
    font-size: 1.5rem;
  }
}








/*********problem-section (dark)**********/
.problem-section {
  background: #060a14;
  padding: 80px 24px;
}

.problem-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 48px;
  align-items: center;
}

.problem-eyebrow {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.problem-heading {
  color: #ffffff;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 20px;
}

.problem-heading .accent-blue {
  color: var(--blue);
}

.problem-desc {
  color: #9aa4b8;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 14px;
  max-width: 42ch;
}

.problem-desc:last-child {
  margin-bottom: 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.problem-card {
  background: #0d1220;
  border: 1px solid #1c2436;
  border-radius: 14px;
  padding: 22px 18px;
}

.problem-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.12);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.problem-card h3 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.problem-card p {
  color: #8b95aa;
  font-size: 0.82rem;
  line-height: 1.55;
  margin: 0;
}

/* Tablet */
@media (max-width: 900px) {
  .problem-inner {
    grid-template-columns: 1fr;
  }
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .problem-section {
    padding: 56px 20px;
  }
  .problem-heading {
    font-size: 1.5rem;
  }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}


/*********our approach**********/
.approach-section {
  background: #ffffff;
  padding: 70px 24px 80px;
}

.approach-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.approach-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.approach-eyebrow::before,
.approach-eyebrow::after {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--blue);
  opacity: 0.5;
}

.approach-heading {
  color: var(--text-dark);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.approach-heading .accent-blue {
  color: var(--blue);
}

.approach-desc {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 52ch;
}

.approach-track {
  max-width: 1180px;
  margin: 0 auto;
  background: #eaf3fd;
  border-radius: 60px;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.approach-step {
  display: flex;
  align-items: center;
  gap: 14px;
}

.approach-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #d3e6fb;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(33,150,243,.12);
}

.approach-num {
  display: block;
  color: var(--blue);
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 3px;
}

.approach-step h3 {
  color: var(--text-dark);
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.approach-arrow {
  flex-shrink: 0;
  color: var(--blue);
  opacity: 0.6;
}

/* Tablet */
@media (max-width: 900px) {
  .approach-track {
    border-radius: 24px;
    justify-content: flex-start;
    padding: 24px;
  }
  .approach-arrow {
    display: none;
  }
  .approach-step {
    flex: 1 1 45%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .approach-section {
    padding: 50px 20px;
  }
  .approach-heading {
    font-size: 1.4rem;
  }
  .approach-track {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .approach-step {
    flex: 1 1 100%;
  }
}



/*********what drives us (values)**********/
.values-section {
  margin-top: -60px;
  padding: 60px 24px;
}

.values-inner {
  max-width: 1180px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(20,40,70,.06);
  padding: 34px 28px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.values-text {
  flex: 1 1 300px;
  max-width: 320px;
}

.values-eyebrow {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.values-heading {
  color: var(--text-dark);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 10px;
}

.values-heading .accent-blue {
  color: var(--blue);
}

.values-desc {
  color: var(--text-body);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.values-grid {
  flex: 2 1 600px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.value-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 16px;
  position: relative;
  min-width: 130px;
}

.value-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 0;
  bottom: 4px;
  width: 1px;
  background: var(--line);
}

.value-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.value-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-dark);
}

.value-desc {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-body);
}

/* Tablet */
@media (max-width: 1000px) {
  .values-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .values-text {
    max-width: 100%;
  }
  .values-grid {
    flex-wrap: wrap;
    width: 100%;
  }
  .value-item {
    flex: 1 1 30%;
    min-width: 140px;
    margin-bottom: 20px;
  }
  .value-item:not(:last-child)::after {
    display: none;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .values-section {
    padding: 40px 20px;
  }
  .values-inner {
    padding: 26px;
  }
  .value-item {
    flex: 1 1 45%;
  }
}



/*********mission & vision**********/
.mv-section {
  padding: 70px 24px;
  margin-top: -60px;
}

.mv-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  align-items: center;
  gap: 0;
}

.mv-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(20,40,70,.06);
  padding: 26px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.mv-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(33,150,243,.08);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-content h3 {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.mv-content p {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* Center connector */
.mv-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.mv-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-image: radial-gradient(circle, var(--blue) 2px, transparent 2.5px);
  background-size: 14px 2px;
  background-repeat: repeat-x;
  transform: translateY(-50%);
  z-index: 0;
}

.mv-circle {
  position: relative;
  z-index: 1;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #000000;
  box-shadow: 0 0 0 10px rgba(33,150,243,.06), 0 12px 30px rgba(33,150,243,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mv-circle span {
  font-family: 'Caveat', cursive;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
}

/* Tablet */
@media (max-width: 900px) {
  .mv-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .mv-line {
    display: none;
  }
  .mv-center {
    order: -1;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .mv-section {
    padding: 50px 20px;
  }
  .mv-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .mv-circle {
    width: 120px;
    height: 120px;
  }
}


/*********our journey**********/
.journey-section {
  position: relative;
  padding: 70px 24px 60px;
  overflow: hidden;
  margin-top: -60px;
}

.journey-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 320px;
  pointer-events: none;
  z-index: 0;
}

.journey-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.journey-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.journey-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.journey-eyebrow::before,
.journey-eyebrow::after {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--blue);
  opacity: 0.5;
}

.journey-heading {
  color: var(--text-dark);
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.journey-heading .accent-blue {
  color: var(--blue);
}

.journey-desc {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 56ch;
}

.journey-track {
  background: #eef6fd;
  border-radius: 60px;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.journey-track::-webkit-scrollbar {
  display: none;
}

.journey-step {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  white-space: nowrap;
}

.journey-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(33,150,243,.3);
}

.journey-step h3 {
  color: var(--text-dark);
  font-size: 0.92rem;
  font-weight: 800;
  margin: 0 0 2px;
}

.journey-step p {
  color: var(--text-body);
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
}

.journey-arrow {
  flex-shrink: 0;
  color: var(--blue);
  opacity: 0.5;
}

/* Mobile */
@media (max-width: 600px) {
  .journey-section {
    padding: 50px 20px 40px;
  }
  .journey-heading {
    font-size: 1.35rem;
  }
  .journey-track {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
    gap: 22px;
    overflow-x: visible;
  }
  .journey-step {
    white-space: normal;
  }
  .journey-arrow {
    display: none;
  }
}


/*********what makes us different (dark)**********/
.different-section {
  background: #060a14;
  padding: 60px 24px;
}

.different-inner {
  max-width: 1180px;
  margin: 0 auto;
  margin-top:-30px;
  border: none;              /* border hata diya */
  border-radius: 18px;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.different-text {
  flex: 1 1 280px;
  max-width: 300px;
}

.different-eyebrow {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.different-heading {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
}

.different-heading .accent-blue {
  color: var(--blue);
  display: block;
}

.different-grid {
  flex: 2 1 600px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.different-item {
  flex: 1 1 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  position: relative;
  min-width: 160px;
  background: #ffffff;
  border: 1px solid #1c2436;
  border-radius: 14px;
}
.different-item:not(:last-child)::after {
  display: none;                /* purani divider line hata di */
}

.different-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(59,130,246,0.12);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.different-item h3 {
  color: #000000;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 6px;
}

.different-item p {
  color: #000000;
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
}

/* Tablet */
@media (max-width: 1000px) {
  .different-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .different-text {
    max-width: 100%;
  }
  .different-grid {
    width: 100%;
    flex-wrap: wrap;
  }
  .different-item {
    flex: 1 1 45%;
    margin-bottom: 18px;
    padding: 0 12px;
  }
  .different-item:not(:last-child)::after {
    display: none;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .different-section {
    padding: 40px 20px;
  }
  .different-inner {
    padding: 24px 20px;
  }
  .different-item {
    flex: 1 1 100%;
  }
}


/*********looking ahead**********/
.ahead-section {
  background: #f7fbfe;
  padding: 60px 24px;
  overflow: hidden;
}

.ahead-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  align-items: center;
  gap: 30px;
}

.ahead-eyebrow {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.ahead-heading {
  color: var(--text-dark);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 14px;
}

.ahead-heading .accent-blue {
  color: var(--blue);
}

.ahead-desc {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
  max-width: 42ch;
}

.ahead-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  overflow: visible;
}

/* soft glow behind the whole scene */
.ahead-glow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 320px;
  background: radial-gradient(circle, rgba(33,150,243,.16) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}



/* floating particle dots in the sky */
.ahead-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.55;
  z-index: 1;
  animation: ahead-float 4s ease-in-out infinite;
}

.ahead-particle--1 { top: 10%; left: 18%; animation-delay: 0s; }
.ahead-particle--2 { top: 28%; left: 62%; width: 4px; height: 4px; animation-delay: 1.2s; }
.ahead-particle--3 { top: 6%; left: 48%; width: 5px; height: 5px; animation-delay: 2s; }
.ahead-particle--4 { top: 20%; left: 8%; width: 4px; height: 4px; animation-delay: 0.6s; }

@keyframes ahead-float {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(-10px); opacity: 1; }
}

/* small floating badge on the scene */
.ahead-badge {
  position: absolute;
  top: 8%;
  left: 4%;
  z-index: 3;
  background: #fff;
  border-radius: 12px;
  padding: 8px 14px;
  box-shadow: 0 8px 24px rgba(20,40,70,.12);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
}

.ahead-badge .accent-label {
  color: var(--blue);
  font-weight: 800;
}

.ahead-svg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-width: 550px;
  margin-right: -150px;
}

.ahead-annotation {
  position: absolute;
  top: 0;
  right: 4%;
  z-index: 3;
  font-family: 'Caveat', cursive;
  color: var(--blue);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.2;
  text-align: right;
}

/* pulsing sun glow inside svg */
.ahead-sun-pulse {
  animation: ahead-pulse 2.5s ease-in-out infinite;
  transform-origin: center;
}

@keyframes ahead-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* Tablet */
@media (max-width: 900px) {
  .ahead-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .ahead-desc {
    margin: 0 auto;
  }
  .ahead-annotation {
    position: static;
    margin-top: 14px;
    text-align: center;
  }
  .ahead-orbit, .ahead-particle {
    display: none;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .ahead-section {
    padding: 48px 20px;
  }
  .ahead-heading {
    font-size: 1.4rem;
  }
}


/*********let's build together (cta)**********/
.build-cta {
  position: relative;
  background: linear-gradient(120deg, #eaf5fd 0%, #f7fbfe 40%, #eef7fe 100%);
  padding: 48px 24px;
  overflow: hidden;
  margin-top: -40px;
}

.build-cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-left: 160px;
}

.build-cta-text {
  flex: 1 1 400px;
  text-align: center;
}

.build-cta-eyebrow {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 8px;
}

.build-cta-heading {
  color: var(--text-dark);
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 10px;
}

.build-cta-desc {
  color: var(--text-body);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 44ch;
}

.build-cta-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #14181f 0%, #0a0e1a 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 26px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.build-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
}

.build-cta-btn svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
}

/* Leaf illustration, left side */
.build-cta-leaf {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  z-index: 1;
  opacity: 0.95;
  filter: drop-shadow(0 10px 18px rgba(15, 59, 92, 0.18));
}

/* Soft blob shapes — right side, bigger + layered */
.build-cta-blob {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(33,150,243,.18), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.build-cta-blob--2 {
  right: 140px;
  top: 20%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle at 40% 40%, rgba(33,150,243,.12), transparent 70%);
}

/* Extra soft blob, left side behind leaf */
.build-cta-blob--left {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(33,150,243,.1), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Tablet */
@media (max-width: 900px) {
  .build-cta-leaf {
    display: none;
  }
  .build-cta-blob,
  .build-cta-blob--2,
  .build-cta-blob--left {
    opacity: 0.6;
  }
  .build-cta-inner {
    justify-content: center;
    text-align: center;
    padding-left: 24px;
  }
  .build-cta-text {
    flex: 1 1 100%;
  }
  .build-cta-desc {
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .build-cta {
    padding: 36px 20px;
  }
  .build-cta-heading {
    font-size: 1.3rem;
  }
  .build-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

/************our products page******************/
.b1am-hero {
  background: #F3F8FF;
  padding: 80px 40px;
  overflow: visible;
  margin-top: -30px;
}

.b1am-hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: center;
}

/* ---------- Left content ---------- */
.b1am-badge {
  display: inline-block;
  background: #E4F0FF;
  color: #2B7FFF;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.b1am-hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  color: #14161B;
  margin: 0 0 6px;
}

.b1am-accent { color: #2B7FFF; }

.b1am-hero-subtitle {
  font-size: 32px;
  font-weight: 700;
  color: #14161B;
  margin: 0 0 20px;
  line-height: 1.2;
}

.b1am-hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #5B6472;
  max-width: 480px;
  margin: 0 0 32px;
}

.b1am-hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.b1am-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.b1am-btn-primary {
  background: #2B7FFF;
  color: #fff;
  box-shadow: 0 8px 20px rgba(43, 127, 255, 0.3);
}
.b1am-btn-primary:hover { transform: translateY(-2px); }

.b1am-btn-outline {
  background: #fff;
  color: #14161B;
  border: 1.5px solid #D7E2EF;
}
.b1am-btn-outline:hover { border-color: #2B7FFF; color: #2B7FFF; }

/* ---------- Right visual ---------- */
.b1am-hero-visual {
  position: relative;
  width: 100%;
  overflow: visible;
  margin-right: -50px;
}

/* Note directly above the illustration, arrow points down at its head */
.b1am-hero-note {
  color: #2B7FFF;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  position: relative;
  padding-left: 20px;
}
.b1am-note-text { font-size: 22px; line-height: 1.2; display: block; margin-top: -20px;}
.b1am-note-heart { position: absolute; top: 2px; left: 120px; }
.b1am-note-arrow { position: absolute; top: 34px; left: 30px;margin-top: 20px; }

.b1am-visual-row {
  display: flex;
  align-items: flex-end;
  width: 100%;
  overflow: visible;
}

/* Illustration */
.b1am-buddy-illustration {
  width: 200px;
  flex-shrink: 0;
  z-index: 1;
}

/* Devices sit right next to illustration — no negative pull that clips left edge */
.b1am-devices {
  display: flex;
  align-items: flex-end;
  margin-left: 0;
  flex: 1;
  min-width: 0;
  z-index: 2;
  overflow: visible;
}

.b1am-device {
  background: #fff;
  border-radius: 20px;
  border: 8px solid #14161B;
  box-shadow: 0 20px 40px rgba(20, 22, 27, 0.15);
  overflow: hidden;
  flex-shrink: 0;
  margin-right : 30px;
}

.b1am-tablet { width: 62%; max-width: 300px; min-width: 260px; }
.b1am-phone {
  width: 34%;
  max-width: 180px;
  min-width: 110px;
  margin-left: -8%;
  margin-bottom: -16px;
  border-radius: 26px;
}

.b1am-device-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid #EEF1F5;
  font-size: 12px;
  font-weight: 700;
  color: #14161B;
  gap: 6px;
}
.b1am-device-logo {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.b1am-phone-topbar { font-size: 10px; padding: 8px 10px; }

.b1am-device-tag {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.b1am-tag-ai { background: #E4F0FF; color: #2B7FFF; }
.b1am-tag-human { background: #FFEFE0; color: #E07A2B; }
.b1am-phone .b1am-device-tag { font-size: 8px; padding: 2px 6px; }

.b1am-device-body { display: flex; }

.b1am-device-nav {
  width: 95px;
  flex-shrink: 0;
  border-right: 5px solid #EEF1F5;
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
  overflow: visible;
  margin-left: 20px;
}
.b1am-nav-item {
  font-size: 12px !important;
  color: #8A93A2;
  white-space: nowrap !important;
  overflow: visible !important;
  display: block;
  line-height: 1.2;
}
.b1am-nav-item.is-active { color: #2B7FFF; font-weight: 700; }

.b1am-device-main {
  flex: 1;
  min-width: 0;
  padding: 14px;
  text-align: center;
}

.b1am-mood-icon { font-size: 20px; margin-bottom: 4px; }
.b1am-mood-greeting {
  font-size: 13px;
  font-weight: 700;
  color: #14161B;
  margin: 0;
}
.b1am-mood-question {
  font-size: 10px;
  color: #5B6472;
  margin: 0 0 12px;
}

.b1am-mood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-bottom: 12px;
}

.b1am-mood {
  background: #F5F8FC;
  border: none;
  border-radius: 10px;
  padding: 7px 3px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}
.b1am-mood span { font-size: 7px; color: #5B6472; font-weight: 600; }
.b1am-mood.is-overwhelmed { background: #FFE8E8; }
.b1am-mood.is-selected { background: #DCEBFF; }

.b1am-device-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F5F8FC;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 9px;
  color: #A2AAB6;
  gap: 6px;
  width: 100%;
}
.b1am-device-input span:first-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.b1am-device-input-phone { margin: 0 10px 10px; }
.b1am-device-main .b1am-device-input { margin: 0 14px 12px; }

.b1am-send-btn {
  background: #2B7FFF;
  color: #fff;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  flex-shrink: 0;
}

/* Human Buddy chat (phone) */
.b1am-buddy-chat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid #EEF1F5;
}
.b1am-buddy-avatar {
  width: 34px;
  height: 34px;
  background: #FFEFE0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.b1am-buddy-info { display: flex; flex-direction: column; text-align: left; min-width: 0; }
.b1am-buddy-name { font-size: 11px; font-weight: 700; color: #14161B; }
.b1am-buddy-role { font-size: 8px; color: #2FB86E; font-weight: 600; }

.b1am-buddy-messages {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.b1am-msg {
  font-size: 9px;
  padding: 6px 10px;
  border-radius: 12px;
  max-width: 85%;
  line-height: 1.4;
}
.b1am-msg-in {
  background: #F5F8FC;
  color: #14161B;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}
.b1am-msg-out {
  background: #2B7FFF;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .b1am-hero-container { grid-template-columns: 1fr; text-align: center; }
  .b1am-hero-desc { margin-left: auto; margin-right: auto; }
  .b1am-hero-cta { justify-content: center; }
  .b1am-hero-note { padding-left: 0; text-align: left; max-width: 260px; margin: 0 auto 10px; }
  .b1am-visual-row { flex-direction: column; align-items: center; }
  .b1am-buddy-illustration { width: 180px; margin-bottom: 10px; }
  .b1am-devices { margin-left: 0; justify-content: center; width: 100%; max-width: 420px; }
}

@media (max-width: 480px) {
  .b1am-hero-title { font-size: 40px; }
  .b1am-hero-subtitle { font-size: 24px; }
  .b1am-tablet { max-width: 220px; min-width: 180px; }
  .b1am-phone { max-width: 110px; min-width: 90px; }
}



.b1am-features {
  background: #0B0F1D;
  padding: 90px 40px;
  overflow: hidden;
}

.b1am-features-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.6fr;
  gap: 50px;
  align-items: start;
}

.b1am-features-eyebrow {
  color: #5FA8FF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.b1am-features-title {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 16px;
}

.b1am-features-title .b1am-accent { color: #5FA8FF; }

.b1am-features-desc {
  color: #9CA6B8;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 36px;
}

.b1am-features-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.b1am-note-script {
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  color: #5FA8FF;
  font-size: 16px;
  letter-spacing: 0.3px;
  transform: rotate(-2deg);
  white-space: nowrap;
}

.b1am-note-arrow2 {
  flex-shrink: 0;
  transform: translateY(4px);
}

/* ---------- Grid ---------- */
.b1am-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.b1am-feature-card {
  background: #131826;
  border: 1px solid #232A3D;
  border-radius: 16px;
  padding: 24px;
}

.b1am-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.b1am-icon-purple {
  background: linear-gradient(135deg, #E56FD8, #7B6BF0);
}

.b1am-icon-blue { background: #2B7FFF; }

.b1am-icon-lavender { background: #EDE7FB; }

.b1am-feature-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.b1am-feature-text {
  color: #8A93A8;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .b1am-features-container { grid-template-columns: 1fr; }
  .b1am-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .b1am-features { padding: 60px 24px; }
  .b1am-features-grid { grid-template-columns: 1fr; }
  .b1am-features-title { font-size: 28px; }
  .b1am-note-script { white-space: normal; }
}



.b1am-how {
  background: #FAFBFF;
  padding: 90px 40px 100px;
  overflow: visible;
}

.b1am-how-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.b1am-how-eyebrow {
  color: #2B7FFF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.b1am-how-title {
  font-size: 32px;
  font-weight: 800;
  color: #14161B;
  line-height: 1.3;
  margin: 0 0 12px;
}

.b1am-how-desc {
  color: #5B6472;
  font-size: 15px;
  margin: 0 0 40px;
}

/* ---------- Steps ---------- */
.b1am-how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.b1am-step-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  position: relative;
}

.b1am-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E4F0FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.b1am-step-num {
  color: #2B7FFF;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.b1am-step-line {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg, #C9DCFB 0, #C9DCFB 5px, transparent 5px, transparent 10px);
  margin-left: 4px;
}

.b1am-step-title {
  font-size: 15px;
  font-weight: 700;
  color: #14161B;
  margin: 0 0 8px;
}

.b1am-step-text {
  font-size: 13px;
  color: #5B6472;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Right card ---------- */
.b1am-how-right {
  position: relative;
  margin-right: 40px;
}

.b1am-how-note {
  position: absolute;
  margin-top: -98px;
  right: 30px;
  color: #2B7FFF;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  text-align: right;
  z-index: 1;
}
.b1am-how-note-text { font-size: 20px; line-height: 1.3; display: block; }
.b1am-how-note-heart { position: absolute; top: -6px; right: -25px; }
.b1am-how-note-arrow { position: absolute; top: 72px; right: -50px; }

.b1am-mood-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(20, 22, 27, 0.1);
  padding: 24px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.b1am-mood-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #14161B;
  margin: 0 0 16px;
}

.b1am-mood-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.b1am-mood-card-item {
  background: none;
  border: none;
  padding: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.b1am-mood-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}
.b1am-mood-card-item:hover .b1am-mood-badge { transform: translateY(-2px); }
.b1am-mood-card-item span:last-child { font-size: 11px; color: #5B6472; font-weight: 600; }
.b1am-mood-card-item.is-selected .b1am-mood-badge { box-shadow: 0 0 0 2px #2B7FFF; }

.b1am-mood-continue {
  width: 70%;
  margin: 0 auto;
  background: #2B7FFF;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 13px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.b1am-mood-continue:hover { background: #1E6FE0; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .b1am-how-container { grid-template-columns: 1fr; }
  .b1am-how-steps { grid-template-columns: repeat(2, 1fr); }
  .b1am-step-line { display: none; }
  .b1am-how-right { margin-top: 50px; }
  .b1am-how-note { position: static; text-align: center; margin: 0 auto 20px; }
  .b1am-how-note-heart, .b1am-how-note-arrow { display: none; }
}

@media (max-width: 480px) {
  .b1am-how-steps { grid-template-columns: 1fr; }
  .b1am-how-title { font-size: 26px; }
}

.b1am-who {
  background: #0B0F1D;
  padding: 90px 40px;
  position: relative;
  overflow: hidden;
}

.b1am-who-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.b1am-who-glow-1 {
  width: 320px;
  height: 320px;
  background: #1B3A7A;
  opacity: 0.4;
  top: -100px;
  left: 10%;
}
.b1am-who-glow-2 {
  width: 260px;
  height: 260px;
  background: #2B7FFF;
  opacity: 0.15;
  bottom: -80px;
  right: 5%;
}

.b1am-who-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 2fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.b1am-who-eyebrow {
  color: #5FA8FF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.b1am-who-title {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.2;
}

.b1am-who-desc {
  color: #9CA6B8;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 280px;
}

.b1am-who-note {
  position: relative;
  display: block;
  width: fit-content;
  margin-left: auto;
  color: #C9A6F5;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  transform: rotate(-8deg);
  letter-spacing: 0.3px;
}
.b1am-who-note-text { font-size: 15px; line-height: 1.35; display: block; }
.b1am-who-note-heart { position: absolute; bottom: -14px; left: 0; }

/* ---------- Cards ---------- */
.b1am-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.b1am-who-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.b1am-who-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #E4F0FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.b1am-who-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #14161B;
  margin: 0 0 10px;
}

.b1am-who-card-text {
  font-size: 13px;
  color: #5B6472;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .b1am-who-container { grid-template-columns: 1fr; }
  .b1am-who-desc { max-width: 100%; }
  .b1am-who-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .b1am-who-title { font-size: 28px; }
  .b1am-who-grid { grid-template-columns: 1fr; }
}


.b1am-product {
  background: #F6F9FF;
  padding: 70px 40px;
  overflow: hidden;
}

.b1am-product-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 2.1fr 0.75fr;
  gap: 24px;
  align-items: center;
}

.b1am-product-eyebrow {
  color: #2B7FFF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.b1am-product-title {
  font-size: 24px;
  font-weight: 800;
  color: #14161B;
  line-height: 1.3;
  margin: 0 0 12px;
  white-space: nowrap;
}
.b1am-product-title .b1am-accent { color: #2B7FFF; }

.b1am-product-desc {
  font-size: 14px;
  color: #5B6472;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
}

/* ---------- Buddy cards ---------- */
.b1am-product-cards {
  display: flex;
  align-items: center;
  gap: 20px;
}

.b1am-buddy-card {
  flex: 1;
  background: linear-gradient(135deg, #EAF1FF, #F6F0FF);
  border-radius: 20px;
  padding: 20px 22px;
  display: flex;
  gap: 14px;
}

.b1am-buddy-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.b1am-buddy-avatar-ai { background: #1B2333; box-shadow: 0 0 0 3px #DCE8FF; }
.b1am-buddy-avatar-human { background: #2B7FFF; }

.b1am-buddy-name {
  font-size: 15px;
  font-weight: 700;
  color: #14161B;
  margin: 0 0 2px;
}

.b1am-buddy-tag {
  font-size: 12px;
  color: #2B7FFF;
  font-weight: 600;
  margin: 0 0 10px;
}

.b1am-buddy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.b1am-buddy-list li {
  font-size: 12.5px;
  color: #5B6472;
  padding-left: 14px;
  position: relative;
}
.b1am-buddy-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2B7FFF;
}

.b1am-product-plus {
  font-size: 22px;
  font-weight: 700;
  color: #14161B;
  flex-shrink: 0;
}

/* ---------- Sticky note ---------- */
.b1am-product-note {
  position: relative;
  background: #000000;
  border-radius: 26px 26px 26px 4px;
  padding: 22px 26px;
  transform: rotate(-12deg);
  box-shadow: 0 16px 32px rgba(107, 70, 193, 0.18);
}

.b1am-product-note::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 30px;
  width: 18px;
  height: 18px;
  background: #000000;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.b1am-product-note-text {
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  display: block;
}

.b1am-product-note-heart {
  position: absolute;
  bottom: 10px;
  right: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .b1am-product-container { grid-template-columns: 1fr; }
  .b1am-product-left { text-align: center; }
  .b1am-product-desc { margin-left: auto; margin-right: auto; }
  .b1am-product-cards { flex-direction: column; }
  .b1am-product-plus { transform: rotate(90deg); }
  .b1am-product-note { transform: rotate(0deg); margin: 0 auto; max-width: 320px; }
.b1am-product-note::after { display: none; }
}

@media (max-width: 480px) {
  .b1am-product-title { font-size: 22px; }
}


.b1am-why {
  background: linear-gradient(180deg, #EFF5FF, #F8FBFF);
  padding: 60px 40px;
}

.b1am-why-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 2.5fr;
  gap: 30px;
  align-items: center;
}

.b1am-why-eyebrow {
  color: #2B7FFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.b1am-why-title {
  font-size: 24px;
  font-weight: 800;
  color: #14161B;
  line-height: 1.3;
  margin: 0 0 10px;
}
.b1am-why-title .b1am-accent { color: #2B7FFF; }

.b1am-why-desc {
  font-size: 13.5px;
  color: #5B6472;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Feature row ---------- */
.b1am-why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.b1am-why-item {
  padding: 0 20px;
  border-right: 1px solid #DCE4F0;
}
.b1am-why-item-last { border-right: none; }

.b1am-why-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #E4F0FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.b1am-why-title-sm {
  font-size: 14px;
  font-weight: 700;
  color: #14161B;
  margin: 0 0 6px;
}

.b1am-why-text {
  font-size: 12px;
  color: #5B6472;
  line-height: 1.5;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .b1am-why-container { grid-template-columns: 1fr; }
  .b1am-why-grid { grid-template-columns: repeat(3, 1fr); gap: 24px 0; }
  .b1am-why-item { border-right: none; border-bottom: 1px solid #DCE4F0; padding-bottom: 20px; }
  .b1am-why-item:nth-child(3n) { border-right: none; }
}

@media (max-width: 700px) {
  .b1am-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .b1am-why-grid { grid-template-columns: 1fr; }
  .b1am-why-title { font-size: 20px; }
}

.b1am-cta {
  background: #0B0F1D;
  padding: 70px 40px;
  position: relative;
  overflow: hidden;
}

.b1am-cta-wave {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 300px at 70% 100%, rgba(43, 127, 255, 0.25), transparent 70%),
    radial-gradient(ellipse 500px 250px at 90% 40%, rgba(43, 127, 255, 0.15), transparent 70%);
  pointer-events: none;
}

.b1am-cta-leaves {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 100%;
  pointer-events: none;
}

.b1am-cta-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.6fr;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.b1am-cta-eyebrow {
  color: #5FA8FF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.b1am-cta-title {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 14px;
}
.b1am-cta-title .b1am-accent { color: #5FA8FF; }

.b1am-cta-desc {
  color: #9CA6B8;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 26px;
  max-width: 340px;
}

.b1am-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.b1am-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.b1am-btn-primary {
  background: #2B7FFF;
  color: #fff;
  box-shadow: 0 8px 20px rgba(43, 127, 255, 0.35);
}

.b1am-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.b1am-btn-ghost:hover { border-color: #5FA8FF; color: #5FA8FF; }

/* ---------- Phone mockup ---------- */
.b1am-cta-phone {
  position: relative;
  display: flex;
  justify-content: center;
}

.b1am-cta-phone-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  background: #2B7FFF;
  opacity: 0.35;
  filter: blur(50px);
  border-radius: 50%;
  z-index: 0;
}

.b1am-cta-device {
  position: relative;
  z-index: 1;
  width: 190px;
  background: #fff;
  border: 8px solid #14161B;
  border-radius: 28px;
  padding: 14px 16px 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.b1am-cta-device-status {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #14161B;
  font-weight: 700;
  margin-bottom: 14px;
}

.b1am-cta-device-avatar {
  width: 44px;
  height: 44px;
  background: #1B2333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.b1am-cta-device-name {
  font-size: 14px;
  font-weight: 700;
  color: #14161B;
  margin: 0 0 4px;
}

.b1am-cta-device-tag {
  font-size: 10.5px;
  color: #5B6472;
  margin: 0 0 16px;
  line-height: 1.4;
}

.b1am-cta-device-btn {
  width: 100%;
  background: #2B7FFF;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

/* ---------- Note ---------- */
.b1am-cta-note {
  position: relative;
  color: #fff;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 20px;
  line-height: 1.3;
  transform: rotate(-3deg);
}

.b1am-cta-note-heart {
  display: inline-block;
  margin-left: 6px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .b1am-cta-container { grid-template-columns: 1fr; text-align: center; }
  .b1am-cta-desc { margin-left: auto; margin-right: auto; }
  .b1am-cta-buttons { justify-content: center; }
  .b1am-cta-phone { margin: 30px 0; }
  .b1am-cta-note { transform: rotate(0deg); }
  .b1am-cta-leaves { display: none; }
}

@media (max-width: 480px) {
  .b1am-cta-title { font-size: 24px; }
}

.b1am-promise {
  background: #F6F9FF;
  padding: 60px 40px;
}

.b1am-promise-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 2.3fr;
  gap: 30px;
  align-items: center;
}

.b1am-promise-eyebrow {
  color: #2B7FFF;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.b1am-promise-title {
  font-size: 24px;
  font-weight: 800;
  color: #14161B;
  margin: 0 0 10px;
}

.b1am-promise-desc {
  font-size: 13.5px;
  color: #5B6472;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Cards ---------- */
.b1am-promise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.b1am-promise-card {
  background: #fff;
  border: 1px solid #E4E9F2;
  border-radius: 16px;
  padding: 20px;
}

.b1am-promise-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.b1am-promise-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #E4F0FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.b1am-promise-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #14161B;
  margin: 0 0 2px;
}

.b1am-promise-card-tag {
  font-size: 11.5px;
  color: #2B7FFF;
  font-weight: 600;
  margin: 0;
}

.b1am-promise-card-text {
  font-size: 12.5px;
  color: #5B6472;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .b1am-promise-container { grid-template-columns: 1fr; text-align: center; }
  .b1am-promise-cards { grid-template-columns: 1fr; }
  .b1am-promise-card-header { justify-content: center; text-align: left; }
}


.b1am-final {
  background: linear-gradient(120deg, #F5F8FF 0%, #EEF0FF 60%, #F3F0FF 100%);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.b1am-final-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: #C9B8F5;
  opacity: 0.25;
  filter: blur(70px);
  border-radius: 50%;
  top: -100px;
  right: 10%;
  pointer-events: none;
}

.b1am-final-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr auto 0.9fr;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.b1am-final-eyebrow {
  color: #2B7FFF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.b1am-final-title {
  font-size: 24px;
  font-weight: 800;
  color: #14161B;
  margin: 0 0 6px;
}

.b1am-final-desc {
  font-size: 13.5px;
  color: #5B6472;
  margin: 0;
}

.b1am-final-btn {
  white-space: nowrap;
}

.b1am-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.b1am-btn-primary {
  background: #2B7FFF;
  color: #fff;
  box-shadow: 0 8px 20px rgba(43, 127, 255, 0.3);
}

.b1am-final-right {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}

.b1am-final-illustration { width: 90px; flex-shrink: 0; }

.b1am-final-note {
  color: #8B6FE0;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 14px;
  line-height: 1.3;
  position: relative;
  transform: rotate(-4deg);
}

.b1am-final-note-heart { display: inline-block; margin-left: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 950px) {
  .b1am-final-container { grid-template-columns: 1fr; text-align: center; }
  .b1am-final-right { justify-self: center; }
}

@media (max-width: 480px) {
  .b1am-final-title { font-size: 20px; }
  .b1am-final-illustration { display: none; }
}

/* ============ buddy1am page  ============ */
.b1am-hero2 {
  position: relative;
  overflow: hidden;
  padding: 70px 24px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f2ff 55%, #f4faff 100%);
}

.b1am-hero2__container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}

/* ---- LEFT CONTENT ---- */
.b1am-hero2__content {
  flex: 1 1 460px;
  min-width: 320px;
  margin-top : -20px;
}

.b1am-hero2__badge {
  display: inline-block;
  background: #e6f2ff;
  color: #2f8dff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.b1am-hero2__title {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 8px;
}

.b1am-hero2__brand-accent {
  color: #2f8dff;
}

.b1am-hero2__subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #2d2d44;
  margin: 0 0 16px;
}

.b1am-hero2__desc {
  font-size: 15px;
  line-height: 1.7;
  color: #5c5c72;
  max-width: 480px;
  margin: 0 0 28px;
}

.b1am-hero2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.b1am-hero2__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.b1am-hero2__btn--primary {
  background: #2f8dff;
  color: #fff;
  box-shadow: 0 8px 20px rgba(47, 141, 255, 0.35);
}

.b1am-hero2__btn--outline {
  background: #fff;
  color: #1a5bb0;
  border: 1.5px solid #bfe0ff;
}

.b1am-hero2__btn:hover {
  transform: translateY(-2px);
}

.b1am-hero2__tagline {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #2f8dff;
  font-size: 20px;
  margin-top: 40px;
  margin-left: 260px;
  display: inline-block;
  transform: rotate(-8deg);
}

.b1am-hero2__heart {
  color: #7ec2ff;
}

/* ---- RIGHT VISUAL ---- */
.b1am-hero2__visual {
  position: relative;
  flex: 1 1 480px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top : -20px;
}

/* Mascot */
.b1am-hero2__mascot {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 150px;
  height: 190px;
  z-index: 1;
  margin-left: -70px;
}

.b1am-hero2__mascot-head {
  position: relative;
  width: 120px;
  height: 110px;
  background: #fff;
  border: 3px solid #2f8dff;
  border-radius: 50% 50% 45% 45%;
  margin: 0 auto;
}

.b1am-hero2__mascot-eye {
  position: absolute;
  top: 48px;
  width: 10px;
  height: 14px;
  background: #2d2d44;
  border-radius: 50%;
}
.b1am-hero2__mascot-eye--l { left: 32px; }
.b1am-hero2__mascot-eye--r { right: 32px; }

.b1am-hero2__mascot-smile {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 13px;
  border-bottom: 3px solid #2d2d44;
  border-radius: 0 0 50% 50%;
}

.b1am-hero2__mascot-ear {
  position: absolute;
  top: 8px;
  width: 14px;
  height: 30px;
  background: #2f8dff;
  border-radius: 10px;
}
.b1am-hero2__mascot-ear--l { left: 10px; transform: rotate(-15deg); }
.b1am-hero2__mascot-ear--r { right: 10px; transform: rotate(15deg); }

.b1am-hero2__mascot-body {
  width: 110px;
  height: 90px;
  background: #fff;
  border: 3px solid #2f8dff;
  border-radius: 40px;
  margin: -10px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b1am-hero2__mascot-heart {
  color: #7ec2ff;
  font-size: 26px;
}

/* Phones */
.b1am-hero2__phone {
  position: relative;
  width: 210px;
  height: 400px;
  background: #14121f;
  border-radius: 32px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(30, 20, 60, 0.25);
  margin-left: 90px;
}

.b1am-hero2__phone--front {
  z-index: 2;
  margin-right: -90px;
  margin-left: -30px;
  transform: rotate(-8deg);
}

.b1am-hero2__phone--back {
  z-index: 1;
  transform: translateY(10px) rotate(8deg);
}

.b1am-hero2__phone-notch {
  width: 50px;
  height: 6px;
  background: #2a2438;
  border-radius: 4px;
  margin: 4px auto 8px;
}

.b1am-hero2__phone-header {
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
}

.b1am-hero2__back-arrow {
  color: #2f8dff;
  margin-right: 6px;
}

.b1am-hero2__phone-body {
  background: #fff;
  padding: 16px 14px;
  height: 260px;
}

.b1am-hero2__bubble {
  background: #eaf4ff;
  color: #2d2d44;
  font-size: 12.5px;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 14px 14px 14px 2px;
  max-width: 85%;
}

.b1am-hero2__phone-input {
  background: #fff;
  border-radius: 0 0 16px 16px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11.5px;
  color: #9a9aab;
  border-top: 1px solid #eee;
}

.b1am-hero2__send {
  background: #2f8dff;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.b1am-hero2__buddy-list {
  list-style: none;
  margin: 0;
  padding: 10px 14px;
  background: #fff;
  height: 316px;
  border-radius: 0 0 16px 16px;
}

.b1am-hero2__buddy-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid #f2f2f5;
  font-size: 12.5px;
  color: #1a1a2e;
}

.b1am-hero2__buddy-list small {
  display: block;
  color: #9a9aab;
  font-size: 10.5px;
  font-weight: 400;
}

.b1am-hero2__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7ec2ff, #2f8dff);
  flex-shrink: 0;
}

/* Decorative */
.b1am-hero2__tag {
  position: absolute;
  top: 10px;
  right: 0;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #2f8dff;
  font-size: 18px;
  text-align: right;
  line-height: 1.4;
  margin-top :-50px;
}

.b1am-hero2__sparkle {
  position: absolute;
  color: #7ec2ff;
  font-size: 18px;
}
.b1am-hero2__sparkle--1 { top: 60px; left: 40%; }
.b1am-hero2__sparkle--2 { bottom: 90px; right: 10px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .b1am-hero2__container {
    flex-direction: column;
    text-align: center;
  }
  .b1am-hero2__desc { margin-left: auto; margin-right: auto; }
  .b1am-hero2__actions { justify-content: center; }
  .b1am-hero2__visual { min-height: 380px; margin-top: 20px; }
  .b1am-hero2__mascot { display: none; }
}

@media (max-width: 480px) {
  .b1am-hero2__title { font-size: 32px; }
  .b1am-hero2__phone { width: 170px; height: 340px; }
  .b1am-hero2__phone--front { margin-right: -50px; }
}


/* ============ PROBLEM SECTION ============ */
.b1am-problem {
  padding: 70px 24px;
  background: #ffffff;
}

.b1am-problem__container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

/* ---- LEFT CONTENT ---- */
.b1am-problem__content {
  flex: 0 0 320px;
}

.b1am-problem__label {
  display: block;
  color: #2f8dff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.b1am-problem__title {
  font-size: 26px;
  line-height: 1.35;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 14px;
}

.b1am-problem__highlight {
  color: #2f8dff;
}

.b1am-problem__desc {
  font-size: 14px;
  line-height: 1.7;
  color: #7a7a8c;
  margin: 0;
}

/* ---- RIGHT CARDS ---- */
.b1am-problem__cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.b1am-problem__card {
  background: #fff;
  border: 1px solid #e5eefc;
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 0 4px 14px rgba(47, 141, 255, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.b1am-problem__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(47, 141, 255, 0.12);
}

.b1am-problem__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf4ff;
  border-radius: 10px;
  margin-bottom: 14px;
}

.b1am-problem__icon svg {
  width: 20px;
  height: 20px;
}

.b1am-problem__card-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
  line-height: 1.4;
}

.b1am-problem__card-desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: #9a9aab;
  margin: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .b1am-problem__container {
    flex-direction: column;
  }
  .b1am-problem__cards {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}

@media (max-width: 560px) {
  .b1am-problem__cards {
    grid-template-columns: 1fr;
  }
  .b1am-problem__title {
    font-size: 22px;
  }
}

/* ============ IDEA SECTION (sky blue / black / white) ============ */
.b1am-idea {
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
  background: linear-gradient(135deg, #05070f 0%, #0a1024 55%, #0d1530 100%);
}

.b1am-idea__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
}

.b1am-idea__glow--1 {
  width: 260px;
  height: 260px;
  background: #2f8dff;
  top: -80px;
  right: 15%;
}

.b1am-idea__glow--2 {
  width: 200px;
  height: 200px;
  background: #2f8dff;
  bottom: -60px;
  left: 5%;
  opacity: 0.2;
}

.b1am-idea__container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ---- LEFT CONTENT ---- */
.b1am-idea__content {
  flex: 1 1 380px;
  min-width: 280px;
}

.b1am-idea__label {
  display: block;
  color: #6cb6ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.b1am-idea__title {
  font-size: 26px;
  line-height: 1.35;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px;
}

.b1am-idea__desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: #b7c2d9;
  max-width: 360px;
  margin: 0;
}

/* ---- RIGHT VISUAL ---- */
.b1am-idea__visual {
  position: relative;
  flex: 1 1 340px;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Soft glowing ring behind robot */
.b1am-idea__ring {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1.5px solid rgba(108, 182, 255, 0.35);
  border-radius: 50%;
  z-index: 0;
}

.b1am-idea__ring::before {
  content: "";
  position: absolute;
  inset: -30px;
  border: 1px dashed rgba(108, 182, 255, 0.18);
  border-radius: 50%;
}

/* ---- Robot ---- */
.b1am-idea__robot {
  position: relative;
  z-index: 2;
}

.b1am-idea__robot-head {
  position: relative;
  width: 110px;
  height: 96px;
  background: #ffffff;
  border-radius: 40% 40% 35% 35%;
  margin: 0 auto;
  box-shadow: 0 12px 30px rgba(47, 141, 255, 0.25);
}

.b1am-idea__robot-eye {
  position: absolute;
  top: 40px;
  width: 9px;
  height: 12px;
  background: #05070f;
  border-radius: 50%;
}
.b1am-idea__robot-eye--l { left: 30px; }
.b1am-idea__robot-eye--r { right: 30px; }

.b1am-idea__robot-smile {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 12px;
  border-bottom: 3px solid #05070f;
  border-radius: 0 0 50% 50%;
}

.b1am-idea__robot-ear {
  position: absolute;
  top: 6px;
  width: 12px;
  height: 26px;
  background: #2f8dff;
  border-radius: 8px;
}
.b1am-idea__robot-ear--l { left: -4px; transform: rotate(-15deg); }
.b1am-idea__robot-ear--r { right: -4px; transform: rotate(15deg); }

.b1am-idea__robot-body {
  width: 100px;
  height: 80px;
  background: #ffffff;
  border-radius: 36px;
  margin: -10px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(47, 141, 255, 0.2);
}

.b1am-idea__robot-heart {
  color: #6cb6ff;
  font-size: 22px;
}

/* Floating chat bubble */
.b1am-idea__bubble {
  position: absolute;
  top: 30px;
  left: 10%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(108, 182, 255, 0.3);
  color: #e8f2ff;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 14px;
  backdrop-filter: blur(4px);
}

/* ---- Decorative leaves ---- */
.b1am-idea__leaf {
  position: absolute;
  background: rgba(47, 141, 255, 0.25);
  border-radius: 50% 0;
}
.b1am-idea__leaf--1 {
  width: 70px;
  height: 70px;
  top: 10px;
  left: -10px;
  transform: rotate(30deg);
}
.b1am-idea__leaf--2 {
  width: 50px;
  height: 50px;
  bottom: 0;
  right: 20%;
  transform: rotate(-20deg);
}

/* ---- Stars & heart ---- */
.b1am-idea__star {
  position: absolute;
  color: #6cb6ff;
  font-size: 14px;
}
.b1am-idea__star--1 { top: 10px; right: 10%; }
.b1am-idea__star--2 { bottom: 30px; right: 4%; }

.b1am-idea__heart {
  position: absolute;
  color: #6cb6ff;
  font-size: 16px;
}
.b1am-idea__heart--1 { bottom: 40px; left: 8%; }

/* ---- Tagline ---- */
.b1am-idea__tagline {
  position: absolute;
  top: 10px;
  right: 0;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #ffffff;
  font-size: 15px;
  text-align: right;
  line-height: 1.5;
  margin: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .b1am-idea__container {
    flex-direction: column;
    text-align: center;
  }
  .b1am-idea__desc { margin-left: auto; margin-right: auto; }
  .b1am-idea__visual { margin-top: 30px; min-height: 260px; }
  .b1am-idea__tagline { position: static; text-align: center; margin-top: 16px; }
  .b1am-idea__bubble { left: 50%; transform: translateX(-50%); top: 0; }
}

@media (max-width: 480px) {
  .b1am-idea__title { font-size: 22px; }
  .b1am-idea__robot-head { width: 85px; height: 74px; }
  .b1am-idea__robot-body { width: 78px; height: 62px; }
  .b1am-idea__ring { width: 170px; height: 170px; }
}

/* ============ TWO WAYS SECTION ============ */
.b1am-ways {
  padding: 70px 24px;
  background: #ffffff;
}

.b1am-ways__container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr 1fr 180px;
  gap: 24px;
  align-items: start;
  position: relative;
}

/* ---- LEFT CONTENT ---- */
.b1am-ways__content {
  padding-top: 6px;
}

.b1am-ways__label {
  display: block;
  color: #2f8dff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}

.b1am-ways__title {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 12px;
}

.b1am-ways__desc {
  font-size: 13px;
  line-height: 1.65;
  color: #7a7a8c;
  margin: 0;
}

/* ---- CARDS ---- */
.b1am-ways__card {
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.b1am-ways__card--ai {
  background: #f4f9ff;
  border: 1px solid #dceafd;
}

.b1am-ways__card--human {
  background: #f8f9fb;
  border: 1px solid #eceef1;
}

.b1am-ways__card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.b1am-ways__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.b1am-ways__avatar svg {
  width: 20px;
  height: 20px;
}

.b1am-ways__avatar--ai {
  background: linear-gradient(135deg, #6cb6ff, #2f8dff);
}

.b1am-ways__avatar--human {
  background: linear-gradient(135deg, #4a5568, #1a1a2e);
}

.b1am-ways__card-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 2px;
}

.b1am-ways__card-sub {
  font-size: 12px;
  color: #7a7a8c;
  margin: 0;
}

.b1am-ways__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  flex: 1;
}

.b1am-ways__list li {
  position: relative;
  padding-left: 22px;
  font-size: 12.5px;
  color: #4a4a5c;
  margin-bottom: 10px;
  line-height: 1.5;
}

.b1am-ways__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2f8dff;
  font-weight: 700;
  font-size: 12px;
}

.b1am-ways__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.b1am-ways__btn--ai {
  background: linear-gradient(135deg, #6cb6ff, #2f8dff);
  color: #fff;
}

.b1am-ways__btn--human {
  background: #14121f;
  color: #fff;
}

.b1am-ways__btn:hover {
  transform: translateY(-2px);
}

/* ---- RIGHT NOTE ---- */
.b1am-ways__note {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #2f8dff;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  transform: rotate(-3deg);
  margin: 10px 0 0;
}

.b1am-ways__heart {
  color: #6cb6ff;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .b1am-ways__container {
    grid-template-columns: 1fr 1fr;
  }
  .b1am-ways__content,
  .b1am-ways__note {
    grid-column: 1 / -1;
    text-align: left;
    transform: none;
  }
}

@media (max-width: 640px) {
  .b1am-ways__container {
    grid-template-columns: 1fr;
  }
}

/* ============ JOURNEY SECTION ============ */
.b1am-journey {
  position: relative;
  overflow: hidden;
  padding: 64px 24px 70px;
  
}

.b1am-journey__leaf {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: rgba(47, 141, 255, 0.08);
  border-radius: 50% 0;
  transform: rotate(25deg);
  pointer-events: none;
}

.b1am-journey__top {
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
}

.b1am-journey__label {
  display: block;
  color: #2f8dff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.b1am-journey__title {
  font-size: 30px;
  line-height: 1.35;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 12px;
}

.b1am-journey__desc {
  font-size: 14.5px;
  color: #7a7a8c;
  margin: 0;
}

/* ---- STEPS ---- */
.b1am-journey__steps {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

/* connecting line through icon centers */
.b1am-journey__line {
  position: absolute;
  top: 34px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #cfe3ff 0,
    #cfe3ff 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 0;
}

.b1am-journey__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.b1am-journey__icon {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #dceafd;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(47, 141, 255, 0.14);
  margin: 0 auto 18px;
}

.b1am-journey__icon svg {
  width: 26px;
  height: 26px;
}

.b1am-journey__icon--filled {
  background: linear-gradient(135deg, #6cb6ff, #2f8dff);
  border: none;
  box-shadow: 0 10px 24px rgba(47, 141, 255, 0.35);
}

.b1am-journey__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #2f8dff;
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 10px;
}

.b1am-journey__step-title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
}

.b1am-journey__step-desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: #8a8a9c;
  margin: 0 auto;
  max-width: 170px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .b1am-journey__steps {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 40px;
  }
  .b1am-journey__line {
    display: none;
  }
}

@media (max-width: 640px) {
  .b1am-journey__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .b1am-journey__title {
    font-size: 24px;
  }
}

@media (max-width: 420px) {
  .b1am-journey__steps {
    grid-template-columns: 1fr;
  }
}


/* ============ EXPERIENCE SECTION ============ */
.b1am-exp {
  padding: 60px 24px;
  background: #ffffff;
}

.b1am-exp__container {
  max-width: 1280px;
  margin: 0 auto;
}

/* ---- TOP CONTENT ---- */
.b1am-exp__content {
  max-width: 620px;
  margin-bottom: 40px;
}

.b1am-exp__label {
  display: block;
  color: #2f8dff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}

.b1am-exp__title {
  font-size: 26px;
  line-height: 1.35;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 10px;
}

.b1am-exp__desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: #7a7a8c;
  margin: 0;
}

/* ---- ROW ---- */
.b1am-exp__row {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.b1am-exp__connector {
  flex: 0 0 auto;
  color: #bcd8ff;
  font-size: 22px;
  font-weight: 700;
}

.b1am-exp__card {
  flex: 1 1 200px;
  min-width: 190px;
  background: #f7fbff;
  border: 1px solid #e2edfc;
  border-radius: 16px;
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.b1am-exp__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(47, 141, 255, 0.12);
}

.b1am-exp__card--dark {
  background: linear-gradient(160deg, #14121f, #1c2340);
  border: none;
}

.b1am-exp__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.b1am-exp__step-no {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #2f8dff;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b1am-exp__step-no--light {
  background: #ffffff;
  color: #14121f;
}

.b1am-exp__mini-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b1am-exp__mini-icon svg {
  width: 18px;
  height: 18px;
}

.b1am-exp__mini-icon--light {
  background: rgba(255, 255, 255, 0.1);
}

.b1am-exp__card-title {
  font-size: 14.5px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 6px;
}

.b1am-exp__card--dark .b1am-exp__card-title {
  color: #ffffff;
}

.b1am-exp__card-desc {
  font-size: 12px;
  line-height: 1.6;
  color: #8a8a9c;
  margin: 0;
}

.b1am-exp__card--dark .b1am-exp__card-desc {
  color: #b7c2d9;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .b1am-exp__row {
    flex-wrap: wrap;
  }
  .b1am-exp__connector {
    display: none;
  }
  .b1am-exp__card {
    flex: 1 1 45%;
  }
}

@media (max-width: 520px) {
  .b1am-exp__card {
    flex: 1 1 100%;
  }
  .b1am-exp__title {
    font-size: 22px;
  }
}

/* ============ HOW IT FEELS SECTION (dark / sky blue) ============ */
.b1am-feel {
  position: relative;
  overflow: hidden;
  padding: 50px 24px 60px;
  background: linear-gradient(135deg, #05070f 0%, #0a1024 55%, #0d1530 100%);
}

.b1am-feel__glow {
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(47, 141, 255, 0.25), transparent 70%);
  pointer-events: none;
}

.b1am-feel__container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  gap: 24px;
}

/* ---- LEFT CONTENT ---- */
.b1am-feel__label {
  display: block;
  color: #6cb6ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}

.b1am-feel__title {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
}

.b1am-feel__desc {
  font-size: 12.5px;
  line-height: 1.65;
  color: #b7c2d9;
  margin: 0;
}

/* ---- ROW ---- */
.b1am-feel__row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  overflow-x: auto;
}

.b1am-feel__arrow {
  flex: 0 0 auto;
  align-self: center;
  color: #4c6ea3;
  font-size: 16px;
}

.b1am-feel__card {
  flex: 1 1 160px;
  min-width: 150px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(108, 182, 255, 0.2);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
}

.b1am-feel__card--highlight {
  background: rgba(47, 141, 255, 0.08);
  border: 1px solid rgba(108, 182, 255, 0.45);
}

.b1am-feel__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6cb6ff, #2f8dff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.b1am-feel__icon svg {
  width: 20px;
  height: 20px;
}

.b1am-feel__icon--highlight {
  box-shadow: 0 0 0 4px rgba(108, 182, 255, 0.15);
}

.b1am-feel__card-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
}

.b1am-feel__card-desc {
  font-size: 11.5px;
  line-height: 1.55;
  color: #9aa7c4;
  margin: 0;
}

/* ---- RIGHT NOTE ---- */
.b1am-feel__note {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
  white-space: nowrap;
  margin: 0;
}

.b1am-feel__heart {
  color: #6cb6ff;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .b1am-feel__container {
    grid-template-columns: 1fr;
  }
  .b1am-feel__note {
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .b1am-feel__row {
    flex-wrap: wrap;
  }
  .b1am-feel__arrow {
    display: none;
  }
  .b1am-feel__card {
    flex: 1 1 45%;
  }
}

/* ============ SAFE SPACE SECTION ============ */
.b1am-safe {
  padding: 60px 24px;
  background: #ffffff;
}

.b1am-safe__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr 260px;
  align-items: center;
  gap: 24px;
}

/* ---- LEFT CONTENT ---- */
.b1am-safe__label {
  display: block;
  color: #2f8dff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}

.b1am-safe__title {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 10px;
}

.b1am-safe__desc {
  font-size: 13px;
  line-height: 1.65;
  color: #7a7a8c;
  margin: 0;
}

/* ---- MIDDLE FEATURES ---- */
.b1am-safe__features {
  background: #f7fbff;
  border: 1px solid #e2edfc;
  border-radius: 18px;
  padding: 26px 20px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.b1am-safe__feature {
  flex: 1 1 0;
  min-width: 110px;
}

.b1am-safe__divider {
  width: 1px;
  align-self: stretch;
  background: #dceafd;
}

.b1am-safe__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #dceafd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.b1am-safe__icon svg {
  width: 18px;
  height: 18px;
}

.b1am-safe__feature-title {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 6px;
}

.b1am-safe__feature-desc {
  font-size: 11.5px;
  line-height: 1.55;
  color: #8a8a9c;
  margin: 0;
}

/* ---- RIGHT QUOTE CARD ---- */
.b1am-safe__quote {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0b0e1f, #101a3a);
  border-radius: 18px;
  padding: 22px;
  min-height: 140px;
  display: flex;
  align-items: flex-end;
}

.b1am-safe__quote-curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.b1am-safe__quote-text {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
  max-width: 200px;
}

.b1am-safe__quote-heart {
  position: absolute;
  top: 16px;
  right: 18px;
  color: #6cb6ff;
  font-size: 15px;
  z-index: 1;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .b1am-safe__container {
    grid-template-columns: 1fr;
  }
  .b1am-safe__features {
    flex-wrap: wrap;
  }
  .b1am-safe__feature {
    flex: 1 1 45%;
  }
  .b1am-safe__divider {
    display: none;
  }
}

@media (max-width: 560px) {
  .b1am-safe__feature {
    flex: 1 1 100%;
  }
  .b1am-safe__title {
    font-size: 20px;
  }
}


/* ============ AI + HUMAN SECTION ============ */
.b1am-combo {
  padding: 56px 24px;
  background: #ffffff;
}

.b1am-combo__container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr 240px;
  align-items: center;
  gap: 24px;
}

/* ---- LEFT CONTENT ---- */
.b1am-combo__label {
  display: block;
  color: #2f8dff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}

.b1am-combo__title {
  font-size: 21px;
  line-height: 1.4;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0;
}

.b1am-combo__desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: #7a7a8c;
  margin: 10px 0 0;
  max-width: 260px;
}

/* ---- EQUATION ROW ---- */
.b1am-combo__row {
  position: relative;
  overflow: hidden;
  background: #f7fbff;
  border: 1px solid #e2edfc;
  border-radius: 999px;
  padding: 22px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.b1am-combo__row::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 10%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(47, 141, 255, 0.12), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.b1am-combo__row::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: 12%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(47, 141, 255, 0.1), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.b1am-combo__dot {
  position: absolute;
  border-radius: 50%;
  background: #2f8dff;
  opacity: 0.25;
}
.b1am-combo__dot--1 { width: 5px; height: 5px; top: 20%; left: 8%; }
.b1am-combo__dot--2 { width: 4px; height: 4px; bottom: 24%; left: 15%; }
.b1am-combo__dot--3 { width: 6px; height: 6px; top: 30%; right: 10%; }

.b1am-combo__node {
  position: relative;
  z-index: 1;
  text-align: center;
  min-width: 110px;
}

.b1am-combo__node--center {
  min-width: 100px;
}

.b1am-combo__circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #dceafd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 6px 16px rgba(47, 141, 255, 0.1);
}

.b1am-combo__circle svg {
  width: 22px;
  height: 22px;
}

.b1am-combo__circle--dark {
  background: linear-gradient(135deg, #1a1a2e, #05070f);
  border: none;
}

.b1am-combo__node-title {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 4px;
}

.b1am-combo__node-desc {
  font-size: 11px;
  color: #8a8a9c;
  margin: 0;
}

.b1am-combo__plus {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
  color: #bcd8ff;
  flex: 0 0 auto;
}

/* ---- RIGHT NOTE ---- */
.b1am-combo__note {
  position: relative;
  background: #000000;
  border-radius: 20px 20px 20px 4px;
  padding: 18px 20px;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #2f8dff;
  font-size: 13px;
  line-height: 1.6;
  transform: rotate(-2deg);
}

.b1am-combo__note p {
  margin: 0;
  color: #ffffff;
}

.b1am-combo__note-heart {
  position: absolute;
  bottom: -10px;
  right: 14px;
  color: #6cb6ff;
  font-size: 14px;
}

.b1am-combo__note-sparkle {
  position: absolute;
  top: -10px;
  right: -6px;
  color: #6cb6ff;
  font-size: 14px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .b1am-combo__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .b1am-combo__row {
    flex-wrap: wrap;
    border-radius: 24px;
  }
  .b1am-combo__note {
    transform: none;
    justify-self: center;
    max-width: 320px;
  }
}

@media (max-width: 560px) {
  .b1am-combo__row {
    gap: 14px;
    padding: 20px;
  }
  .b1am-combo__plus {
    display: none;
  }
  .b1am-combo__node {
    min-width: 90px;
  }
}


/* ============ FINAL CTA SECTION ============ */
.b1am-cta2 {
  position: relative;
  overflow: hidden;
  padding: 70px 24px 0;
  min-height: 320px;
  background: linear-gradient(180deg, #05070f 0%, #0a1230 60%, #101b3e 100%);
}

/* Stars */
.b1am-cta2__star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0.7;
}

/* Moon */
.b1am-cta2__moon {
  position: absolute;
  top: 30px;
  right: 18%;
  width: 34px;
  height: 34px;
  background: #eaf2ff;
  border-radius: 50%;
  box-shadow: -8px 0 0 -2px #0a1230 inset, 0 0 24px rgba(234, 242, 255, 0.5);
}

/* Hills / horizon silhouette at bottom */
.b1am-cta2__hills {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #05070f;
  clip-path: polygon(0% 100%, 0% 40%, 10% 50%, 22% 30%, 35% 55%, 50% 25%, 65% 50%, 80% 35%, 92% 55%, 100% 40%, 100% 100%);
}

.b1am-cta2__container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px auto 1fr 220px;
  align-items: center;
  gap: 20px;
  padding-bottom: 50px;
}

/* ---- LEFT CONTENT ---- */
.b1am-cta2__title {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
}

.b1am-cta2__desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: #b7c2d9;
  margin: 0;
}

/* ---- ROBOT ---- */
.b1am-cta2__robot-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b1am-cta2__robot-glow {
  position: absolute;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(47, 141, 255, 0.35), transparent 70%);
  border-radius: 50%;
}

.b1am-cta2__robot {
  position: relative;
  z-index: 1;
}

.b1am-cta2__robot-head {
  position: relative;
  width: 80px;
  height: 70px;
  background: #ffffff;
  border-radius: 40% 40% 35% 35%;
  margin: 0 auto;
}

.b1am-cta2__robot-eye {
  position: absolute;
  top: 30px;
  width: 7px;
  height: 9px;
  background: #05070f;
  border-radius: 50%;
}
.b1am-cta2__robot-eye--l { left: 22px; }
.b1am-cta2__robot-eye--r { right: 22px; }

.b1am-cta2__robot-smile {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 9px;
  border-bottom: 2.4px solid #05070f;
  border-radius: 0 0 50% 50%;
}

.b1am-cta2__robot-ear {
  position: absolute;
  top: 4px;
  width: 9px;
  height: 20px;
  background: #2f8dff;
  border-radius: 6px;
}
.b1am-cta2__robot-ear--l { left: -2px; transform: rotate(-15deg); }
.b1am-cta2__robot-ear--r { right: -2px; transform: rotate(15deg); }

.b1am-cta2__robot-body {
  width: 74px;
  height: 58px;
  background: #ffffff;
  border-radius: 28px;
  margin: -8px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b1am-cta2__robot-heart {
  color: #6cb6ff;
  font-size: 18px;
}

/* ---- BUTTONS ---- */
.b1am-cta2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.b1am-cta2__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.b1am-cta2__btn--primary {
  background: linear-gradient(135deg, #6cb6ff, #2f8dff);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(47, 141, 255, 0.35);
}

.b1am-cta2__btn--outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.b1am-cta2__btn:hover {
  transform: translateY(-2px);
}

/* ---- RIGHT TAGLINE ---- */
.b1am-cta2__tagline {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
  transform: rotate(-3deg);
  margin: 0;
}

.b1am-cta2__heart {
  color: #6cb6ff;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1000px) {
  .b1am-cta2__container {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .b1am-cta2__tagline {
    transform: none;
    text-align: center;
  }
  .b1am-cta2__moon {
    right: 8%;
  }
}

@media (max-width: 480px) {
  .b1am-cta2__title {
    font-size: 19px;
  }
  .b1am-cta2__actions {
    flex-direction: column;
    width: 100%;
  }
  .b1am-cta2__btn {
    justify-content: center;
  }
}

/*********our-vision page***************/

.ivh-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 70px;
  background: linear-gradient(120deg, #ffffff 0%, #f2f8fd 60%, #eaf3fb 100%);
  overflow: hidden;
  flex-wrap: wrap;
}

.ivh-hero__text {
  flex: 1 1 420px;
  max-width: 560px;
}

.ivh-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2ba3e8;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  margin: 0 0 18px;
}

.ivh-hero__eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #2ba3e8;
}

.ivh-hero__heading {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 800;
  color: #14243a;
  margin: 0 0 22px;
}

.ivh-hero__heading-accent {
  color: #29a6ec;
}

.ivh-hero__desc {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5a6b;
  margin: 0;
  max-width: 480px;
}

.ivh-hero__visual {
  position: relative;
  flex: 1 1 480px;
  display: flex;
  justify-content: center;
}

.ivh-hero__arch {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 5 / 4;
  border-radius: 280px 280px 0 0;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(20, 50, 80, 0.15);
}

.ivh-hero__scene {
  width: 100%;
  height: 100%;
  display: block;
}

.ivh-hero__quote {
  position: absolute;
  top: 10px;
  right: -10px;
  max-width: 220px;
  text-align: right;
  font-family: 'Segoe Script', 'Comic Sans MS', cursive;
  color: #16324a;
  font-size: 20px;
  line-height: 1.4;
  transform: rotate(-3deg);
}

.ivh-hero__quote-underline {
  display: block;
  width: 90px;
  height: 2px;
  background: #2ba3e8;
  margin: 6px 0 0 auto;
}

@media (max-width: 900px) {
  .ivh-hero {
    padding: 40px 24px;
    text-align: center;
  }
  .ivh-hero__heading { font-size: 32px; }
  .ivh-hero__quote { position: static; transform: none; margin-top: 16px; text-align: center; }
  .ivh-hero__quote-underline { margin: 6px auto 0; }
}

.imw-access {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 70px;
  background: #ffffff;
  flex-wrap: wrap;
}

.imw-access__content {
  flex: 1 1 340px;
  max-width: 420px;
}

.imw-access__heading {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  color: #14243a;
  margin: 0 0 18px;
}

.imw-access__heading-accent {
  color: #2ba3e8;
}

.imw-access__desc {
  font-size: 15px;
  line-height: 1.7;
  color: #5a6b7d;
  margin: 0;
}

.imw-access__visual {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imw-access__scene {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}

.imw-access__stats {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.imw-access__stat p {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #17324a;
  line-height: 1.7;
  margin: 0 0 10px;
}

.imw-access__divider {
  width: 1px;
  height: 60px;
  background: #d6e2ea;
}

.imw-access__stat-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 950px) {
  .imw-access {
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
  }
  .imw-access__stats {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }
}


.tec-empathy {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 70px;
  background: linear-gradient(135deg, #0b1220 0%, #0e1930 55%, #0a1a33 100%);
  overflow: hidden;
  flex-wrap: wrap;
}
 
.tec-empathy__content {
  flex: 1 1 340px;
  max-width: 440px;
  position: relative;
  z-index: 2;
}
 
.tec-empathy__heading {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin: 0 0 18px;
}
 
.tec-empathy__heading-accent {
  color: #4bb3ea;
}
 
.tec-empathy__desc {
  font-size: 15px;
  line-height: 1.75;
  color: #9fb0c6;
  margin: 0;
  max-width: 400px;
}
 
.tec-empathy__visual {
  position: relative;
  flex: 1 1 320px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
 
.tec-empathy__glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(75,179,234,0.35) 0%, rgba(75,179,234,0) 70%);
  border-radius: 50%;
  z-index: 0;
}
 
.tec-empathy__waveform {
  position: absolute;
  left: 0;
  width: 130px;
  height: 36px;
  opacity: 0.85;
}
 
.tec-empathy__spark {
  position: absolute;
  top: 10%;
  right: 18%;
  width: 34px;
  height: 34px;
  animation: tecSparkPulse 1.8s ease-in-out infinite;
}
 
@keyframes tecSparkPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
 
.tec-empathy__phone {
  position: relative;
  width: 190px;
  height: 260px;
  background: #101b30;
  border: 3px solid #1c2b45;
  border-radius: 32px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  padding: 22px 14px;
  z-index: 1;
}
 
.tec-empathy__phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 6px;
  background: #1c2b45;
  border-radius: 4px;
}
 
.tec-empathy__chat {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.tec-empathy__bubble {
  background: #1c2c48;
  color: #dfe9f5;
  font-size: 11.5px;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 12px 12px 12px 4px;
  position: relative;
  max-width: 90%;
}
 
.tec-empathy__heart-icon {
  width: 12px;
  height: 12px;
  vertical-align: middle;
  margin-left: 4px;
}
 
.tec-empathy__typing {
  display: flex;
  gap: 4px;
  padding: 8px 12px;
  background: #1c2c48;
  border-radius: 12px 12px 12px 4px;
  width: fit-content;
}
 
.tec-empathy__typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6f86a3;
  animation: tecTypingBounce 1.2s ease-in-out infinite;
}
 
.tec-empathy__typing span:nth-child(2) { animation-delay: 0.15s; }
.tec-empathy__typing span:nth-child(3) { animation-delay: 0.3s; }
 
@keyframes tecTypingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}
 
.tec-empathy__quote {
  position: relative;
  flex: 0 0 200px;
  font-family: 'Segoe Script', 'Comic Sans MS', cursive;
  color: #cfe4f5;
  font-size: 19px;
  line-height: 1.5;
  text-align: right;
  transform: rotate(-2deg);
  z-index: 2;
}
 
.tec-empathy__quote-underline {
  display: block;
  width: 90px;
  height: 2px;
  background: #4bb3ea;
  margin: 6px 0 0 auto;
}
 
@media (max-width: 950px) {
  .tec-empathy {
    text-align: center;
    padding: 50px 24px;
  }
  .tec-empathy__waveform { display: none; }
  .tec-empathy__quote {
    text-align: center;
    transform: none;
    margin-top: 10px;
  }
  .tec-empathy__quote-underline { margin: 6px auto 0; }
}

.scm-community {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 70px;
  background: #ffffff;
  flex-wrap: wrap;
}

.scm-community__visual {
  position: relative;
  flex: 1 1 400px;
  max-width: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scm-community__blob {
  position: absolute;
  width: 108%;
  height: 108%;
  background: #dcedf9;
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  filter: blur(6px);
  z-index: 0;
}

.scm-community__spark {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 30px;
  height: 30px;
  z-index: 2;
  animation: scmSparkPulse 1.8s ease-in-out infinite;
}

@keyframes scmSparkPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.scm-community__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 20px 45px rgba(20, 50, 80, 0.15);
}

.scm-community__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scm-community__content {
  flex: 1 1 320px;
  max-width: 420px;
}

.scm-community__heading {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: #14243a;
  margin: 0 0 16px;
}

.scm-community__heading-accent {
  display: block;
  color: #2ba3e8;
}

.scm-community__desc {
  font-size: 15px;
  line-height: 1.75;
  color: #5a6b7d;
  margin: 0;
}

.scm-community__stats {
  flex: 0 0 200px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.scm-community__divider {
  width: 1px;
  height: 70px;
  background: #d6e2ea;
}

.scm-community__stat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.scm-community__stat-text {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #5a6b7d;
  line-height: 1.9;
  margin: 0;
}

@media (max-width: 950px) {
  .scm-community {
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
  }
  .scm-community__heading-accent { display: inline; }
  .scm-community__stats {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
  }
  .scm-community__stat-text { text-align: left; }
}




.rea-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 55px 70px;
  background: linear-gradient(135deg, #0b1220 0%, #0e1930 55%, #0a1a33 100%);
  flex-wrap: wrap;
}

.rea-trust__content {
  flex: 1 1 320px;
  max-width: 400px;
}

.rea-trust__heading {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  margin: 0 0 14px;
}

.rea-trust__heading-accent {
  color: #4bb3ea;
}

.rea-trust__desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: #9fb0c6;
  margin: 0;
}

.rea-trust__visual {
  flex: 1 1 260px;
  max-width: 300px;
  display: flex;
  justify-content: center;
}

.rea-trust__scene {
  width: 100%;
  height: auto;
}

.rea-trust__orbit {
  animation: reaOrbitSpin 14s linear infinite;
  transform-origin: 130px 105px;
}

@keyframes reaOrbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.rea-trust__dots circle {
  animation: reaDotPulse 2.4s ease-in-out infinite;
}

.rea-trust__dots circle:nth-child(2) { animation-delay: 0.4s; }
.rea-trust__dots circle:nth-child(3) { animation-delay: 0.8s; }
.rea-trust__dots circle:nth-child(4) { animation-delay: 1.2s; }
.rea-trust__dots circle:nth-child(5) { animation-delay: 1.6s; }
.rea-trust__dots circle:nth-child(6) { animation-delay: 2s; }

@keyframes reaDotPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.rea-trust__list {
  flex: 0 0 200px;
  list-style: none;
  margin: 0;
  padding: 0 0 0 32px;
  border-left: 1px solid #26364f;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rea-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cfe0f0;
  font-size: 13px;
}

.rea-trust__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 950px) {
  .rea-trust {
    text-align: center;
    justify-content: center;
    padding: 40px 24px;
  }
  .rea-trust__list {
    border-left: none;
    padding-left: 0;
    align-items: center;
    width: 100%;
    margin-top: 10px;
  }
  .rea-trust__item { justify-content: center; }
}




.lti-impact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 55px 70px;
  background: #f5f9fd;
  flex-wrap: wrap;
}

.lti-impact__content {
  flex: 1 1 320px;
  max-width: 400px;
}

.lti-impact__heading {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: #14243a;
  margin: 0 0 14px;
}

.lti-impact__heading-accent {
  color: #2ba3e8;
}

.lti-impact__desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: #5a6b7d;
  margin: 0;
}

.lti-impact__quote {
  flex: 0 0 220px;
  font-family: 'Segoe Script', 'Comic Sans MS', cursive;
  color: #17324a;
  font-size: 19px;
  line-height: 1.5;
  transform: rotate(-14deg);
}

.lti-impact__quote p {
  margin: 0;
}

.lti-impact__quote-heart {
  width: 22px;
  height: 22px;
  margin-top: 8px;
}

.lti-impact__visual {
  position: relative;
  flex: 1 1 340px;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lti-impact__photo {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

@media (max-width: 950px) {
  .lti-impact {
    text-align: center;
    justify-content: center;
    padding: 40px 24px;
  }
  .lti-impact__quote {
    transform: none;
    text-align: center;
  }
  .lti-impact__quote-heart { margin: 8px auto 0; display: block; }
}