/* --------- BASE --------- */
body {
    margin: 0;
    font-family: system-ui, -apple-system, "Inter", sans-serif;
    background: #05060a;
    color: #fff;
  }
  
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}
  
  /* --------- BACKGROUND --------- */
.video-bg,
.video-bg video {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: -2;
}

.video-bg video {
    filter: brightness(0.23) blur(3px);
}

.video-bg {
    background: #05060a;
}

.video-bg::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: none;
    mix-blend-mode: normal;
    z-index: -1;
}
  
  .glow {
    position: fixed;
    width: 60vw;
    height: 60vw;
    filter: blur(130px);
    z-index: -1;
  }
  
  .glow-1 {
    top: -20%;
    left: -20%;
    background: radial-gradient(circle, rgba(124,92,255,0.6), transparent 70%);
  }
  
  .glow-2 {
    bottom: -20%;
    right: -20%;
    background: radial-gradient(circle, rgba(68,131,255,0.6), transparent 70%);
  }
  
  /* --------- CARDS --------- */
.card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 22px;
    padding: 28px 26px;
    margin-bottom: 32px;
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.8);
  }
  
  .hero {
    padding: 10px 6px 6px;
    margin-bottom: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* --------- TYPOGRAPHY --------- */
h1 {
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 14px;
  }
  
  h2 {
    font-size: 24px;
    margin-bottom: 14px;
  }
  
  h3 {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 8px;
  }
  
  h4 {
    margin: 0 0 4px;
    font-size: 15px;
  }
  
  .kicker {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.7;
    letter-spacing: 0.16em;
  }
  
.subtitle {
    font-size: 15px;
    opacity: 0.82;
    max-width: 650px;
    line-height: 1.55;
  }
  
  /* Hero tweaks */
  .hero h1 {
    /* display: flex;
    text-align: center; */
    font-size: clamp(44px, 5vw, 66px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 12px 0 18px;
  }
  
  .hero .subtitle {
    font-size: 17px;
    max-width: 780px;
    opacity: 0.9;
  }
  
  /* --------- BUTTONS --------- */
  .btn {
    display: inline-block;
    padding: 12px 22px;
    background: linear-gradient(135deg, #7a5bff, #4f89ff);
    border-radius: 14px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 14px 40px rgba(0,0,0,0.7);
    transition: 0.2s;
  }
  
  .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.85);
  }
  
  .btn.dark {
    background: #0c0d14;
    border: 1px solid rgba(255,255,255,0.25);
  }
  
  /* --------- HERO FOOTER --------- */
.hero-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    align-items: center;
  }
  
  .meta {
    font-size: 13px;
    opacity: 0.7;
  }
  
  /* --------- ALT CONTACTS --------- */
  .alt-contacts {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    opacity: 0.9;
    flex-wrap: wrap;
  }
  
  .alt-contacts.centered {
    justify-content: center;
  }
  
  .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  
  .contact-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.6);
  }
  
  .contact-icon {
    width: 16px;
    height: 16px;
  }
  
  /* --------- LAYOUT --------- */
.columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
  }

  .columns > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .case {
    padding: 14px 14px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  }
  
  .case p {
    font-size: 14px;
    opacity: 0.85;
    line-height: 1.5;
  }
  
  /* --------- MOCKS --------- */
  .mocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
  }
  
.mock {
    background: linear-gradient(135deg, #12141f, #1c2031);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 40px 10px;
    text-align: center;
    opacity: 0.8;
    font-size: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.85);
  }
  
  .mock-image {
    padding: 0;
    overflow: hidden;
    background: rgba(0,0,0,0.2);
  }
  
  .mock-image img {
    display: block;
    width: 100%;
    height: auto;
  }
  

  /* ---- PILOT SHOWCASE ---- */
  .pilot-showcase {
    margin: 40px 0 32px;
    padding: 32px 26px 36px;
    border-radius: 26px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(140deg, rgba(22,12,50,0.9), rgba(12,16,28,0.94));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 40px 90px rgba(0,0,0,0.9);
  }
  
  .pilot-showcase::before {
    content: "";
    position: absolute;
    inset: -20% auto auto 60%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at center, rgba(124,92,255,0.25), transparent 60%);
    filter: blur(10px);
    opacity: 0.8;
    pointer-events: none;
  }
  
  .pilot-showcase .kicker {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.22);
  }
  
  .pilot-showcase h2 {
    margin: 12px 0 26px;
  }
  
  .pilot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
  }
  
  .pilot-panel {
    position: relative;
    padding: 22px 20px 28px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 24px 60px rgba(0,0,0,0.8);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  
  .pilot-panel:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 80px rgba(0,0,0,0.95);
    border-color: rgba(124,92,255,0.35);
  }
  
  .pilot-streak {
    position: absolute;
    top: 10%;
    left: -2px;
    width: 3px;
    height: 80%;
    background: linear-gradient(180deg, rgba(124,92,255,0), rgba(124,92,255,0.5), rgba(79,137,255,0));
    filter: blur(0.5px);
  }
  
  .pilot-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,0.05);
    mix-blend-mode: overlay;
    pointer-events: none;
  }
  
  .pilot-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px auto 14px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.16), rgba(124,92,255,0.12));
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 10px 30px rgba(0,0,0,0.55);
  }
  
  .pilot-panel h3 {
    margin: 0 0 12px;
    text-align: center;
  }
  
  .pilot-panel ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 8px;
  }
  
  .pilot-panel ul li {
    font-size: 14px;
    opacity: 0.9;
    padding: 9px 11px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
  }
  
  .pilot-btn.inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    background: linear-gradient(135deg, #7a5bff, #4f89ff);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.7);
    transition: 0.18s;
  }

  .pilot-panel .pilot-btn.inline {
    margin: 0 auto;
    width: fit-content;
  }
  
  /* .pilot-btn.inline:hover {
    transform: translateY(-2px);
  } */
  
  .best-pick {
    border: 1px solid rgba(124,92,255,0.5);
    box-shadow: 0 30px 80px rgba(124,92,255,0.3), 0 20px 40px rgba(0,0,0,0.65);
    background: linear-gradient(155deg, rgba(124,92,255,0.16), rgba(12,16,26,0.95));
  }
  
  .pilot-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, #7a5bff, #4f89ff);
    box-shadow: 0 12px 28px rgba(0,0,0,0.55);
  }
  
  /* --------- STEPS --------- */
  .steps {
    list-style: none;
    padding-left: 0;
  }
  
