.hero-x{
  position:relative;
  background:linear-gradient(180deg,#0b1220,#0c1628);
  padding:80px 80px 120px;
  overflow:hidden;
  font-family:Inter,system-ui;
  margin-top: 3rem;
}

/* BG GLOW */
.hero-x__bg-glow{
  position:absolute;
  width:320px;
  height:320px;
  border-radius:50%;
  filter:blur(90px);
  z-index:0;
}

.hero-x__bg-glow.blue{
  background:rgba(79,141,253,.15);
  left:25%;
  top:20%;
}

.hero-x__bg-glow.orange{
  background:rgba(255,122,47,.08);
  right:20%;
  bottom:15%;
}

/* CONTAINER */
.hero-x__container{
  max-width:1280px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 520px;
  gap:80px;
  align-items:center;
  position:relative;
  z-index:2;
}

/* LEFT */
.hero-x__left{
  display:flex;
  flex-direction:column;
  gap:26px;
}

/* BADGE */
.hero-x__badge{
  padding:6px 18px;
  border-radius:999px;
  background:rgba(79,141,253,.1);
  border:1px solid rgba(79,141,253,.35);
  color:#4F8DFD;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.2px;
  width:max-content;
}

/* TITLE */
.hero-x__left h1{
  font-size:78px;
  line-height:72px;
  font-weight:800;
  color:white;
}

.hero-x__left h1 span{
  background:linear-gradient(90deg,#e8f0ff,#7fa8ff);
  -webkit-background-clip:text;
  color:transparent;
}

/* TEXT */
.hero-x__left p{
  font-size:19px;
  line-height:32px;
  color:#94A3B8;
  max-width:580px;
}

/* BUTTONS */
.hero-x__buttons{
  display:flex;
  gap:18px;
  margin-top:10px;
}

.btn-primary{
  background:#F26419;
  color:#fff;
  padding:16px 34px;
  border-radius:10px;
  font-weight:700;
  transition:.3s;
  box-shadow:0 12px 30px rgba(242,100,25,.35);
}

.btn-primary:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 50px rgba(242,100,25,.5);
}

.btn-secondary{
  border:1px solid #3b4a61;
  color:white;
  padding:16px 30px;
  border-radius:10px;
  font-weight:700;
}

.btn-secondary:hover{
  background:rgba(255,255,255,.05);
}

/* RIGHT */
.hero-x__right{
  position:relative;
}

/* IMAGE */
.hero-x__image{
  width:520px;
  height:520px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 30px 80px rgba(0,0,0,.4);
}

.hero-x__image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* =========================
   LIQUID GLASS CARD
========================= */

.glass-card{
  position:absolute;
  left:-30px;
  bottom:-25px;
  z-index:10;
  border-radius:18px;

  /* glass */
  background:rgba(255,255,255,.06);

  backdrop-filter:blur(22px) saturate(180%);
  -webkit-backdrop-filter:blur(22px) saturate(180%);

  border:1px solid rgba(255,255,255,.15);

  box-shadow:
    0 20px 60px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.2);

  padding:22px 26px;

  animation:floatGlass 5s ease-in-out infinite;
}

/* shine */
.glass-card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:18px;
  background:linear-gradient(
    120deg,
    rgba(255,255,255,.25),
    transparent 40%
  );
  opacity:.35;
}

/* glow */
.glass-card::after{
  content:"";
  position:absolute;
  bottom:-25px;
  left:-20%;
  right:-20%;
  height:70%;
  background:radial-gradient(circle,rgba(79,141,253,.25),transparent);
  filter:blur(30px);
  z-index:-1;
}

/* content */
.glass-card h3{
  font-size:32px;
  font-weight:700;
  color:white;
  margin:0;
}

.glass-card span{
  font-size:12px;
  letter-spacing:2px;
  color:#9fb6d6;
}

