.hybrid-hero{
  position: relative;
  overflow: hidden;
  padding: 92px 42px 84px;
  background:
    radial-gradient(circle at 84% 16%, rgba(82,116,255,.14), transparent 26%),
    radial-gradient(circle at 72% 78%, rgba(36,92,255,.10), transparent 20%),
    radial-gradient(circle at 10% 86%, rgba(255,124,48,.08), transparent 18%),
    linear-gradient(90deg, #030a17 0%, #041027 46%, #091631 100%);
  font-family: Inter, system-ui, sans-serif;
}

.hybrid-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.16) 0%, rgba(0,0,0,0) 22%),
    radial-gradient(circle at 34% 50%, rgba(59,101,255,.06), transparent 26%);
}

.hybrid-hero__container{
  position: relative;
  z-index: 1;
  max-width: 1410px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 86px;
  align-items: center;
}

.hybrid-hero__content{
  max-width: 590px;
  padding-left: 14px;
}

.hybrid-hero__badge{
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(50,68,110,.34);
  border: 1px solid rgba(114,133,177,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
  color: #ff7f35;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .17em;
  margin-bottom: 32px;
}

.hybrid-hero__title{
  margin: 0 0 30px;
  font-size: clamp(52px, 6vw, 78px);
  line-height: .96;
  font-weight: 800;
  letter-spacing: -.065em;
  color: #f3f6ff;
}

.hybrid-hero__title span{
  background: linear-gradient(180deg, #b6c8ff 0%, #7da3ff 55%, #5e88ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hybrid-hero__desc{
  margin: 0 0 40px;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.66;
  color: #adb7cb;
}

.hybrid-hero__actions{
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hybrid-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 0 34px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    color .35s ease,
    background-color .35s ease,
    border-color .35s ease;
}

.hybrid-btn span{
  position: relative;
  z-index: 2;
}

.hybrid-btn::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateX(-102%);
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}

.hybrid-btn::after{
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 56%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,.08) 35%,
    rgba(255,255,255,.18) 50%,
    rgba(255,255,255,.08) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left .72s ease;
}

.hybrid-btn:hover{
  transform: translateY(-3px);
}

.hybrid-btn:hover::after{
  left: 145%;
}

/* orange */
.hybrid-btn--primary{
  background: #ff7b32;
  border: 2px solid #ff7b32;
  color: #fff;
  box-shadow: 0 16px 34px rgba(255,123,50,.24);
}

.hybrid-btn--primary::before{
  background: transparent;
}

.hybrid-btn--primary:hover{
  background: transparent;
  color: #ff7b32;
  box-shadow: 0 14px 30px rgba(255,123,50,.10);
}

/* glass */
.hybrid-btn--secondary{
  background: rgba(28,43,77,.82);
  border: 2px solid rgba(86,106,147,.32);
  color: #d8e2f7;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}

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

.hybrid-btn--secondary:hover::before{
  transform: translateX(0);
}

.hybrid-btn--secondary:hover{
  color: #fff;
  border-color: rgba(128,149,196,.50);
}

.hybrid-hero__media{
  display: flex;
  justify-content: flex-end;
}

.hybrid-hero__image-wrap{
  width: 100%;
  max-width: 720px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 34px 86px rgba(0,0,0,.48),
    0 0 0 1px rgba(255,255,255,.04),
    0 0 60px rgba(76,108,255,.10);

    margin-top: 5vh;
}

.hybrid-hero__image{
  display: block;
  width: 100%;
  aspect-ratio: 720 / 640;
  object-fit: cover;
    /* margin-top: 5vh; */

}

@media (max-width: 1180px){
  .hybrid-hero__container{
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hybrid-hero__content{
    max-width: 100%;
    padding-left: 0;
  }

  .hybrid-hero__media{
    justify-content: center;
  }
}

@media (max-width: 768px){
  .hybrid-hero{
    padding: 74px 18px 62px;
  }

  .hybrid-hero__title{
    font-size: 42px;
    line-height: 1.02;
  }

  .hybrid-hero__desc{
    font-size: 16px;
  }

  .hybrid-hero__actions{
    flex-direction: column;
  }

  .hybrid-btn{
    width: 100%;
    min-height: 60px;
    font-size: 16px;
  }

  .hybrid-hero__image-wrap{
    border-radius: 18px;
  }
}

.hybrid-hero__image{
  aspect-ratio: 720 / 640;
  object-fit: cover;
}

/* dev  */

.hybrid-why{
  background: #f3f4f6;
  padding: 120px 40px 140px;
  font-family: Inter, system-ui, sans-serif;
}

.hybrid-why__wrap{
  max-width: 1510px;
  margin: 0 auto;
}

.hybrid-why__head{
  max-width: 760px;
  margin-bottom: 82px;
}

.hybrid-why__head h2{
  margin: 0;
  color: #0f172d;
  font-size: clamp(38px, 3.1vw, 60px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.hybrid-why__line{
  display: block;
  width: 116px;
  height: 8px;
  border-radius: 999px;
  margin: 26px 0 28px;
  background: #a9bff7;
}

.hybrid-why__head p{
  margin: 0;
  max-width: 760px;
  color: #58667d;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 500;
}

.hybrid-why__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
}

.hybrid-why-card{
  --x: 50%;
  --y: 50%;
  position: relative;
  min-height: 318px;
  padding: 46px 48px 44px;
  border-radius: 24px;
  overflow: hidden;
  background: #062451;
  border: 1px solid rgba(9, 31, 66, 0.06);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.03) inset,
    0 18px 42px rgba(7, 19, 43, 0.08);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease,
    background .35s ease;
  isolation: isolate;
}

/* orange hover glow */
.hybrid-why-card::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(
      260px circle at var(--x) var(--y),
      rgba(255, 122, 48, .20),
      rgba(255, 122, 48, .08) 28%,
      transparent 68%
    );
  transition: opacity .28s ease;
}

/* sheen sweep */
.hybrid-why-card::after{
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 56%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,.06) 35%,
    rgba(255,255,255,.14) 50%,
    rgba(255,255,255,.06) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left .78s ease;
  pointer-events: none;
}

.hybrid-why-card:hover{
  transform: translateY(-10px) scale(1.015);
  border-color: rgba(255, 122, 48, .22);
  box-shadow:
    0 28px 56px rgba(7, 19, 43, 0.16),
    0 0 0 1px rgba(255, 122, 48, .08) inset;
}

.hybrid-why-card:hover::before{
  opacity: 1;
}

.hybrid-why-card:hover::after{
  left: 145%;
}