.steps li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
  }
  
  .steps li span {
    background: linear-gradient(135deg, #7a5bff, #4f89ff);
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
  }
  
  /* --------- BENEFITS --------- */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
  }
  
  .benefit-card {
    position: relative;
  
    padding: 16px 16px 18px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(12,14,22,0.92));
    box-shadow: 0 12px 28px rgba(0,0,0,0.6);
    overflow: hidden;
  }
  
  .benefit-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255,255,255,0.05);
    pointer-events: none;
    mix-blend-mode: overlay;
  }
  
  .benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    margin-bottom: 12px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .benefit-icon .benefit-svg {
    
    width: 32px;
    height: 32px;
  }
  
  .benefit-card h4 {
    margin: 0 0 6px;
    font-size: 16px;
    text-align: left;
  }
  
  .benefit-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    opacity: 0.9;
    text-align: left;
  }

  /* --------- FLOW --------- */
  .flow {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 22px;
    align-items: stretch;
  }
  
  .flow-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 220px;
    padding: 16px 16px 18px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(12,14,22,0.9));
    box-shadow: 0 14px 32px rgba(0,0,0,0.65);
    overflow: visible;
  }
  
  /* .flow-step::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -14px;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, rgba(124,92,255,0.45), rgba(79,137,255,0.85));
    box-shadow: 0 0 14px rgba(79,137,255,0.6);
    transform: translateY(-50%);
  }
  
  .flow-step::before {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    right: -18px;
    width: 14px;
    height: 14px;
    border-top: 2px solid rgba(79,137,255,0.9);
    border-right: 2px solid rgba(79,137,255,0.9);
    transform: translateY(-50%) rotate(45deg);
    filter: drop-shadow(0 0 8px rgba(79,137,255,0.55));
  }
   */
  .flow-step:last-child::after,
  .flow-step:last-child::before {
    display: none;
  }
  
  .flow-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #dfe1ff;
    background: rgba(8,10,18,0.55);
    border: 1px solid rgba(124,92,255,0.65);
    box-shadow: inset 0 0 14px rgba(124,92,255,0.35), 0 10px 24px rgba(0,0,0,0.55);
  }
  
  .flow-text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
  }
  
  .flow-step::after,
  .flow-step::before {
    transition: filter 0.2s ease, box-shadow 0.2s ease;
  }
  
  .flow-step:hover::after,
  .flow-step:hover::before {
    filter: drop-shadow(0 0 12px rgba(79,137,255,0.7));
  }
  
  @media (max-width: 760px) {
    .flow {
      flex-direction: column;
    }
  
    .flow-step::after,
    .flow-step::before {
      display: none;
    }
  }
  
  /* --------- CTA --------- */
  .cta {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #7a5bff, #4f89ff);
    border-radius: 26px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.85);
  }
  
  .cta p {
    opacity: 0.9;
    margin-bottom: 20px;
  }
  
  /* --------- ALT CONTACTS --------- */
  .alt-contacts {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
    flex-wrap: wrap;
    margin-top: 6px;
  }
  
  .alt-contacts.centered {
    justify-content: center;
  }
  
  .contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.16);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  }
  
  .contact-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(0,0,0,0.6);
    border-color: rgba(124,92,255,0.6);
  }
  
  .contact-icon {
    width: 18px;
    height: 18px;
  }
  
  /* --------- MOBILE TWEAKS --------- */