/* float */
@keyframes floatGlass{
  0%{transform:translateY(0)}
  50%{transform:translateY(-8px)}
  100%{transform:translateY(0)}
}

/* RESPONSIVE */
@media(max-width:1100px){
  .hero-x__container{
    grid-template-columns:1fr;
  }

  .hero-x__image{
    width:100%;
    height:auto;
    aspect-ratio:1/1;
  }

  .hero-x__left h1{
    font-size:52px;
    line-height:56px;
  }
}

@media(max-width:600px){
  .hero-x{
    padding:60px 20px;
  }

  .hero-x__left h1{
    font-size:38px;
    line-height:42px;
  }

  .hero-x__buttons{
    flex-direction:column;
  }
}

/* ABOUT BLOCKCHAIN  */

.bc-info{
  background:#f5f7fb;
  padding:100px 80px;
  font-family:Inter,system-ui;
}

/* CONTAINER */
.bc-info__container{
  max-width:1280px;
  margin:auto;
  display:grid;
  grid-template-columns:520px 1fr;
  gap:80px;
  align-items:center;
}

/* IMAGE */
.bc-info__image{
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.bc-info__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .6s ease;
}

.bc-info__image:hover img{
  transform:scale(1.05);
}

/* CONTENT */
.bc-info__content h2{
  font-size:42px;
  font-weight:700;
  color:#111827;
  margin-bottom:16px;
}

/* BLUE LINE */
.bc-info__line{
  width:70px;
  height:4px;
  background:#4F7DF3;
  border-radius:4px;
  margin-bottom:24px;
}

/* DESC */
.bc-info__desc{
  font-size:18px;
  line-height:30px;
  color:#6b7280;
  margin-bottom:36px;
  max-width:620px;
}

/* FEATURES */
.bc-info__features{
  display:flex;
  flex-direction:column;
  gap:26px;
}

/* ITEM */
.feature{
  display:flex;
  gap:18px;
  align-items:flex-start;
}

/* ICON */
.feature .icon{
  width:42px;
  height:42px;
  border-radius:10px;
  background:#eaf1ff;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#4F7DF3;
  font-size:18px;
  flex-shrink:0;
  transition:.3s;
}

/* HOVER */
.feature:hover .icon{
  background:#4F7DF3;
  color:#fff;
  transform:translateY(-2px);
}

/* TEXT */
.feature h4{
  font-size:18px;
  font-weight:600;
  color:#111827;
  margin-bottom:6px;
}

.feature p{
  font-size:15px;
  color:#6b7280;
  line-height:24px;
  max-width:520px;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .bc-info__container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .bc-info__image{
    max-width:600px;
    margin:auto;
  }
}

@media(max-width:600px){
  .bc-info{
    padding:60px 20px;
  }

  .bc-info__content h2{
    font-size:32px;
  }

  .bc-info__desc{
    font-size:16px;
  }
}

/* INVESTMENT IN BLOCK CHAIN  */

.bc-invest{
  background:linear-gradient(180deg,#081220,#0b1526);
  padding:100px 80px;
  font-family:Inter,system-ui;
  color:#fff;
}

/* CONTAINER */
.bc-invest__container{
  max-width:1280px;
  margin:auto;
}

/* HEADER */
.bc-invest__header{
  text-align:center;
  margin-bottom:60px;
}

.bc-invest__header h2{
  font-size:44px;
  font-weight:700;
  margin-bottom:12px;
}

.bc-invest__header p{
  font-size:18px;
  color:#94A3B8;
}

/* GRID */
.bc-invest__grid{
  display:grid;
  grid-template-columns:1fr 520px;
  gap:80px;
  align-items:center;
}

/* LEFT */
.bc-invest__cards{
  display:flex;
  flex-direction:column;
  gap:22px;
}

/* CARD */
.invest-card{
  padding:28px 30px;
  border-radius:16px;

  background:linear-gradient(
    135deg,
    rgba(40,70,120,.35),
    rgba(20,35,65,.35)
  );

  border:1px solid rgba(255,255,255,.08);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 10px 30px rgba(0,0,0,.25);

  backdrop-filter:blur(12px);

  transition:.35s ease;
}

/* HOVER GLOW */
.invest-card:hover{
  transform:translateY(-6px);
  border-color:rgba(79,141,253,.4);

  box-shadow:
    0 20px 60px rgba(79,141,253,.15),
    inset 0 1px 0 rgba(255,255,255,.08);
}

/* TEXT */
.invest-card h3{
  font-size:20px;
  font-weight:600;
  margin-bottom:10px;
}

.invest-card p{
  font-size:16px;
  color:#9aa7bd;
  line-height:26px;
  max-width:520px;
}

/* IMAGE */
.bc-invest__image{
  width:520px;
  height:520px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);

  box-shadow:
    0 40px 100px rgba(0,0,0,.5),
    0 10px 40px rgba(0,0,0,.3);
}