.hybrid-why-card > *{
  position: relative;
  z-index: 2;
}

.hybrid-why-card__icon{
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  background: rgba(142, 168, 228, 0.11);
  color: #b7cbff;
  font-size: 24px;
  transition:
    background .3s ease,
    color .3s ease,
    box-shadow .3s ease,
    transform .3s ease;
}

.hybrid-why-card:hover .hybrid-why-card__icon{
  background: rgba(255, 122, 48, 0.14);
  color: #ff7a30;
  box-shadow: 0 0 26px rgba(255, 122, 48, .22);
  transform: translateY(-2px);
}

.hybrid-why-card h3{
  margin: 0 0 20px;
  color: #eef4ff;
  font-size: clamp(24px, 1.8vw, 28px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hybrid-why-card p{
  margin: 0;
  max-width: 360px;
  color: #d2dcee;
  font-size: 16px;
  line-height: 1.72;
  font-weight: 400;
}

@media (max-width: 1200px){
  .hybrid-why{
    padding: 100px 24px 110px;
  }

  .hybrid-why__grid{
    gap: 28px;
  }

  .hybrid-why-card{
    padding: 36px 32px;
  }
}

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

  .hybrid-why__head{
    margin-bottom: 54px;
  }

  .hybrid-why-card{
    min-height: auto;
  }

  .hybrid-why-card p{
    max-width: none;
  }
}

@media (max-width: 640px){
  .hybrid-why{
    padding: 72px 18px 84px;
  }

  .hybrid-why__head p{
    font-size: 16px;
  }

  .hybrid-why__line{
    width: 96px;
    height: 6px;
    margin: 18px 0 22px;
  }

  .hybrid-why-card{
    border-radius: 20px;
    padding: 28px 22px;
  }

  .hybrid-why-card__icon{
    width: 54px;
    height: 54px;
    margin-bottom: 26px;
  }

  .hybrid-why-card h3{
    font-size: 22px;
    margin-bottom: 14px;
  }

  .hybrid-why-card p{
    font-size: 15px;
  }
}

.hybrid-positioning{
  position: relative;
  overflow: hidden;
  padding: 110px 40px;
  background:
    radial-gradient(circle at 28% 86%, rgba(31, 79, 185, 0.20), transparent 22%),
    radial-gradient(circle at 52% 50%, rgba(19, 59, 145, 0.14), transparent 20%),
    linear-gradient(90deg, #020916 0%, #031027 50%, #020916 100%);
  font-family: Inter, system-ui, sans-serif;
}

.hybrid-positioning::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.015), transparent 18%, transparent 82%, rgba(255,255,255,0.015)),
    radial-gradient(circle at 40% 100%, rgba(32, 95, 255, 0.08), transparent 28%);
}

.hybrid-positioning__wrap{
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 760px minmax(420px, 1fr);
  gap: 92px;
  align-items: center;
}

.hybrid-positioning__media{
  position: relative;
  width: 100%;
  max-width: 760px;
}

