:root{
  --bg:#0a1f44;
  --glass:rgba(255,255,255,0.08);
  --border:rgba(255,255,255,0.15);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:white;
}
.top-cta-link {
    background: none;
    border: none;
    color: #8fd3ff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px; /* better spacing */
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 12px;
    transition: all 0.25s ease;
}

    /* Hover glow (premium feel) */
    .brand:hover {
        background: rgba(255,255,255,0.05);
    }

/* 🔥 Bigger & sharper logo */
.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(99,102,241,0.6));
}

/* 🔥 Better typography */
.brand-text {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.4px;
    line-height: 1;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* ✅ MAIN FIX: CENTER EVERYTHING */
.container{
  max-width:1100px;
  margin:auto;
  padding:0 20px;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 18, 52, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 14px;
    transition: all 0.25s ease;
}

    .brand:hover {
        background: rgba(255,255,255,0.05);
    }

.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 0 10px rgba(99,102,241,0.45));
}

.brand-text {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2px;
    color: #ffffff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

    .nav-links a {
        text-decoration: none;
        color: rgba(255,255,255,0.88);
        font-size: 16px;
        font-weight: 600;
        transition: all 0.25s ease;
        position: relative;
        white-space: nowrap;
    }

        .nav-links a:hover {
            color: #ffffff;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #60a5fa, #a855f7);
            transition: width 0.25s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a.active {
            color: #ffffff;
        }

.nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb, #9333ea);
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(79,70,229,0.25);
}

    .nav-cta::after {
        display: none;
    }

    .nav-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 28px rgba(79,70,229,0.32);
    }

.nav-toggle {
    display: none;
    border: none;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 22px;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
}

/* mobile */
@media (max-width: 992px) {
    .nav-wrap {
        min-height: 76px;
    }

    .brand-logo {
        width: 46px;
        height: 46px;
    }

    .brand-text {
        font-size: 24px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 18px;
        background: rgba(8, 18, 52, 0.96);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.24);
    }

        .nav-links.open {
            display: flex;
        }

        .nav-links a {
            font-size: 15px;
        }

    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

.dark{
  background:rgba(255,255,255,0.03);
}

/* HERO BASE */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 80px 20px 40px;
    margin-top: 85px;
}

#ai-canvas{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:0;
}