.bc-invest__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s ease;
}

.bc-invest__image:hover img{
  transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:1100px){
  .bc-invest__grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .bc-invest__image{
    width:100%;
    height:auto;
    aspect-ratio:1/1;
  }
}

@media(max-width:600px){
  .bc-invest{
    padding:60px 20px;
  }

  .bc-invest__header h2{
    font-size:32px;
  }

  .bc-invest__header p{
    font-size:16px;
  }
}


/* “Enterprise Blockchain Solutions */

.bc-solutions{
  background:#f5f7fb;
  padding:100px 80px;
  font-family:Inter,system-ui;
}

/* CONTAINER */
.bc-solutions__container{
  max-width:1280px;
  margin:auto;
}

/* HEADER */
.bc-solutions__header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:60px;
}

.bc-solutions__header h2{
  font-size:42px;
  font-weight:700;
  color:#111827;
  margin-bottom:10px;
}

.bc-solutions__header p{
  font-size:18px;
  color:#6b7280;
  max-width:600px;
}

/* DOTS */
.bc-solutions__dots{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.bc-solutions__dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#cbd5e1;
}

.bc-solutions__dots .active{
  background:#4F7DF3;
}

.bc-solutions__dots span:nth-child(2){
  background:#f97316;
}

/* GRID */
.bc-solutions__grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* CARD */
.solution-card{
  background:#0f2542;
  border-radius:18px;
  padding:22px;
  color:white;

  transition:.35s ease;

  box-shadow:
    0 10px 30px rgba(0,0,0,.2),
    inset 0 1px 0 rgba(255,255,255,.03);
}

/* IMAGE */
.solution-card img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:16px;
}

/* TITLE */
.solution-card h3{
  font-size:18px;
  font-weight:600;
  margin-bottom:8px;
}

/* TEXT */
.solution-card p{
  font-size:14px;
  color:#9aa7bd;
  line-height:22px;
  margin-bottom:16px;
}

/* LINK */
.solution-card a{
  color:#4F7DF3;
  font-size:14px;
  font-weight:500;
  text-decoration:none;
  transition:.3s;
}

/* HOVER */
.solution-card:hover{
  transform:translateY(-6px);
  box-shadow:
    0 20px 60px rgba(79,141,253,.2),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.solution-card:hover a{
  letter-spacing:0.5px;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .bc-solutions__grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .bc-solutions{
    padding:60px 20px;
  }

  .bc-solutions__grid{
    grid-template-columns:1fr;
  }

  .bc-solutions__header{
    flex-direction:column;
    gap:20px;
  }

  .bc-solutions__header h2{
    font-size:32px;
  }

  .bc-solutions__header p{
    font-size:16px;
  }
}

.solution-card{
  position:relative;
  overflow:hidden;
}

.solution-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    transparent,
    rgba(0,0,0,.2)
  );
  opacity:0;
  transition:.4s;
}