.hybrid-positioning__frame{
  position: relative;
  padding: 38px;
  border-radius: 22px;
  background: linear-gradient(180deg, #1b304f 0%, #182b49 100%);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.hybrid-positioning__frame img{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.hybrid-positioning__stat{
  position: absolute;
  right: -26px;
  bottom: -26px;
  min-width: 232px;
  padding: 24px 28px 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #223553 0%, #1a2c49 100%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.hybrid-positioning__stat-label{
  display: block;
  margin-bottom: 10px;
  color: #ff7b32;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hybrid-positioning__stat strong{
  display: block;
  color: #dfe8ff;
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hybrid-positioning__content h2{
  margin: 0 0 30px;
  color: #dce7ff;
  font-size: clamp(38px, 4vw, 66px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.hybrid-positioning__content p{
  margin: 0 0 34px;
  max-width: 700px;
  color: #b3bfd7;
  font-size: 18px;
  line-height: 1.72;
  font-weight: 400;
}

.hybrid-positioning__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.hybrid-positioning__list li{
  position: relative;
  padding-left: 28px;
  color: #d4def3;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
}

.hybrid-positioning__list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8fb1ff;
}

@media (max-width: 1280px){
  .hybrid-positioning{
    padding: 90px 24px;
  }

  .hybrid-positioning__wrap{
    grid-template-columns: minmax(0, 680px) minmax(0, 1fr);
    gap: 64px;
  }

  .hybrid-positioning__frame{
    padding: 28px;
  }
}

@media (max-width: 980px){
  .hybrid-positioning__wrap{
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hybrid-positioning__media{
    max-width: 760px;
  }

  .hybrid-positioning__content{
    max-width: 760px;
  }

  .hybrid-positioning__content h2{
    line-height: 1.02;
  }
}

@media (max-width: 640px){
  .hybrid-positioning{
    padding: 72px 18px;
  }

  .hybrid-positioning__frame{
    padding: 16px;
    border-radius: 18px;
  }

  .hybrid-positioning__frame img{
    border-radius: 14px;
  }

  .hybrid-positioning__stat{
    position: static;
    margin-top: 16px;
    min-width: 0;
  }

  .hybrid-positioning__content h2{
    margin-bottom: 20px;
    font-size: 34px;
  }

  .hybrid-positioning__content p{
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hybrid-positioning__list{
    gap: 18px;
  }

  .hybrid-positioning__list li{
    font-size: 16px;
  }

  .hybrid-positioning__stat strong{
    font-size: 32px;
  }
}

.hybrid-positioning{
  padding: 92px 34px;
}

.hybrid-positioning__wrap{
  max-width: 1380px;
  grid-template-columns: 680px minmax(380px, 1fr);
  gap: 74px;
}

.hybrid-positioning__media{
  max-width: 680px;
}

.hybrid-positioning__frame{
  padding: 30px;
  border-radius: 20px;
}

.hybrid-positioning__frame img{
  border-radius: 16px;
}

.hybrid-positioning__stat{
  right: -20px;
  bottom: -20px;
  min-width: 210px;
  padding: 20px 24px 18px;
  border-radius: 16px;
}

.hybrid-positioning__stat-label{
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.hybrid-positioning__stat strong{
  font-size: 34px;
}

.hybrid-positioning__content h2{
  margin: 0 0 24px;
  font-size: clamp(34px, 3.3vw, 56px);
}

.hybrid-positioning__content p{
  margin: 0 0 28px;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.68;
}

.hybrid-positioning__list{
  gap: 18px;
}

.hybrid-positioning__list li{
  padding-left: 24px;
  font-size: 16px;
}

.hybrid-positioning__list li::before{
  top: 10px;
  width: 8px;
  height: 8px;
}

.hybrid-positioning__wrap{ grid-template-columns: 640px minmax(360px, 1fr); }
.hybrid-positioning__frame{ padding: 26px; }
.hybrid-positioning__content h2{ font-size: clamp(32px, 3vw, 52px); }

/* =========================
   HYBRID WHY — SMALLER
   put this at the very end
========================= */

.hybrid-why{
  padding: 88px 30px 96px;
}

.hybrid-why__wrap{
  max-width: 1360px;
}

.hybrid-why__head{
  max-width: 640px;
  margin-bottom: 56px;
}

.hybrid-why__head h2{
  font-size: clamp(32px, 2.8vw, 48px);
  line-height: 1.08;
}

.hybrid-why__line{
  width: 82px;
  height: 6px;
  margin: 18px 0 20px;
}

.hybrid-why__head p{
  max-width: 620px;
  font-size: 16px;
  line-height: 1.62;
}

.hybrid-why__grid{
  gap: 28px;
}

.hybrid-why-card{
  min-height: 260px;
  padding: 32px 30px 30px;
  border-radius: 20px;
}

.hybrid-why-card__icon{
  width: 52px;
  height: 52px;
  border-radius: 13px;
  margin-bottom: 24px;
  font-size: 21px;
}

.hybrid-why-card h3{
  margin: 0 0 14px;
  font-size: clamp(22px, 1.5vw, 26px);
  line-height: 1.12;
}

.hybrid-why-card p{
  max-width: 300px;
  font-size: 15px;
  line-height: 1.62;
}

/* cards 2 */

/* =========================
   HYBRID STATS
========================= */
.hybrid-stats{
  padding: 96px 36px 110px;
  background: #f3f3f3;
  font-family: Inter, system-ui, sans-serif;
}

.hybrid-stats__wrap{
  max-width: 1810px;
  margin: 0 auto;
}

.hybrid-stats__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px;
}

.hybrid-stat-card{
  background: #07244d;
  border-radius: 22px;
  min-height: 320px;
  padding: 42px 46px 36px;
  box-shadow: 0 1px 0 rgba(255,255,255,.04) inset;
  transition: transform .28s ease, box-shadow .28s ease;
}

.hybrid-stat-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(7, 36, 77, 0.12);
}

.hybrid-stat-card__value{
  margin: 0 0 42px;
  font-size: 58px;
  line-height: .95;
  font-weight: 700;
  letter-spacing: -.04em;
  color: #edf2fb;
}

.hybrid-stat-card__title{
  margin: 0 0 24px;
  font-size: 29px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -.03em;
  color: #c6d3ea;
}

.hybrid-stat-card__desc{
  margin: 0;
  max-width: 280px;
  font-size: 17px;
  line-height: 1.62;
  font-weight: 400;
  color: #b6c2d7;
}

/* orange highlight card */
.hybrid-stat-card--accent .hybrid-stat-card__value{
  color: #ff7f32;
}

@media (max-width: 1400px){
  .hybrid-stats__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px){
  .hybrid-stats{
    padding: 72px 18px 80px;
  }

  .hybrid-stats__grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hybrid-stat-card{
    min-height: auto;
    padding: 30px 24px 28px;
    border-radius: 18px;
  }

  .hybrid-stat-card__value{
    margin-bottom: 26px;
    font-size: 44px;
  }

  .hybrid-stat-card__title{
    margin-bottom: 16px;
    font-size: 24px;
  }

  .hybrid-stat-card__desc{
    font-size: 15px;
  }
}

.hybrid-stats{
  padding: 72px 28px 84px;
  background: #f3f3f3;
  font-family: Inter, system-ui, sans-serif;
}

.hybrid-stats__wrap{
  max-width: 1680px;
  margin: 0 auto;
}

.hybrid-stats__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.hybrid-stat-card{
  background: #07244d;
  border-radius: 18px;
  min-height: 250px;
  padding: 30px 32px 28px;
  box-shadow: 0 1px 0 rgba(255,255,255,.04) inset;
  transition: transform .25s ease, box-shadow .25s ease;
}

.hybrid-stat-card__value{
  margin: 0 0 28px;
  font-size: 42px;
  line-height: .95;
  font-weight: 700;
  letter-spacing: -.04em;
  color: #edf2fb;
}

.hybrid-stat-card__title{
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -.02em;
  color: #c6d3ea;
}

.hybrid-stat-card__desc{
  margin: 0;
  max-width: 240px;
  font-size: 14px;
  line-height: 1.55;
  color: #b6c2d7;
}

.hybrid-stat-card--accent .hybrid-stat-card__value{
  color: #ff7f32;
}

@media (max-width: 1400px){
  .hybrid-stats__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px){
  .hybrid-stats{
    padding: 56px 16px 64px;
  }

  .hybrid-stats__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hybrid-stat-card{
    min-height: auto;
    padding: 24px 20px;
    border-radius: 16px;
  }

  .hybrid-stat-card__value{
    font-size: 34px;
    margin-bottom: 18px;
  }

  .hybrid-stat-card__title{
    font-size: 18px;
    margin-bottom: 12px;
  }

  .hybrid-stat-card__desc{
    font-size: 14px;
    max-width: none;
  }
}

/* =========================
   COOL HOVER EFFECTS
========================= */

.hybrid-stat-card{
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  transform-style: preserve-3d;
}

/* soft orange mouse glow */
.hybrid-stat-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    220px circle at var(--x, 50%) var(--y, 50%),
    rgba(255,127,50,.20),
    transparent 42%
  );
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
  z-index: 0;
}

/* shine sweep */
.hybrid-stat-card::after{
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,.05) 35%,
    rgba(255,255,255,.16) 50%,
    rgba(255,255,255,.05) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left .75s ease;
  pointer-events: none;
  z-index: 1;
}

/* keep content above effects */
.hybrid-stat-card > *{
  position: relative;
  z-index: 2;
}

/* hover state */
.hybrid-stat-card:hover{
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255,127,50,.18);
  box-shadow:
    0 22px 45px rgba(8,20,40,.18),
    0 0 0 1px rgba(255,127,50,.08) inset;
}

.hybrid-stat-card:hover::before{
  opacity: 1;
}

.hybrid-stat-card:hover::after{
  left: 145%;
}

/* number pops */
.hybrid-stat-card__value{
  transition: color .28s ease, transform .28s ease, text-shadow .28s ease;
}

.hybrid-stat-card:hover .hybrid-stat-card__value{
  transform: translateY(-2px);
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(255,255,255,.08);
}

