:root {
    --blue: #0f6df2;
    --blue2: #22a7e8;
    --orange: #ff9317;
    --green: #63bd4a;
    --dark: #071d42;
    --muted: #52627d;
    --bg: #f4fbff;
    --card: #fff;
    --header-h: 118px;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: linear-gradient(180deg, #fff 0%, #eef9ff 72%, #f7fcff 100%);
    color: var(--dark);
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .page {
    min-height: 100vh;
    position: relative;
    overflow-x: clip;
  }
  
  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
    opacity: 0.55;
    z-index: 0;
  }
  
  .orb.one {
    width: 520px;
    height: 520px;
    background: #e9f7ff;
    top: -130px;
    right: 5%;
  }
  
  .orb.two {
    width: 420px;
    height: 420px;
    background: #e9f7ff;
    top: 250px;
    left: 47%;
  }
  
  .orb.three {
    width: 380px;
    height: 380px;
    background: #f3fbff;
    bottom: 20px;
    left: -80px;
  }
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 109, 242, 0.06);
  }
  
  .nav {
    max-width: 1400px;
    margin: auto;
    padding: 22px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 0;
  }
  
  .brandLogo {
    height: 74px;
    width: auto;
    display: block;
  }
  
  .menu {
    display: flex;
    gap: 42px;
    font-weight: 500;
    color: #111827;
  }
  
  .menu a {
    cursor: pointer;
    transition: color 0.2s;
  }
  
  .menu a:hover {
    color: #1268f3;
  }
  
  .navActions {
    display: flex;
    gap: 18px;
    align-items: center;
  }
  
  .menuToggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid #e5edf8;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 8px 20px rgba(13, 109, 242, 0.1);
    transition: 0.25s;
  }
  
  .menuToggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #071d42;
    border-radius: 2px;
    transition: 0.25s;
  }
  
  .menuToggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .menuToggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menuToggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  .menuOverlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7, 29, 66, 0.45);
    backdrop-filter: blur(4px);
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
  }
  
  .menuOverlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  .mobileMenu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: min(360px, 88vw);
    height: 100dvh;
    background: #fff;
    z-index: 70;
    padding: 24px 22px 32px;
    flex-direction: column;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s ease, visibility 0.32s;
    box-shadow: -20px 0 60px rgba(7, 29, 66, 0.15);
  }
  
  .mobileMenu.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  
  .mobileMenuHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eef4fb;
  }
  
  .mobileMenuLogo {
    height: 48px;
    width: auto;
  }
  
  .mobileMenuClose {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: #f4f8ff;
    color: #071d42;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
  }
  
  .mobileMenuNav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
  }
  
  .mobileMenuNav a {
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    color: #071d42;
    cursor: pointer;
    transition: 0.2s;
  }
  
  .mobileMenuNav a:hover {
    background: #edf7ff;
    color: #1268f3;
  }
  
  .mobileMenuActions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid #eef4fb;
  }
  
  .mobileMenuActions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .btn {
    border: 0;
    border-radius: 28px;
    padding: 17px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(13, 109, 242, 0.13);
    transition: 0.25s;
  }
  
  .btn.primary {
    background: #1268f3;
    color: #fff;
  }
  
  .btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(13, 109, 242, 0.27);
  }
  
  .btn.ghost {
    background: #fff;
    color: #0a1b42;
    border: 1px solid #e5edf8;
  }
  
  .btn.play {
    background: #fff;
    color: #071d42;
  }
  
  main {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
    padding: calc(var(--header-h) + 32px) 52px 80px;
  }
  
  .hero {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 55px;
    align-items: center;
    min-height: 670px;
  }
  
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #edf7ff;
    border: 1px solid #bbdcff;
    color: #076cf2;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 24px;
  }
  
  .badge b {
    font-size: 17px;
  }
  
  .hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.08;
    margin: 0 0 24px;
    letter-spacing: -3px;
    font-weight: 900;
  }
  
  .orange {
    color: var(--orange);
  }
  
  .green {
    color: var(--green);
  }
  
  .hero p {
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.55;
    color: #53627e;
    max-width: 640px;
    margin: 0 0 28px;
  }
  
  .ctaRow {
    display: flex;
    gap: 20px;
    margin: 28px 0;
    flex-wrap: wrap;
  }
  
  .checks {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
    color: #4b5a75;
  }
  
  .check {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
  }
  
  .check i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #55c446;
    color: #fff;
    display: grid;
    place-items: center;
    font-style: normal;
    font-size: 13px;
    font-weight: 900;
  }
  
  .visual {
    position: relative;
    min-height: 680px;
    display: grid;
    place-items: center;
    overflow: hidden;
    width: 100%;
  }
  
  .mascot {
    width: min(559px, 100%);
    height: min(559px, 100%);
    max-width: 100%;
    position: relative;
    display: grid;
    place-items: center;
    margin-left: -90px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 60%, rgba(34, 167, 232, 0.12), transparent 62%);
  }
  
  .mascotImg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  .infoCard {
    position: absolute;
    width: 238px;
    background: #fff;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 20px 55px rgba(30, 79, 126, 0.1);
    display: flex;
    gap: 15px;
    align-items: flex-start;
  }
  
  .infoCard svg {
    min-width: 44px;
  }
  
  .infoCard h4 {
    margin: 0 0 5px;
    font-size: 15px;
  }
  
  .infoCard p {
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    color: #53627e;
  }
  
  .c1 {
    right: -5px;
    top: 95px;
  }
  
  .c2 {
    right: -12px;
    top: 265px;
  }
  
  .c3 {
    right: 22px;
    top: 435px;
  }
  
  .metrics {
    margin-top: -30px;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 24px;
    box-shadow: 0 22px 60px rgba(20, 87, 138, 0.09);
    padding: 22px 32px 28px;
  }
  
  .metricsTitle {
    text-align: center;
    font-weight: 600;
    color: #455570;
    margin-bottom: 22px;
  }
  
  .metricGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  
  .metric {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eef2f8;
    padding: 7px;
  }
  
  .metric:last-child {
    border-right: 0;
  }
  
  .metric strong {
    font-size: 24px;
  }
  
  .metric span {
    display: block;
    color: #53627e;
    line-height: 1.45;
  }
  
  .section {
    text-align: center;
    padding: 84px 0 20px;
  }
  
  .section[id] {
    scroll-margin-top: 110px;
  }
  
  .eyebrow {
    color: #086df2;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
  }
  
  .section h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    margin: 13px 0 16px;
    letter-spacing: -1px;
  }
  
  .sectionLead {
    max-width: 720px;
    margin: 0 auto 42px;
    color: #53627e;
    font-size: 18px;
    line-height: 1.6;
  }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
  }
  
  .feature {
    background: #fff;
    border-radius: 22px;
    text-align: left;
    padding: 28px;
    box-shadow: 0 20px 55px rgba(30, 79, 126, 0.08);
    min-height: 170px;
  }
  
  .icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    background: #1268f3;
    margin-bottom: 18px;
    font-size: 20px;
  }
  
  .feature:nth-child(2) .icon {
    background: #8257e6;
  }
  
  .feature:nth-child(3) .icon {
    background: #55c446;
  }
  
  .feature:nth-child(4) .icon {
    background: #ff9317;
  }
  
  .feature h3 {
    margin: 0 0 10px;
    font-size: 17px;
  }
  
  .feature p {
    color: #53627e;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
  }
  
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    text-align: left;
  }
  
  .step {
    background: #fff;
    border-radius: 24px;
    padding: 30px 26px;
    box-shadow: 0 20px 55px rgba(30, 79, 126, 0.08);
    position: relative;
  }
  
  .stepNum {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1268f3, #22a7e8);
    color: #fff;
    font-weight: 900;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    font-size: 18px;
  }
  
  .step h3 {
    margin: 0 0 10px;
    font-size: 18px;
  }
  
  .step p {
    margin: 0;
    color: #53627e;
    line-height: 1.55;
    font-size: 14px;
  }
  
  .funnel {
    margin-top: 36px;
    max-width: 100%;
  }
  
  .funnelPicture {
    display: block;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
  }
  
  .funnelImg {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  .benefitsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
  }
  
  .benefit {
    background: linear-gradient(180deg, #fff 0%, #f8fcff 100%);
    border: 1px solid #e8f2ff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 16px 45px rgba(20, 87, 138, 0.06);
  }
  
  .benefitIcon {
    font-size: 32px;
    margin-bottom: 14px;
  }
  
  .benefit h3 {
    margin: 0 0 10px;
    font-size: 19px;
  }
  
  .benefit p {
    margin: 0;
    color: #53627e;
    line-height: 1.55;
    font-size: 15px;
  }
  
  .pricingGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    text-align: left;
    align-items: stretch;
  }
  
  .plan {
    background: #fff;
    border-radius: 28px;
    padding: 36px 30px;
    box-shadow: 0 20px 55px rgba(30, 79, 126, 0.08);
    border: 2px solid transparent;
    position: relative;
  }
  
  .plan.featured {
    border-color: #1268f3;
    box-shadow: 0 28px 70px rgba(18, 104, 243, 0.18);
    transform: scale(1.03);
  }
  
  .planBadge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #1268f3;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.4px;
  }
  
  .plan h3 {
    margin: 0 0 8px;
    font-size: 22px;
  }
  
  .planPrice {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -2px;
    margin: 12px 0 4px;
  }
  
  .planPrice small {
    font-size: 16px;
    font-weight: 600;
    color: #53627e;
    letter-spacing: 0;
  }
  
  .planDesc {
    color: #53627e;
    font-size: 14px;
    margin-bottom: 22px;
    line-height: 1.5;
  }
  
  .planList {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
  }
  
  .planList li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: #455570;
    margin-bottom: 12px;
    line-height: 1.45;
  }
  
  .planList li::before {
    content: '✓';
    color: #55c446;
    font-weight: 900;
    flex-shrink: 0;
  }
  
  .plan .btn {
    width: 100%;
    justify-content: center;
  }
  
  .faqList {
    max-width: 820px;
    margin: 0 auto;
    text-align: left;
  }
  
  .faqItem {
    background: #fff;
    border-radius: 18px;
    margin-bottom: 14px;
    box-shadow: 0 12px 40px rgba(30, 79, 126, 0.06);
    overflow: hidden;
    border: 1px solid #eef4fb;
  }
  
  .faqQ {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 22px 26px;
    font-size: 16px;
    font-weight: 700;
    color: #071d42;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    text-align: left;
    font-family: inherit;
  }
  
  .faqQ span {
    font-size: 22px;
    color: #1268f3;
    line-height: 1;
  }
  
  .faqA {
    padding: 0 26px 22px;
    color: #53627e;
    line-height: 1.6;
    font-size: 15px;
  }
  
  .ctaBanner {
    margin: 80px 0 40px;
    background: linear-gradient(135deg, #0f6df2 0%, #22a7e8 55%, #63bd4a 100%);
    border-radius: 32px;
    padding: 56px 48px;
    text-align: center;
    color: #fff;
    box-shadow: 0 30px 80px rgba(15, 109, 242, 0.25);
  }
  
  .ctaBanner h2 {
    font-size: 36px;
    margin: 0 0 14px;
    letter-spacing: -1px;
  }
  
  .ctaBanner p {
    font-size: 18px;
    opacity: 0.92;
    margin: 0 auto 28px;
    max-width: 580px;
    line-height: 1.55;
  }
  
  .ctaBanner .btn.primary {
    background: #fff;
    color: #1268f3;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  }
  
  .ctaBanner .checks {
    justify-content: center;
    color: rgba(255, 255, 255, 0.95);
  }
  
  footer {
    text-align: center;
    padding: 40px 0 60px;
    color: #7a8aa3;
    font-size: 14px;
    border-top: 1px solid #e8f2ff;
    margin-top: 20px;
  }
  
  .story {
    height: 120vh;
    display: grid;
    place-items: center;
  }
  
  .storyPanel {
    width: min(860px, 92vw);
    background: #fff;
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 24px 70px rgba(17, 94, 160, 0.13);
    text-align: center;
  }
  
  .storyPanel h2 {
    font-size: 46px;
    margin: 0 0 14px;
  }
  
  .storyPanel p {
    font-size: 20px;
    color: #53627e;
    line-height: 1.6;
  }
  
  @media (max-width: 1100px) {
    .desktopMenu,
    .navBtnDesktop {
      display: none;
    }
  
    .menuToggle {
      display: flex;
    }
  
    .menuOverlay {
      display: block;
    }
  
    .mobileMenu {
      display: flex;
    }
  }
  
  @media (max-width: 1200px) {
    .nav {
      padding: 18px 28px;
    }
  
    .menu {
      gap: 24px;
      font-size: 15px;
    }
  
    main {
      padding-left: 28px;
      padding-right: 28px;
    }
  
    .hero {
      gap: 36px;
    }
  
    .mascot {
      margin-left: 0;
      width: min(420px, 100%);
      height: min(420px, 100%);
    }
  
    .visual {
      min-height: auto;
      padding: 12px 0;
    }
  
    .infoCard {
      display: none;
    }
  
    .cards {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .steps {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .benefitsGrid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .metricGrid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .metric {
      border-right: 0;
      border-bottom: 1px solid #eef2f8;
      padding: 16px 10px;
    }
  
    .metric:nth-child(2n) {
      border-right: 0;
    }
  
    .metric:last-child {
      border-bottom: 0;
    }
  }
  
  @media (max-width: 980px) {
    :root {
      --header-h: 88px;
    }
  
    .nav {
      padding: 14px 18px;
    }
  
    main {
      padding: calc(var(--header-h) + 20px) 18px 60px;
    }
  
    .hero {
      grid-template-columns: 1fr;
      min-height: auto;
      gap: 0;
    }
  
    .hero h1 {
      letter-spacing: -2px;
    }
  
    .badge {
      font-size: 14px;
      padding: 8px 16px;
      max-width: 100%;
      flex-wrap: wrap;
    }
  
    .visual {
      min-height: auto;
      padding: 24px 0 8px;
      margin-top: 12px;
    }
  
    .mascot {
      width: min(300px, 78vw);
      height: min(300px, 78vw);
      margin-left: 0;
      margin-inline: auto;
    }
  
    .infoCard {
      display: none;
    }
  
    .metrics {
      margin-top: 32px;
      padding: 20px 18px 24px;
    }
  
    .metricsTitle {
      font-size: 15px;
      line-height: 1.5;
    }
  
    .metricGrid,
    .cards,
    .steps,
    .benefitsGrid,
    .pricingGrid {
      grid-template-columns: 1fr;
    }
  
    .metric {
      justify-content: flex-start;
      padding: 14px 4px;
    }
  
    .section {
      padding: 56px 0 16px;
    }
  
    .section[id] {
      scroll-margin-top: 96px;
    }
  
    .sectionLead {
      font-size: 16px;
      margin-bottom: 32px;
    }
  
    .ctaRow {
      flex-direction: column;
    }
  
    .btn {
      justify-content: center;
      width: 100%;
      padding: 15px 24px;
      font-size: 15px;
    }
  
    .checks {
      gap: 12px 20px;
    }
  
    .brandLogo {
      height: 52px;
    }
  
    .plan.featured {
      transform: none;
    }
  
    .ctaBanner {
      padding: 36px 22px;
      margin: 56px 0 32px;
      border-radius: 24px;
    }
  
    .ctaBanner h2 {
      font-size: clamp(24px, 6vw, 28px);
    }
  
    .ctaBanner p {
      font-size: 16px;
    }
  
    .orb.one {
      width: 280px;
      height: 280px;
      right: -60px;
      top: -80px;
    }
  
    .orb.two {
      width: 220px;
      height: 220px;
      left: auto;
      right: -40px;
      top: 180px;
    }
  
    .orb.three {
      width: 200px;
      height: 200px;
      left: -60px;
    }
  
    .faqQ {
      font-size: 15px;
      padding: 18px 20px;
    }
  
    .faqA {
      padding: 0 20px 18px;
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    :root {
      --header-h: 76px;
    }
  
    .brandLogo {
      height: 44px;
    }
  
    .menuToggle {
      width: 42px;
      height: 42px;
    }
  
    .hero h1 {
      letter-spacing: -1px;
    }
  
    .mascot {
      width: min(260px, 82vw);
      height: min(260px, 82vw);
    }
  
    .planPrice {
      font-size: 34px;
    }
  
    .ctaBanner .checks {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  }
  