.solution-card:hover::before{
  opacity:1;
}

.solution-card:hover img{
  transform:scale(1.06);
}

/* HOW INDSTRIES USE BLOCK CHAIN  */

.bc-industries{
  background:linear-gradient(180deg,#071220,#0b1526);
  padding:100px 80px;
  font-family:Inter,system-ui;
  color:white;
}

/* CONTAINER */
.bc-industries__container{
  max-width:1280px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 520px;
  gap:80px;
  align-items:center;
}

/* LEFT */
.bc-industries__content{
  display:flex;
  flex-direction:column;
  gap:30px;
}

/* TITLE */
.bc-industries__content h2{
  font-size:44px;
  font-weight:700;
  margin-bottom:10px;
}

/* ITEM */
.industry{
  display:flex;
  gap:18px;
  align-items:flex-start;
}

/* NUMBER */
.industry .num{
  font-size:20px;
  font-weight:600;
  color:#4F7DF3;
  min-width:40px;
}

/* TEXT */
.industry h3{
  font-size:20px;
  font-weight:600;
  margin-bottom:6px;
}

.industry p{
  font-size:16px;
  color:#9aa7bd;
  line-height:26px;
  max-width:520px;
}

/* IMAGE */
.bc-industries__image{
  width:520px;
  height:520px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);

  box-shadow:
    0 40px 100px rgba(0,0,0,.5),
    0 10px 40px rgba(0,0,0,.3);
}

.bc-industries__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s ease;
}

.bc-industries__image:hover img{
  transform:scale(1.05);
}

/* RESPONSIVE */
@media(max-width:1100px){
  .bc-industries__container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .bc-industries__image{
    width:100%;
    height:auto;
    aspect-ratio:1/1;
  }
}

@media(max-width:600px){
  .bc-industries{
    padding:60px 20px;
  }

  .bc-industries__content h2{
    font-size:32px;
  }

  .industry h3{
    font-size:18px;
  }

  .industry p{
    font-size:15px;
  }
}

.industry{
  position:relative;
  padding-left:10px;
}

.industry::before{
  content:"";
  position:absolute;
  left:-10px;
  top:6px;
  bottom:6px;
  width:2px;
  background:linear-gradient(
    to bottom,
    transparent,
    rgba(79,141,253,.6),
    transparent
  );
  opacity:0;
  transition:.4s;
}

.industry:hover::before{
  opacity:1;
}

/* TIMELINE  */

/* LINE PROGRESS */
.line{
  position:absolute;
  top:38px;
  left:0;
  right:0;
  height:2px;
  background:#d6dce5;
}