/* orange card stays orange and glows more */
.hybrid-stat-card--accent:hover .hybrid-stat-card__value{
  color: #ff7f32;
  text-shadow: 0 8px 24px rgba(255,127,50,.24);
}

/* title and text brighten */
.hybrid-stat-card__title,
.hybrid-stat-card__desc{
  transition: color .28s ease, transform .28s ease;
}

.hybrid-stat-card:hover .hybrid-stat-card__title{
  color: #e9f0ff;
  transform: translateY(-1px);
}

.hybrid-stat-card:hover .hybrid-stat-card__desc{
  color: #d2dced;
}

/* subtle top highlight line */
.hybrid-stat-card__value::after{
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff7f32, #9bb8ff);
  transition: width .35s ease;
}

.hybrid-stat-card:hover .hybrid-stat-card__value::after{
  width: 64px;
}

/* stack  */

.tech-stack-remake{
  position: relative;
  overflow: hidden;
  padding: 82px 40px 100px;
  background:
    radial-gradient(circle at 50% 0%, rgba(43, 82, 170, 0.10), transparent 22%),
    linear-gradient(90deg, #020916 0%, #031027 50%, #020916 100%);
  font-family: Inter, system-ui, sans-serif;
}

.tech-stack-remake__container{
  max-width: 1470px;
  margin: 0 auto;
}

.tech-stack-remake__header{
  text-align: center;
  margin-bottom: 66px;
}

.tech-stack-remake__header h2{
  margin: 0 0 18px;
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #dfe8ff;
}

.tech-stack-remake__header p{
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  color: #a6afc4;
  font-weight: 400;
}

.tech-stack-remake__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
}

.stack-card{
  position: relative;
  min-height: 242px;
  padding: 44px 28px 34px;
  border-radius: 18px;
  background: #1a2d4a;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 12px 30px rgba(0,0,0,0.12);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.stack-card:hover{
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 22px 40px rgba(0,0,0,0.18);
}

.stack-card__icon{
  width: 76px;
  height: 76px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aac0ff;
  font-size: 46px;
}

.stack-card h3{
  margin: 0 0 14px;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 700;
  color: #dfe8ff;
  letter-spacing: -0.025em;
}

.stack-card span{
  display: block;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.19em;
  color: #c5cbda;
  opacity: .92;
}

@media (max-width: 1200px){
  .tech-stack-remake__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-stack-remake__header h2{
    font-size: 46px;
  }
}

@media (max-width: 768px){
  .tech-stack-remake{
    padding: 70px 20px 80px;
  }

  .tech-stack-remake__header{
    margin-bottom: 42px;
  }

  .tech-stack-remake__header h2{
    font-size: 34px;
  }

  .tech-stack-remake__header p{
    font-size: 16px;
  }

  .tech-stack-remake__grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .stack-card{
    min-height: 210px;
    padding: 34px 22px 28px;
  }

  .stack-card__icon{
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    font-size: 38px;
  }

  .stack-card h3{
    font-size: 24px;
  }

  .stack-card span{
    font-size: 12px;
    letter-spacing: 0.16em;
  }
}


.tech-stack-remake{
  position: relative;
  overflow: hidden;
  padding: 70px 32px 86px;
  background:
    radial-gradient(circle at 50% 0%, rgba(43, 82, 170, 0.10), transparent 22%),
    linear-gradient(90deg, #020916 0%, #031027 50%, #020916 100%);
  font-family: Inter, system-ui, sans-serif;
}

.tech-stack-remake__container{
  max-width: 1420px;
  margin: 0 auto;
}

.tech-stack-remake__header{
  text-align: center;
  margin-bottom: 54px;
}

.tech-stack-remake__header h2{
  margin: 0 0 14px;
  font-size: 50px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #dfe8ff;
}

.tech-stack-remake__header p{
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: #a6afc4;
}

.tech-stack-remake__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.stack-card{
  --x: 50%;
  --y: 50%;
  position: relative;
  min-height: 210px;
  padding: 34px 24px 28px;
  border-radius: 18px;
  background: #1a2d4a;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.02),
    0 10px 24px rgba(0,0,0,0.14);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform .32s ease,
    box-shadow .32s ease,
    border-color .32s ease,
    background .32s ease;
}

/* orange hover glow */
.stack-card::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(
      240px circle at var(--x) var(--y),
      rgba(255,122,48,.22),
      rgba(255,122,48,.08) 30%,
      transparent 70%
    );
  transition: opacity .28s ease;
}

/* shine sweep */
.stack-card::after{
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 55%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,.06) 35%,
    rgba(255,255,255,.16) 50%,
    rgba(255,255,255,.06) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left .75s ease;
}

.stack-card:hover{
  transform: translateY(-8px) scale(1.02);
  background: #1c3151;
  border-color: rgba(255,122,48,.18);
  box-shadow:
    0 24px 44px rgba(0,0,0,0.22),
    0 0 0 1px rgba(255,122,48,.06) inset;
}

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

.stack-card:hover::after{
  left: 145%;
}

.stack-card > *{
  position: relative;
  z-index: 2;
}

/* ICON WRAP */
.stack-card__icon{
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(166, 191, 255, 0.08);
  color: #aac0ff;
  transition:
    transform .3s ease,
    background .3s ease,
    color .3s ease,
    box-shadow .3s ease;
}

/* ALL ICONS SAME VISUAL WEIGHT */
.stack-card__icon i{
  line-height: 1;
  font-size: 38px;
}

/* specific balance fixes */
.stack-card:nth-child(1) .stack-card__icon i{ font-size: 34px; } /* React Native */
.stack-card:nth-child(2) .stack-card__icon i{ font-size: 42px; } /* Flutter */
.stack-card:nth-child(3) .stack-card__icon i{ font-size: 34px; } /* Ionic */
.stack-card:nth-child(4) .stack-card__icon i{ font-size: 34px; } /* Capacitor */

.stack-card:hover .stack-card__icon{
  transform: translateY(-2px) scale(1.06);
  background: rgba(255,122,48,0.14);
  color: #ff7a30;
  box-shadow: 0 0 26px rgba(255,122,48,.20);
}

.stack-card h3{
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  color: #dfe8ff;
  letter-spacing: -0.02em;
  transition: color .28s ease;
}

.stack-card:hover h3{
  color: #ffffff;
}

.stack-card span{
  display: block;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.18em;
  color: #c5cbda;
  opacity: .9;
  transition: color .28s ease, letter-spacing .28s ease;
}

.stack-card:hover span{
  color: #ffb28c;
  letter-spacing: 0.20em;
}

