:root {
  --bg: #f7fbff;
  --bg2: #eef7ff;
  --ink: #081631;
  --muted: #5e7393;
  --blue: #1268ff;
  --blue2: #60a5ff;
  --line: rgba(33, 107, 199, 0.14);
  --glass: rgba(255, 255, 255, 0.74);
  --shadow: 0 30px 80px rgba(23, 86, 165, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(18, 104, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 104, 255, .055) 1px, transparent 1px),
    radial-gradient(circle at 72% 3%, rgba(108, 177, 255, .35), transparent 38%),
    radial-gradient(circle at 12% 20%, rgba(18, 104, 255, .14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 36%, #ffffff 100%);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

.bg-orbs { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.orb { position: absolute; border-radius: 999px; filter: blur(22px); opacity: .55; animation: drift 10s ease-in-out infinite alternate; }
.orb-a { width: 260px; height: 260px; background: rgba(45, 137, 255, .22); top: 130px; right: -80px; }
.orb-b { width: 210px; height: 210px; background: rgba(154, 207, 255, .34); top: 560px; left: -80px; animation-delay: -3s; }
.orb-c { width: 240px; height: 240px; background: rgba(11, 71, 170, .10); bottom: 280px; right: -90px; animation-delay: -6s; }
@keyframes drift { to { transform: translate3d(18px, 26px, 0) scale(1.08); } }

.site-header {
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; min-width: 0; }
.brand img { height: 43px; width: auto; object-fit: contain; display: block; }
.desktop-nav { display: none; gap: 26px; font-size: 14px; color: #223556; }
.desktop-nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.68);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(42, 95, 157, .08);
}
.lang-btn {
  border: 0; background: transparent; color: #233657; font-weight: 800;
  padding: 8px 12px; border-radius: 14px; cursor: pointer; font-size: 12px;
}
.lang-btn.active { background: #eaf3ff; color: var(--blue); }
.menu-btn {
  width: 44px; height: 44px; border: 0; border-radius: 14px; background: #071631; display: grid; place-items: center; gap: 0; cursor: pointer; box-shadow: 0 16px 35px rgba(7, 22, 49, .22);
}
.menu-btn span { width: 18px; height: 2px; background: white; display: block; border-radius: 3px; margin: 2px 0; }
.mobile-menu {
  position: fixed; top: 78px; right: 14px; left: 14px; z-index: 60; display: grid; gap: 6px; padding: 12px;
  border: 1px solid var(--line); background: rgba(255,255,255,.92); backdrop-filter: blur(20px); border-radius: 22px; box-shadow: var(--shadow);
  transform: translateY(-14px) scale(.98); opacity: 0; pointer-events: none; transition: .25s ease;
}
.mobile-menu.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.mobile-menu a { padding: 13px 14px; border-radius: 14px; color: #132746; font-weight: 800; }
.mobile-menu a:hover { background: #edf6ff; }

.section { padding: 58px 16px; }
.hero { padding-top: 46px; padding-bottom: 28px; min-height: calc(100svh - 72px); display: flex; flex-direction: column; justify-content: center; }
.eyebrow, .kicker {
  display: inline-flex; width: fit-content; align-items: center;
  color: var(--blue); font-weight: 900; letter-spacing: .18em; font-size: 12px; text-transform: uppercase;
}
.eyebrow {
  letter-spacing: .12em; background: rgba(231,243,255,.9); border: 1px solid rgba(18,104,255,.14); border-radius: 999px; padding: 9px 13px;
}
h1, h2, h3, p { margin: 0; }
h1 { margin-top: 24px; font-size: clamp(42px, 12.6vw, 64px); line-height: .98; letter-spacing: -.055em; font-weight: 950; max-width: 720px; }
h1 span, .blue { color: var(--blue); }
.hero p { margin-top: 22px; color: #506887; font-size: 17px; line-height: 1.72; max-width: 540px; }
.hero-ctas { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 23px; border-radius: 16px; font-weight: 900; font-size: 15px; transition: .25s ease; }
.btn::after { content: "→"; margin-left: 10px; }
.btn.primary { background: #071631; color: white; box-shadow: 0 18px 40px rgba(7,22,49,.24); }
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 24px 55px rgba(7,22,49,.28); }
.btn.ghost { color: var(--blue); background: transparent; padding-inline: 8px; }

.hero-visual {
  position: relative; height: 360px; margin-top: 26px; display: grid; place-items: end center;
}
.platform {
  position: absolute; bottom: 19px; width: 80%; max-width: 360px; height: 36px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(18,104,255,.28), rgba(18,104,255,.06) 50%, transparent 71%);
  filter: blur(2px);
}
.orbit { position: absolute; border: 1px solid rgba(18,104,255,.23); border-radius: 50%; width: 330px; height: 155px; bottom: 58px; transform: rotate(-8deg); }
.orbit-two { width: 370px; height: 175px; transform: rotate(13deg); opacity: .72; }
.glass-card {
  position: absolute; background: rgba(255,255,255,.62); border: 1px solid rgba(63,142,235,.18); border-radius: 28px;
  box-shadow: 0 26px 70px rgba(28,101,188,.17), inset 0 1px 0 rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
}
.glass-card span { display: block; color: #0b357a; font-weight: 900; margin-bottom: 14px; }
.center-card { width: min(76vw, 300px); height: 205px; bottom: 38px; z-index: 3; padding: 24px; }
.mini-card { width: min(42vw, 170px); height: 205px; bottom: 22px; padding: 22px 17px; opacity: .93; }
.card-website { left: 6%; transform: rotate(-7deg); z-index: 2; }
.card-funnel { right: 5%; transform: rotate(6deg); z-index: 2; }
.fake-browser { background: rgba(255,255,255,.64); border-radius: 18px; padding: 12px; height: 125px; }
.fake-browser i { width: 6px; height: 6px; display: inline-block; border-radius: 50%; background: #bad5f3; margin-right: 3px; }
.fake-img { height: 44px; border-radius: 9px; margin-top: 9px; background: linear-gradient(135deg, #d9ecff, #69a8ff); }
.fake-line, .fake-line.short { height: 7px; background: #dbe8f8; border-radius: 999px; margin-top: 10px; }
.fake-line.short { width: 68%; }
.sys-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.sys-grid > div { min-height: 58px; border-radius: 16px; background: rgba(255,255,255,.68); }
.users-icon { display: flex; align-items: center; justify-content: center; gap: 5px; }
.users-icon b { width: 16px; height: 16px; border-radius: 50%; background: linear-gradient(135deg, #1268ff, #8dc3ff); display: block; }
.bar-chart { display: flex; align-items: flex-end; justify-content: center; gap: 6px; padding: 12px; }
.bar-chart i { width: 10px; background: linear-gradient(#7eb9ff,#1268ff); border-radius: 5px; }
.bar-chart i:nth-child(1) { height: 20px; } .bar-chart i:nth-child(2) { height: 30px; } .bar-chart i:nth-child(3) { height: 40px; } .bar-chart i:nth-child(4) { height: 50px; }
.list-lines { padding: 15px; } .list-lines i { height: 8px; margin: 8px 0; border-radius: 999px; display: block; background: #dce9fb; }
.donut { position: relative; display: grid; place-items: center; }
.donut::before { content:""; width: 44px; height: 44px; border-radius: 50%; background: conic-gradient(var(--blue) 0 68%, #dbe9fb 68% 100%); }
.donut::after { content:""; position: absolute; width: 26px; height: 26px; border-radius: 50%; background: white; }
.funnel-shape { display: grid; justify-items: center; gap: 5px; margin-top: 8px; margin-bottom: 16px; }
.funnel-shape i { height: 22px; background: linear-gradient(135deg, #84bdff, #1268ff); display: block; border-radius: 0 0 12px 12px; }
.funnel-shape i:nth-child(1){ width: 88px; clip-path: polygon(0 0,100% 0,78% 100%,22% 100%); }
.funnel-shape i:nth-child(2){ width: 62px; clip-path: polygon(0 0,100% 0,78% 100%,22% 100%); }
.funnel-shape i:nth-child(3){ width: 35px; }

.section-head { margin-bottom: 26px; }
.section-head h2 { margin-top: 12px; font-size: clamp(32px, 8vw, 50px); letter-spacing: -.04em; line-height: 1.05; font-weight: 950; }
.section-head p { margin-top: 10px; color: var(--muted); line-height: 1.65; font-size: 16px; }
.services { padding-top: 50px; background: linear-gradient(180deg, rgba(255,255,255,.0), rgba(235,247,255,.72), rgba(255,255,255,.0)); }
.service-carousel-wrap { margin-left: -16px; margin-right: -16px; }
.service-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(78vw, 360px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 16px 20px;
  scrollbar-width: none;
}
.service-carousel::-webkit-scrollbar { display: none; }
.service-card {
  scroll-snap-align: start;
  min-height: 310px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(56, 135, 226, .16);
  box-shadow: 0 20px 55px rgba(24,94,180,.12), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(24,94,180,.16); }
.card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.card-top em { font-style: normal; font-weight: 950; color: #24395d; background: #edf5ff; border-radius: 13px; padding: 8px 10px; }
.service-icon {
  width: 54px; height: 54px; border-radius: 17px; display: grid; place-items: center; background: #e8f3ff; position: relative;
}
.service-icon::before { content:""; width: 24px; height: 24px; background: linear-gradient(135deg,#75b5ff,#1268ff); display: block; }
.website-icon::before { border-radius: 5px; box-shadow: inset 0 7px 0 rgba(255,255,255,.55); }
.member-icon::before { border-radius: 50%; box-shadow: 12px 10px 0 -4px #1268ff, -12px 10px 0 -4px #7eb9ff; }
.agent-icon::before { clip-path: polygon(50% 0, 100% 45%, 70% 45%, 70% 100%, 30% 100%, 30% 45%, 0 45%); transform: rotate(45deg); }
.academy-icon::before { clip-path: polygon(50% 0,100% 28%,50% 55%,0 28%); }
.order-icon::before { border-radius: 4px; box-shadow: inset 0 0 0 5px rgba(255,255,255,.6); }
.funnel-icon::before { clip-path: polygon(0 0,100% 0,62% 100%,38% 100%); }
.service-card h3 { margin-top: 34px; font-size: 29px; letter-spacing: -.04em; }
.service-card p { margin-top: 15px; color: #5e7393; line-height: 1.62; font-size: 16px; }
.service-card a { display: inline-flex; margin-top: 24px; color: var(--blue); font-weight: 950; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 6px; }
.carousel-dots button { width: 9px; height: 9px; border-radius: 999px; border: 0; background: #cbdcf0; padding: 0; transition: .25s; }
.carousel-dots button.active { width: 28px; background: var(--blue); }
.swipe-hint { display: flex; justify-content: center; align-items: center; gap: 12px; color: #6a7d98; margin-top: 18px; font-size: 15px; }
.swipe-hint span { width: 28px; height: 28px; background: linear-gradient(135deg,#1268ff,#8fc5ff); mask: radial-gradient(circle at 35% 30%, #000 0 5px, transparent 6px), linear-gradient(#000,#000); -webkit-mask: radial-gradient(circle at 35% 30%, #000 0 5px, transparent 6px), linear-gradient(#000,#000); border-radius: 8px; opacity: .9; }

.product-grid, .timeline { display: grid; gap: 16px; }
.product-card, .step, .about-card, .pricing-card, .cta-card {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 20px 60px rgba(21,87,170,.10);
  backdrop-filter: blur(18px);
}
.product-card small { color: var(--blue); font-weight: 950; letter-spacing: .16em; }
.product-card h3, .step h3 { font-size: 24px; margin-top: 14px; letter-spacing: -.03em; }
.product-card p, .step p, .about-card p, .pricing-card p, .cta-card p { color: var(--muted); line-height: 1.65; margin-top: 12px; }
.step b { color: var(--blue); background: #eaf4ff; padding: 9px 11px; border-radius: 13px; display: inline-flex; }
.about-card { background: linear-gradient(135deg, rgba(255,255,255,.74), rgba(225,244,255,.76)); }
.about-card h2, .cta-card h2 { font-size: clamp(30px, 8vw, 48px); line-height: 1.08; letter-spacing: -.045em; margin-top: 12px; }
.pricing-card, .cta-card { text-align: center; }
.pricing-card h3 { font-size: 26px; letter-spacing: -.03em; }
.pricing-card .btn, .cta-card .btn { margin-top: 22px; }
.final-cta { padding-bottom: 44px; }
.footer { padding: 26px 16px 40px; border-top: 1px solid var(--line); text-align: center; color: var(--muted); }
.footer img { height: 42px; width: auto; object-fit: contain; display: block; margin: 0 auto 12px; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; } .delay-2 { transition-delay: .22s; } .delay-3 { transition-delay: .32s; }

@media (min-width: 820px) {
  .site-header { padding: 12px 54px; height: 82px; }
  .brand img { height: 48px; }
  .desktop-nav { display: flex; }
  .menu-btn { display: none; }
  .mobile-menu { display: none; }
  .section { padding-left: 7vw; padding-right: 7vw; }
  .hero { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 30px; min-height: 760px; align-items: center; padding-top: 80px; }
  .hero-visual { height: 460px; margin-top: 0; }
  .service-carousel { grid-auto-columns: min(33vw, 390px); padding-left: 7vw; padding-right: 7vw; }
  .service-carousel-wrap { margin-left: -7vw; margin-right: -7vw; }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .timeline { grid-template-columns: repeat(4,1fr); }
}

@media (max-width: 430px) {
  .site-header { padding-inline: 10px; }
  .brand img { height: 38px; max-width: 145px; }
  .lang-btn { padding: 7px 9px; }
  h1 { font-size: 45px; }
  .hero-visual { height: 330px; }
  .center-card { width: 72vw; height: 190px; padding: 20px; }
  .mini-card { width: 38vw; height: 184px; padding: 18px 13px; }
  .service-carousel { grid-auto-columns: 80vw; }
}

/* Final polish: Apple-like service carousel + hero scroll cue */
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
main, .section, .services, .hero { max-width: 100%; overflow-x: hidden; }
.hero { padding-bottom: 32px; }
.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: max-content;
  margin: 8px auto 0;
  color: #58719a;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none;
  opacity: .92;
}
.scroll-arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #1268ff;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(18,104,255,.18);
  box-shadow: 0 14px 34px rgba(18,104,255,.15), inset 0 1px 0 rgba(255,255,255,.95);
  animation: scroll-bounce 1.7s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: .74; }
  50% { transform: translateY(7px); opacity: 1; }
}

.services { overflow: hidden; }
.service-carousel-wrap {
  overflow: hidden;
  margin-left: -16px;
  margin-right: -16px;
  padding-bottom: 4px;
}
.service-carousel {
  display: flex !important;
  grid-auto-flow: initial !important;
  grid-auto-columns: initial !important;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 16px 26px;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 16px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}
.service-carousel::-webkit-scrollbar { display: none; }
.service-card.showcase-card {
  position: relative;
  flex: 0 0 min(84vw, 390px);
  width: min(84vw, 390px);
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  border-radius: 32px;
  scroll-snap-align: start;
  border: 1px solid rgba(38,120,220,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(236,247,255,.88));
  box-shadow: 0 24px 70px rgba(24,94,180,.14), inset 0 1px 0 rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
}
.showcase-card::before {
  content: "";
  position: absolute;
  inset: -35% -30% auto auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(18,104,255,.22), transparent 65%);
  pointer-events: none;
}
.showcase-copy {
  position: relative;
  z-index: 2;
  padding: 34px 28px 12px;
}
.showcase-copy small {
  display: inline-flex;
  color: #6d7f98;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.showcase-card h3 {
  margin: 0;
  max-width: 92%;
  font-size: 33px;
  line-height: 1.02;
  letter-spacing: -.055em;
  color: #071631;
}
.showcase-card p {
  margin-top: 13px;
  max-width: 88%;
  color: #566d90;
  font-size: 16px;
  line-height: 1.55;
}
.showcase-card a {
  position: relative;
  z-index: 3;
  display: inline-flex;
  margin-top: 18px;
  color: #1268ff;
  font-weight: 950;
}
.showcase-art {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 250px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(214,237,255,.8));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 18px 45px rgba(18,104,255,.11);
}
.showcase-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(56,139,235,.10) 1px, transparent 1px), linear-gradient(90deg, rgba(56,139,235,.10) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 85%);
}
.browser-shell, .profile-card, .lock-card, .course-card, .order-list, .big-funnel, .cta-mini, .floating-note, .status-pill, .play-orb, .node {
  position: absolute;
  z-index: 2;
}
.browser-shell {
  left: 24px;
  top: 24px;
  width: 72%;
  height: 155px;
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 42px rgba(24,94,180,.12);
}
.browser-shell i { width: 7px; height: 7px; display: inline-block; border-radius: 50%; margin-right: 4px; background: #bdd3ef; }
.hero-thumb { height: 66px; border-radius: 14px; margin-top: 14px; background: linear-gradient(135deg,#e9f6ff,#74adff 55%, #155edb); }
.browser-shell span { display: block; height: 8px; background: #dce9fb; border-radius: 999px; margin-top: 11px; width: 78%; }
.browser-shell span:last-child { width: 52%; }
.floating-note { right: 22px; bottom: 24px; width: 92px; height: 76px; border-radius: 18px; background: linear-gradient(135deg,#1268ff,#9dccff); box-shadow: 0 16px 38px rgba(18,104,255,.24); }
.member-art { background: linear-gradient(135deg, rgba(255,255,255,.84), rgba(229,241,255,.92)); }
.profile-card { left: 26px; top: 30px; width: 170px; height: 164px; border-radius: 26px; background: rgba(255,255,255,.86); padding: 22px; box-shadow: 0 18px 42px rgba(24,94,180,.13); }
.profile-card div { width: 55px; height: 55px; border-radius: 50%; background: linear-gradient(135deg,#1268ff,#a7d3ff); margin-bottom: 23px; }
.profile-card span { display:block; height: 9px; border-radius: 999px; background:#dbe8f8; margin: 12px 0; }
.profile-card span:last-child { width: 62%; }
.lock-card { right: 28px; bottom: 32px; width: 118px; height: 118px; border-radius: 26px; background: #071631; box-shadow: 0 22px 42px rgba(7,22,49,.22); display: grid; place-items: center; }
.lock-card b { width: 42px; height: 32px; border-radius: 8px; background:#fff; position:relative; }
.lock-card b::before { content:""; position:absolute; left:8px; right:8px; top:-20px; height:24px; border:7px solid #fff; border-bottom:0; border-radius:18px 18px 0 0; }
.agent-art svg { position:absolute; inset:26px 16px 24px; z-index:1; }
.agent-art path { fill:none; stroke:rgba(18,104,255,.34); stroke-width:4; stroke-linecap:round; }
.node { width:48px; height:48px; border-radius:18px; background:linear-gradient(135deg,#1268ff,#9dcdff); box-shadow:0 14px 30px rgba(18,104,255,.22); }
.n1 { left:50%; top:28px; transform:translateX(-50%); } .n2 { left:54px; top:112px; } .n3 { right:54px; top:112px; } .n4 { left:50%; bottom:22px; transform:translateX(-50%); }
.course-card { left:24px; top:26px; width:72%; height:152px; border-radius:26px; background:rgba(255,255,255,.86); box-shadow:0 18px 42px rgba(24,94,180,.13); padding:22px; }
.course-card b { display:block; height:68px; border-radius:18px; background:linear-gradient(135deg,#071631,#1268ff); margin-bottom:18px; }
.course-card span { display:block; height:9px; border-radius:999px; background:#dbe8f8; margin:10px 0; width:80%; }
.course-card span:last-child { width:50%; }
.play-orb { right:28px; bottom:30px; width:88px; height:88px; border-radius:50%; background:radial-gradient(circle at 35% 30%,#fff,#1268ff); box-shadow:0 18px 42px rgba(18,104,255,.24); }
.play-orb::after { content:""; position:absolute; left:36px; top:29px; border-left:20px solid #071631; border-top:14px solid transparent; border-bottom:14px solid transparent; }
.order-list { left:24px; right:24px; top:30px; height:165px; border-radius:26px; background:rgba(255,255,255,.86); box-shadow:0 18px 42px rgba(24,94,180,.13); padding:24px; }
.order-list span { display:block; height:28px; border-radius:12px; background:linear-gradient(90deg,#dce9fb,#f7fbff); margin-bottom:16px; position:relative; }
.order-list span::before { content:""; position:absolute; width:10px; height:10px; border-radius:50%; background:#1268ff; left:12px; top:9px; }
.status-pill { right:30px; bottom:28px; padding:14px 20px; border-radius:999px; background:#071631; color:white; font-weight:950; box-shadow:0 18px 42px rgba(7,22,49,.22); }
.funnel-art { background:linear-gradient(135deg, rgba(240,248,255,.88), rgba(210,232,255,.92)); }
.big-funnel { left:50%; top:34px; transform:translateX(-50%); display:grid; justify-items:center; gap:10px; }
.big-funnel i { display:block; height:44px; background:linear-gradient(135deg,#95caff,#1268ff); border-radius:0 0 18px 18px; clip-path:polygon(0 0,100% 0,76% 100%,24% 100%); }
.big-funnel i:nth-child(1){ width:184px; } .big-funnel i:nth-child(2){ width:130px; } .big-funnel i:nth-child(3){ width:78px; }
.cta-mini { right:30px; bottom:30px; padding:16px 22px; border-radius:18px; color:white; font-weight:950; background:#071631; box-shadow:0 18px 42px rgba(7,22,49,.22); }
.carousel-dots { margin-top: 10px; }
.swipe-hint { margin-top: 14px; }

@media (min-width: 820px) {
  .scroll-cue { grid-column: 1 / -1; margin-top: -20px; }
  .service-carousel { padding-left: 7vw; padding-right: 7vw; gap: 22px; }
  .service-card.showcase-card { flex-basis: min(39vw, 480px); width: min(39vw, 480px); min-height: 560px; }
  .showcase-art { height: 280px; }
}

@media (max-width: 430px) {
  .service-carousel { padding-left: 16px; padding-right: 16px; }
  .service-card.showcase-card { flex-basis: 84vw; width: 84vw; min-height: 500px; }
  .showcase-copy { padding: 30px 24px 10px; }
  .showcase-card h3 { font-size: 30px; }
  .showcase-art { left: 16px; right: 16px; bottom: 16px; height: 238px; }
}


/* Image-based service + product showcases */
.service-card.image-card {
  position: relative;
  flex: 0 0 min(84vw, 390px);
  width: min(84vw, 390px);
  min-height: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.image-card-link { display:block; }
.service-card.image-card img {
  display:block;
  width:100%;
  height:auto;
  border-radius:32px;
  box-shadow: 0 24px 70px rgba(24,94,180,.14), inset 0 1px 0 rgba(255,255,255,.96);
}
.service-card.image-card:hover { transform:none; box-shadow:none; }
.single-product-grid { grid-template-columns: 1fr; }
.product-showcase {
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.product-showcase img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 34px;
  box-shadow: 0 24px 70px rgba(24,94,180,.14), inset 0 1px 0 rgba(255,255,255,.96);
}
@media (min-width: 820px) {
  .service-card.image-card { flex-basis: min(33vw, 430px); width: min(33vw, 430px); }
  .single-product-grid { max-width: 780px; }
}


/* Aligned Apple-style service cards: consistent image position, typography and pricing */
.service-card.aligned-card {
  flex: 0 0 min(84vw, 390px);
  width: min(84vw, 390px);
  min-height: auto;
  padding: 0;
  overflow: hidden;
  border-radius: 34px;
  scroll-snap-align: start;
  border: 1px solid rgba(38,120,220,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(239,248,255,.92));
  box-shadow: 0 24px 70px rgba(24,94,180,.14), inset 0 1px 0 rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
}

.aligned-card-link {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-height: 570px;
}

.aligned-visual {
  height: 270px;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  background: #f6fbff;
}

.aligned-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.aligned-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 30px 30px 28px;
}

.aligned-copy small {
  color: #357cff;
  font-weight: 950;
  letter-spacing: .18em;
  font-size: 12px;
  text-transform: uppercase;
}

.aligned-copy h3 {
  margin-top: 16px;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -.055em;
  color: #07162f;
}

.aligned-copy p {
  margin-top: 14px;
  color: #6a7488;
  font-size: 19px;
  line-height: 1.35;
  min-height: 52px;
}

.aligned-bottom {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(111,134,164,.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.aligned-bottom span {
  color: #6a7488;
  font-size: 18px;
  line-height: 1.15;
}

.aligned-bottom b {
  display: inline-block;
  color: #337dff;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.04em;
  margin-left: 4px;
}

.aligned-bottom i {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-style: normal;
  font-size: 28px;
  color: #1268ff;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 36px rgba(24,94,180,.14);
}

@media (min-width: 820px) {
  .service-card.aligned-card {
    flex-basis: min(33vw, 430px);
    width: min(33vw, 430px);
  }
  .aligned-card-link { min-height: 620px; }
  .aligned-visual { height: 310px; }
}

@media (max-width: 430px) {
  .aligned-card-link { min-height: 548px; }
  .aligned-visual { height: 250px; }
  .aligned-copy { padding: 26px 26px 24px; }
  .aligned-copy h3 { font-size: 31px; }
  .aligned-copy p { font-size: 17px; min-height: 48px; }
  .aligned-bottom b { font-size: 27px; }
  .aligned-bottom i { width: 46px; height: 46px; }
}


/* Hero visual updated to use premium LF artwork */
.hero-lf-visual {
  position: relative;
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-lf-visual::before,
.hero-lf-visual::after {
  display: none;
}
.hero-lf-visual img {
  display: block;
  width: min(100%, 520px);
  height: auto;
  border-radius: 34px;
  box-shadow: 0 30px 90px rgba(24,94,180,.16), inset 0 1px 0 rgba(255,255,255,.95);
}
@media (max-width: 767px) {
  .hero-lf-visual {
    margin-top: 6px;
  }
  .hero-lf-visual img {
    width: 100%;
    max-width: 420px;
    border-radius: 30px;
  }
}


/* Final symmetry + spacing refinements */
.aligned-visual {
  height: 286px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px 18px 10px !important;
  background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%) !important;
}

.aligned-visual img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
}

.aligned-copy h3 {
  min-height: 70px;
  display: flex;
  align-items: flex-start;
}

.aligned-copy p {
  min-height: 56px !important;
}

.hero-lf-visual img {
  background: transparent !important;
}

@media (max-width: 430px) {
  .aligned-visual {
    height: 256px !important;
    padding: 16px 16px 8px !important;
  }
}

/* Transparent trophy hero + refined service image alignment */
.hero-lf-visual {background: transparent !important; box-shadow:none !important; border:0 !important;}
.hero-lf-visual img {width:min(100%,430px) !important; max-height:420px; object-fit:contain !important; background:transparent !important; border-radius:0 !important; box-shadow:none !important; filter: drop-shadow(0 28px 36px rgba(37,110,220,.14));}
.aligned-visual {height:276px !important; padding:20px !important; background:linear-gradient(180deg,#f8fbff 0%,#eff6ff 100%) !important; display:flex !important; align-items:center !important; justify-content:center !important;}
.aligned-visual img {width:100% !important; height:100% !important; object-fit:contain !important; object-position:center center !important;}
@media (max-width: 430px) {.hero-lf-visual img {width:min(100%,360px) !important; max-height:350px;} .aligned-visual {height:252px !important; padding:16px !important;}}


/* Service visual symmetry refinement */
.aligned-visual {
  padding: 14px !important;
  height: 286px !important;
  background: linear-gradient(180deg, #f7faff 0%, #eff4fb 100%) !important;
}
.aligned-visual img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 24px !important;
}
@media (max-width: 430px) {
  .aligned-visual {
    padding: 12px !important;
    height: 260px !important;
  }
}


/* Final hero fix from uploaded removebg source */
.hero-lf-visual {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
  margin-top: 24px !important;
  margin-bottom: 10px !important;
  padding: 0 !important;
}
.hero-lf-visual::before,
.hero-lf-visual::after {
  display: none !important;
}
.hero-lf-visual img {
  display: block !important;
  width: min(100%, 360px) !important;
  max-height: 330px !important;
  height: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  mix-blend-mode: normal !important;
  filter: drop-shadow(0 22px 28px rgba(26, 96, 190, .14)) !important;
}
.scroll-cue {
  margin-top: 12px !important;
}
@media (max-width: 430px) {
  .hero {
    padding-bottom: 18px !important;
  }
  .hero-lf-visual {
    margin-top: 28px !important;
    margin-bottom: 10px !important;
  }
  .hero-lf-visual img {
    width: min(100%, 330px) !important;
    max-height: 300px !important;
  }
  .scroll-cue {
    margin-top: 14px !important;
  }
}


/* Final service visual alignment fix */
.aligned-visual {
  height: 270px !important;
  border-radius: 30px 30px 0 0 !important;
  overflow: hidden !important;
  background: #f6fbff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.aligned-visual img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
}
@media (max-width: 430px) {
  .aligned-visual {
    height: 258px !important;
  }
}


/* Auto-hide header: hide when scrolling down, show when scrolling up */
.site-header {
  transition: transform .32s ease, opacity .32s ease, background .32s ease, box-shadow .32s ease !important;
  will-change: transform;
}

.site-header.header-hidden {
  transform: translateY(-115%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-header.header-visible {
  transform: translateY(0) !important;
  opacity: 1 !important;
}


/* Header auto-hide fix v2 */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  transition: transform .24s ease, opacity .24s ease, box-shadow .24s ease !important;
  transform: translateY(0) !important;
}

.site-header.header-hidden {
  transform: translateY(calc(-100% - 18px)) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-header.header-visible {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}


/* Platform-style navigation expansion */
.platform-desktop-nav {
  gap: 18px !important;
}

.platform-desktop-nav .member-link {
  color: #1268ff !important;
  font-weight: 950 !important;
}

.platform-mobile-menu {
  position: fixed;
  top: 72px;
  left: 10px;
  right: 10px;
  max-height: calc(100vh - 90px);
  overflow-y: auto;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(38,120,220,.16);
  box-shadow: 0 30px 80px rgba(8,30,70,.18);
  backdrop-filter: blur(22px);
  z-index: 9998;
}

.platform-mobile-menu:not(.open) {
  display: none;
}

.platform-menu-head {
  padding: 10px 12px 16px;
  border-bottom: 1px solid rgba(38,120,220,.12);
  margin-bottom: 10px;
}

.platform-menu-head span {
  display: block;
  color: #07162f;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.03em;
}

.platform-menu-head small {
  display: block;
  margin-top: 4px;
  color: #6b7a91;
  font-size: 12px;
  font-weight: 800;
}

.platform-menu-group {
  margin: 8px 0;
  border-radius: 18px;
  background: rgba(247, 251, 255, .86);
  border: 1px solid rgba(38,120,220,.12);
  overflow: hidden;
}

.platform-menu-group summary {
  min-height: 52px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  cursor: pointer;
  color: #07162f;
  font-size: 16px;
  font-weight: 950;
}

.platform-menu-group summary::-webkit-details-marker {
  display: none;
}

.platform-menu-group summary i {
  font-style: normal;
  color: #7185a1;
  transition: transform .2s ease;
}

.platform-menu-group[open] summary i {
  transform: rotate(180deg);
}

.platform-menu-content {
  padding: 4px 14px 14px;
  display: grid;
  gap: 14px;
}

.menu-section {
  padding: 10px 0 4px;
}

.menu-section em {
  display: block;
  color: #8b9bb2;
  font-size: 11px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.platform-mobile-menu .menu-section a {
  display: block;
  padding: 9px 2px;
  color: #0b1b34;
  text-decoration: none;
  font-size: 16px;
  font-weight: 760;
}

.platform-mobile-menu .menu-section a:active {
  color: #1268ff;
}

.platform-member-login {
  min-height: 54px;
  margin-top: 10px;
  padding: 0 16px;
  border-radius: 18px;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #1268ff !important;
  background: rgba(226, 242, 255, .92);
  font-weight: 950;
}

.platform-member-login b {
  font-size: 20px;
}

/* Platform sections */
.solutions,
.resources {
  position: relative;
}

.solution-grid,
.resource-grid {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.solution-grid article,
.resource-grid article {
  min-height: 210px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(56, 135, 226, .16);
  box-shadow: 0 22px 60px rgba(24,94,180,.10), inset 0 1px 0 rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
}

.solution-grid article span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #e8f3ff;
  color: #1268ff;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 42px;
}

.solution-grid h3,
.resource-grid h3 {
  margin: 0 0 10px;
  color: #07162f;
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -.04em;
}

.solution-grid p,
.resource-grid p {
  margin: 0;
  color: #5f718e;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 650;
}

@media (max-width: 980px) {
  .platform-desktop-nav {
    display: none !important;
  }

  .solution-grid,
  .resource-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .platform-mobile-menu {
    top: 66px;
    left: 8px;
    right: 8px;
    max-height: calc(100vh - 78px);
    border-radius: 24px;
  }

  .solution-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .solution-grid article,
  .resource-grid article {
    min-height: 170px;
    padding: 22px;
  }

  .solution-grid article span {
    margin-bottom: 28px;
  }
}


/* Requested header/menu/product refinements */
.hero .eyebrow {
  display: none !important;
}

.header-actions .lang-switch {
  display: none !important;
}

body.menu-open {
  overflow: hidden !important;
}

.platform-mobile-menu {
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  max-height: 100vh !important;
  height: 100vh !important;
  overflow-y: auto !important;
  padding: 18px 16px 34px !important;
  border-radius: 0 !important;
  background: rgba(255,255,255,.98) !important;
  border: 0 !important;
  z-index: 10000 !important;
  box-shadow: none !important;
}

.platform-mobile-menu:not(.open) {
  display: none !important;
}

.platform-menu-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 2px 14px;
  border-bottom: 1px solid rgba(38,120,220,.12);
  margin-bottom: 12px;
}

.platform-menu-top .platform-menu-head {
  padding: 0 !important;
  border: 0 !important;
  margin: 0 !important;
}

.mobile-close-btn {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #07162f;
  background: #eef6ff;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 12px 28px rgba(16,75,155,.10);
}

.mobile-lang-switch {
  display: flex;
  gap: 8px;
  padding: 10px;
  margin: 0 0 12px;
  border-radius: 18px;
  background: rgba(240,247,255,.9);
  border: 1px solid rgba(38,120,220,.12);
}

.mobile-lang-switch .lang-btn {
  flex: 1;
  min-height: 40px;
  border: 0;
  border-radius: 13px;
  font-weight: 950;
  color: #273d60;
  background: transparent;
}

.mobile-lang-switch .lang-btn.active {
  color: #1268ff;
  background: #fff;
  box-shadow: 0 10px 26px rgba(18,104,255,.10);
}

.translated-product {
  color: inherit;
  text-decoration: none;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 18px;
  align-items: center;
  padding: 38px !important;
  min-height: 620px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 18%, rgba(18,104,255,.12), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(235,247,255,.9));
  border: 1px solid rgba(56,135,226,.16);
  box-shadow: 0 24px 70px rgba(24,94,180,.14), inset 0 1px 0 rgba(255,255,255,.96);
}

.translated-product-copy {
  position: relative;
  z-index: 2;
}

.translated-product-copy span {
  display: block;
  color: #6798ff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .18em;
  margin-bottom: 16px;
}

.translated-product-copy h3 {
  margin: 0 0 12px;
  color: #07162f;
  font-size: clamp(48px, 8vw, 74px);
  line-height: .92;
  letter-spacing: -.07em;
}

.translated-product-copy p {
  margin: 0 0 30px;
  color: #66758c;
  font-size: 23px;
  line-height: 1.35;
  font-weight: 680;
}

.product-price small {
  display: block;
  color: #7b899d;
  font-size: 17px;
  font-weight: 780;
  margin-bottom: 2px;
}

.product-price strong {
  display: block;
  color: #07162f;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -.055em;
}

.translated-product-copy b {
  display: inline-flex;
  margin-top: 32px;
  color: #1268ff;
  font-size: 16px;
  font-weight: 950;
}

.translated-product-visual {
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.translated-product-visual img {
  width: 125%;
  max-width: none;
  height: auto;
  display: block;
  transform: translateX(-4%);
  filter: drop-shadow(0 26px 38px rgba(24,94,180,.13));
}

.product-showcase img {
  border-radius: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 760px) {
  .translated-product {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 30px 24px !important;
    min-height: auto;
  }

  .translated-product-copy h3 {
    font-size: 48px;
  }

  .translated-product-copy p {
    font-size: 20px;
    margin-bottom: 22px;
  }

  .product-price strong {
    font-size: 36px;
  }

  .translated-product-copy b {
    margin-top: 20px;
  }

  .translated-product-visual {
    min-height: 360px;
    margin-top: 4px;
  }

  .translated-product-visual img {
    width: 118%;
    transform: translateX(0);
  }
}


/* Translatable AI Funnel visual, no baked-in language inside image */
.translated-funnel-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 20px 8px;
}

.phone-mockup {
  position: relative;
  z-index: 2;
  width: min(270px, 75vw);
  min-height: 500px;
  padding: 54px 26px 28px;
  border-radius: 42px;
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
  border: 10px solid #111827;
  box-shadow: 0 28px 70px rgba(8, 34, 75, .18);
  transform: rotate(7deg);
}

.phone-top {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 86px;
  height: 24px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #111827;
}

.phone-brand {
  display: inline-block;
  color: #1268ff;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 26px;
}

.phone-mockup h4 {
  margin: 0;
  color: #07162f;
  font-size: 34px;
  line-height: 1.03;
  letter-spacing: -.055em;
}

.phone-mockup p {
  margin: 14px 0 24px;
  color: #61728b;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 720;
}

.phone-mockup button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 15px;
  color: white;
  background: #20b15a;
  font-weight: 950;
  font-size: 15px;
}

.phone-link {
  margin-top: 20px;
  min-height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #62748f;
  background: #fff;
  border: 1px solid rgba(38,120,220,.12);
  font-size: 12px;
  font-weight: 850;
}

.mini-analytics-card,
.mini-chart-card {
  position: absolute;
  z-index: 3;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(38,120,220,.14);
  box-shadow: 0 18px 44px rgba(24,94,180,.13);
  backdrop-filter: blur(18px);
}

.mini-analytics-card small,
.mini-chart-card small {
  display: block;
  color: #6a7890;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
}

.mini-analytics-card strong {
  color: #1268ff;
  font-size: 22px;
  letter-spacing: -.04em;
}

.card-a {
  left: 0;
  top: 66%;
}

.card-b {
  left: 4%;
  top: 80%;
}

.mini-chart-card {
  right: 0;
  top: 67%;
  text-align: center;
}

.donut {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #07162f;
  font-size: 20px;
  font-weight: 950;
  background:
    radial-gradient(circle at center, #fff 0 47%, transparent 49%),
    conic-gradient(#1268ff 0 42%, #d9e8ff 42% 100%);
}

.translated-funnel-visual > img {
  display: none !important;
}

@media (max-width: 760px) {
  .translated-funnel-visual {
    min-height: 500px;
  }

  .phone-mockup {
    width: min(250px, 72vw);
    min-height: 460px;
    padding: 50px 22px 24px;
    transform: rotate(5deg);
  }

  .phone-mockup h4 {
    font-size: 30px;
  }

  .mini-analytics-card {
    padding: 13px;
  }

  .card-a {
    left: -2px;
    top: 68%;
  }

  .card-b {
    left: 8px;
    top: 82%;
  }

  .mini-chart-card {
    right: -2px;
    top: 71%;
  }
}


/* Restore premium AI Funnel visual + cleaner Apple-like product card */
.translated-product {
  grid-template-columns: 1fr !important;
  padding: 0 !important;
  min-height: auto !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.translated-product-copy {
  padding: 34px 32px 0;
  width: min(100%, 620px);
  margin: 0 auto;
  text-align: left;
}

.translated-product-copy span {
  color: #6798ff;
}

.translated-product-copy h3 {
  font-size: clamp(48px, 10vw, 86px);
}

.translated-product-copy p {
  max-width: 520px;
}

.premium-product-image {
  min-height: auto !important;
  padding: 18px 12px 34px;
  display: block !important;
}

.premium-product-image img {
  display: block !important;
  width: 100% !important;
  max-width: 760px !important;
  height: auto !important;
  margin: 0 auto !important;
  border-radius: 34px !important;
  box-shadow: 0 24px 70px rgba(24,94,180,.14), inset 0 1px 0 rgba(255,255,255,.96) !important;
  filter: none !important;
  transform: none !important;
}

.translated-funnel-visual,
.phone-mockup,
.mini-analytics-card,
.mini-chart-card {
  display: none !important;
}

/* Cleaner full-screen platform menu */
.premium-mobile-menu {
  padding: 20px 18px 34px !important;
  background:
    radial-gradient(circle at 75% 5%, rgba(18,104,255,.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(242,248,255,.98)) !important;
}

.premium-menu-grid {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.premium-menu-card {
  min-height: 86px;
  padding: 18px;
  border-radius: 22px;
  text-decoration: none;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(38,120,220,.13);
  box-shadow: 0 18px 46px rgba(24,94,180,.08), inset 0 1px 0 rgba(255,255,255,.94);
}

.premium-menu-card small {
  display: block;
  color: #1268ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.premium-menu-card strong {
  display: block;
  color: #07162f;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -.03em;
}

.premium-member-login {
  margin-top: 16px !important;
  min-height: 62px !important;
  border-radius: 22px !important;
  background: #07162f !important;
  color: #fff !important;
}

@media (max-width: 760px) {
  .translated-product-copy {
    padding: 28px 24px 0;
  }

  .premium-product-image {
    padding: 12px 10px 28px;
  }

  .premium-product-image img {
    border-radius: 30px !important;
  }
}


/* Final AI Funnel card: premium image-like layout, all text translatable */
.ai-funnel-live-card {
  display: block !important;
  position: relative;
  width: min(100%, 880px);
  margin: 0 auto;
  padding: 0 !important;
  text-decoration: none;
  color: inherit;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.ai-card-inner {
  position: relative;
  min-height: 780px;
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(18,104,255,.12), transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f2f8ff 100%);
  border: 1px solid rgba(56,135,226,.16);
  box-shadow: 0 28px 80px rgba(24,94,180,.14), inset 0 1px 0 rgba(255,255,255,.96);
}

.ai-card-inner::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 32px;
  border: 1px solid rgba(18,104,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,0));
  pointer-events: none;
}

.ai-card-copy {
  position: absolute;
  z-index: 4;
  left: 56px;
  top: 58px;
  width: 330px;
}

.ai-card-copy span {
  display: block;
  color: #6d9cff;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ai-card-copy h3 {
  margin: 0 0 12px;
  color: #07162f;
  font-size: 70px;
  line-height: .92;
  letter-spacing: -.075em;
}

.ai-card-copy p {
  margin: 0;
  color: #68768d;
  font-size: 24px;
  line-height: 1.32;
  font-weight: 680;
}

.ai-card-price {
  margin-top: 44px;
}

.ai-card-price small {
  display: block;
  color: #7b899d;
  font-size: 20px;
  font-weight: 780;
  margin-bottom: 4px;
}

.ai-card-price strong {
  display: block;
  color: #07162f;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -.055em;
}

.ai-visual-stage {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.phone-device {
  position: absolute;
  right: 92px;
  top: 110px;
  width: 300px;
  min-height: 570px;
  padding: 54px 26px 26px;
  border-radius: 48px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 11px solid #111827;
  box-shadow: 0 30px 75px rgba(8,34,75,.20);
  transform: rotate(8deg);
}

.phone-camera {
  position: absolute;
  left: 50%;
  top: 14px;
  width: 96px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #111827;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #07162f;
  font-size: 14px;
  font-weight: 950;
  margin-bottom: 26px;
}

.phone-header i {
  width: 18px;
  height: 12px;
  border-radius: 3px;
  border-top: 2px solid #111827;
  border-bottom: 2px solid #111827;
  display: block;
}

.offer-pill {
  width: fit-content;
  margin: 0 auto 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #1268ff;
  background: #e8f3ff;
  font-size: 12px;
  font-weight: 950;
}

.phone-device h4 {
  margin: 0;
  color: #07162f;
  text-align: center;
  font-size: 31px;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.phone-device p {
  margin: 12px auto 18px;
  max-width: 220px;
  color: #66758c;
  text-align: center;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 720;
}

.phone-product-stack {
  position: relative;
  height: 96px;
  margin: 10px auto 16px;
}

.phone-product-stack div {
  position: absolute;
  border-radius: 14px;
  background: linear-gradient(135deg, #dceeff, #ffffff);
  border: 1px solid rgba(18,104,255,.12);
  box-shadow: 0 10px 24px rgba(24,94,180,.10);
}

.phone-product-stack div:nth-child(1) {
  width: 150px;
  height: 80px;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
}

.phone-product-stack div:nth-child(2) {
  width: 82px;
  height: 92px;
  left: 18px;
  top: 0;
}

.phone-product-stack div:nth-child(3) {
  width: 82px;
  height: 92px;
  right: 18px;
  top: 0;
}

.phone-device ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.phone-device li {
  position: relative;
  margin: 8px 0;
  padding-left: 24px;
  color: #334765;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 780;
}

.phone-device li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #1268ff;
  font-size: 10px;
}

.phone-price {
  text-align: center;
  color: #07162f;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.04em;
  margin-bottom: 10px;
}

.phone-device button {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 16px;
  color: white;
  background: #20b15a;
  font-size: 14px;
  font-weight: 950;
}

.share-box {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(38,120,220,.12);
}

.share-box small {
  display: block;
  color: #7b899d;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 4px;
}

.share-box span {
  display: block;
  color: #334765;
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.floating-card {
  position: absolute;
  z-index: 5;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(38,120,220,.14);
  box-shadow: 0 18px 48px rgba(24,94,180,.13);
  backdrop-filter: blur(18px);
}

.floating-card small {
  display: block;
  color: #6a7890;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
}

.floating-card strong {
  display: block;
  color: #1268ff;
  font-size: 24px;
  letter-spacing: -.04em;
}

.floating-card em {
  display: inline-block;
  margin-top: 6px;
  color: #16a35a;
  font-style: normal;
  font-size: 12px;
  font-weight: 950;
}

.revenue-card {
  left: 86px;
  top: 60%;
  width: 178px;
}

.conversion-card {
  left: 66px;
  top: 75%;
  width: 190px;
}

.sources-card {
  right: 42px;
  top: 66%;
  width: 150px;
  text-align: center;
}

.sources-card p {
  margin: 8px 0 0;
  color: #65748d;
  font-size: 12px;
  font-weight: 780;
}

.donut-chart {
  width: 84px;
  height: 84px;
  margin: 0 auto 8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, #fff 0 47%, transparent 49%),
    conic-gradient(#1268ff 0 42%, #d9e8ff 42% 100%);
}

.donut-chart b {
  color: #07162f;
  font-size: 20px;
}

.mini-line-chart {
  height: 46px;
  margin-top: 12px;
  display: flex;
  align-items: end;
  gap: 7px;
}

.mini-line-chart span {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, #1268ff, #9dccff);
}

.mini-line-chart span:nth-child(1) { height: 34%; }
.mini-line-chart span:nth-child(2) { height: 58%; }
.mini-line-chart span:nth-child(3) { height: 45%; }
.mini-line-chart span:nth-child(4) { height: 72%; }
.mini-line-chart span:nth-child(5) { height: 92%; }

@media (max-width: 760px) {
  .ai-card-inner {
    min-height: 760px;
    border-radius: 34px;
  }

  .ai-card-copy {
    left: 28px;
    top: 34px;
    width: calc(100% - 56px);
  }

  .ai-card-copy h3 {
    font-size: 48px;
  }

  .ai-card-copy p {
    font-size: 20px;
  }

  .ai-card-price {
    margin-top: 26px;
  }

  .ai-card-price strong {
    font-size: 34px;
  }

  .phone-device {
    right: 46px;
    top: 260px;
    width: 225px;
    min-height: 430px;
    padding: 45px 18px 18px;
    border-width: 9px;
    border-radius: 38px;
  }

  .phone-camera {
    width: 76px;
    height: 23px;
  }

  .phone-header {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .offer-pill {
    font-size: 10px;
    padding: 6px 10px;
  }

  .phone-device h4 {
    font-size: 22px;
  }

  .phone-device p {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .phone-product-stack {
    height: 68px;
    margin-bottom: 12px;
  }

  .phone-product-stack div:nth-child(1) {
    width: 116px;
    height: 56px;
  }

  .phone-product-stack div:nth-child(2),
  .phone-product-stack div:nth-child(3) {
    width: 58px;
    height: 62px;
  }

  .phone-device li {
    font-size: 10.5px;
    margin: 6px 0;
    padding-left: 19px;
  }

  .phone-device li::before {
    width: 14px;
    height: 14px;
    font-size: 9px;
  }

  .phone-price {
    font-size: 18px;
  }

  .phone-device button {
    min-height: 38px;
    font-size: 12px;
  }

  .share-box {
    display: none;
  }

  .revenue-card {
    left: 20px;
    top: 52%;
    width: 138px;
  }

  .conversion-card {
    left: 22px;
    top: 70%;
    width: 138px;
  }

  .sources-card {
    right: 18px;
    top: 76%;
    width: 116px;
  }

  .floating-card {
    padding: 13px;
    border-radius: 18px;
  }

  .floating-card strong {
    font-size: 18px;
  }

  .donut-chart {
    width: 60px;
    height: 60px;
  }

  .sources-card p {
    display: none;
  }
}


/* Final platform drawer menu: full-screen, accordion, language selector, member row, bottom CTA */
body.menu-open {
  overflow: hidden !important;
}

.header-actions .lang-switch {
  display: none !important;
}

.platform-drawer-menu {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  z-index: 10000 !important;
  width: 100vw !important;
  height: 100vh !important;
  padding: 22px 24px 24px !important;
  overflow-y: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(255,255,255,.985) !important;
  color: #07162f;
  box-shadow: none !important;
}

.platform-drawer-menu.open {
  display: flex !important;
  flex-direction: column;
}

.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(8,24,50,.10);
}

.drawer-brand img {
  width: 92px;
  height: auto;
  display: block;
}

.drawer-close-btn {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #eef6ff;
  color: #07162f;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.drawer-content {
  padding: 18px 0;
  flex: 1;
}

.drawer-group {
  border-bottom: 1px solid rgba(8,24,50,.08);
}

.drawer-group summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  cursor: pointer;
  color: #07162f;
  font-size: 18px;
  font-weight: 820;
}

.drawer-group summary::-webkit-details-marker {
  display: none;
}

.drawer-group summary i {
  color: #7c8ba3;
  font-style: normal;
  font-size: 18px;
  transition: transform .2s ease;
}

.drawer-group[open] summary i {
  transform: rotate(180deg);
}

.drawer-submenu {
  padding: 0 0 18px 30px;
}

.drawer-submenu a {
  display: block;
  padding: 10px 0;
  color: #07162f;
  text-decoration: none;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 620;
}

.drawer-submenu a:hover,
.drawer-submenu a:active {
  color: #1268ff;
}

.drawer-member-row {
  min-height: 52px;
  margin: 18px 0 20px;
  padding: 0 14px;
  border-radius: 12px;
  background: #edf7ff;
  color: #1268ff !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-size: 17px;
  font-weight: 760;
}

.drawer-member-row b {
  font-size: 20px;
}

.language-selector {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(8,24,50,.10);
}

.language-selector summary {
  list-style: none;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #07162f;
  font-size: 17px;
  font-weight: 720;
}

.language-selector summary::-webkit-details-marker {
  display: none;
}

.language-selector summary i {
  margin-left: auto;
  color: #7c8ba3;
  font-style: normal;
}

.current-lang-flag,
.language-list span {
  font-size: 25px;
  line-height: 1;
}

.language-list {
  padding: 8px 0 8px 0;
  display: grid;
  gap: 6px;
}

.drawer-lang-option {
  min-height: 48px;
  width: 100%;
  border: 0;
  background: transparent;
  color: #07162f;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  padding: 0 12px;
  cursor: pointer;
}

.drawer-lang-option b {
  font-size: 16px;
  font-weight: 720;
}

.drawer-lang-option.active {
  background: #edf7ff;
  color: #1268ff;
}

.drawer-bottom {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(8,24,50,.10);
  display: grid;
  gap: 10px;
}

.drawer-cta {
  min-height: 52px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 17px;
  font-weight: 840;
}

.drawer-cta.primary {
  color: #fff !important;
  background: #07162f;
}

.drawer-cta.ghost {
  color: #1268ff !important;
  background: #edf7ff;
}

.drawer-cta.outline {
  color: #07162f !important;
  background: #fff;
  border: 1px solid rgba(8,24,50,.16);
}

@media (max-width: 520px) {
  .platform-drawer-menu {
    padding: 22px 20px 18px !important;
  }

  .drawer-brand img {
    width: 84px;
  }

  .drawer-group summary {
    min-height: 56px;
    font-size: 17px;
  }

  .drawer-submenu {
    padding-left: 28px;
  }

  .drawer-submenu a {
    font-size: 16px;
  }
}


/* Inner pages + updated menu direct product row */
.drawer-direct-link {
  min-height: 58px;
  border-bottom: 1px solid rgba(8,24,50,.08);
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  color: #07162f !important;
  text-decoration: none;
  font-size: 18px;
  font-weight: 820;
}

.drawer-direct-link b {
  color: #7c8ba3;
  font-size: 18px;
}

.solution-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.inner-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 0%, rgba(18,104,255,.13), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 45%, #f4f8ff 100%);
}

.inner-hero {
  padding: 150px 0 70px;
}

.inner-wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.inner-kicker {
  display: inline-flex;
  align-items: center;
  color: #1268ff;
  background: #edf7ff;
  border: 1px solid rgba(18,104,255,.12);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.inner-hero h1 {
  max-width: 900px;
  margin: 24px 0 20px;
  color: #07162f;
  font-size: clamp(46px, 7vw, 86px);
  line-height: .96;
  letter-spacing: -.07em;
}

.inner-hero p {
  max-width: 760px;
  color: #5f6f86;
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.5;
  font-weight: 650;
}

.inner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.inner-actions a {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 850;
}

.inner-actions .primary {
  color: #fff;
  background: #07162f;
}

.inner-actions .secondary {
  color: #1268ff;
  background: #edf7ff;
}

.inner-section {
  padding: 26px 0 90px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.detail-card {
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(38,120,220,.12);
  box-shadow: 0 20px 60px rgba(24,94,180,.08);
}

.detail-card.wide {
  grid-column: 1 / -1;
}

.detail-card h2,
.detail-card h3 {
  margin: 0 0 14px;
  color: #07162f;
  font-size: 28px;
  letter-spacing: -.04em;
}

.detail-card p,
.detail-card li {
  color: #5d6c82;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 620;
}

.detail-card ul {
  padding-left: 20px;
  margin: 0;
}

.process-list {
  counter-reset: step;
  display: grid;
  gap: 12px;
}

.process-item {
  counter-increment: step;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 22px;
  background: #f5faff;
}

.process-item::before {
  content: counter(step);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: white;
  background: #1268ff;
  font-weight: 900;
}

.process-item strong {
  display: block;
  color: #07162f;
  margin-bottom: 4px;
}

.process-item span {
  display: block;
  color: #5d6c82;
  line-height: 1.5;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.related-grid a {
  text-decoration: none;
  color: #07162f;
  background: #f5faff;
  border: 1px solid rgba(38,120,220,.10);
  padding: 18px;
  border-radius: 20px;
  font-weight: 850;
}

@media (max-width: 760px) {
  .inner-hero {
    padding: 122px 0 46px;
  }

  .inner-wrap {
    width: min(100% - 34px, 1120px);
  }

  .detail-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .detail-card {
    padding: 24px;
    border-radius: 26px;
  }

  .inner-actions a {
    width: 100%;
  }
}


/* Clean menu update: only Services has dropdown; AI Funnel, Solutions and Promotion are direct links */
.platform-drawer-menu * {
  box-sizing: border-box;
}

.drawer-group,
.drawer-direct-link {
  width: 100%;
}

.drawer-group summary,
.drawer-direct-link {
  min-height: 58px !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(8,24,50,.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  color: #07162f !important;
  background: transparent !important;
  text-decoration: none !important;
  font-size: 18px !important;
  font-weight: 820 !important;
  line-height: 1 !important;
  outline: none !important;
  box-shadow: none !important;
}

.drawer-group summary:focus,
.drawer-group summary:focus-visible,
.drawer-direct-link:focus,
.drawer-direct-link:focus-visible,
.language-selector summary:focus,
.language-selector summary:focus-visible,
.drawer-lang-option:focus,
.drawer-lang-option:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.drawer-group summary i,
.drawer-direct-link b {
  color: #7c8ba3 !important;
  font-style: normal;
  font-size: 18px !important;
  font-weight: 800;
}

.drawer-submenu {
  padding: 4px 0 20px 28px !important;
  border-bottom: 1px solid rgba(8,24,50,.08);
}

.drawer-submenu a {
  padding: 12px 0 !important;
  font-size: 17px !important;
  font-weight: 700 !important;
}

.drawer-member-row {
  margin: 20px 0 18px !important;
}

.language-selector {
  margin-top: 0 !important;
  padding-top: 18px !important;
}

.drawer-bottom .drawer-cta.ghost {
  display: none !important;
}


/* Final menu text and alignment fix */
.drawer-content {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.drawer-group,
.drawer-direct-link {
  margin: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.drawer-group summary,
.drawer-direct-link {
  padding: 0 !important;
  min-height: 58px !important;
  width: 100% !important;
  border-bottom: 1px solid rgba(8,24,50,.08) !important;
  box-shadow: none !important;
}

.drawer-group summary span,
.drawer-direct-link span {
  display: inline-flex !important;
  align-items: center !important;
  min-width: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.drawer-group summary i,
.drawer-direct-link b {
  flex: 0 0 auto !important;
  margin-left: 18px !important;
}

.drawer-submenu {
  padding-left: 28px !important;
}

.drawer-submenu a {
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}


/* VERIFIED HERO: code text + code buttons + code scroll. Robot mountain is background only. */
.hero-ai-monetize {
  position: relative !important;
  min-height: 1320px !important;
  padding: 84px 22px 48px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, #d9ebff 0%, #cfe4fb 100%) !important;
}

.hero-ai-monetize::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(63,126,214,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63,126,214,.10) 1px, transparent 1px) !important;
  background-size: 40px 40px !important;
  opacity: .75 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.hero-ai-monetize .hero-copy {
  position: relative !important;
  z-index: 3 !important;
  width: min(100%, 720px) !important;
}

.hero-ai-monetize h1 {
  margin: 0 !important;
  max-width: 8.4ch !important;
  color: #071634 !important;
  font-size: clamp(58px, 14vw, 84px) !important;
  line-height: .92 !important;
  letter-spacing: -.065em !important;
  font-weight: 950 !important;
}

.hero-ai-monetize h1 .blue {
  color: #1c69ff !important;
}

.hero-ai-monetize p {
  margin-top: 26px !important;
  max-width: 17ch !important;
  color: #677d9a !important;
  font-size: clamp(18px, 4.55vw, 24px) !important;
  line-height: 1.65 !important;
  font-weight: 600 !important;
}

.hero-ai-monetize .hero-ctas {
  position: relative !important;
  z-index: 4 !important;
  margin-top: 34px !important;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

.hero-ai-monetize .btn.primary {
  min-width: 160px !important;
  min-height: 58px !important;
  border-radius: 18px !important;
}

.hero-ai-monetize .btn.ghost {
  color: #1c69ff !important;
  background: transparent !important;
  box-shadow: none !important;
  padding-inline: 8px !important;
}

.hero-art-background {
  position: absolute !important;
  z-index: 1 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 70px !important;
  height: 790px !important;
  background-image: url("/assets/hero-ai-climb-background.png") !important;
  background-repeat: no-repeat !important;
  background-position: center bottom !important;
  background-size: 124% auto !important;
  pointer-events: none !important;
}

.hero-ai-monetize .scroll-cue {
  position: absolute !important;
  z-index: 4 !important;
  left: 50% !important;
  bottom: 30px !important;
  transform: translateX(-50%) !important;
  margin: 0 !important;
}

.hero-ai-monetize .scroll-arrow {
  width: 50px !important;
  height: 50px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.82) !important;
  color: #1c69ff !important;
  display: grid !important;
  place-items: center !important;
  box-shadow: 0 12px 30px rgba(21,58,117,.10) !important;
}

@media (min-width: 768px) {
  .hero-ai-monetize {
    min-height: 940px !important;
    padding: 110px 7vw 54px !important;
  }

  .hero-ai-monetize h1 {
    max-width: 8ch !important;
    font-size: clamp(72px, 7.3vw, 112px) !important;
  }

  .hero-ai-monetize p {
    max-width: 34ch !important;
  }

  .hero-art-background {
    left: 33% !important;
    right: 0 !important;
    bottom: 58px !important;
    height: 720px !important;
    background-size: contain !important;
    background-position: center bottom !important;
  }
}

/* VERSION B IMPROVED CLEAN FINAL */
.container{width:min(1120px,calc(100% - 32px));margin:0 auto}
.section-head{margin-bottom:24px}.section-head .kicker,.kicker{color:#1268ff;font-weight:950;letter-spacing:.16em;font-size:12px;text-transform:uppercase}.section-head h2{margin:10px 0;color:#07162f;font-size:clamp(36px,7vw,68px);line-height:.98;letter-spacing:-.055em}.section-head p{max-width:720px;color:#5f6f86;font-size:17px;line-height:1.65;font-weight:650}
.hero-ai-monetize-final .hero-copy{padding-top:clamp(28px,6svh,70px)!important}.monetise-paths,.why-linkflo-section,.journey-section,.member-section{padding-top:78px}.path-grid,.why-grid{display:grid;gap:18px}.ecosystem-path-grid{grid-template-columns:repeat(3,1fr)}
.ecosystem-card,.why-card{display:block;text-decoration:none;color:inherit;border:1px solid rgba(38,120,220,.12);background:rgba(255,255,255,.84);border-radius:30px;padding:28px;box-shadow:0 20px 60px rgba(24,94,180,.08)}.ecosystem-card .path-icon{display:inline-grid;width:52px;height:52px;place-items:center;border-radius:17px;background:#edf7ff;font-size:25px;margin-bottom:20px}.ecosystem-card small{color:#1268ff;font-size:12px;font-weight:950;letter-spacing:.12em}.ecosystem-card h3,.why-card h3{margin:8px 0 10px;color:#07162f;font-size:28px;letter-spacing:-.04em;line-height:1.08}.ecosystem-card p,.why-card p{color:#5f6f86;line-height:1.62;font-weight:650}.ecosystem-card b{display:inline-flex;margin-top:14px;color:#1268ff;font-weight:850}
.why-grid{grid-template-columns:repeat(4,1fr)}.why-card span{display:inline-grid;width:48px;height:48px;place-items:center;border-radius:16px;background:#edf7ff;font-size:23px;margin-bottom:18px}.journey-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.journey-steps div{min-height:130px;border-radius:28px;padding:22px;background:rgba(255,255,255,.76);border:1px solid rgba(38,120,220,.12);display:flex;flex-direction:column;justify-content:space-between}.journey-steps span{color:#1268ff;font-weight:950}.journey-steps b{color:#07162f;font-size:25px;letter-spacing:-.035em}
.member-panel{border-radius:36px;padding:34px;background:#07162f;color:#fff;display:flex;justify-content:space-between;gap:24px;align-items:center;box-shadow:0 28px 80px rgba(7,22,47,.22)}.member-panel h2{margin:10px 0;color:#fff;font-size:clamp(34px,6vw,62px);line-height:1;letter-spacing:-.055em}.member-panel p{max-width:650px;color:rgba(255,255,255,.72);line-height:1.65;font-weight:650}.member-panel .kicker{color:#74a8ff}.member-panel .btn.primary{background:#fff;color:#07162f;flex:0 0 auto}
.final-cta-card{border-radius:36px;padding:36px;background:linear-gradient(145deg,#eef7ff,#fff);border:1px solid rgba(38,120,220,.12);box-shadow:0 22px 70px rgba(24,94,180,.10)}.final-cta-card h2{margin:10px 0;color:#07162f;font-size:clamp(36px,7vw,72px);line-height:.98;letter-spacing:-.06em}.final-cta-card p{color:#5f6f86;line-height:1.65;font-weight:650;margin-bottom:22px}
.drawer-earn-group summary span,.drawer-direct-link span,.drawer-member-row span{display:inline-flex!important;align-items:center!important;gap:8px!important}.drawer-member-row{background:#07162f!important;color:#fff!important}.drawer-member-row b{color:#fff!important}
@media(max-width:960px){.ecosystem-path-grid,.why-grid,.journey-steps{grid-template-columns:1fr}.member-panel{display:block}.member-panel .btn{margin-top:24px;width:100%}}


/* HERO FIRST SCREEN FIX: smaller visual + fixed scroll cue */
.hero-ai-monetize-final {
  position: relative !important;
  min-height: calc(100svh - 72px) !important;
  height: calc(100svh - 72px) !important;
  overflow: hidden !important;
  padding-bottom: 82px !important;
}

.hero-ai-monetize-final .hero-copy {
  position: relative !important;
  z-index: 5 !important;
}

.hero-ai-monetize-final .hero-illustration {
  position: absolute !important;
  z-index: 2 !important;
  left: 50% !important;
  right: auto !important;
  bottom: 68px !important;
  width: min(92vw, 430px) !important;
  height: min(42svh, 360px) !important;
  min-height: 0 !important;
  max-height: 360px !important;
  transform: translateX(-50%) !important;
  margin: 0 !important;
  overflow: visible !important;
  pointer-events: none !important;
}

.hero-ai-monetize-final .hero-illustration img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center bottom !important;
}

.hero-ai-monetize-final .hero-scroll-cue,
.hero-ai-monetize-final .scroll-cue {
  position: absolute !important;
  z-index: 20 !important;
  left: 50% !important;
  bottom: 16px !important;
  transform: translateX(-50%) !important;
  margin: 0 !important;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 6px !important;
  text-decoration: none !important;
  pointer-events: auto !important;
}

.hero-ai-monetize-final .scroll-arrow {
  width: 44px !important;
  height: 44px !important;
  border-radius: 999px !important;
  display: grid !important;
  place-items: center !important;
  background: rgba(255,255,255,.88) !important;
  color: #1268ff !important;
  box-shadow: 0 12px 28px rgba(24,94,180,.14) !important;
}

.hero-ai-monetize-final .hero-scroll-cue b,
.hero-ai-monetize-final .scroll-cue b {
  font-size: 13px !important;
  color: #63758f !important;
  font-weight: 850 !important;
}

@media (max-width: 520px) {
  .hero-ai-monetize-final {
    min-height: calc(100svh - 64px) !important;
    height: calc(100svh - 64px) !important;
    padding-top: 74px !important;
  }

  .hero-ai-monetize-final h1 {
    font-size: clamp(38px, 10.2vw, 52px) !important;
    line-height: .98 !important;
  }

  .hero-ai-monetize-final p {
    font-size: 15.5px !important;
    line-height: 1.55 !important;
    max-width: 34ch !important;
  }

  .hero-ai-monetize-final .hero-illustration {
    bottom: 70px !important;
    width: min(94vw, 390px) !important;
    height: 35svh !important;
    max-height: 300px !important;
  }
}

@media (min-width: 768px) {
  .hero-ai-monetize-final .hero-illustration {
    left: auto !important;
    right: 4vw !important;
    bottom: 74px !important;
    transform: none !important;
    width: min(48vw, 560px) !important;
    height: min(55svh, 520px) !important;
    max-height: 520px !important;
  }

  .hero-ai-monetize-final .hero-scroll-cue,
  .hero-ai-monetize-final .scroll-cue {
    bottom: 22px !important;
  }
}

/* HERO FIRST SCREEN CSS ONLY OVERRIDE: smaller illustration + locked scroll cue */
.hero-ai-monetize-final {
  position: relative !important;
  min-height: 100svh !important;
  height: 100svh !important;
  overflow: hidden !important;
  padding-bottom: 96px !important;
}

.hero-ai-monetize-final .hero-copy {
  position: relative !important;
  z-index: 5 !important;
}

.hero-ai-monetize-final .hero-illustration {
  position: absolute !important;
  z-index: 2 !important;
  pointer-events: none !important;
  overflow: visible !important;
  margin: 0 !important;
}

.hero-ai-monetize-final .hero-illustration img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center bottom !important;
}

.hero-ai-monetize-final .hero-scroll-cue,
.hero-ai-monetize-final .scroll-cue {
  position: absolute !important;
  z-index: 20 !important;
  left: 50% !important;
  bottom: clamp(16px, 2.4svh, 24px) !important;
  transform: translateX(-50%) !important;
  margin: 0 !important;
  width: max-content !important;
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  pointer-events: auto !important;
}

@media (max-width: 767px) {
  .hero-ai-monetize-final {
    display: block !important;
    min-height: 100svh !important;
    height: 100svh !important;
    padding: 92px 16px 96px !important;
  }

  .hero-ai-monetize-final .hero-copy {
    padding-top: 0 !important;
    max-width: 360px !important;
  }

  .hero-ai-monetize-final .hero-ctas {
    position: relative !important;
    z-index: 6 !important;
  }

  .hero-ai-monetize-final .hero-illustration {
    left: 50% !important;
    right: auto !important;
    bottom: 96px !important;
    transform: translateX(-50%) !important;
    width: min(88vw, 360px) !important;
    height: clamp(250px, 36svh, 340px) !important;
    min-height: 0 !important;
    max-height: 42svh !important;
  }
}

@media (max-width: 767px) and (max-height: 760px) {
  .hero-ai-monetize-final {
    padding-top: 82px !important;
  }

  .hero-ai-monetize-final .hero-illustration {
    bottom: 92px !important;
    height: 35svh !important;
    max-height: 35svh !important;
  }
}

@media (min-width: 768px) {
  .hero-ai-monetize-final {
    min-height: 100svh !important;
    height: 100svh !important;
    padding: 112px 7vw 106px !important;
  }

  .hero-ai-monetize-final .hero-copy {
    padding-top: 0 !important;
    max-width: min(48vw, 620px) !important;
  }

  .hero-ai-monetize-final .hero-illustration {
    left: auto !important;
    right: clamp(36px, 5vw, 92px) !important;
    bottom: 106px !important;
    transform: none !important;
    width: min(44vw, 620px) !important;
    height: min(52svh, 500px) !important;
    max-height: 55svh !important;
  }
}

@media (max-width: 767px) and (max-height: 700px) {
  .hero-ai-monetize-final .hero-illustration {
    bottom: 90px !important;
    height: 31svh !important;
    max-height: 31svh !important;
  }
}

/* HERO FIRST SCREEN IMAGE FRAME FIT OVERRIDE: fill the visual box without pushing scroll cue */
.hero-ai-monetize-final .hero-illustration {
  overflow: hidden !important;
}

@media (max-width: 767px) {
  .hero-ai-monetize-final .hero-illustration {
    bottom: clamp(82px, 9svh, 96px) !important;
    width: min(94vw, 430px) !important;
    height: clamp(290px, 40svh, 405px) !important;
    max-height: 42svh !important;
  }

  .hero-ai-monetize-final .hero-illustration img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

@media (max-width: 767px) and (max-height: 760px) {
  .hero-ai-monetize-final .hero-illustration {
    bottom: 84px !important;
    height: 38svh !important;
    max-height: 38svh !important;
  }
}

@media (max-width: 767px) and (max-height: 700px) {
  .hero-ai-monetize-final .hero-illustration {
    bottom: 82px !important;
    height: 35svh !important;
    max-height: 35svh !important;
  }
}

@media (min-width: 768px) {
  .hero-ai-monetize-final .hero-illustration {
    overflow: visible !important;
  }

  .hero-ai-monetize-final .hero-illustration img {
    object-fit: contain !important;
    object-position: center bottom !important;
  }
}