/* Container fix */
.hero .container{
  position:relative;
  z-index:2;
  max-width:900px;
  margin:auto;
}
.hero h1{
  font-size:52px;
  line-height:1.2;
  margin-bottom:16px;
  background:linear-gradient(90deg,#ffffff,#93c5fd,#c084fc);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  position:relative;
}

/* Glow behind text */
.hero h1::after{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  background:radial-gradient(circle,#3b82f6,transparent 70%);
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  filter:blur(80px);
  opacity:0.4;
  z-index:-1;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 20% 30%, rgba(59,130,246,0.2), transparent),
             radial-gradient(circle at 80% 70%, rgba(147,51,234,0.2), transparent);
  animation:moveGradient 10s infinite alternate;
  z-index:1;
}

@keyframes moveGradient{
  0%{transform:translate(0,0)}
  100%{transform:translate(-50px, -50px)}
}
.hero-buttons{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}
.hero .container{
  max-width:900px;
  margin:auto;
  text-align:center;
}
.hero p{
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
}

.hero h1{
  animation:fadeUp 1s ease;
}

.hero p{
  animation:fadeUp 1.3s ease;
}

.hero-buttons{
  animation:fadeUp 1.6s ease;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.trust{
  text-align:center;
  padding:40px 0;
  opacity:0.8;
}

.trust-points{
  display:flex;
  justify-content:center;
  gap:30px;
  margin-top:15px;
  flex-wrap:wrap;
}

/* BUTTON */
.btn{
  padding:14px 28px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
  color:white;
  cursor:pointer;
  transition:0.3s;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 30px rgba(59,130,246,0.4);
}

.primary{
  background:linear-gradient(45deg,#3b82f6,#9333ea);
  color:white;
  border:none;
}

.badge {
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.25);
    color: #c7d2fe;
    backdrop-filter: blur(10px);
}

@keyframes fadeIn{
  from{opacity:0; transform:translateY(10px)}
  to{opacity:1; transform:translateY(0)}
}

/* SECTIONS */
.section{
  padding:80px 0;
  text-align:center;
}

/* CARDS */
.cards{
  display:flex;
  gap:25px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:40px;
}

.card{
  width:300px;
  padding:25px;
  border-radius:16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  transition: 0.3s;;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* CTA */
.cta{
  padding:80px 0;
  text-align:center;
  background:linear-gradient(90deg,#1e3a8a,#2563eb);
}

.cta-sticky{
  position:fixed;
  bottom:20px;
  left:20px;
  background:#2563eb;
  padding:12px 18px;
  border-radius:30px;
  color:white;
  font-size:14px;
  z-index:999;
}

/* FORM */
input,textarea{
  width:100%;
  padding:12px;
  margin:10px 0;
  border-radius:10px;
  border:none;
}

/* FOOTER BASE */
.footer{
  background:#05070f;
  margin-top:80px;
  position:relative;
  overflow:hidden;
}

/* GLOW LINE */
.footer::before{
  content:"";
  position:absolute;
  top:0;
  width:100%;
  height:2px;
  background:linear-gradient(90deg,transparent,#4f46e5,#9333ea,transparent);
}

/* CTA STRIP */
.footer-cta{
  text-align:center;
  padding:80px 20px 60px;
}

.footer-cta h2{
  font-size:32px;
  margin-bottom:10px;
}

.footer-cta p{
  opacity:0.7;
  margin-bottom:25px;
}

/* INPUT BOX */
.footer-cta-box{
  display:flex;
  justify-content:center;
  max-width:500px;
  margin:auto;
  background:rgba(255,255,255,0.05);
  border-radius:40px;
  border:1px solid rgba(255,255,255,0.1);
  overflow:hidden;
}

.footer-cta-box input{
  flex:1;
  padding:14px 20px;
  border:none;
  background:transparent;
  color:white;
  outline:none;
}

.footer-cta-box button{
  padding:0 25px;
  background:linear-gradient(45deg,#4f46e5,#9333ea);
  border:none;
  color:white;
  cursor:pointer;
  transition:0.3s;
}

.footer-cta-box button:hover{
  opacity:0.85;
}

/* GRID */
.footer-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:50px;
  padding:60px 20px;
}

/* BRAND */
.footer-brand h3{
  margin-bottom:15px;
  font-size:20px;
}

.footer-brand p{
  opacity:0.7;
  line-height:1.6;
}

/* LINKS */
.footer h4{
  margin-bottom:15px;
  font-size:15px;
  opacity:0.9;
}

.footer ul{
  list-style:none;
  padding:0;
}

.footer ul li{
  margin-bottom:10px;
  opacity:0.7;
  font-size:14px;
  cursor:pointer;
  transition:0.3s;
}

.footer ul li:hover{
  opacity:1;
  transform:translateX(5px);
}

/* SOCIALS */
.socials{
  margin-top:15px;
}

.socials a{
  display:inline-block;
  margin-right:10px;
  padding:8px 12px;
  font-size:12px;
  border-radius:8px;
  background:rgba(255,255,255,0.08);
  text-decoration:none;
  color:white;
  transition:0.3s;
}

.socials a:hover{
  background:rgba(255,255,255,0.2);
}

/* FOOTER BOTTOM */
.footer-bottom{
  text-align:center;
  padding:20px;
  font-size:13px;
  opacity:0.5;
  border-top:1px solid rgba(255,255,255,0.08);
}

/* Crisp chat above everything */
#crisp-chatbox{
  z-index:9999 !important;
}

/* WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 22px;
  padding: 14px;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 999;
}

.whatsapp-float:hover{
  transform:scale(1.1);
}

button.tawk-header-text.tawk-margin-auto-left.tawk-flex-none.tawk-button-hover.tawk-button.tawk-button-text.tawk-button-color-inverse.tawk-tooltip {
    display: none;
}

.top-cta {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    background: linear-gradient(90deg, rgba(59,130,246,0.15), rgba(147,51,234,0.18));
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

    .top-cta span {
        margin-left: 10px;
        color: #8fd3ff;
        cursor: pointer;
    }

        .top-cta span:hover {
            color: #c084fc;
        }

.social-proof {
    text-align: center;
    padding: 18px 20px;
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

.final-cta {
    padding: 90px 20px;
    text-align: center;
    background: linear-gradient(180deg, rgba(8,20,54,0.55), rgba(6,12,35,0.85));
}

    .final-cta h2 {
        font-size: 42px;
        margin-bottom: 14px;
    }

    .final-cta p {
        max-width: 700px;
        margin: 0 auto 24px;
        opacity: 0.85;
        font-size: 18px;
    }

    .final-cta button {
        padding: 14px 28px;
        border: none;
        border-radius: 30px;
        background: linear-gradient(45deg,#3b82f6,#9333ea);
        color: white;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 10px 30px rgba(59,130,246,0.35);
    }

        .final-cta button:hover {
            transform: translateY(-3px);
        }

.nav-links {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.hero-buttons .secondary {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
}

    .hero-buttons .secondary:hover {
        box-shadow: 0 10px 30px rgba(147,51,234,0.25);
    }

/* MOBILE FIX */
/* =========================
   RESPONSIVE / MOBILE FINAL
   ========================= */

@media (max-width: 992px) {
    .container {
        padding: 0 16px;
    }

    .navbar {
        background: rgba(8, 18, 52, 0.94);
    }

    .nav-wrap {
        min-height: 74px;
        gap: 12px;
        position: relative;
    }

    .brand {
        padding: 6px 4px;
        gap: 10px;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .brand-text {
        font-size: 22px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px;
        border-radius: 16px;
        background: rgba(8, 18, 52, 0.98);
        border: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 18px 40px rgba(0,0,0,0.28);
        z-index: 1100;
    }

        .nav-links.open {
            display: flex;
        }

        .nav-links a {
            font-size: 15px;
            padding: 10px 12px;
            border-radius: 10px;
        }

            .nav-links a::after {
                display: none;
            }

            .nav-links a:hover,
            .nav-links a.active {
                background: rgba(255,255,255,0.06);
            }

    .nav-cta {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }

    .hero {
        min-height: auto;
        padding: 110px 0 56px;
        margin-top: 0;
    }

        .hero .container {
            max-width: 100%;
        }

        .hero h1 {
            font-size: 40px;
            line-height: 1.12;
            margin-bottom: 14px;
        }

            .hero h1::after {
                width: 220px;
                height: 220px;
                filter: blur(70px);
            }

        .hero p {
            max-width: 100%;
            font-size: 16px;
            line-height: 1.65;
        }

    .badge {
        font-size: 12px;
        padding: 8px 14px;
        margin-bottom: 18px;
    }

    .hero-buttons {
        gap: 12px;
        margin-top: 22px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .trust,
    .section,
    .footer-cta,
    .final-cta {
        padding-top: 56px;
        padding-bottom: 56px;
    }

        .section h2,
        .final-cta h2,
        .footer-cta h2 {
            font-size: 30px;
            line-height: 1.2;
        }

    .cards {
        gap: 16px;
        margin-top: 28px;
    }

    .card {
        width: 100%;
        padding: 20px;
        border-radius: 18px;
    }

    .trust-points {
        gap: 12px;
    }

        .trust-points div {
            width: 100%;
            max-width: 320px;
        }

    .top-cta {
        font-size: 13px;
        line-height: 1.5;
        padding: 10px 14px;
    }

    .social-proof {
        font-size: 14px;
        padding: 14px 16px;
    }

    .cta-sticky {
        left: 14px;
        bottom: 14px;
        font-size: 13px;
        padding: 10px 14px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        font-size: 20px;
        padding: 12px;
    }

    .footer-grid {
        gap: 28px;
        padding: 40px 0;
    }

    .footer-cta-box {
        flex-direction: column;
        border-radius: 18px;
        padding: 12px;
        gap: 10px;
    }

        .footer-cta-box input,
        .footer-cta-box button {
            width: 100%;
            border-radius: 12px;
        }
}

@media (max-width: 640px) {
    .brand-logo {
        width: 38px;
        height: 38px;
    }

    .brand-text {
        font-size: 18px;
        letter-spacing: 0.1px;
    }

    .hero {
        padding: 96px 0 48px;
    }

        .hero h1 {
            font-size: 32px;
        }

        .hero p {
            font-size: 15px;
        }

    .btn {
        font-size: 14px;
    }

    .section h2,
    .final-cta h2,
    .footer-cta h2 {
        font-size: 26px;
    }

    .card h3 {
        font-size: 20px;
    }

    .card p,
    .section p,
    .final-cta p,
    .footer-cta p {
        font-size: 15px;
    }

    .footer-bottom {
        font-size: 12px;
        padding: 16px;
    }
}