.line .progress{
  height:100%;
  width:0%;
  background:linear-gradient(90deg,#4F8DFD,#6aa8ff);
  transition:width .6s cubic-bezier(.77,0,.18,1);
}

/* STEP BASE */
.step{
  position:relative;
  z-index:1;
  max-width:180px;
  cursor:pointer;
  transition:.3s;
}

/* CIRCLE BASE */
.circle{
  width:74px;
  height:74px;
  margin:0 auto 20px;
  border-radius:50%;
  background:#0b2545;
  color:#fff;

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

  font-size:22px;
  font-weight:600;

  border:3px solid #d6dce5;
  transition:.4s ease;
}

/* ACTIVE STEP */
.step.active .circle{
  background:#4F8DFD;
  border-color:#4F8DFD;

  box-shadow:
    0 0 0 8px rgba(79,141,253,.12),
    0 10px 30px rgba(79,141,253,.35);
}

/* GLOW PULSE */
.step.active .circle::after{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  background:rgba(79,141,253,.25);
  animation:pulse 2s infinite;
  z-index:-1;
}

@keyframes pulse{
  0%{transform:scale(1);opacity:.6;}
  70%{transform:scale(1.6);opacity:0;}
  100%{opacity:0;}
}

/* TEXT ACTIVE */
.step.active h3{
  color:#0b2545;
}

.step.active p{
  color:#4a5c75;
}

/* HOVER */
.step:hover .circle{
  transform:translateY(-6px) scale(1.08);
}

.bc-framework{
  background:#f4f6f8;
  padding:100px 60px;
  font-family:Inter,system-ui;
  text-align:center;
}

/* HEADER */
.bc-framework__header h2{
  font-size:44px;
  font-weight:700;
  color:#111827;
}

.bc-framework__header p{
  margin-top:12px;
  font-size:18px;
  color:#6b7a90;
}

/* TIMELINE */
.bc-framework__timeline{
  margin-top:80px;
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
}

/* LINE */
.bc-framework__timeline .line{
  position:absolute;
  top:38px;
  left:0;
  right:0;
  height:2px;
  background:#d6dce5;
  z-index:0;
}

/* STEP */
.step{
  position:relative;
  z-index:1;
  max-width:180px;
}

/* CIRCLE */
.circle{
  width:74px;
  height:74px;
  margin:0 auto 20px;
  border-radius:50%;

  background:#0b2545;
  color:#fff;

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

  font-size:22px;
  font-weight:600;

  border:3px solid #d6dce5;

  transition:.3s;
}

/* TITLE */
.step h3{
  font-size:18px;
  font-weight:600;
  margin-bottom:8px;
  color:#111827;
}

/* DESC */
.step p{
  font-size:14px;
  color:#6b7a90;
  line-height:22px;
}

/* HOVER EFFECT */
.step:hover .circle{
  transform:translateY(-6px) scale(1.05);
  box-shadow:0 10px 25px rgba(0,0,0,.15);
  background:#123a72;
}

/* RESPONSIVE */
@media(max-width:1000px){
  .bc-framework__timeline{
    flex-wrap:wrap;
    justify-content:center;
    gap:40px;
  }

  .bc-framework__timeline .line{
    display:none;
  }
}

.line::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:0%;
  background:#4F8DFD;
  transition:1.2s ease;
}

.bc-framework.animate .line::after{
  width:100%;
}

.line{
  position:absolute;
  top:38px;
  left:0;
  right:0;
  height:2px;
  background:#d6dce5;
  overflow:hidden; /* IMPORTANT */
}

.line .progress{
  height:100%;
  width:0%;
  background:#4F8DFD;
  transition:width .6s ease;
}
.step{
  cursor:pointer;
}

/* INDUSTRIES CINT  */


.industry{
  cursor:pointer;
  padding:14px 12px;
  border-radius:10px;
  transition:.3s;
}

.industry.active{
  background:rgba(79,141,253,.08);
}

.industry.active h3{
  color:#4F8DFD;
}

/* image smooth fade */
.bc-industries__image img{
  transition:opacity .35s ease, transform .5s ease;
}

/* PLATFORM */

