:root{
      --bg0:#070A12; --bg1:#0A0F1D;
      --text:#EAF0FF; --muted: rgba(234,240,255,.70);
      --accent:#FF7A18; --accent2:#FFC24A;
      --shadow: 0 30px 80px rgba(0,0,0,.45);
      --shadow2: 0 18px 50px rgba(0,0,0,.32);
      --r: 22px; --max: 1160px;
    }
    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
      color: var(--text);
      background:
        radial-gradient(900px 460px at 12% -10%, rgba(255,122,24,.22), transparent 62%),
        radial-gradient(760px 420px at 92% 10%, rgba(255,194,74,.14), transparent 60%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 45%, var(--bg0));
      overflow-x:hidden;
    }
    a{ color:inherit; text-decoration:none; }
    .container{ max-width:var(--max); margin:0 auto; padding:0 22px; }

    .grain{
      pointer-events:none; position:fixed; inset:0; z-index:0;
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
      opacity:.10; mix-blend-mode: overlay;
    }

    .btn{
      display:inline-flex; align-items:center; justify-content:center; gap:10px;
      padding:12px 16px; border-radius: 16px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      color: var(--text);
      font-weight: 800; letter-spacing:.2px;
      cursor:pointer;
      transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
      user-select:none; white-space:nowrap;
      backdrop-filter: blur(10px);
    }
    .btn:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
    .btn.primary{
      border-color: transparent;
      color:#141414;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      box-shadow: 0 18px 60px rgba(255,122,24,.18);
    }
    .btn.primary:hover{ transform: translateY(-1px) scale(1.01); box-shadow: 0 22px 70px rgba(255,122,24,.22); }
    .btn.ghost{ background: transparent; }
    .btn.small{ padding:10px 12px; border-radius:14px; font-weight:800; }

    header{
      position: sticky; top:0; z-index:50;
      background: rgba(7,10,18,.62);
      border-bottom: 1px solid rgba(255,255,255,.10);
      backdrop-filter: blur(14px);
    }
    .nav{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:14px; }
    .brand{ display:flex; align-items:center; gap:12px; font-weight: 900; letter-spacing: .8px; }
    .logo{
      width:40px; height:40px; border-radius: 16px;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      color:#101010; display:grid; place-items:center;
      box-shadow: 0 18px 40px rgba(255,122,24,.18);
      font-weight: 1000;
    }
    .brand small{ display:block; color: var(--muted); font-weight: 700; letter-spacing:0; margin-top:2px; font-size: 12.5px; }
    .navlinks{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
    .navlinks a{
      color: var(--muted); font-weight: 800; font-size: 13.5px;
      padding:8px 10px; border-radius: 14px; border: 1px solid transparent; transition: .18s ease;
    }
    .navlinks a:hover{ color: var(--text); border-color: rgba(255,255,255,.10); background: rgba(255,255,255,.03); }
    .navcta{ display:flex; gap:10px; align-items:center; }

    main{ position:relative; z-index:1; }
    section{ padding: 26px 0; }

    .hero{ padding:46px 0 22px; }
    .heroGrid{ display:grid; grid-template-columns: 1.15fr .85fr; gap:16px; align-items:stretch; }

    .card{
      border:1px solid rgba(255,255,255,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      border-radius: var(--r);
      box-shadow: var(--shadow2);
      overflow:hidden;
      backdrop-filter: blur(14px);
    }

    .heroLeft{ padding:26px; }
    .pill{
      display:inline-flex; align-items:center; gap:10px;
      padding:8px 12px; border-radius: 999px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      color: var(--muted);
      font-size: 12.5px; font-weight: 800; letter-spacing:.2px;
    }
    .dot{ width:8px; height:8px; border-radius:50%; background: var(--accent); box-shadow: 0 0 0 6px rgba(255,122,24,.12); }
    h1{ margin:14px 0 10px; font-size: 46px; line-height: 1.02; letter-spacing: -1px; }
    .sub{ margin:0 0 16px; color: var(--muted); font-size: 15.5px; line-height: 1.6; max-width: 60ch; }
    .heroActions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; }

    .heroMeta{ margin-top:18px; display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:10px; }
    .meta{
      padding:14px 14px; border-radius: 18px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
    }
    .meta b{ display:block; font-size:14px; letter-spacing:.2px; }
    .meta span{ display:block; margin-top:4px; color: var(--muted); font-size: 12.8px; line-height:1.35; }

    .heroRight{ display:grid; grid-template-rows: 1fr auto; }
    .heroImg{
      min-height: 350px;
      background:
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.45)),
        url("img/hero.jpg");
      background-size: cover; background-position: center; position:relative;
    }
    .heroOverlay{
      position:absolute; inset:0;
      background:
        radial-gradient(800px 420px at 30% 10%, rgba(255,122,24,.22), transparent 60%),
        radial-gradient(700px 360px at 90% 10%, rgba(255,194,74,.12), transparent 60%);
      mix-blend-mode: screen; opacity: .25;
    }
    .heroBottom{
      padding:14px 16px;
      border-top: 1px solid rgba(255,255,255,.10);
      background: rgba(7,10,18,.58);
      display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap;
    }
    .heroBottom b{ font-size:13.5px; }
    .heroBottom span{ display:block; color: var(--muted); font-size: 12.5px; margin-top:2px; }
    .tag{
      padding:7px 11px; border-radius: 999px;
      border:1px solid rgba(255,194,74,.26);
      background: rgba(255,122,24,.12);
      color: var(--accent2);
      font-weight: 900; font-size: 12px; letter-spacing: .2px;
    }

    .sectionHead{ display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin-bottom: 14px; }
    .sectionHead h2{ margin:0; font-size: 28px; letter-spacing: -0.4px; }
    .sectionHead p{ margin:0; color: var(--muted); max-width: 64ch; font-size: 14px; line-height: 1.55; }

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

    .svc{
      border: 1px solid rgba(255,255,255,.10);
      border-radius: var(--r);
      background: rgba(255,255,255,.03);
      overflow:hidden;
      box-shadow: var(--shadow2);
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      backdrop-filter: blur(14px);
    }
    .svc:hover{ transform: translateY(-2px); border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.04); }
    .svcImg{ height:150px; background-size:cover; background-position:center; filter:saturate(1.06) contrast(1.03); }
    .pad{ padding:16px; }
    .svc h3{ margin:0 0 6px; font-size:16px; letter-spacing:-.2px; }
    .svc p{ margin:0; color: var(--muted); font-size: 13.5px; line-height: 1.55; }

    .pricing{ display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px; }
    .price{
      border-radius: var(--r);
      border: 1px solid rgba(255,255,255,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      box-shadow: var(--shadow2);
      overflow:hidden;
      backdrop-filter: blur(14px);
      position:relative;
      transition: transform .18s ease, border-color .18s ease;
    }
    .price:hover{ transform: translateY(-2px); border-color: rgba(255,255,255,.16); }
    .priceTop{
      padding:16px;
      border-bottom: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.02);
      display:flex; align-items:flex-start; justify-content:space-between; gap:10px;
    }
    .priceTop b{ font-size:15px; }
    .priceTop span{ display:block; margin-top:2px; color: var(--muted); font-size: 13px; line-height:1.35; }
    .priceBody{ padding:16px; }
    .amount{ font-size: 30px; font-weight: 1000; letter-spacing:-.8px; }
    .per{ color: var(--muted); font-size: 13px; font-weight: 800; }
    ul{ margin:12px 0 0; padding:0; list-style:none; display:grid; gap:8px; }
    li{ display:flex; gap:10px; align-items:flex-start; color: var(--muted); font-size: 13.5px; line-height:1.4; }
    .tick{
      width:18px; height:18px; border-radius:7px;
      background: rgba(255,122,24,.14);
      border:1px solid rgba(255,122,24,.24);
      flex:0 0 auto;
      position:relative; margin-top:2px;
    }
    .tick:after{
      content:""; position:absolute; left:5px; top:3px;
      width:6px; height:10px;
      border-right:2px solid var(--accent2);
      border-bottom:2px solid var(--accent2);
      transform: rotate(40deg);
    }
    .ribbon{
      position:absolute; top:14px; right:14px;
      padding:6px 10px; border-radius:999px;
      font-size:12px; font-weight:1000;
      color: var(--accent2);
      background: rgba(255,122,24,.16);
      border:1px solid rgba(255,122,24,.26);
    }
    .hot{
      border-color: rgba(255,122,24,.28);
      box-shadow: 0 30px 90px rgba(255,122,24,.14);
    }

    .steps{ display:grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap:10px; }
    .step{
      padding:14px; border-radius: 18px;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      box-shadow: var(--shadow2);
      backdrop-filter: blur(14px);
    }
    .n{
      width:36px; height:36px; border-radius: 14px;
      display:grid; place-items:center;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.03);
      font-weight:1000;
      margin-bottom:10px;
    }
    .step b{ display:block; font-size:14px; }
    .step span{ display:block; margin-top:4px; color: var(--muted); font-size: 13px; line-height:1.35; }

    /* FAQ */
    .faqGrid{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
    details{
      border-radius: var(--r);
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      box-shadow: var(--shadow2);
      backdrop-filter: blur(14px);
      overflow:hidden;
    }
    summary{
      cursor:pointer;
      padding:16px 16px;
      list-style:none;
      display:flex; align-items:center; justify-content:space-between; gap:12px;
      font-weight: 900;
      letter-spacing: -.2px;
    }
    summary::-webkit-details-marker{ display:none; }
    .chev{
      width:30px; height:30px; border-radius: 12px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.03);
      display:grid; place-items:center;
      color: var(--muted);
      transition: transform .18s ease;
      flex:0 0 auto;
    }
    details[open] .chev{ transform: rotate(180deg); }
    .faqBody{
      padding:0 16px 16px;
      color: var(--muted);
      font-size: 13.8px;
      line-height: 1.6;
    }

    /* CTA + form */
    .cta{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap:14px;
      align-items:stretch;
    }
    .ctaLeft{
      border-radius: var(--r);
      border: 1px solid rgba(255,255,255,.08);
      background-color: #070A12;
      background:
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.40) 55%, rgba(7,10,18,.92)),
        url("img/cta.jpg");
      background-size:cover;
      background-position:center;
      box-shadow: var(--shadow);
      min-height: 320px;
      padding:18px;
      display:flex; flex-direction:column; justify-content:flex-end;
      overflow:hidden;
    
      position:relative;
    }
    .ctaLeft h2{ margin:0 0 6px; font-size:28px; }
    .ctaLeft p{ margin:0; color: rgba(234,240,255,.86); line-height:1.55; max-width: 60ch; }

    .formCard{
      border-radius: var(--r);
      border:1px solid rgba(255,255,255,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      box-shadow: var(--shadow2);
      padding:18px;
      backdrop-filter: blur(14px);
    }
    form{ display:grid; gap:10px; margin-top:10px; }
    label{ font-size:12.5px; color: var(--muted); font-weight: 800; }
    .field{ display:grid; gap:6px; }
    input, textarea{
      width:100%;
      padding:12px 12px;
      border-radius: 16px;
      border:1px solid rgba(255,255,255,.14);
      background: rgba(7,10,18,.55);
      color: var(--text);
      outline:none;
      font-size: 14px;
      font-weight: 700;
    }
    input:focus, textarea:focus{
      border-color: rgba(255,194,74,.34);
      box-shadow: 0 0 0 3px rgba(255,122,24,.16);
    }
    textarea{ min-height: 92px; resize: vertical; }
    .row{ display:grid; grid-template-columns: 1fr 1fr; gap:10px; }
    .note{ margin-top:10px; color: var(--muted); font-size: 12.5px; line-height:1.4; }

    footer{
      border-top: 1px solid rgba(255,255,255,.10);
      padding:18px 0 28px;
      color: var(--muted);
      font-size: 13px;
    }
    .foot{ display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap; align-items:flex-start; }
    .foot b{ color: var(--text); }

    .floating{
      position: fixed; right: 16px; bottom: 16px; z-index: 80;
      display:flex; gap:10px;
    }

    @media (max-width: 980px){
      .heroGrid{ grid-template-columns: 1fr; }
      .grid3{ grid-template-columns: 1fr 1fr; }
      .pricing{ grid-template-columns: 1fr; }
      .steps{ grid-template-columns: 1fr 1fr; }
      .faqGrid{ grid-template-columns: 1fr; }
      .cta{ grid-template-columns: 1fr; }
      h1{ font-size: 40px; }
    }
    @media (max-width: 580px){
      .navlinks{ display:none; }
      .grid3{ grid-template-columns: 1fr; }
      .row{ grid-template-columns: 1fr; }
      h1{ font-size: 34px; }
      .heroMeta{ grid-template-columns: 1fr; }
    }

    .fadeUp{ opacity:0; transform: translateY(10px); transition: .55s ease; }
    .fadeUp.show{ opacity:1; transform:none; }

    /* ===== Premium custom select (with search) ===== */
    .selectWrap { position: relative; }
    .nativeSelect {
      position: absolute !important;
      inset: 0;
      opacity: 0;
      pointer-events: none;
    }
    .xSelect {
      position: relative;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(7,10,18,.55);
      color: var(--text);
      padding: 12px 44px 12px 12px;
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
      user-select: none;
      backdrop-filter: blur(10px);
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
      display:flex; align-items:center; gap:10px;
    }
    .xSelect:focus-visible {
      outline: none;
      border-color: rgba(255,194,74,.34);
      box-shadow: 0 0 0 3px rgba(255,122,24,.16);
    }
    .xSelect::after{
      content:"";
      position:absolute;
      right:14px;
      top:50%;
      width:10px;height:10px;
      border-right:2px solid rgba(234,240,255,.75);
      border-bottom:2px solid rgba(234,240,255,.75);
      transform: translateY(-55%) rotate(45deg);
      transition: transform .18s ease;
      opacity:.85;
    }
    .xSelect.open::after{ transform: translateY(-35%) rotate(225deg); }
    .xSelectValue{ white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .xSelectIcon{
      width:26px;height:26px;border-radius:12px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.03);
      display:grid; place-items:center;
      flex:0 0 auto;
      font-size:14px;
    }
    .xDropdown{
      position:absolute;
      left:0; right:0;
      top: calc(100% + 8px);
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(10,14,26,.92);
      backdrop-filter: blur(16px);
      box-shadow: 0 30px 80px rgba(0,0,0,.55);
      padding: 6px;
      z-index: 200;
      display:none;
    }
    .xSelect.open + .xDropdown{ display:block; }

    .xSearch{
      padding:10px 10px;
      border-radius: 14px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(7,10,18,.55);
      color: var(--text);
      font-weight: 700;
      outline:none;
    }
    .xSearch:focus{
      border-color: rgba(255,194,74,.34);
      box-shadow: 0 0 0 3px rgba(255,122,24,.16);
    }

    .xDropdownScroll{
      max-height: 240px;
      overflow:auto;
      padding-right:2px;
      margin-top:6px;
    }
    .xDropdownScroll::-webkit-scrollbar{ width:10px; }
    .xDropdownScroll::-webkit-scrollbar-thumb{
      background: rgba(255,255,255,.12);
      border-radius: 999px;
      border: 2px solid rgba(10,14,26,.92);
    }

    .xOpt{
      padding: 11px 12px;
      border-radius: 14px;
      color: rgba(234,240,255,.92);
      font-weight: 800;
      font-size: 13.5px;
      cursor: pointer;
      transition: background .15s ease, transform .15s ease, color .15s ease;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      border:1px solid transparent;
    }
    .xOptLeft{ display:flex; align-items:center; gap:10px; }
    .xOptIcon{
      width:26px;height:26px;border-radius:12px;
      border:1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.03);
      display:grid; place-items:center;
      flex:0 0 auto;
      font-size:14px;
    }
    .xOpt:hover{ background: rgba(255,255,255,.06); transform: translateY(-1px); }
    .xOpt[aria-selected="true"]{ background: rgba(255,122,24,.14); border-color: rgba(255,122,24,.22); }
    .xOptCheck{
      width:18px;height:18px;border-radius:7px;
      border:1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.04);
      position:relative;
      flex:0 0 auto;
    }
    .xOpt[aria-selected="true"] .xOptCheck{
      border-color: rgba(255,194,74,.35);
      background: rgba(255,122,24,.16);
    }
    .xOpt[aria-selected="true"] .xOptCheck::after{
      content:"";
      position:absolute;
      left:5px; top:3px;
      width:6px; height:10px;
      border-right:2px solid var(--accent2);
      border-bottom:2px solid var(--accent2);
      transform: rotate(40deg);
    }
    .xEmpty{
      padding:12px;
      color: rgba(234,240,255,.70);
      font-weight: 700;
      font-size: 13px;
      border-radius: 14px;
      border:1px dashed rgba(255,255,255,.14);
      background: rgba(255,255,255,.03);
    }

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


.ctaLeft::after{
  content:"";
  position:absolute;
  left:-2px; right:-2px; bottom:-2px;
  height:120px;
  background: linear-gradient(to bottom, rgba(7,10,18,0), rgba(7,10,18,.55) 35%, rgba(7,10,18,1));
  z-index: 1;
  pointer-events:none;
}

