* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}


:root {
    --bg-deep: #020b16;
    --bg-mid: #071a2f;
    --bg-blue: #0a2540;
    --panel-blue: rgba(14, 56, 88, 0.7);
    --primary: #1f9cff;
    --primary-2: #2bd3ff;
    --accent: #f5c94a;
    --text: #edf4ff;
    --muted: rgba(237, 244, 255, 0.75);
    --line: rgba(255, 255, 255, 0.08);
}

html, body {
    width: 100%;
    min-height: 100%;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
    background: linear-gradient(180deg,  #030b16   0%, #020f1f  100%);
    color: var(--text);
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 7% 18%, rgba(48, 128, 255, 0.38), transparent 12%),
        radial-gradient(circle at 72% 40%, rgba(32, 176, 255, 0.2), transparent 18%),
        linear-gradient(180deg, #020b16 0%, #020f1f 100%);
}

.page-shell {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 22px 42px 30px;
    background: transparent;
}

.page-shell::before,
.page-shell::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.page-shell::before {
    width: 420px;
    height: 420px;
    left: -130px;
    top: 230px;
    background: radial-gradient(circle, rgba(92, 186, 255, 0.9) 0%, rgba(39, 123, 255, 0.22) 55%, rgba(39, 123, 255, 0) 100%);
}

.page-shell::after {
    width: 360px;
    height: 360px;
    right: -60px;
    bottom: 20px;
    background: radial-gradient(circle, rgba(34, 201, 236, 0.5), rgba(34, 201, 236, 0));
}

.topbar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 0 18px;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    width:20%;
}

.brand-link {
    width: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    width: 100%;
    height: auto;
}

.brand-mark {
    display: inline-flex;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #6ec6ff;
    font-size: 1.5rem;
    opacity: 0.95;
}

.connect-btn,
.primary-btn,
.secondary-btn {
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    text-decoration: none;
}