.bc-platforms{
  background:linear-gradient(180deg,#071220,#0b1526);
  padding:100px 60px;
  text-align:center;
  font-family:Inter,system-ui;
}

.bc-platforms h2{
  font-size:36px;
  font-weight:700;
  color:#fff;
  margin-bottom:60px;
}

/* GRID */
.bc-platforms__grid{
  display:flex;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
}

/* CARD */
.platform{
  width:120px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  cursor:pointer;
  transition:.3s;
}

/* BOX */
.platform span{
  width:84px;
  height:84px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;

  background:#142235;
  color:#9aa7bd;

  font-size:18px;
  font-weight:600;

  transition:.35s;
}

/* LABEL */
.platform p{
  font-size:13px;
  color:#7f8da3;
  letter-spacing:.08em;
}

/* HOVER */
.platform:hover span{
  transform:translateY(-6px);
  background:#1b2f4a;
  color:#fff;

  box-shadow:
    0 12px 30px rgba(0,0,0,.4),
    0 0 0 1px rgba(79,141,253,.2);
}

/* ACTIVE */
.platform.active span{
  background:#4F8DFD;
  color:#fff;

  box-shadow:
    0 12px 40px rgba(79,141,253,.4),
    0 0 0 6px rgba(79,141,253,.15);
}

.platform.active p{
  color:#c7d6ff;
}

.platform.active span::after{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-radius:14px;
  background:rgba(79,141,253,.25);
  animation:pulse 2s infinite;
  z-index:-1;
}

@keyframes pulse{
  0%{transform:scale(1);opacity:.6;}
  70%{transform:scale(1.4);opacity:0;}
  100%{opacity:0;}
}

.platform::after{
  content:attr(data-name);
  position:absolute;
  top:-30px;
  font-size:12px;
  color:#9aa7bd;
  opacity:0;
  transition:.3s;
}

.platform:hover::after{
  opacity:1;
}

/* CTA  */

/* SECTION */
.bc-cta{
  background:#f3f5f7;
  padding:80px 60px;
}

/* CONTAINER */
.bc-cta__container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  border-radius:22px;
  overflow:hidden;
}

/* LEFT */
.bc-cta__content{
  background:#1f3a5f;
  padding:70px 60px;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* TITLE */
.bc-cta__content h2{
  font-size:46px;
  font-weight:700;
  line-height:1.1;
  margin-bottom:22px;
}

/* TEXT */
.bc-cta__content p{
  font-size:18px;
  line-height:30px;
  color:#c7d3e6;
  max-width:480px;
}

/* BUTTON */
.bc-cta__btn{
  margin-top:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:60px;
  padding:0 28px;

  background:#ff7a2f;
  color:#fff;
  font-weight:600;
  border-radius:10px;

  text-decoration:none;

  transition:.3s;
}

/* BUTTON HOVER */
.bc-cta__btn:hover{
  background:#ff8a45;
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(255,122,47,.4);
}

/* RIGHT IMAGE */
.bc-cta__image{
  position:relative;
  overflow:hidden;
}

.bc-cta__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 1s ease;
}

/* IMAGE HOVER */
.bc-cta__image:hover img{
  transform:scale(1.05);
}

.bc-cta__content::after{
  content:"";
  position:absolute;
  top:0;
  left:-60%;
  width:50%;
  height:100%;

  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.08),
    transparent
  );

  transform:skewX(-20deg);
  animation:shine 6s infinite;
}

@keyframes shine{
  0%{left:-60%;}
  100%{left:130%;}
}

.bc-cta__btn{
  position:relative;
  overflow:hidden;
}

.ripple{
  position:absolute;
  width:20px;
  height:20px;
  background:rgba(255,255,255,.4);
  border-radius:50%;
  transform:translate(-50%,-50%);
  animation:ripple .6s ease-out;
}

@keyframes ripple{
  to{
    width:300px;
    height:300px;
    opacity:0;
  }
}

/* FORM  */


.bc-consult{
  background:linear-gradient(180deg,#071220,#0b1526);
  padding:100px 60px;
  font-family:Inter,system-ui;
  color:#fff;
}

.bc-consult__container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 480px;
  gap:60px;
  align-items:center;
}

/* LEFT */
.bc-consult__form h2{
  font-size:38px;
  font-weight:700;
  margin-bottom:14px;
}

.bc-consult__form p{
  color:#9aa7bd;
  margin-bottom:30px;
  line-height:26px;
}

/* FORM */
.form-row{
  display:flex;
  gap:20px;
}

.field{
  width:100%;
  margin-bottom:18px;
}

.field label{
  display:block;
  font-size:13px;
  color:#9aa7bd;
  margin-bottom:6px;
}

/* INPUT STYLE */
.field input,
.field select,
.field textarea{
  width:100%;
  padding:14px 16px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.1);
  background:#0f2238;
  color:#fff;
  font-size:14px;
  outline:none;
  transition:.25s;
}