@media (max-width: 1200px){
  .tech-stack-remake__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tech-stack-remake__header h2{
    font-size: 42px;
  }
}

@media (max-width: 768px){
  .tech-stack-remake{
    padding: 58px 18px 72px;
  }

  .tech-stack-remake__header{
    margin-bottom: 34px;
  }

  .tech-stack-remake__header h2{
    font-size: 32px;
  }

  .tech-stack-remake__header p{
    font-size: 15px;
  }

  .tech-stack-remake__grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stack-card{
    min-height: 190px;
    padding: 28px 20px 24px;
  }

  .stack-card__icon{
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .stack-card__icon i{
    font-size: 34px !important;
  }

  .stack-card h3{
    font-size: 22px;
  }
}

/* pipelin e  */



.arch-method{
  padding: 90px 28px 100px;
  background: #f3f4f6;
  font-family: Inter, system-ui, sans-serif;
  overflow: hidden;
}

.arch-method__wrap{
  max-width: 1480px;
  margin: 0 auto;
}

.arch-method__title{
  margin: 0 0 92px;
  text-align: center;
  font-size: clamp(36px, 3vw, 58px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #0a1020;
}

.arch-method__timeline{
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 34px;
  align-items: start;
  padding-top: 6px;
}

.arch-method__line,
.arch-method__line-fill{
  position: absolute;
  top: 34px;
  left: 7%;
  right: 7%;
  height: 2px;
  border-radius: 999px;
  pointer-events: none;
}

.arch-method__line{
  background: #d8dfec;
}

.arch-method__line-fill{
  right: auto;
  width: 0%;
  background: linear-gradient(90deg, #7da6ff 0%, #b8cfff 70%, #ff9960 100%);
  box-shadow: 0 0 12px rgba(125,166,255,.22);
  z-index: 1;
}

.arch-step{
  position: relative;
  text-align: center;
  z-index: 2;
  opacity: .55;
  transform: translateY(0);
  transition:
    opacity .35s ease,
    transform .35s ease;
}

.arch-step__dot{
  width: 68px;
  height: 68px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #7788a6;
  color: #bcd0ff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  border: 2px solid #a8bbdf;
  box-shadow: 0 10px 24px rgba(58,76,110,.08);
  transition:
    background .35s ease,
    color .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    transform .35s ease;
}

.arch-step h3{
  margin: 0 0 18px;
  color: #121827;
  font-size: 26px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: color .35s ease;
}

.arch-step p{
  max-width: 290px;
  margin: 0 auto;
  color: #6f7f98;
  font-size: 15px;
  line-height: 1.5;
}

.arch-step.is-active,
.arch-step.is-done{
  opacity: 1;
}

.arch-step.is-active{
  transform: translateY(-4px);
}

.arch-step.is-done .arch-step__dot{
  background: linear-gradient(180deg, #8db3ff 0%, #6c95ff 100%);
  color: #13203d;
  border-color: #9fbcff;
  box-shadow: 0 14px 28px rgba(88,128,255,.18);
}

.arch-step.is-active .arch-step__dot{
  background: linear-gradient(180deg, #8db3ff 0%, #6490ff 100%);
  color: #14203d;
  border-color: #afc6ff;
  box-shadow: 0 16px 34px rgba(95,145,255,.24);
  transform: scale(1.06);
}

.arch-step.is-launch.is-active .arch-step__dot,
.arch-step.is-launch.is-done .arch-step__dot{
  background: linear-gradient(180deg, #ffb17a 0%, #ff8a3d 100%);
  color: #fff3ea;
  border-color: #ffb38a;
  box-shadow: 0 16px 34px rgba(255,138,61,.26);
}

@media (max-width: 1100px){
  .arch-method__timeline{
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .arch-method__line,
  .arch-method__line-fill{
    display: none;
  }

  .arch-step{
    text-align: left;
    display: grid;
    grid-template-columns: 68px 1fr;
    column-gap: 18px;
    align-items: start;
  }

  .arch-step__dot{
    margin: 0;
  }

  .arch-step h3,
  .arch-step p{
    text-align: left;
    max-width: none;
  }

  .arch-step h3{
    margin-top: 8px;
    margin-bottom: 10px;
  }
}

.arch-method{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 28px;
  background: #f3f4f6;
  overflow: hidden;
}

.arch-method__wrap{
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
}

/* COMAPRE  */

.compare-dual{
  padding: 92px 36px 110px;
  background:
    radial-gradient(circle at 18% 20%, rgba(32,72,180,.08), transparent 20%),
    radial-gradient(circle at 82% 78%, rgba(255,124,48,.05), transparent 18%),
    linear-gradient(90deg, #020916 0%, #031028 48%, #020916 100%);
  font-family: Inter, system-ui, sans-serif;
}

.compare-dual__wrap{
  max-width: 1560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.compare-card{
  --glow: rgba(140,170,255,.18);
  --accent: #9cbcff;
  position: relative;
  min-height: 360px;
  padding: 56px 58px 50px;
  border-radius: 24px;
  overflow: hidden;
  background: #1a2c47;
  border: 1px solid rgba(255,255,255,.04);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.03),
    0 24px 50px rgba(0,0,0,.18);
  transition:
    transform .32s ease,
    box-shadow .32s ease,
    border-color .32s ease,
    background .32s ease;
  isolation: isolate;
}

.compare-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(320px circle at 0% 50%, var(--glow), transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.compare-card::after{
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 42%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,255,255,.04) 35%,
    rgba(255,255,255,.12) 50%,
    rgba(255,255,255,.04) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left .7s ease;
  pointer-events: none;
}

.compare-card:hover{
  transform: translateY(-8px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 30px 70px rgba(0,0,0,.28);
}

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

.compare-card:hover::after{
  left: 135%;
}

.compare-card--blue{
  --glow: rgba(156,188,255,.16);
  --accent: #a9c1ff;
}

.compare-card--orange{
  --glow: rgba(255,124,48,.14);
  --accent: #ff7c30;
}

.compare-card__edge{
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 4px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px color-mix(in srgb, var(--accent) 35%, transparent);
  opacity: .95;
}

.compare-card__head{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  position: relative;
  z-index: 2;
}

.compare-card__head h3{
  margin: 0;
  color: #eef3fb;
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.compare-card__icon{
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform .28s ease, color .28s ease, filter .28s ease;
}

.compare-card__icon--blue{
  color: #4f8dff;
}

.compare-card__icon--orange{
  color: #ff7c30;
}

.compare-card:hover .compare-card__icon{
  transform: translateY(-1px) scale(1.06);
  filter: drop-shadow(0 0 10px rgba(255,255,255,.06));
}

.compare-card__list{
  list-style: none;
  margin: 0;
  padding: 0 0 0 6px;
  display: grid;
  gap: 22px;
  position: relative;
  z-index: 2;
}

.compare-card__list li{
  position: relative;
  padding-left: 26px;
  color: #c5cfdd;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
}

.compare-card__list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  opacity: .9;
}

.compare-card__list--blue li::before{
  background: #a9c1ff;
  border-color: #a9c1ff;
}

.compare-card__list--orange li::before{
  background: transparent;
  border-color: rgba(255,124,48,.35);
}

.compare-card:hover .compare-card__list--orange li::before{
  border-color: rgba(255,124,48,.58);
}

@media (max-width: 1100px){
  .compare-dual__wrap{
    grid-template-columns: 1fr;
  }

  .compare-card{
    min-height: auto;
  }
}

@media (max-width: 640px){
  .compare-dual{
    padding: 70px 18px 82px;
  }

  .compare-card{
    padding: 34px 24px 30px;
    border-radius: 20px;
  }

  .compare-card__head h3{
    font-size: 23px;
  }

  .compare-card__list li{
    font-size: 15px;
    padding-left: 22px;
  }
}.compare-card--blue:hover{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 30px 70px rgba(0,0,0,.28),
    0 0 0 1px rgba(169,193,255,.06),
    0 0 38px rgba(90,130,255,.08);
}

.compare-card--orange:hover{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 30px 70px rgba(0,0,0,.28),
    0 0 0 1px rgba(255,124,48,.08),
    0 0 38px rgba(255,124,48,.08);
}

/* cta  */

.strategy-cta{
  padding: 90px 28px 110px;
  background: #f2f2f2;
  font-family: Inter, system-ui, sans-serif;
}

.strategy-cta__wrap{
  position: relative;
  max-width: 1330px;
  margin: 0 auto;
  min-height: 486px;
  border-radius: 38px;
  overflow: hidden;

  background:
    linear-gradient(rgba(120, 160, 240, 0.78), rgba(86, 133, 228, 0.82)),
    url("../images/hybrid/ctabg.jpg") center center / cover no-repeat;

  box-shadow:
    0 28px 70px rgba(103, 128, 179, 0.16),
    0 10px 30px rgba(0,0,0,0.04);
}

.strategy-cta__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(255,255,255,0.20), transparent 20%),
    radial-gradient(circle at 78% 22%, rgba(255,255,255,0.14), transparent 18%),
    radial-gradient(circle at 40% 72%, rgba(255,255,255,0.12), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  pointer-events: none;
}

.strategy-cta__content{
  position: relative;
  z-index: 2;
  min-height: 486px;
  padding: 70px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.strategy-cta__content h2{
  margin: 0 0 22px;
  color: #08112a;
  font-size: clamp(40px, 4.8vw, 74px);
  line-height: .94;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.strategy-cta__content p{
  margin: 0 0 34px;
  max-width: 720px;
  color: rgba(10, 20, 42, 0.74);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}

.strategy-cta__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 440px;
  min-height: 70px;
  padding: 0 34px;
  border-radius: 12px;
  text-decoration: none;

  background: #ff7a30;
  color: #fff;
  font-size: 17px;
  font-weight: 700;

  box-shadow: 0 16px 34px rgba(255,122,48,.22);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.strategy-cta__btn:hover{
  transform: translateY(-3px);
  background: #ff843c;
  box-shadow: 0 22px 42px rgba(255,122,48,.28);
}

@media (max-width: 900px){
  .strategy-cta{
    padding: 70px 18px 86px;
  }

  .strategy-cta__wrap,
  .strategy-cta__content{
    min-height: 400px;
  }

  .strategy-cta__content h2{
    font-size: 52px;
  }

  .strategy-cta__btn{
    min-width: 0;
    width: 100%;
    max-width: 420px;
  }
}

@media (max-width: 640px){
  .strategy-cta__wrap{
    border-radius: 24px;
  }

  .strategy-cta__content{
    padding: 46px 20px;
  }

  .strategy-cta__content h2{
    font-size: 36px;
    line-height: 1.02;
  }

  .strategy-cta__content p{
    font-size: 16px;
    margin-bottom: 26px;
  }

  .strategy-cta__btn{
    min-height: 58px;
    font-size: 15px;
    padding: 0 20px;
  }
}

/* =================================
   HYBRID PAGE BUTTONS — FINAL
   put at very end of css
================================= */

/* shared */
.hybrid-btn,
.strategy-cta__btn{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform .28s ease,
    color .35s ease,
    background-color .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

.hybrid-btn span,
.strategy-cta__btn{
  position: relative;
  z-index: 2;
}

/* sliding layer */
.hybrid-btn::before,
.strategy-cta__btn::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateX(-102%);
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}

/* gloss sweep */
.hybrid-btn::after,
.strategy-cta__btn::after{
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 56%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,.08) 35%,
    rgba(255,255,255,.18) 50%,
    rgba(255,255,255,.08) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left .72s ease;
}

.hybrid-btn:hover,
.strategy-cta__btn:hover{
  transform: translateY(-3px);
}

.hybrid-btn:hover::after,
.strategy-cta__btn:hover::after{
  left: 145%;
}

/* -------------------------
   HERO PRIMARY
------------------------- */
.hybrid-btn--primary{
  background: #ff7b32;
  border: 2px solid #ff7b32;
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(255,123,50,.24);
}

.hybrid-btn--primary::before{
  background: transparent;
}

.hybrid-btn--primary:hover{
  background: transparent;
  border-color: #ff7b32;
  color: #ff7b32 !important;
  box-shadow:
    0 14px 30px rgba(255,123,50,.10),
    0 0 0 1px rgba(255,123,50,.08) inset;
}

/* -------------------------
   HERO SECONDARY
------------------------- */
.hybrid-btn--secondary{
  background: rgba(28,43,77,.82);
  border: 2px solid rgba(86,106,147,.32);
  color: #d8e2f7 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}

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

.hybrid-btn--secondary:hover::before{
  transform: translateX(0);
}

.hybrid-btn--secondary:hover{
  background: rgba(28,43,77,.82);
  color: #ffffff !important;
  border-color: rgba(128,149,196,.50);
  box-shadow:
    0 14px 28px rgba(0,0,0,.12),
    0 0 0 1px rgba(255,255,255,.04) inset;
}

/* -------------------------
   CTA BUTTON
------------------------- */
.strategy-cta__btn{
  min-width: 440px;
  min-height: 70px;
  padding: 0 34px;
  border-radius: 12px;
  background: #ff7a30;
  border: 2px solid #ff7a30;
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(255,122,48,.22);
}

.strategy-cta__btn::before{
  background: transparent;
}

.strategy-cta__btn:hover{
  background: transparent;
  border-color: #ff7a30;
  color: #ff7a30 !important;
  box-shadow:
    0 18px 36px rgba(255,122,48,.10),
    0 0 0 1px rgba(255,122,48,.08) inset;
}

/* mobile */
@media (max-width: 768px){
  .strategy-cta__btn{
    min-width: 0;
    width: 100%;
    max-width: 420px;
    min-height: 58px;
    font-size: 15px;
    padding: 0 20px;
  }
}

.partner-section{
  background: linear-gradient(90deg, #020916 0%, #031027 48%, #020916 100%);
  padding: 96px 40px 110px;
  font-family: Inter, system-ui, sans-serif;
}

.partner-wrap{
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 92px;
  align-items: start;
}

/* LEFT */
.partner-left{
  padding-top: 8px;
  max-width: 620px;
}

.partner-left h2{
  margin: 0 0 28px;
  color: #dfe8ff;
  font-size: clamp(46px, 4vw, 64px);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.05em;
}

.partner-desc{
  margin: 0 0 58px;
  color: #b4bfd4;
  font-size: 17px;
  line-height: 1.72;
  max-width: 560px;
}

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

.partner-point{
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: start;
}

.partner-icon{
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #132848;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff7c30;
  font-size: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.partner-icon--orange{
  color: #ff8a3d;
}

.partner-point h4{
  margin: 2px 0 8px;
  color: #e6eefc;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -.02em;
}

.partner-point p{
  margin: 0;
  color: #afb9cd;
  font-size: 15px;
  line-height: 1.55;
}

/* RIGHT CARD */
.partner-form-card{
  background: #1a2d4a;
  border-radius: 24px;
  padding: 42px 48px 46px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.03),
    0 24px 50px rgba(0,0,0,.18);
}

.partner-form{
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.partner-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.partner-field{
  display: flex;
  flex-direction: column;
}

.partner-field label{
  margin-bottom: 14px;
  color: #9da8bc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}

.partner-field input,
.partner-field textarea,
.partner-select-wrap select{
  width: 100%;
  border: none;
  outline: none;
  background: #1b3257;
  color: #dce7fb;
  border-radius: 18px;
  font-size: 16px;
  font-family: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
}

.partner-field input,
.partner-select-wrap select{
  height: 68px;
  padding: 0 20px;
}

.partner-field textarea{
  min-height: 152px;
  resize: none;
  padding: 18px 20px;
}

.partner-field input:focus,
.partner-field textarea:focus,
.partner-select-wrap select:focus{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.03),
    0 0 0 2px rgba(255,124,48,.18);
}

.partner-select-wrap{
  position: relative;
}

.partner-select-wrap select{
  appearance: none;
  padding-right: 52px;
}

.partner-select-wrap i{
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #7f8ea7;
  pointer-events: none;
  font-size: 16px;
}

/* BUTTON */
.partner-btn{
  margin-top: 4px;
  width: 100%;
  height: 82px;
  border: 2px solid #ff7b32;
  border-radius: 18px;
  background: #ff7b32;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition:
    transform .28s ease,
    background .35s ease,
    color .35s ease,
    box-shadow .35s ease;
  box-shadow: 0 16px 34px rgba(255,123,50,.18);
}

.partner-btn:hover{
  transform: translateY(-2px);
  background: transparent;
  color: #ff7b32;
  box-shadow:
    0 16px 30px rgba(255,123,50,.08),
    0 0 0 1px rgba(255,123,50,.08) inset;
}

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

  .partner-left{
    max-width: 100%;
  }
}

@media (max-width: 768px){
  .partner-section{
    padding: 72px 18px 80px;
  }

  .partner-form-card{
    padding: 28px 20px 24px;
    border-radius: 20px;
  }

  .partner-row{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .partner-left h2{
    font-size: 36px;
  }

  .partner-desc{
    font-size: 15px;
    margin-bottom: 38px;
  }

  .partner-point{
    grid-template-columns: 56px 1fr;
  }

  .partner-icon{
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .partner-point h4{
    font-size: 20px;
  }

  .partner-field input,
  .partner-select-wrap select{
    height: 60px;
    border-radius: 16px;
  }

  .partner-field textarea{
    min-height: 130px;
    border-radius: 16px;
  }

  .partner-btn{
    height: 66px;
    font-size: 16px;
    border-radius: 16px;
  }
}

/* =========================
   PARTNER SECTION FX
========================= */

.partner-left h2,
.partner-desc,
.partner-point,
.partner-form-card {
  will-change: transform, opacity, filter;
}

/* left items */
.partner-point{
  position: relative;
  border-radius: 18px;
  padding: 8px 8px 8px 0;
  transition:
    transform .32s ease,
    background .32s ease;
}

.partner-point::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(
    220px circle at 0% 50%,
    rgba(255,124,48,.10),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.partner-point:hover{
  transform: translateX(8px);
}

.partner-point:hover::after{
  opacity: 1;
}

.partner-point:hover .partner-icon{
  transform: translateY(-2px) scale(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 0 24px rgba(255,124,48,.22);
}

.partner-icon{
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    background .3s ease,
    color .3s ease;
}

/* form card */
.partner-form-card{
  position: relative;
  overflow: hidden;
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
  border: 1px solid rgba(255,255,255,.04);
}

.partner-form-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    380px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,124,48,.12),
    transparent 60%
  );
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.partner-form-card::after{
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,.04) 35%,
    rgba(255,255,255,.14) 50%,
    rgba(255,255,255,.04) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left .8s ease;
  pointer-events: none;
}

.partner-form-card:hover{
  transform: translateY(-8px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 28px 60px rgba(0,0,0,.24),
    0 0 0 1px rgba(255,124,48,.06);
}

.partner-form-card:hover::before{
  opacity: 1;
}

.partner-form-card:hover::after{
  left: 145%;
}

/* input hover/focus */
.partner-field input,
.partner-field textarea,
.partner-select-wrap select{
  transition:
    background .28s ease,
    box-shadow .28s ease,
    transform .28s ease;
}

.partner-field:hover input,
.partner-field:hover textarea,
.partner-field:hover .partner-select-wrap select{
  background: #1d365d;
}

.partner-field input:focus,
.partner-field textarea:focus,
.partner-select-wrap select:focus{
  transform: translateY(-1px);
}

/* button hover upgrade */
.partner-btn{
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.partner-btn::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateX(-102%);
  background: rgba(255,255,255,.06);
  transition: transform .55s cubic-bezier(.22,1,.36,1);
}

.partner-btn::after{
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 52%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255,255,255,.09) 35%,
    rgba(255,255,255,.22) 50%,
    rgba(255,255,255,.09) 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left .72s ease;
  pointer-events: none;
}

.partner-btn span,
.partner-btn{
  position: relative;
  z-index: 2;
}

.partner-btn:hover::before{
  transform: translateX(0);
}

.partner-btn:hover::after{
  left: 145%;
}

/* =========================
   PARTNER SECTION — SMALLER
========================= */

.partner-section{
  padding: 82px 28px 92px;
}

.partner-wrap{
  max-width: 1360px;
  gap: 72px;
  align-items: start;
}

/* left side */
.partner-left{
  max-width: 560px;
}

.partner-left h2{
  font-size: clamp(40px, 3.4vw, 56px);
  line-height: 1.02;
  margin-bottom: 22px;
}

.partner-desc{
  max-width: 540px;
  font-size: 16px;
  line-height: 1.62;
  margin-bottom: 34px;
}

.partner-points{
  gap: 24px;
}

.partner-point{
  gap: 16px;
}

.partner-icon{
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  font-size: 20px;
}

.partner-point h4{
  font-size: 18px;
  margin-bottom: 4px;
}

.partner-point p{
  font-size: 15px;
  line-height: 1.5;
}

/* form card */
.partner-form-card{
  max-width: 660px;
  padding: 38px 40px 36px;
  border-radius: 24px;
}

/* form grid */
.partner-form-row{
  gap: 22px;
  margin-bottom: 24px;
}

.partner-field{
  margin-bottom: 22px;
}

.partner-field label{
  font-size: 12px;
  letter-spacing: .16em;
  margin-bottom: 12px;
}

/* inputs */
.partner-field input,
.partner-field textarea,
.partner-select-wrap select{
  min-height: 68px;
  padding: 0 20px;
  border-radius: 16px;
  font-size: 16px;
}

.partner-field textarea{
  min-height: 156px;
  padding: 18px 20px;
}

.partner-select-wrap::after{
  right: 20px;
  font-size: 15px;
}

/* button */
.partner-btn{
  min-height: 74px;
  border-radius: 16px;
  font-size: 17px;
  margin-top: 10px;
}

/* responsive */
@media (max-width: 1100px){
  .partner-section{
    padding: 72px 22px 82px;
  }

  .partner-wrap{
    gap: 46px;
  }

  .partner-form-card{
    max-width: 100%;
    padding: 30px 24px 28px;
  }
}

@media (max-width: 768px){
  .partner-left h2{
    font-size: 34px;
  }

  .partner-desc{
    font-size: 15px;
    margin-bottom: 26px;
  }

  .partner-icon{
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 18px;
  }

  .partner-point h4{
    font-size: 17px;
  }

  .partner-point p{
    font-size: 14px;
  }

  .partner-form-row{
    gap: 16px;
    margin-bottom: 16px;
  }

  .partner-field{
    margin-bottom: 16px;
  }

  .partner-field input,
  .partner-field textarea,
  .partner-select-wrap select{
    min-height: 60px;
    font-size: 15px;
    border-radius: 14px;
  }

  .partner-field textarea{
    min-height: 132px;
  }

  .partner-btn{
    min-height: 62px;
    font-size: 16px;
    border-radius: 14px;
  }
}

/* =========================
   PARTNER FORM — EVEN SMALLER
========================= */

/* section + layout */
.partner-section{
  padding: 68px 24px 78px;
}

.partner-wrap{
  max-width: 1280px;
  gap: 56px;
  align-items: start;
}

/* left content slightly smaller too */
.partner-left{
  max-width: 500px;
}

.partner-left h2{
  font-size: clamp(34px, 3vw, 48px);
  margin-bottom: 18px;
}

.partner-desc{
  max-width: 500px;
  font-size: 15px;
  line-height: 1.56;
  margin-bottom: 28px;
}

.partner-points{
  gap: 18px;
}

.partner-point{
  grid-template-columns: 50px 1fr;
  gap: 14px;
}

.partner-icon{
  width: 46px;
  height: 46px;
  min-width: 46px;
  font-size: 17px;
}

.partner-point h4{
  font-size: 16px;
  margin-bottom: 3px;
}

.partner-point p{
  font-size: 13px;
  line-height: 1.45;
}

/* form card */
.partner-form-card{
  max-width: 590px;
  padding: 28px 28px 26px;
  border-radius: 20px;
}

/* IMPORTANT: your layout uses .partner-row, not .partner-form-row */
.partner-row{
  gap: 16px;
}

.partner-form{
  gap: 18px;
}

.partner-field{
  margin-bottom: 0;
}

.partner-field label{
  margin-bottom: 9px;
  font-size: 11px;
  letter-spacing: .14em;
}

/* inputs */
.partner-field input,
.partner-select-wrap select{
  height: 54px;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  font-size: 14px;
}

.partner-field textarea{
  min-height: 118px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
}

.partner-select-wrap i{
  right: 16px;
  font-size: 13px;
}

/* button */
.partner-btn{
  height: 58px;
  min-height: 58px;
  border-radius: 14px;
  font-size: 15px;
  margin-top: 4px;
}

/* tablet */
@media (max-width: 1100px){
  .partner-wrap{
    gap: 38px;
  }

  .partner-form-card{
    max-width: 100%;
    padding: 24px 22px 22px;
  }
}

/* mobile */
@media (max-width: 768px){
  .partner-section{
    padding: 56px 16px 64px;
  }

  .partner-left h2{
    font-size: 30px;
  }

  .partner-desc{
    font-size: 14px;
    margin-bottom: 22px;
  }

  .partner-point{
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .partner-icon{
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 15px;
  }

  .partner-point h4{
    font-size: 15px;
  }

  .partner-point p{
    font-size: 12.5px;
  }

  .partner-row{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .partner-form{
    gap: 14px;
  }

  .partner-field label{
    font-size: 10px;
    margin-bottom: 8px;
  }

  .partner-field input,
  .partner-select-wrap select{
    height: 48px;
    min-height: 48px;
    font-size: 13px;
    border-radius: 12px;
  }

  .partner-field textarea{
    min-height: 104px;
    font-size: 13px;
    border-radius: 12px;
  }

  .partner-btn{
    height: 52px;
    min-height: 52px;
    font-size: 14px;
    border-radius: 12px;
  }
}