.connect-btn {
    background: linear-gradient(135deg, #3aa1ff 0%, #1793ff 100%);
    color: #f0f7ff;
    padding: 10px 26px;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(41, 138, 255, 0.45);
    text-decoration: none;
}

.wallet-modal .modal-content {
    background: #08131e;
    border: 1px solid rgba(171, 207, 237, 0.16);
    border-radius: 12px;
    color: var(--text);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.wallet-modal .modal-header {
    align-items: flex-start;
    border-bottom: 0;
    padding: 36px 32px 0;
}

.wallet-modal .modal-title {
    color: #f5f9ff;
    font-size: 1.55rem;
    font-weight: 800;
    margin: 0;
}

.wallet-modal-subtitle {
    color: #dfeeff;
    font-size: 1.05rem;
    margin: 14px 0 0;
}

.wallet-modal-close {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 0;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.wallet-modal-close:hover,
.wallet-modal-close:focus-visible {
    background: rgba(255, 255, 255, 0.18);
}

.wallet-modal .modal-body {
    padding: 48px 32px 56px;
}

.wallet-modal-heading {
    border-bottom: 1px solid var(--accent);
    color: #f5f9ff;
    font-size: 1.45rem;
    font-weight: 800;
    margin: 0 0 40px;
    max-width: 375px;
    padding-bottom: 8px;
}

.wallet-option {
    align-items: center;
    background: transparent;
    border: 1px solid rgba(171, 207, 237, 0.16);
    border-radius: 12px;
    color: var(--text);
    display: flex;
    gap: 16px;
    padding: 28px 32px;
    text-align: left;
    width: 100%;
}

.wallet-option-icon {
    align-items: center;
    color: #2f9cff;
    display: inline-flex;
    font-size: 2rem;
    justify-content: center;
    width: 48px;
}

.wallet-option-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 5px;
}

.wallet-option-copy strong {
    font-size: 1.1rem;
}

.wallet-option-copy small {
    color: var(--muted);
}

.wallet-option-action {
    background: linear-gradient(135deg, #3aa1ff 0%, #1793ff 100%);
    border-radius: 999px;
    font-weight: 700;
    padding: 13px 23px;
    white-space: nowrap;
}

.wallet-option:hover {
    border-color: rgba(58, 161, 255, 0.7);
}

.modal-backdrop.show {
    opacity: 0.82;
}

@media (max-width: 640px) {
    .wallet-modal .modal-header {
        padding: 28px 22px 0;
    }

    .wallet-modal .modal-body {
        padding: 36px 22px 30px;
    }

    .wallet-option {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 22px;
    }

    .wallet-option-action {
        margin-left: 64px;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 18px;
}

.hero-layout {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    gap: 24px;
    min-height: calc(100vh - 120px);
    margin-top: 8px;
}

.hero-copy {
    padding-left: 8px;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-copy h1 {
    font-size: clamp(2.8rem, 4vw, 5.1rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
    font-weight: 900;
    margin-bottom: 28px;
    color: #f5f9ff;
}

.hero-copy h1 span {
    color: #2d67da;
    border-bottom: 3px solid #2d67da;
}

.hero-copy h1 .highlight {
    display: inline-block;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(252, 201, 78, 0.35);
        border-bottom: 3px solid  var(--accent);
}

.hero-copy h1 span:nth-child(2) {
    color: #f5f9ff;
}

.hero-copy p {
    color: var(--muted);
    font-size: 1.18rem;
    line-height: 1.5;
    max-width: 570px;
    margin-bottom: 34px;
}

.cta-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 18px;
    width: 100%;
}

.primary-btn,
.secondary-btn {
    padding: 10px 32px;
    font-size: 1.05rem;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.primary-btn {
    background: linear-gradient(135deg, #30a9ff 0%, #1d8ef0 100%);
    color: white;
    box-shadow: 0 10px 20px rgba(53, 134, 255, 0.42);
}

.secondary-btn {
    background: transparent;
    border: 2px solid rgba(108, 196, 255, 0.9);
    color: #dfeeff;
}

.hero-visual {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-right: 20px;
}

.hero-visual img {
    position: relative;
    z-index: 2;
    width: min(100%, 760px);
    height: auto;
    max-height: 680px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 22px 35px rgba(26, 118, 255, 0.18));
}

.tech-cloud {
    position: relative;
    width: min(100%, 560px);
    height: min(52vw, 520px);
    min-height: 360px;
    z-index: 2;
}

.feature {
    position: absolute;
    z-index: 3;
    color: #dfeeff;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.feature span {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.feature small {
    display: block;
    font-size: 0.8rem;
    line-height: 1.4;
    color: rgba(223, 238, 255, 0.82);
}

.feature-left { left: 2%; bottom: 120px; }
.feature-mid { left: 22%; bottom: 15px; }
.feature-right { right: 6%; bottom: 15px; }

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(4px);
}

.orb-one {
    width: 330px;
    height: 330px;
    left: 12%;
    top: 6%;
    background: linear-gradient(135deg, rgba(79, 158, 255, 0.95), rgba(43, 150, 255, 0.14));
}

.orb-two {
    width: 220px;
    height: 220px;
    right: 6%;
    bottom: 10%;
    background: linear-gradient(135deg, rgba(32, 216, 168, 0.86), rgba(32, 216, 168, 0.1));
}

@media (max-width: 980px) {
    .page-shell {
        padding-left: 22px;
        padding-right: 22px;
    }

 

    .brand {
        width: 40%;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 10px;
    }

    .hero-copy {
        padding-left: 0;
        max-width: 100%;
        text-align: left;
    }

    .hero-copy p {
        max-width: 100%;
    }

    .hero-visual {
        min-height: 440px;
    }
}

@media (max-width: 640px) {
    .page-shell {
        padding: 18px 18px 30px;
    }

    .brand {
        width: 50%;
    }

    .connect-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
        width: 40%;
    }

    .hero-copy h1 {
        font-size: clamp(2.4rem, 9vw, 3.2rem);
    }

    .cta-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        min-width: 0;
    }

    .hero-visual {
        min-height: 360px;
    }

    .tech-cloud {
        height: 320px;
        min-height: 300px;
    }

    .feature span {
        font-size: 1rem;
    }

    .feature small {
        font-size: 0.72rem;
    }
}

.stats-wrap {
    /* full-bleed background section; content inside aligns with page padding */
    width: 100%;
    padding: 10px 0 80px;
    z-index: 2;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    align-items: center;
    /* content stretches across available width but keeps page padding alignment */
    width: calc(100% - 84px);
    max-width: none;
    margin: 0 auto;
    padding: 14px 42px;
    box-sizing: border-box;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 24px;
    min-width: 0;
}

.stat .count {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text);
}

.stat .label {
    color: var(--muted);
    font-size: 0.95rem;
}

@media (max-width: 980px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .stat .count { font-size: 1.8rem; }
    /* reset full-bleed behavior on narrower screens so content respects page padding */
    .stats-wrap {
        width: 100%;
        margin-left: 0;
        padding: 36px 22px 48px;
    }
}

@media (max-width: 640px) {
    .stats {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .stats-wrap { padding: 28px 14px 48px; }
    .stat .count { font-size: 1.6rem; }
    .stat { align-items: flex-start; }
}

/* Small divider between items to match design */
.stats .stat + .stat { border-left: 1px solid #fff; padding-left: 12px; }
 @media screen and (max-width:768px) {
     .stats .stat + .stat { border-left:none;}
 }
.whatusersay {
    width: 100%;
    padding: 28px 0 80px;
    color: #f3f7ff;
    margin-top: 80px;
}

.whatusersay-header {
    text-align: center;
    max-width: 1180px;
    margin: 0 auto 38px;
    padding: 0 20px;
}

.whatusersay-header h2 {
    margin: 0;
    font-size: clamp(2.8rem, 4vw, 5rem);
    line-height: 1;
    letter-spacing: -0.055em;
    font-weight: 900;
    color: #f4f7fb;
}

.whatusersay-header p {
    margin: 26px auto 0;
    max-width: 980px;
    color: rgba(230, 239, 255, 0.82);
    font-size: clamp(1.1rem, 1.6vw, 1.6rem);
    line-height: 1.35;
    font-weight: 400;
}

.whatusersay-grid {
    width: min(1180px, calc(100% - 80px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}

.whatusersay-card {
    background: rgba(17, 24, 33, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 15px 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.whatusersay-card blockquote {
    margin: 0;
    color: rgba(244, 247, 251, 0.96);
    font-size: clamp(1.12rem, 1.3vw, 1.7rem);
    line-height: 1.52;
    font-weight: 400;
    letter-spacing: -0.025em;
}

.whatusersay-person {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

.whatusersay-person img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.whatusersay-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.whatusersay-meta h3 {
    margin: 0;
    font-size: clamp(1.1rem, 1.3vw, 1.45rem);
    font-weight: 700;
    color: #f6faff;
}

.whatusersay-meta span {
    font-size: 0.96rem;
    color: rgba(223, 233, 246, 0.75);
}

@media (max-width: 980px) {
    .whatusersay-grid {
        width: min(720px, calc(100% - 32px));
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .whatusersay-card {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .whatusersay {
        padding-bottom: 56px;
    }

    .whatusersay-header {
        margin-bottom: 26px;
    }

    .whatusersay-header p {
        margin-top: 18px;
        font-size: 1.05rem;
    }

    .whatusersay-grid {
        width: calc(100% - 30px);
    }

    .whatusersay-card {
        padding: 22px 20px 18px;
    }

    .whatusersay-card blockquote {
        line-height: 1.5;
    }
}

.findsection{
    width: 100%;
    height: auto;
    padding-left: 80px;
    padding-right: 80px;
}
.findsection .subsec1{
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    gap: 20px;
}
.findsection .subsec1 h2{
    font-weight: 800;
    font-size: 32px;
    line-height: 1.05;
    margin: 0;
}
.findsection .subsec1 h2 span{
    color: #1793ff;
    text-decoration: underline;
}
.findsection .subsec1 p{
    width: 40%;
    max-width: 420px;
    color: var(--muted);
    margin: 0;
    font-size: 0.98rem;
}
.findsection .subsec2{
    display: grid;
    margin-top: 80px;
    /* make columns only as wide as their content when possible, but allow them to grow */
    grid-template-columns: repeat(3, minmax(min-content, 1fr));
    gap: 12px;
    align-items: start;
    padding-top: 12px;
    grid-auto-flow: dense;
    justify-items: start;
}
.findsection .subsec2 div{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    border-radius: 8px;
    background-color: #0F1E2E;
    color: white;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}
.findsection .subsec2 div p{
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}
.findsection .subsec2 div:nth-child(1){
    /* allow the first panel to be slightly taller if needed, span two rows on wide screens */
    grid-row: span 2;
    padding-bottom: 0px;
}
.findsection .subsec2 div:nth-child(1) img{
    margin-top: 40px;
    max-width: 100%;
    height: auto;
}

/* ensure images don't force a wide column; keep them natural size */
.findsection .subsec2 img{
    display: block;
    width: auto;
    max-width: 220px;
    height: auto;
}

@media screen and (max-width:1000px){
    .findsection .subsec1{
        flex-direction: column;
        align-items: flex-start;
    }
    .findsection .subsec1 p {
        width: 90%;
        margin-top:40px;
        margin-bottom: 20px;
    }
    .findsection{
        padding-left: 28px;
        padding-right: 28px;
    }
    .findsection .subsec2{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}
.explore{
    width: 100%;
    height: auto;
    padding-left: 80px;
    padding-right: 80px; 
    background: #09131D;
}
.explore .subsec1{
      display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    gap: 20px;
}
.explore .subsec1 .btn-view{
    background:#1793ff;
    color:white;
    text-decoration: none;
    border-radius:50px;
    padding:10px;
    font-size:13px;
    font-weight: 600;
}
.explore .subsec1 h2{
    font-weight: 800;
    font-size: 32px;
    line-height: 1.05;
    margin: 0;
}
.explore .subsec1 h2 span{
    color: #1793ff;
    text-decoration: underline;
}
.explore .subsec2{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    padding:10px;
    gap: 20px;
    margin-top: 40px;
    width:100%;
}
.explore .subsec2 div{
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgb(129, 126, 126);
    height:auto;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.explore .subsec2 div .iconholder{
     border: 2px solid #1793ff;
    color: #1793ff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    margin: 20px;
    justify-content: center;
    font-weight: bold;
    font-size: 25px;
}
.explore .subsec2 div h2{
    color:white;
    font-size:20px;
    font-weight:bold;
    text-align: center;
    margin:20px;
}
.explore .subsec2 div p{
    color:white;
    font-size:15px;
    text-align: center;
    margin:20px;
    font-weight: bold;
}
@media screen and (max-width:1024px){
    .explore .subsec2{
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width:800px) {
        .explore .subsec1{
            flex-direction: column;
            align-items: flex-start;
        }
}
@media screen and (max-width:640px){
    .explore .subsec2{
        grid-template-columns: 1fr;

    }
        .explore .subsec2 div{
            width: 100%;   
         }
}
@media screen and (max-width:480px){
      .explore .subsec2 div{
    width: 120%;

    }
}
@media screen and (max-width:640px){
    .findsection{ padding-left: 18px; padding-right: 18px; }
    .findsection .subsec2{ grid-template-columns: 1fr; }
    .findsection .subsec2 div:nth-child(1){ grid-row: auto; }
}

.getstarted{
    background: url(./image/forbg.jpg);
    padding:10px;
    background-size: cover;
    width: 100%;
    padding-bottom: 60px;
    color: white;
    padding-top: 40px;
}
.getstarted h2{
    font-weight: bold;
    font-size: 40px;
    text-align: center;
}
.getstarted h2 span{
    color: #1793ff;
    text-decoration: underline;
}
.getstarted .holder{
    display: flex;
    width: 100%;
    justify-content: center;
    padding-left:50px ;
    padding-right: 50px;
    margin-top: 40px;
    
}
.getstarted .holder div{
  background: #0E1C2C;
  padding: 8px;
  width: 30%;
  margin: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.getstarted .holder div .iconholder{
    border: 2px solid #1793ff;
    color: #1793ff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    margin: 20px;
    justify-content: center;
    font-weight: bold;
    font-size: 25px;
}
.getstarted .holder div:nth-child(1){
    background:#3A96FF ;
    padding-bottom: 10px;
}
 .getstarted .holder div:nth-child(1) .iconholder{
    background: white;
}
.getstarted .holder div:nth-child(1) .linkholder{
    width: 100%;
    margin-top:60px;
}
.getstarted .holder div:nth-child(1) .linkholder a{
    text-decoration: none ;
    border: 1px solid white;
    border-radius: 20px;
    padding:10px;
    color:white;
}
@media screen and (max-width:1054px) {
    .getstarted .holder{
        flex-direction: column;
        align-items: center;
    }
    .getstarted .holder div{
        width: 80%;
    }
    
}
@media screen and (max-width:480px) {
       .getstarted .holder div{
        width:100%;
       }
}
.faq-section {
    width: 100%;
    padding: 30px 40px 80px;
    color: #edf4ff;
}

.faq-layout {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.92fr 1.38fr;
    gap: 28px;
    align-items: stretch;
}

.faq-intro {
    background: rgba(8, 20, 34, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 26px 28px 24px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.faq-kicker {
    display: inline-block;
    font-weight: 800;
    color: #edf4ff;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.faq-title {
    margin: 0;
    font-size: clamp(3rem, 4vw, 5rem);
    line-height: 0.92;
    font-weight: 800;
    letter-spacing: -0.065em;
    color: #edf4ff;
}

.faq-title span {
    color: #2b9dff;
}

.faq-subtext {
    margin-top: 20px;
    font-size: clamp(1.05rem, 1.4vw, 1.55rem);
    line-height: 1.45;
    color: rgba(237, 244, 255, 0.8);
    max-width: 500px;
}

.faq-contact-card {
    margin-top: 44px;
    background: rgba(21, 40, 63, 0.85);
    border: 1px solid rgba(81, 149, 255, 0.3);
    border-radius: 18px;
    padding: 18px 18px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 150px;
}

.faq-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 2px solid #2b9dff;
    color: #2b9dff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.faq-contact-copy h3 {
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    line-height: 1.2;
    margin: 0 0 8px;
    color: #f3f7ff;
    font-weight: 700;
}

.faq-contact-copy p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(237, 244, 255, 0.76);
}

.faq-btn {
    margin-top: 20px;
    width: 100%;
    padding: 18px 20px;
    font-size: 1.15rem;
    background: linear-gradient(135deg, #2fa3ff 0%, #1a8af6 100%);
    color: #f4f9ff;
    border-radius: 999px;
    border: none;
    box-shadow: 0 8px 20px rgba(41, 138, 255, 0.35);
    font-weight: 700;
}

.faq-accordion {
    width: 100%;
}

.faq-accordion .accordion {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 20, 34, 0.96);
}

.faq-accordion .accordion-item {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-accordion .accordion-item:last-child {
    border-bottom: none;
}

.faq-accordion .accordion-button {
    background: rgba(14, 29, 46, 0.9);
    color: #eef5ff;
    font-weight: 700;
    font-size: clamp(1.35rem, 2vw, 2.1rem);
    padding: 22px 24px;
    border: 0;
    box-shadow: none;
    letter-spacing: -0.03em;
    border-radius: 0;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 1.3;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(15, 31, 49, 0.95);
    color: #eef5ff;
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 6l6 6 6-6'/%3e%3c/svg%3e");
    background-size: 16px;
    transition: transform 0.2s ease;
    margin-left: 18px;
    flex-shrink: 0;
    transform: rotate(0deg);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.faq-accordion .accordion-body {
    background: rgba(16, 32, 51, 0.96);
    color: rgba(237, 244, 255, 0.88);
    padding: 20px 24px 22px;
    font-size: 1rem;
    line-height: 1.7;
}

.faq-accordion .accordion-body p {
    margin: 0 0 12px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.faq-accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .faq-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .faq-intro,
    .faq-accordion .accordion-button,
    .faq-accordion .accordion-body {
        padding-left: 18px;
        padding-right: 18px;
    }

    .faq-contact-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-btn {
        font-size: 1rem;
    }
}
.cta-banner {
    width: 100%;
    padding: 28px 40px 80px;
}

.cta-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(90deg, rgba(25, 35, 52, 0.82), rgba(35, 42, 54, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    padding: 54px 42px 48px;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.cta-banner-inner h2 {
    margin: 20px;
    color: #f4f7fb;
    font-size:40px;
    line-height: 1.05;
    letter-spacing: -0.06em;
    font-weight: 800;
}

.cta-banner-inner p {
    max-width: 980px;
    margin: 28px auto 0;
    color: rgba(237, 244, 255, 0.8);
    font-size: clamp(1.1rem, 1.5vw, 1.7rem);
    line-height: 1.4;
    font-weight: 400;
    font-size: 15px;
}

.cta-banner-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.cta-banner-btn {
    border: 0;
    border-radius: 999px;
    padding: 10px 34px;
    min-width: 200px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.cta-banner-btn:hover {
    transform: translateY(-1px);
}

.cta-banner-btn.primary {
    background: linear-gradient(135deg, #3aa1ff 0%, #1793ff 100%);
    color: #f4f9ff;
    box-shadow: 0 10px 22px rgba(41, 138, 255, 0.35);
}

.cta-banner-btn.secondary {
    background: transparent;
    color: #edf4ff;
    border: 2px solid rgba(132, 194, 255, 0.9);
    box-shadow: inset 0 0 0 1px rgba(132, 194, 255, 0.2);
}

@media (max-width: 640px) {
    .cta-banner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .cta-banner-inner {
        padding: 42px 20px 34px;
    }

    .cta-banner-inner h2 {
        font-size: 2.4rem;
    }

    .cta-banner-inner p {
        font-size: 1rem;
    }

    .cta-banner-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-banner-btn {
        width: 100%;
        max-width: 280px;
    }
}
.trusted_by {
    color: white;
    text-align: center;
    padding: 30px 0 40px;
}

.trusted_by h1 {
    margin: 0 0 20px;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin: 14px 0;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    width: max-content;
}

.ticker-left {
    animation: scroll-left 26s linear infinite;
}

.ticker-right {
    animation: scroll-right 26s linear infinite;
}

.ticker-track img {
    height: 42px;
    width: auto;
    max-width: 110px;
    margin: 0 10px;
    object-fit: contain;
    filter: grayscale(0.2);
    opacity: 0.9;
    display: block;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

@media (max-width: 640px) {
    .trusted_by {
        padding-bottom: 32px;
    }

    .ticker-track {
        gap: 14px;
    }

    .ticker-track img {
        height: 38px;
    }
}
.site-footer {
    position: relative;
    width: 100%;
    padding: 34px 0 42px;
    background: url(./image/forbg.jpg);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background-size: cover;
}

.footer-grid {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1.15fr 1fr;
    align-items: flex-start;
}

.footer-brand,
.footer-newsletter,
.footer-links {
    position: relative;
    padding: 12px 30px 0;
}

.footer-brand {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}


.footer-newsletter {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: #edf4ff;
    font-size: 1.5rem;
    line-height: 1;
}

.brand-mark i {
    transform: translateY(-1px);
}

.footer-brand h3,
.footer-newsletter h3,
.footer-links h3 {
    margin: 0;
    color: #edf4ff;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.footer-brand h3 {
    font-size: 1.9rem;
    line-height: 1.2;
}

.footer-newsletter h3,
.footer-links h3 {
    font-size: 1.8rem;
    line-height: 1.2;
}

.footer-brand p,
.footer-newsletter p {
    margin: 0;
    color: white;
    font-size: 1rem;
    line-height: 1.55;
}
.footer-brand p {
    margin-top:97px;
}

.footer-newsletter {
    padding-left: 36px;
    padding-right: 36px;
}

.footer-newsletter > p {
    margin-top: 8px;
    margin-bottom: 18px;
    font-size: 1rem;
    color: rgba(237, 244, 255, 0.8);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsletter-form input {
    width: 100%;
    min-height: 56px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(237, 244, 255, 0.9);
    padding: 0 16px;
    font-size: 0.98rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(237, 244, 255, 0.52);
}

.newsletter-form button {
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #3aa1ff 0%, #1b8ef3 100%);
    color: white;
    font-weight: 700;
    min-height: 52px;
    font-size: 1rem;
    box-shadow: 0 8px 18px rgba(41, 138, 255, 0.3);
    cursor: pointer;
}
a{
    text-decoration: none;
}

.footer-links {
    padding-left: 36px;
    padding-right: 18px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 26px;
    margin-top: 18px;
}

.quick-links-grid a {
    color: white;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.quick-links-grid a:hover {
    color: #ffffff;
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.95;
    pointer-events: none;
}

.footer-glow-left {
    width: 130px;
    height: 130px;
    left: 18px;
    bottom: 8px;
   }

.footer-glow-right {
    width: 160px;
    height: 160px;
    right: 20px;
    top: 6px;
    
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-brand,
    .footer-newsletter,
    .footer-links {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-links {
        border-bottom: none;
    }
}
.footer-bottom {
    position: relative;
    z-index: 2;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(237, 244, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}