.field textarea{
  height:120px;
  resize:none;
}

/* FOCUS */
.field input:focus,
.field textarea:focus,
.field select:focus{
  border-color:#4F8DFD;
  box-shadow:0 0 0 2px rgba(79,141,253,.2);
}

/* BUTTON */
.consult-btn{
  width:100%;
  margin-top:10px;
  height:56px;
  border:none;
  border-radius:10px;
  background:#f45a0c;
  color:#fff;
  font-weight:600;
  font-size:16px;
  cursor:pointer;
  transition:.3s;
}

.consult-btn:hover{
  background:#ff6a1c;
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(255,90,12,.35);
}

/* IMAGE */
.bc-consult__image{
  border-radius:20px;
  overflow:hidden;
}

.bc-consult__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .8s ease;
}

.bc-consult__image:hover img{
  transform:scale(1.05);
}
.field.active label{
  color:#4F8DFD;
}

.field input:focus{
  background:#112b47;
}
.bc-cta__content{
  position:relative;
  overflow:hidden;
}


/* RESPONSIVE FIXES  */

@media(max-width:900px){

  .bc-platforms{
    padding:60px 20px;
  }

  .bc-platforms__grid{
    justify-content:center;
    gap:24px;
  }

  .platform{
    width:90px;
  }

  .platform span{
    width:70px;
    height:70px;
    font-size:16px;
  }

}
@media(max-width:1000px){

  .bc-cta__container{
    grid-template-columns:1fr;
  }

  .bc-cta__content{
    padding:50px 30px;
  }

  .bc-cta__content h2{
    font-size:32px;
  }

  .bc-cta__content p{
    font-size:16px;
  }

  .bc-cta__image{
    height:300px;
  }

}
@media(max-width:1000px){

  .bc-consult{
    padding:60px 20px;
  }

  .bc-consult__container{
    grid-template-columns:1fr;
    gap:40px;
  }

  .bc-consult__image{
    height:300px;
  }

}
@media(max-width:600px){

  .form-row{
    flex-direction:column;
    gap:0;
  }

  .bc-consult__form h2{
    font-size:28px;
  }

}

.bc-framework__header h2{
  max-width:800px;
  margin:0 auto;
}
.bc-framework__header h2{
  word-break:break-word;
}
@media(max-width:1000px){

  .bc-framework__header h2{
    font-size:34px;
    line-height:1.3;
    padding:0 20px;
  }

}

@media(max-width:600px){

  .bc-framework__header h2{
    font-size:26px;
    line-height:1.3;
  }

}

/* =================================
   BLOCKCHAIN PAGE BUTTON EFFECTS
   matched to actual button styles
   ================================= */

.btn-primary,
.btn-secondary,
.bc-cta__btn,
.consult-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    color .45s ease,
    background-color .45s ease,
    background .45s ease,
    border-color .45s ease,
    transform .3s ease,
    box-shadow .3s ease;
}

/* animated layers */
.btn-primary::before,
.btn-secondary::before,
.bc-cta__btn::before,
.consult-btn::before,
.btn-primary::after,
.btn-secondary::after,
.bc-cta__btn::after,
.consult-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  transition:
    transform .45s cubic-bezier(.22,1,.36,1),
    opacity .35s ease,
    background .45s ease;
}

/* fill sweep */
.btn-primary::before,
.btn-secondary::before,
.bc-cta__btn::before,
.consult-btn::before {
  transform: translateX(-102%);
}

/* gloss sweep */
.btn-primary::after,
.btn-secondary::after,
.bc-cta__btn::after,
.consult-btn::after {
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,.07) 35%,
    rgba(255,255,255,.18) 50%,
    rgba(255,255,255,.07) 65%,
    transparent 100%
  );
  transform: translateX(-130%) skewX(-20deg);
  opacity: 0;
}