@media (max-width: 760px) {
    .container {
      padding: 64px 16px;
    }

    .glow {
      width: 200vw;
      height: 200vw;
      filter: blur(130px);
      opacity: 0.7;
      mix-blend-mode: normal;
    }

    .glow-1 {
      top: -42%;
      left: -55%;
      background: radial-gradient(circle, rgba(124,92,255,0.55), transparent 74%);
    }

    .glow-2 {
      bottom: -42%;
      right: -55%;
      background: radial-gradient(circle, rgba(68,131,255,0.55), transparent 74%);
    }

    .video-bg::after {
      background: radial-gradient(40% 40% at 20% 15%, rgba(124,92,255,0.28), transparent 62%),
                  radial-gradient(40% 40% at 80% 85%, rgba(68,131,255,0.28), transparent 62%);
      opacity: 0.6;
      filter: blur(24px);
    }

    h1 {
      font-size: clamp(30px, 7vw, 42px);
    }

    h2 {
      font-size: 20px;
    }

    .card {
      padding: 22px 18px;
      background: linear-gradient(150deg, rgba(124,92,255,0.16), rgba(12,14,22,0.9));
      box-shadow: 0 18px 40px rgba(0,0,0,0.65);
    }

    .hero {
      padding: 12px 4px 0;
      margin-bottom: 32px;
    }

    .hero-footer {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }

    .columns {
      gap: 18px;
    }

    .columns h3 {
      background: none;
      border: none;
      box-shadow: none;
      padding: 0;
    }

    .case,
    .benefit-card,
    .pilot-panel {
      background: rgba(255,255,255,0.06);
      border-color: rgba(255,255,255,0.14);
      box-shadow: 0 14px 32px rgba(0,0,0,0.6);
    }

    .pilot-grid {
      gap: 16px;
      grid-template-columns: 1fr;
    }

    .flow {
      flex-direction: column;
      gap: 12px;
    }

    .flow-step::after,
    .flow-step::before {
      display: none;
    }

    .pilot-panel .pilot-btn.inline {
      display: flex;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
    }
  }
  
  /* --------- FOOTER --------- */
footer {
    text-align: center;
    margin-top: 36px;
    opacity: 0.45;
    font-size: 13px;
  }

  /* --------- CONTACT CHOOSER --------- */
  .contact-chooser {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20;
  }

  .contact-chooser.is-open {
    display: flex;
  }

  .chooser-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
  }

  .chooser-card {
    position: relative;
    width: min(420px, 92vw);
    padding: 18px 18px 20px;
    border-radius: 18px;
    background: linear-gradient(140deg, rgba(17,18,28,0.95), rgba(10,12,20,0.94));
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 26px 70px rgba(0,0,0,0.75);
    z-index: 1;
  }

  .chooser-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
  }

  .chooser-close {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
  }

  .chooser-close:hover {
    border-color: rgba(124,92,255,0.6);
    transform: translateY(-1px);
  }

  .chooser-options {
    display: grid;
    gap: 10px;
  }

  .chooser-btn {
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    gap: 10px;
    padding: 12px 14px 12px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
    box-shadow: 0 14px 32px rgba(0,0,0,0.65);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  }

  .chooser-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(124,92,255,0.65);
    background: rgba(124,92,255,0.08);
    box-shadow: 0 18px 38px rgba(0,0,0,0.75);
  }

  .chooser-btn.email {
    background: linear-gradient(135deg, rgba(124,92,255,0.18), rgba(79,137,255,0.22));
  }

  .chooser-btn.tg {
    background: linear-gradient(135deg, rgba(0,136,204,0.24), rgba(0,98,168,0.28));
    border-color: rgba(0,136,204,0.3);
  }

  .chooser-btn.wa {
    background: linear-gradient(135deg, rgba(37,211,102,0.22), rgba(22,131,78,0.24));
    border-color: rgba(37,211,102,0.28);
  }

  .chooser-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
    color: #fff;
  }

  .chooser-icon svg {
    width: 22px;
    height: 22px;
    color: inherit;
    stroke: currentColor;
    fill: currentColor;
  }
  
  /* --------- FLOAT CONTACTS --------- */
  .float-contacts {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    height: 60px;
    padding: 8px 12px;
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    border-radius: 16px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.6);
    z-index: 10;
  }
  
  .float-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(12,14,22,0.75);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 22px rgba(0,0,0,0.55);
    color: #fff;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  }
  
  .float-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(124,92,255,0.6);
    box-shadow: 0 14px 30px rgba(0,0,0,0.75);
  }
  
  .float-btn svg {
    width: 22px;
    height: 22px;
  }
  
  @media (min-width: 960px) {
    .float-contacts {
      width: auto;
      left: auto;
      right: 22px;
      bottom: 22px;
      top: auto;
      height: auto;
      padding: 10px 10px;
      flex-direction: column;
      gap: 10px;
      border-radius: 14px;
      backdrop-filter: blur(12px);
    }
  
    .float-btn {
      width: 46px;
      height: 46px;
    }
  
    .float-btn svg {
      width: 22px;
      height: 22px;
    }
  }
  