.btn-primary:hover,
.btn-secondary:hover,
.bc-cta__btn:hover,
.consult-btn:hover {
  transform: translateY(-3px);
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.bc-cta__btn:hover::before,
.consult-btn:hover::before {
  transform: translateX(0);
}

.btn-primary:hover::after,
.btn-secondary:hover::after,
.bc-cta__btn:hover::after,
.consult-btn:hover::after {
  transform: translateX(130%) skewX(-20deg);
  opacity: 1;
}

.btn-primary:active,
.btn-secondary:active,
.bc-cta__btn:active,
.consult-btn:active {
  transform: translateY(-1px);
}

/* keep text above layers */
.btn-primary,
.btn-secondary,
.bc-cta__btn,
.consult-btn {
  z-index: 1;
}

/* -------------------------------
   PRIMARY HERO BUTTON
   orange solid -> subtle orange glass
   ------------------------------- */
.btn-primary {
  background: #ff7a32;
  color: #fff !important;
  border: 1px solid #ff7a32;
  box-shadow: 0 12px 32px rgba(255,120,40,.30);
}

.btn-primary::before {
  background: rgba(255,122,50,.05);
}

.btn-primary:hover {
  background: rgba(255,122,50,.02);
  color: #ff7a32 !important;
  border-color: #ff7a32;
  box-shadow:
    0 0 0 1px rgba(255,122,50,.12),
    0 14px 30px rgba(255,120,40,.14);
}

/* -------------------------------
   SECONDARY HERO BUTTON
   dark translucent -> slightly brighter
   ------------------------------- */
.btn-secondary {
  background: rgba(255,255,255,.03);
  color: #ecf2fb !important;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.btn-secondary::before {
  background: rgba(255,255,255,.035);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.035);
  color: #ffffff !important;
  border-color: rgba(255,255,255,.20);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 12px 26px rgba(0,0,0,.16);
}

/* -------------------------------
   CTA BUTTON
   orange CTA -> subtle orange glass
   ------------------------------- */
.bc-cta__btn {
  background: #ff7a32;
  color: #fff !important;
  border: 1px solid #ff7a32;
  box-shadow: 0 12px 30px rgba(255,122,50,.28);
}

.bc-cta__btn::before {
  background: rgba(255,122,50,.05);
}

.bc-cta__btn:hover {
  background: rgba(255,122,50,.02);
  color: #ff7a32 !important;
  border-color: #ff7a32;
  box-shadow:
    0 0 0 1px rgba(255,122,50,.12),
    0 16px 32px rgba(255,122,50,.14);
}

/* -------------------------------
   FORM SUBMIT BUTTON
   orange submit -> subtle orange glass
   ------------------------------- */
.consult-btn {
  background: #ff7a32;
  color: #fff !important;
  border: 1px solid #ff7a32;
  box-shadow: 0 10px 25px rgba(255,122,50,.35);
}

.consult-btn::before {
  background: rgba(255,122,50,.05);
}

.consult-btn:hover {
  background: rgba(255,122,50,.02);
  color: #ff7a32 !important;
  border-color: #ff7a32;
  box-shadow:
    0 0 0 1px rgba(255,122,50,.12),
    0 16px 32px rgba(255,122,50,.16);
}

/* ripple-safe */
.bc-cta__btn span,
.btn-primary span,
.btn-secondary span,
.consult-btn span {
  position: relative;
  z-index: 2;
}

/* focus */
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.bc-cta__btn:focus-visible,
.consult-btn:focus-visible {
  outline: 2px solid rgba(90, 150, 255, 0.7);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary,
  .btn-secondary,
  .bc-cta__btn,
  .consult-btn,
  .btn-primary::before,
  .btn-secondary::before,
  .bc-cta__btn::before,
  .consult-btn::before,
  .btn-primary::after,
  .btn-secondary::after,
  .bc-cta__btn::after,
  .consult-btn::after {
    transition: none !important;
  }
}