:root {
    --bg: #0b0d12;
    --bg2: #0a0c11;
    --panel: #10131a;
    --panel2: #0f1218;
    --stroke: rgba(0, 255, 255, 0.18);
    --stroke2: rgba(0, 255, 255, 0.28);
    --text: rgb(255, 255, 255);
    --muted: rgba(233, 238, 248, 0.65);
    --muted2: rgba(233, 238, 248, 0.45);
    --accent: #00e7c5;
    --accent2: #19b7ff;
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
    --radius: 18px;
    --radius2: 14px;
    --max: 1200px;
}

* {
    box-sizing: border-box;
    font-family: "Sora", sans-serif;
}

html, body {
  height: 100%;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1;
}


html {
  scroll-behavior:smooth;
}

body {
    margin: 0;
    font-family: "Sora", sans-serif;
    background-color: #000000;
    /* background: radial-gradient(1200px 700px at 50% -10%, rgba(0, 231, 197, 0.15), transparent 60%),
        radial-gradient(900px 600px at 30% 10%, rgba(25, 183, 255, 0.10), transparent 55%),
        linear-gradient(180deg, var(--bg), var(--bg2)); */
    color: var(--text);
    overflow-x:hidden;
    -webkit-overflow-scrolling:touch;
}

/* ===== SCROLL LOCK ===== */
body.no-scroll{
  overflow: hidden !important;
  height: 100vh;
  touch-action: none;
}


/* .bg-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(500px 220px at 40% 18%, rgba(0, 231, 197, 0.22), transparent 60%),
        radial-gradient(450px 220px at 52% 22%, rgba(25, 183, 255, 0.14), transparent 60%);
    filter: blur(10px);
    opacity: 0.85;
} */

.container {
    width: min(var(--max), calc(100% - 56px));
    margin: 0 auto;
}




/* NAV */


.nav {
    height: 74px;
    display: flex;
    align-items: center;
    /* position: sticky; */
    top: 0;
    z-index: 10;
    background: rgba(10, 12, 17, 0.35);
    backdrop-filter: blur(10px);
}

.nav-left{
    display: flex;
    align-items: center;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo{
  height: 26px;        /* matches design */
  width: auto;
  display: block;
}

@media (max-width: 520px){
  .brand-logo{
    height: 22px;
  }
}

.brand {
    font-weight: 800;
    letter-spacing: -0.4px;
    font-size: 18px;
}

.brand-strong {
    color: #ffffff;
}

.brand-accent {
    color: var(--accent2);
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: rgba(233, 238, 248, 0.80);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
}

.nav-links a:hover {
    color: #fff;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-login {
    color: rgba(233, 238, 248, 0.80);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.nav-login:hover {
    color: #fff;
}

/* Logged In Header */

.nav-actions.logged-in{
  display:flex;
  align-items:center;
  gap:20px;
}

/* Search Badge */
.search-badge{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 8px;
  background: #ffffff12;
  border: 1px solid #FFFFFF1A;
  font-size: 13px;
  font-weight: 600;
  color: #ff9c2b;
}

@media (max-width: 520px){
  .search-badge {
    gap: 5px;
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 10px;
}
}

.search-badge img{
  width:"100%";
}

/* User Section */
.user-info{
  display:flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
}

.user-name{
  font-size:14px;
  color:#fff;
  font-weight:400;
}
@media (max-width: 520px){
  .user-name{
    display:none;
  }
  .nav-actions.logged-in{
    gap:10px;
  }
}

.avatar{
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:600;
  color:#000;
  font-size:14px;
}

/* BUTTONS */
.btn {
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 13px;
    transition: 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: #00AEFF;
    background: linear-gradient(90deg, rgba(0, 174, 255, 1) 0%, rgba(0, 178, 214, 1) 50%, rgba(0, 192, 173, 1) 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(10, 167, 255, 0.25);
}

.btn-report {
    height: 62px;
    min-width: 220px;
    padding: 0 22px;

    border-radius: 14px;
    background: #00AEFF;
    background: linear-gradient(90deg, rgba(0, 174, 255, 1) 0%, rgba(0, 178, 214, 1) 50%, rgba(0, 192, 173, 1) 100%);
    color: rgb(255 255 255);
    font-weight: 700;
    font-size: 16px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.get-started{
    background: #FFFFFF0A;
    height: 62px;
    min-width: 220px;
    padding: 0 22px;
    border-radius: 14px;
    color: rgb(255 255 255);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #ffffff36;
}
.get-started:hover{
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
}
@media (max-width: 520px){
    .get-started {
        height: 50px;
    }
    .btn-report {
        height: 50px !important;
    }
}
.btn-primary:hover {
    transform: translateY(-1px);
}

.btn-dark {
    background: rgba(12, 16, 22, 0.75);
    color: rgba(233, 238, 248, 0.85);
    border: 1px solid rgba(0, 255, 255, 0.14);
}

.btn-dark:hover {
    border-color: rgba(0, 255, 255, 0.28);
}

/* HERO */
.hero {
    padding: 28px 0 18px;
    text-align: center;
}

.hero-title {
    margin: 0;
    letter-spacing: -0.8px;
    line-height: 1;
    color: white;
}

.hero-accent {
    color: var(--accent);
}

.hero-subtitle {
    font-weight: 400;
    font-size: 40px;
    color: white;
}
@media (max-width: 520px){
    .hero-subtitle {
        font-size: 20px;
    }
}
.hero-desc {
    margin: 10px 0 25px;
    color: #C6C6C6;
    font-size: 15px;
}

.search-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 10px;
    margin-bottom: 8px;
}

.search-input {
    flex: 1;
    max-width: 760px;
    height: 62px;
    border-radius: 14px;
    background: rgba(10, 12, 17, 0.75);
    border: 1px solid rgba(0, 255, 255, 0.40);
    box-shadow:
        0 0 0 2px rgba(0, 231, 197, 0.10),
        0 0 40px rgba(0, 231, 197, 0.18);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
}

.search-hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-15px);
  transition: all 0.4s ease;
}

.search-show {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 12px;
}

.analyse-wrapper {
  margin-top: 14px;
}

.gradient-border {
  border-radius: 14px;
  border: 1px solid #ffffff9e;

  background:
    linear-gradient(#0b0e14, #0b0e14) padding-box,
    linear-gradient(
      90deg,
      rgba(3, 183, 255, 1),
      rgba(87, 199, 133, 1)
    ) border-box;

  box-shadow:
    0 0 0 1px rgba(0, 255, 255, 0.3), 0 0 18px rgba(3, 183, 255, 0.4), 0 0px 156px 40px rgb(3 180 251 / 29%)
}


.link-ico {
    opacity: 0.75;
    font-size: 18px;
}

.search-input input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: white;
    font-size: 15px;
    font-weight: 500;
}




/* .bolt {
    opacity: 0.65;
} */

.source-row {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 14px;
    align-items: center;
}

/* =========================
   SOURCE CHECKBOX STYLE (Google/Trustpilot)
========================= */

.source-btn {
    height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    background: rgba(10, 12, 17, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(233, 238, 248, 0.65);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.15s ease;
}

.source-btn.active {
    border: 1px solid rgb(34 98 123);
    box-shadow: 0 0 0 2px rgba(0, 231, 197, 0.12);
    color: rgb(255, 255, 255);
}

/* Checkbox square */
.cb {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    position: relative;
}

/* Tick hidden by default */
.cb-tick {
    font-size: 12px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    opacity: 0;
    transform: scale(0.8);
    transition: 0.15s ease;
}

/* Active checkbox */
.cb.active {
    background: linear-gradient(90deg, rgba(3, 183, 255, 1) 51%, rgb(26 219 219) 100%);
    border-color: rgba(0, 204, 231, 0.829);
}

.cb.active .cb-tick {
    opacity: 1;
    transform: scale(1);
}

/* Source icons */
.src-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px;
    color: #fff;
}

.src-icon.trust {
    border-radius: 7px;
    color: rgba(0, 231, 197, 0.95);
}

.src-name {
    font-weight: 400;
}


.check {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(0, 231, 197, 0.22);
    border: 1px solid rgba(0, 231, 197, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.g-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    color: #fff;
}

.star {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    background: rgba(0, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* REPORT HEADER */
.report-head {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.section-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.dropdown-pill {
    height: 36px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(10, 12, 17, 0.55);
    color: rgba(233, 238, 248, 0.80);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chev {
    opacity: 0.7;
}

/* STATS */
.stats {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.stat-card{
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 18px 20px;
  border-radius: 16px;
  background: #000000;
  /* gradient border */
  border: 1px solid transparent;
  background: linear-gradient(#000000, #000000) padding-box, linear-gradient(90deg, #03b7ff91, #03ffb973) border-box;
  box-shadow: 0 0 20px rgb(3 183 255 / 19%);
}

.stat-label {
    font-size: 12px;
    color: #C6C6C6;
    font-weight: 600;
}

.stat-value {
    margin-top: 6px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-value.accent {
    color: var(--accent2);
}

.mini-google {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px;
}

.mini-star {
    width: 20px;
    height: 20px;
    border-radius: 7px;
    background: rgba(255, 208, 0, 0.12);
    border: 1px solid rgba(255, 208, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* MAIN CARDS */
.card {
    border-radius: var(--radius);
}

.card-main {
    margin-top: 20px;
    background: rgba(14, 16, 22, 0.70);
    border: 1px solid transparent;
    background: linear-gradient(#000000, #000000) padding-box, linear-gradient(90deg, #03b7ff91, #03ffb973) border-box;
    box-shadow: 0 0 20px rgb(3 183 255 / 19%);
    padding: 16px 18px;
}

.card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.card-head-between {
    justify-content: space-between;
    align-items: flex-start;
}

.card-head-between .left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-icon {
    width: 35px;
    height: 35px;
    border-radius: 12px;
    background: rgb(133 133 133 / 10%);
    border: 1px solid rgb(157 157 157 / 26%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-title {
    font-weight: 600;
    font-size: 15px;
    color: #DBDBDB;
    margin-bottom: 10px;
}

.card-text {
    margin: 0;
    font-size: 13px;
    font-weight: 300;
    color: white;
    line-height: 1.55;
}

/* SIGNAL LIST */
.signal-list {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.signal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgb(223 223 223 / 13%);
    border: 1px solid rgb(255 255 255 / 6%);
}

.signal-name {
    font-weight: 600;
    font-size: 13px;
    color: white;
}

.signal-desc {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 300;
    color: white;
}

.chip {
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.chip-warn {
    color: #F97316;
    background: #F9731633;
}

.chip-danger {
    color: #FF0000;
    background: #FF000033;
}
.chip-success {
    color: #fff;
    background: #00c073;
}

/* GRID 2 */
.grid-2 {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.bullets {
    margin: 0;
    padding-left: 18px;
    font-weight: 300;
    color: white;
    font-size: 13px;
    line-height: 1.6;
}

.bullets li {
    margin-bottom: 10px;
}

.copy-ico {
    opacity: 0.7;
    font-size: 18px;
    padding: 2px 8px;
    cursor: pointer;
}

/* FOOTER */
.footer {
    margin-top: 18px;
    padding: 18px 0 18px;
    border-top: 1px solid #FFFFFF1A;
}

.footer-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #FFFFFF1A;
  padding: 10px 0 18px;
  align-items: anchor-center;
}
.footer-left{
  gap: 24px;
  text-align: center;
  width: 100%;
}

.footer-logo{
  height: 40px;        /* matches design */
  width: auto;
  display: block;
  margin-top: 4px;
  margin-bottom: 10px;
}

@media (max-width: 520px){
  .footer-top{
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .footer-logo{
    height: 40px;
    margin-bottom: 10px;
  }

  .footer-links {
    display: flex;
    gap: 22px;
    justify-content: center;
    display: flex;
    justify-content: space-around;
}
}


.footer-links {
    display: flex;
    gap: 22px;
}

.footer-links a {
    color: #C6C6C6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

.footer-links a:hover {
    color: white;
}

.newsletter-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.main-layout{
   display: flex;
}
.mail-input {
    width: 360px;
    max-width: 100%;
    height: 54px;
    border-radius: 12px;
    border: 1px solid rgba(66, 66, 66, 0.911);
    background: rgba(10, 12, 17, 0.55);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
}

.mail-ico {
    opacity: 0.7;
}

.mail-input input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: rgba(233, 238, 248, 0.85);
    font-size: 13px;
}

.btn-submit {
    height: 54px;
    padding: 0 18px;
    border-radius: 12px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 10px;
}

.copy {
    color: rgb(255, 255, 255);
    font-size: 12px;
    font-weight: 600;
}

.footer-mini {
    display: flex;
    gap: 18px;
}

.footer-mini a {
    color: #C6C6C6;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

.footer-mini a:hover {
    color: white;
}

.social {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(10, 12, 17, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: white;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-title {
        text-align: left;
    }

    .newsletter-form {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

@media (max-width: 720px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 28px;
    }

    .search-row {
        flex-direction: column;
    }

    .btn-report {
        width: 520px;
        max-width: 100%;
        justify-content: center;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .report-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .dropdown-pill {
        width: 100%;
        justify-content: space-between;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================
   EXACT MOBILE DESIGN (RichReview)
   Matches your provided mobile screenshot
========================================= */

@media (max-width: 520px) {
    .container {
        width: calc(100% - 10px);
    }

    /* NAVBAR */
    .nav {
        height: 64px;
        background: rgba(10, 12, 17, 0.55);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-inner {
        gap: 10px;
    }

    .brand {
        font-size: 16px;
    }

    /* Hide desktop menu links */
    .nav-links {
        display: none;
    }

    /* Keep only Log In + Sign Up on right */
    .nav-actions {
        gap: 8px;
    }

    .btn-primary {
        padding: 9px 14px;
        border-radius: 10px;
        font-size: 12px;
    }

    .nav-login {
        font-size: 12px;
    }

    /* HERO */
    .hero {
        padding: 18px 0 10px;
    }

    .hero-title {
        font-size: 25px;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 12px;
        margin: 8px 0 14px;
    }

    /* Search input full width */
    .search-row {
        flex-direction: column;
        gap: 12px;
    }

    .search-input {
        width: 100%;
        height: 52px;
        border-radius: 12px;
    }

    .search-input input {
        font-size: 13px;
        height: 56px;
    }

    /* Report button full width below input */
    .btn-report {
        width: 100%;
        height: 52px;
        justify-content: center;
        border-radius: 12px;
        font-size: 16px;
    }

    /* Google / Trustpilot buttons */
    .source-row {
        margin-top: 12px;
        gap: 12px;
    }

    .source-btn {
        height: 36px;
        padding: 0 12px;
        font-size: 12px;
        border-radius: 10px;
    }

    /* REPORT HEADER */
    .report-head {
        margin-top: 14px;
        flex-direction: row;
        align-items: center;
    }

    .section-title {
        font-size: 14px;
    }

    .dropdown-pill {
        height: 34px;
        font-size: 12px;
        border-radius: 12px;
        padding: 0 12px;
    }

    /* STATS -> single column (exact) */
    .stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 14px 14px;
        border-radius: 14px;
    }

    .stat-label {
        font-size: 12px;
    }

    .stat-value {
        font-size: 15px;
    }

    /* MAIN CARDS spacing */
    .card-main {
        padding: 14px 14px;
        border-radius: 16px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-text {
        font-size: 14px;
        line-height: 1.55;
    }

    /* CATEGORY SIGNALS: tighter rows */
    .signal-row {
        padding: 12px 12px;
        border-radius: 12px;
        align-items: center;
    }

    .signal-name {
        font-size: 12.5px;
    }

    .signal-desc {
        font-size: 13.5px;
        line-height: 1.35;
    }

    .chip {
        font-size: 10px;
        padding: 5px 9px;
    }

    /* Bottom section becomes stacked */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bullets {
        font-size: 14px;
        line-height: 1.55;
    }

    /* FOOTER: Mobile exact layout */
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .footer-links {
        gap: 18px;
        flex-wrap: wrap;
    }

    .newsletter {
        width: 100%;
    }

    .newsletter-title {
        text-align: left;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .newsletter-form {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .mail-input {
        width: 100%;
        height: 44px;
        border-radius: 12px;
    }

    .btn-submit {
        height: 44px;
        border-radius: 12px;
        padding: 0 16px;
        white-space: nowrap;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .footer-mini {
        justify-content: center;
    }

    .social {
        justify-content: center;
    }
}

@media (max-width: 720px) {
    .search-row {
        flex-direction: column;
        gap: 12px;
    }

    .search-input {
        width: 100%;
        max-width: 100%;
        height: 56px;
    }

    .btn-report {
        width: 100%;
        height: 56px;
    }
}

.dropdown-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropdown-pill-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    height: 42px;
    min-width: 220px;

    padding: 0 44px 0 16px;
    border-radius: 14px;

    background: rgb(24, 24, 24);
    border: 1px solid rgba(66, 66, 66, 0.911);

    color: rgba(233, 238, 248, 0.90);
    font-size: 15px;
    font-weight: 400;

    outline: none;
    cursor: pointer;
}

.dropdown-pill-select:focus {
    border-color: rgba(0, 255, 255, 0.35);
    box-shadow: 0 0 0 2px rgba(0, 231, 197, 0.10);
}

.dropdown-icon {
    position: absolute;
    right: 14px;
    pointer-events: none;
    color: rgba(233, 238, 248, 0.65);
    font-size: 14px;
}

/* HAMBURGER */
.hamburger{
  display:none;
  width:36px;
  height:36px;
  border:none;
  background:transparent;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  cursor:pointer;
}

.hamburger span:nth-child(2){
  width: 70%;
  align-self: start; /* keeps it centered */
}
.hamburger span{
  height:2px;
  width:22px;
  background:#fff;
  border-radius:2px;
  transition:0.25s ease;
}

.hamburger.active span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2){
  opacity:0;
}
.hamburger.active span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu{
  position:fixed;
  top:0;
  left:0;
  right:0;
  background:rgba(10,12,17,0.96);
  backdrop-filter:blur(10px);
  display:flex;
  flex-direction:column;
  gap:15px;
  padding:22px;
  transform:translateY(-120%);
  transition:0.35s ease;
  z-index:9;
}

.mobile-menu.open{
  transform:translateY(0);
}

.mobile-menu a{
  color:#8d8d8d;
  text-decoration:none;
  font-size:16px;
  font-weight:600;
}

.mobile-menu a:hover{
  color:#fff;
}

a.active {
  color:#fff;
}

.mobile-signup{
  background:linear-gradient(180deg,#12d3ff,#0aa7ff);
  color:#04111a!important;
  padding:10px 14px;
  border-radius:10px;
  width:max-content;
}

/* Show only on mobile */
@media(max-width:768px){
  .hamburger{display:flex;}
  .nav-links{display:none;}
}

/*  */

.autocomplete{
  position:absolute;
  top:100%;
  left:0;
  right:0;
  background:#0e1117;
  border:1px solid rgba(0,255,255,0.18);
  border-radius:14px;
  margin-top:8px;
  overflow:hidden;
  display:none;
  z-index:5;
}

.auto-item{
  padding:12px 16px;
  cursor:pointer;
  font-size:14px;
  color:rgba(233,238,248,0.85);
}

.auto-item:hover{
  background:rgba(0,231,197,0.12);
}


.fade-up{
  opacity:0;
  transform:translateY(20px);
  transition:0.6s ease;
}

.fade-up.show{
  opacity:1;
  transform:none;
}

/* Base animation state */
.reveal {
  opacity: 0;
  transition: 
    transform 2s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1s ease;
  will-change: transform, opacity;
}

/* When visible */
.reveal.show {
  opacity: 1;
  transform: none;
}
.reveal-up {
  transform: translateY(60px);
}
.reveal-down {
  transform: translateY(-60px);
}
.reveal-left {
  transform: translateX(-80px);
}
.reveal-right {
  transform: translateX(80px);
}
.reveal-zoom {
  transform: scale(0.9);
}
.reveal-blur {
  transform: translateY(40px);
  filter: blur(10px);
}

.reveal-blur.show {
  filter: blur(0);
}

.parallax {
  transform: translateY(0);
  transition: transform 0.2s linear;
  will-change: transform;
}
/* .hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 600px;
  background: radial-gradient(circle, rgba(90, 203, 255, 0.123) 0%, transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
} */

/* .truth-right::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgb(243 123 25 / 13%) 0%, transparent 70%);
  top: -150px;
  left: 80%;
  transform: translateX(-50%);
  animation: floatGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
} */
@keyframes floatGlow {
  0%,100% { transform: translateX(-50%) translateY(0px); }
  50% { transform: translateX(-50%) translateY(20px); }
}
.split-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1s cubic-bezier(0.16,1,0.3,1);
}

.split-right {
  opacity: 0;
  transform: translateX(80px);
  transition: all 1s cubic-bezier(0.16,1,0.3,1);
}

.split-left.show,
.split-right.show {
  opacity: 1;
  transform: none;
}
.btn-primary {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  /* box-shadow: 0 15px 35px rgba(111,90,255,0.4); */
}
/* Button hover micro interaction */
.btn:hover{
  transform:translateY(-2px);
}

/* ===============================
   PROCESS FLOW (EXACT DESIGN)
================================ */

.process-flow{
  position: relative;
  margin: 40px 0 40px;
}

.process-track{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,140,0,0.6),
    transparent
  );
  filter: blur(1px);
}

.process-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.process-card{
  position: relative;
  background: radial-gradient(
    circle at top,
    rgba(255,140,0,0.08),
    rgba(20,22,30,0.95)
  );
  border-radius: 18px;
  padding: 44px 24px 28px;
  text-align: center;
  border: 1px solid rgb(75 59 42 / 59%);
  box-shadow: 0 0 40px rgb(255 140 0 / 20%), inset 0 0 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.step-dot{
  position: absolute;
  top: 30px;
  left: 57%;
  transform: translateX(-50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(90deg, #fe9d01 51%, rgb(237 87 1) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon{
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(255,140,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.process-card h3{
  margin: 10px 0 8px;
  font-size: 16px;
  letter-spacing: 0.6px;
  font-weight: 700;
}

.process-card p{
  font-size: 14px;
  line-height: 1.55;
  color: #DBDBDB;
  font-weight: 400;
}

/* ===== MOBILE STACK ===== */
@media(max-width: 900px){
  .process-track{
      transform: rotate(90deg);
      flex-direction: column;
      align-items: center;
  }

  .process-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .step-dot{
    top: 35px;
    transform: none;
    left: 190px;
  }

  .process-card{
    text-align: center;
  }

}
/* loader CSS */

/* ===============================
   LOADING STATE (Exact Match)
================================ */

.loading-overlay{
  position: fixed;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,10,14,0.92),
    rgba(5,7,10,0.98)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading-box{
  text-align: center;
  color: white;
}

/* Circular Loader */


/* =========================
   AI DOTS CIRCLE LOADER
========================= */

.ai-dots-loader{
  position:relative;
  width:200px;
  height:200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ---------- dotted gradient ring ---------- */

.dots-ring{
  position:absolute;
  inset:0;
  border-radius:50%;

  background:
    radial-gradient(circle, #03b7ff 2px, transparent 3px) 0 0/20px 20px,
    radial-gradient(circle, #57c785 2px, transparent 3px) 10px 10px/20px 20px;

  opacity:.70;
  animation:rotateRing 8s linear infinite;
}

/* ---------- center AI circle ---------- */

.ai-core{
  width:100px;
  height:100px;
  border-radius:50%;
  background-color: #000000;
  /* background:linear-gradient(135deg,#03b7ff,#57c785); */
  display:flex;
  align-items:center;
  justify-content:center;

  font-weight:800;
  font-size:20px;
  color:#fff;

  /* box-shadow:
    0 0 25px rgba(3,183,255,.6),
    0 0 60px rgba(3,183,255,.35); */

  animation:pulseCore 1.6s ease-in-out infinite;
}

/* ---------- floating icons ---------- */

.float-icon{
  position:absolute;
  width:32px;
  height:32px;
  background:#141823;
  border-radius:50%;
  padding:6px;
  box-shadow:0 0 12px rgba(0,0,0,.6);
  animation:pulseCore 1.6s ease-in-out infinite;
}

.google-icon{
  animation:orbitGoogle 6s linear infinite;
}

.trust-icon{
  animation:orbitTrust 6s linear infinite;
}

.loading-text{
  font-size:14px;
  font-weight:600;
  color: white;
  transition: opacity .35s ease, transform .35s ease;
}

.loading-text.switch{
  opacity:0;
  transform:translateY(6px);
}

/* ---------- text ---------- */

.ai-text{
  position:absolute;
  bottom:-40px;
  font-size:14px;
  font-weight:400;
  color:white;
}

/* ================= animations ================= */

@keyframes rotateRing{
  from{transform:rotate(0)}
  to{transform:rotate(360deg)}
}

@keyframes pulseCore{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.12)}
}

@keyframes orbitGoogle{
  0%{transform:rotate(0deg) translateX(85px) rotate(0deg)}
  100%{transform:rotate(360deg) translateX(85px) rotate(-360deg)}
}

@keyframes orbitTrust{
  0%{transform:rotate(180deg) translateX(85px) rotate(-180deg)}
  100%{transform:rotate(540deg) translateX(85px) rotate(-540deg)}
}

/* position icons left/right of AI */
/* .google-icon{
  left:-6px;
  top:50%;
  transform:translateY(-50%);
  animation:bounceLeft 1.6s ease-in-out infinite;
}

.trust-icon{
  right:-6px;
  top:50%;
  transform:translateY(-50%);
  animation:bounceRight 1.6s ease-in-out infinite;
  animation-delay:.25s;
} */


/* ===== bounce effects ===== */

@keyframes bounceLeft{
  0%,100%{
    transform:translateY(-50%) scale(1);
    opacity:.8;
  }
  50%{
    transform:translateY(-50%) translateX(-12px) scale(1.18);
    opacity:1;
  }
}

@keyframes bounceRight{
  0%,100%{
    transform:translateY(-50%) scale(1);
    opacity:.8;
  }
  50%{
    transform:translateY(-50%) translateX(12px) scale(1.18);
    opacity:1;
  }
}

.float-icon{
  box-shadow:0 0 18px rgba(3,183,255,.35);
  transition:.3s;
}

.loading-text{
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 14px;
  color: white;
}

/* Source Pills */
.loading-sources{
  display: flex;
  gap: 10px;
  justify-content: center;
}

.loading-source{
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgb(255, 255, 255);
}

.loading-source.google{
  border-color: rgba(0,231,197,0.35);
  box-shadow: 0 0 0 2px rgba(0,231,197,0.08);
}

.loading-source .g{
  font-weight: 900;
  font-size: 14px;
}

.loading-source.trust{
  opacity: 0.55;
}

.hidden{
  display: none !important; 
}

.no-scroll{
  overflow:hidden;
  height:100vh;
}

.loading-text{
  transition: opacity .35s ease, transform .35s ease;
}

.loading-text.switch{
  opacity:0;
  transform:translateY(6px);
}

/* ================= SIGN UP MODAL ================= */

.signup-overlay{
  position: fixed;
  inset: 0;
  background: #4F4F4F99;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.signup-modal{
  background: #0F0F14;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 30px;
  width: min(1100px, 95%);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  position: relative;
  padding: 35px;
}


/* LEFT */
.signup-left{
  padding: 30px 20px;
  align-content: center;
}

.signup-left .pill{
  font-size: 12px;
  letter-spacing: 1px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  color: #03b7ff;
}

span.pill.text-gradient{
  font-size: 12px;
  letter-spacing: 1px;
  padding: 5px 10px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 20px;
  color: #03b7ff;
}
.signup-left h2{
  font-size: 38px;
  margin: 18px 0;
  font-weight: 800;
}
.signin{
  font-size: 55px !important;
}
.signin-contact{
  font-size: 50px !important;
  font-weight: 700 !important;
}
@media (max-width: 520px){
  .signin-contact{
    font-size: 20px !important;
    font-weight: 700 !important;
  }
  .text-lower{
    font-size: 12px !important;
  }
}
.text-lower{
    color: white;
    font-weight: 200;
    font-size: 14px;
}
.signup-left .accent{
  color: #03b7ff;
}

.input-wrap {
  position: relative;
  width: 100%;
}

.form-input {
  width: 100%;
  padding-right: 40px; /* space for tick */
}

/* .valid-tick {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #22c55e;
  font-size: 16px;
  display: none;
}

.input-valid .valid-tick {
  display: block;
} */

.search-input {
  position: relative;
}

.valid-tick {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  font-size: 18px;
  color: #22c55e;
  opacity: 0;
  transition: all 0.25s ease;
  pointer-events: none;
}

.search-input.valid .valid-tick {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
/* ================= PLANS (EXACT MATCH) ================= */

.plans{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0px;
  margin-top:30px;
}

/* base card */
.plan{
  padding:28px 26px;
  min-height:200px;

  display:flex;
  flex-direction:column;
  justify-content:flex-start;

  font-size:14px;
  line-height:1.6;
}

/* title */
.plan h6{
  font-weight:800;
  letter-spacing:1.4px;
  font-size:15px;
  margin-bottom:18px;
}

/* list */
.plan ul{
  list-style:none;
  padding:0;
  margin:0;
}

.plan li{
  position:relative;
  margin-bottom:7px;
  color:#dbe3f2;
  font-size: 12px;
}

/* check icon */
/* .plan li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:1px;
  font-weight:700;
  color:#ff9f1c;
} */
.plan-note{
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
}
/* ================= LEFT (FREE) ================= */
.free{
    border-radius: 15px 0px 0px 15px;
}

.pro{
    border-radius: 0px 15px 15px 0px;
}
.plan.free{
  background:
    linear-gradient(180deg,#1e1e1e,#0f131b);
  border:1px solid rgba(255,255,255,.08);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 0 20px rgba(0,0,0,.6);
}

/* ================= RIGHT (PRO) ================= */

.plan.pro{
  background: linear-gradient(135deg,#fe9d01,#ed5701);
  color:#fff;
  box-shadow:
    0 0 40px rgba(255,120,0,.45);
}

/* white text for pro */
.plan.pro li{
  color:#fff;
}

.plan.pro li::before{
  color:#fff;
}
.modal-close{
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 20px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

/* ================= MOBILE ================= */

@media(max-width:900px){
  .plans{
    grid-template-columns:1fr;
  }
  .modal-close{
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 22px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 10;
  }
}


/* RIGHT */
.signup-right{
  padding: 40px;
  border-radius: 28px;
  background-color: #FFFFFF0A;
  border: 1px solid rgb(133 89 255 / 19%);
}

.signup-right h3 span{
  color:#ff9800;
  /* font-size: 20px; */
  font-weight: 600;
}

.signup-right label{
  display:block;
  margin-top: 14px;
  font-size: 14px;
  margin-bottom: 8px;
}
.bold-800{
  font-weight: 800;
}
.signup-right input{
  width:100%;
  padding:12px;
  border-radius:12px;
  background:#141823;
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
}
.signup-right input:focus{
  background:#141823 !important;
  color:#fff !important;
}

/* LEFT PANEL TYPOGRAPHY */

.signup-heading{
  font-size:42px;
  font-weight:800;
  margin:20px 0;
}

.signup-sub{
  font-size:15px;
  color:#cfd6e6;
  margin-bottom:30px;
}

/* GRID */
.pricing-grid-exact{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

/* CARD BASE */
.pricing-card-exact{
  position:relative;
  padding: 20px;
  border-radius:26px;
  background:
    radial-gradient(circle at top right, rgba(255,140,0,.18), transparent 55%),
    linear-gradient(180deg,#1a1d23,#0e1118);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 0 60px rgba(0,0,0,.6);
}

/* ACCESS / CREDITS VARIATION */
.access-card{
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg,#1a1d23,#0e1118);
}

.credits-card{
  background:
    radial-gradient(circle at top right, rgba(255,140,0,.28), transparent 55%),
    linear-gradient(180deg,#1a1d23,#0e1118);
}

@media (max-width: 520px){
  .credits-card{
     background:
      radial-gradient(circle at top left, rgba(255,255,255,.06), transparent 55%),
      linear-gradient(180deg,#1a1d23,#0e1118);
  }
}
/* BADGE */
.badge{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.6px;
  margin-bottom:22px;
}

.badge.access{
  background:#ffffff;
  color:#ff8a00;
}

.badge.credits{
  background:#e6f8ff;
  color:#00b7ff;
}

/* PRICE */
.price-row{
  display:flex;
  align-items:baseline;
  gap:6px;
  margin-bottom:5px;
}

.price-main{
  font-size:44px;
  font-weight:900;
  color:#ffffff;
  font-family: inter;
  letter-spacing: 2.4px;
}

.price-suffix{
  font-size:14px;
  color:#DBDBDB;
}

/* FEATURES */
.features{
  list-style:none;
  padding:0;
  margin:0;
}

.features li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:14px;
  font-size:14px;
  line-height:1.55;
  color:white;
}

.plus{
  color:#22d3ee;
  font-weight:900;
  font-size:16px;
  line-height:1;
  margin-top:1px;
}

/* MOBILE */
@media(max-width:900px){
  .pricing-grid-exact{
    grid-template-columns:1fr;
  }
}


.checkbox{
  margin:16px 0;
  font-size:13px;
}

.btn-primary.full{
  width:100%;
  margin-top:10px;
  padding: 12px;
  border: 0px;
  border-radius: 10px;
}

.or{
  text-align:center;
  margin:10px 0;
  opacity:.5;
}

.btn-google{
  width:100%;
  padding:12px;
  border-radius:12px;
  background:#FFFFFF0A;
  color:#fff;
  border:1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap:10px;
}

.login-link{
  margin-top:24px;
  font-size:13px;
  text-align:center;
}

.hidden{ display:none }

.mobile-hero-only{
  display:none;
}
/* MOBILE */
@media(max-width:900px){
  .signup-modal{
    grid-template-columns: 1fr;
  }
.signup-left{
  display:none;
}
  .signup-right{
    padding: 15px;
    overflow-y: scroll;
    max-height: 92vh;
  }
  .signup-modal{
    padding: 10px;
  }
  .mobile-hero-only{
    display: block;
  }
}

/* collapsed by default */
.collapsible-text{
  max-height: 140px;
  overflow: hidden;
  position: relative;
  transition: .3s ease;
}

/* expanded */
.collapsible-text.expanded{
  max-height: 100%;
}

/* fade effect */
.collapsible-text::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:20px;
  background: linear-gradient(to bottom, transparent, #0b0e14);
}

/* remove fade when expanded */
.collapsible-text.expanded::after{
  display:none;
}

/* view more link */
.view-more{
  color:#03b7ff;
  font-weight:600;
  cursor:pointer;
  display:inline-block;
  margin-bottom:12px;
  text-decoration:none;
}

.text-gradient {
  background: linear-gradient(90deg, #00AEFF 0%, #00B2D6 50%, #00C0AD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.text-formatted {
  background: linear-gradient(90deg, rgba(3, 183, 255, 1) 51%, rgb(26 219 219) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
  text-decoration: auto;
}

.try-text{
    color: #fe9d01;
    padding-left: 6em;
}
.text-small-with{
    font-size: 14px;
    font-weight: 200;
    color: white;
}
.title-style{
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    margin-top: 10px;
}
.accent-left{
    color: #03b7ff;
}
@media (max-width: 520px){
  .try-text{
    display: none;
  }
  .signup-right h3 span{
    font-size: 16px;
  }
  .free{
    border-radius: 15px 15px 0px 0px;
  }
  .pro{
    border-radius: 0px 0px 15px 15px;
  }
}
.text-orange-gradient{
  background: linear-gradient(90deg,#fe9d01,#ed5701);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow: 0 0 12px rgba(254,157,1,.25);
}
.fw-600{
  font-weight:600;
}

/* New section  */

/* ===============================
   EXACT CUSTOMER TRUTH DESIGN
================================ */

.truth-wrapper{
  padding: 20px 0;
}

.truth-box-main{
  position: relative;
  padding: 30px;
  border-radius: 22px;

  background:
  radial-gradient(circle at top right, rgba(255,140,0,.12), transparent 60%),
  radial-gradient(circle at bottom left, rgba(3,183,255,.12), transparent 60%),
  rgba(15,18,24,.9);

  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 30px;
  min-height: 380px;
}

/* LEFT */

.truth-title{
  font-size: 32px;
  font-weight: 700;
  color: #03b7ff;
  margin-bottom: 10px;
}

.truth-subtitle{
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: 1px;
}

.truth-desc{
  font-size: 14px;
  line-height: 1.8;
  color: white;
  margin-bottom: 26px;
  letter-spacing: 1px;
}

.truth-points{
  list-style: none;
  padding: 0;
  margin: 0;
}

.truth-points li{
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 1px;

}

.truth-points li::before{
  content: "▪";
  position: absolute;
  left: 0;
  top: 0;
  color: white;
  font-size: 12px;
}

.truth-left{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* RIGHT CARDS */
.truth-right{
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: auto;
  justify-content: center;
}

.truth-card{
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(255, 140, 0, .06);
  border: 1px solid rgb(255 140 0 / 54%);
  background: linear-gradient(145deg, rgb(99 54 0 / 18%), rgba(255, 140, 0, .06));
  box-shadow: 0 12px 45px rgba(0, 0, 0, .7), 0 0 50px rgb(149 117 79 / 30%);
  width: 100%;
}

@media (max-width: 520px) {
  .truth-card{
    padding: 10px 12px;
  }
}

.truth-card-top{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #C6C6C6;
}

.truth-icon{
  width: 33px;
  height: 33px;
  border-radius: 36%;
  background: rgb(213 162 100 / 7%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cccccc36;
  padding: 6px;
}

.truth-icon img{
  width: 18px;
  height: 18px;
}

/* Border animation */
@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.truth-value{
  margin-top: 0px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

/* DOTS */

.truth-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
}

.dot.active{
  width: 22px;
  border-radius: 20px;
  background: #ffffff;
}

/* MOBILE */
.truth-right img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

@media(max-width: 900px){
  .truth-box-main{
    grid-template-columns: 1fr;
    padding: 20px 15px;
    gap: 20px;
  }

  .truth-title{
    font-size: 26px;
  }

  .truth-subtitle{
    font-size: 16px;
  }
}
@media(max-width: 900px){
  .truth-box-main{
    grid-template-columns: 1fr;
    padding: 20px 15px;
    gap: 20px;
  }

  .truth-title{
    font-size: 26px;
  }

  .truth-subtitle{
    font-size: 16px;
  }

  .truth-right{
    align-items: center;
    width: 100%;
  }

  .truth-right img{
    width: 100%;
    max-width: 320px; /* optional control */
    height: auto;
  }
}
.truth-slider {
  position: relative;
  overflow: hidden;
}

.truth-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.truth-slide {
  min-width: 100%;
  box-sizing: border-box;
}
/* ===============================
   SLIDER ARROWS
================================ */

.truth-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(15,18,24,.7);
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(6px);
  transition: all .3s ease;
}

.truth-arrow:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
}

.truth-arrow-left {
  left: 15px;
}

.truth-arrow-right {
  right: 15px;
}

/* Hide arrows on small mobile if needed */
@media(max-width: 600px){
  .truth-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

.truth-slide {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
}

.truth-slide > .truth-box-main {
  width: 100%;
}
@media(max-width: 900px){
  .truth-right img{
    max-height: 240px;
    object-fit: contain;
  }
}
@media(max-width: 900px){
  .truth-box-main{
    min-height: 520px;
  }
}

/* mee the team */
/* ===============================
   MEET THE TEAM
================================ */

.team-section{
  margin: 70px 0 40px;
}

.team-title{
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 34px;
  letter-spacing: -0.6px;
}

.team-list{
  display: flex;
  flex-direction: column;
  gap: 42px;
}

/* individual member */
.team-member{
  display: flex;
  gap: 28px;
  align-items: center;
}

/* photo */
.team-photo{
  width: 200px;
  height: 200px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  background: #0e1118;
}

.team-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

/* info */
.team-info{
  max-width: 100%;
}

.team-name{
  font-size: 18px;
  font-weight: 800;
  color: #03b7ff;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* linkedin badge */
.linkedin{
  width: 26px;
  height: 26px;
  background: #0e1118;
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #03b7ff;
  font-size: 12px;
}

.team-role{
  margin-top: 4px;
  font-size: 16px;
  font-weight: 400;
  color: white;
}

.team-desc{
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.65;
  color: white;
  font-weight: 400;
}

/* MOBILE */
@media(max-width: 720px){
  .team-member{
    flex-direction: column;
    gap: 18px;
    align-items: start;
  }

  .team-photo{
    width: 150px;
    height: 150px;
  }

  .team-title{
    font-size: 26px;
  }
}

.source-btn{
  cursor:pointer;
  user-select:none;
}

.source-btn input{
  display:none;
}

/* Auto complete style */

.search-input{
  position: relative;
}

/* AUTOCOMPLETE DROPDOWN */
.autocomplete{
  position:absolute;
  top:110%;
  left:0;
  right:0;
  background: linear-gradient(135deg, rgb(20 28 36 / 19%), rgb(14 18 26));
  border-radius:14px;
  border:1px solid rgb(228 228 228 / 32%);
  box-shadow: 0 20px 40px rgba(0,0,0,.6);
  backdrop-filter: blur(10px);
  overflow:hidden;
  display:none;
  z-index:20;
}

/* Suggestion item */
.auto-card{
  padding:16px 18px;
  cursor:pointer;
  transition:.25s ease;
  border-bottom:1px solid rgb(228 228 228 / 32%);
}

.auto-card:last-child{
  border-bottom:none;
}

.auto-card:hover{
  background:rgba(255,255,255,.05);
}

/* Top row */
.auto-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.auto-title{
  font-weight:700;
  font-size:15px;
  color:#fff;
}

.auto-rating{
  display:flex;
  align-items:center;
  gap:6px;
  font-weight:600;
  font-size:14px;
  color:#19b7ff;
}

.auto-rating span{
  color:#19b7ff;
}

/* Bottom row */
.auto-location{
  margin-top:6px;
  font-size:13px;
  color:rgb(255, 255, 255);
  display:flex;
  align-items:center;
  gap:6px;
  font-weight: 400;
}
/* =============================== */

/* MAIN GLASS CARD */
.mini-report-glass {
  background:
    radial-gradient(circle at top right, rgba(255,140,0,.12), transparent 60%),
    radial-gradient(circle at bottom left, rgba(3,183,255,.12), transparent 60%),
    rgba(15,18,24,.9);

  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow:
    0 0 60px rgba(0,0,0,.6),
    0 0 20px rgba(255,140,0,.1);

  font-size: 12px;
  color: #fff;
  max-height: 340px;
  display: flex;
  flex-direction: column;
}

/* TOP STAT PILLS */
.mini-top-stats {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.border-pill {
  border: 1px solid #ffffff36;
  padding: 6px 15px;
  border-radius: 30px;
}
.mini-pill-card {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border-radius: 12px;

  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.mini-pill-card img {
  width: 14px;
  height: 14px;
}

.mini-small {
  font-size: 9px;
  opacity: .6;
}

.mini-strong {
  font-size: 12px;
  font-weight: 600;
}

.accent {
  color: #03b7ff;
}

/* SCROLL AREA */
.mini-scroll {
  overflow-y: auto;
  padding-right: 4px;
}

/* CUSTOM SCROLLBAR */
.mini-scroll::-webkit-scrollbar {
  width: 4px;
}
.mini-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.2);
  border-radius: 10px;
}

/* INNER CARDS */
.mini-card-glass {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.mini-card-title {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #ff8c00;
}

/* SIGNAL */
.mini-signal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.mini-signal-name {
  font-size: 11px;
  font-weight: 600;
}

.mini-signal-desc {
  font-size: 9px;
  opacity: .6;
}

/* CHIPS */
.chip {
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.chip-warn {
  background: #F9731633;
  color: #ff8c00;
}

.chip-danger {
  background: #FF000033;
  color: #FF0000;
}
/* =============================== */

/* VERIFY MODAL */
.verify-modal{
  position:relative;
  width:420px;
  max-width:90%;
  padding:36px;
  border-radius:24px;

  background:
    radial-gradient(circle at top right, rgba(255,140,0,.18), transparent 60%),
    linear-gradient(180deg,#141823,#0b0e14);

  border: 1px solid rgb(133 89 255 / 19%);
  box-shadow: 0 0 40px rgb(133 89 255 / 7%), inset 0 0 40px rgba(0, 0, 0, .6);
}

.verify-title{
  font-size:20px;
  font-weight:700;
  margin-bottom:10px;
}

.verify-sub{
  font-size:13px;
  color:rgba(255,255,255,.65);
  margin-bottom:6px;
}

.verify-email{
  font-size:13px;
  color:rgba(255,255,255,.75);
  margin-bottom:20px;
}

.verify-label{
  display:block;
  margin-bottom:10px;
  font-size:13px;
  color:#fff;
}

.code-inputs{
  display:flex;
  gap:14px;
  margin-bottom:24px;
}

.code-inputs input{
  width:60px;
  height:56px;
  border-radius:14px;
  text-align:center;
  font-size:22px;
  font-weight:700;
  background:#141823;
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
  outline:none;
  transition:.2s;
}

.code-inputs input:focus{
  border-color:#03b7ff;
  box-shadow:0 0 12px rgba(3,183,255,.4);
}

.resend-text{
  margin-top:18px;
  text-align:center;
  font-size:13px;
  color:rgba(255,255,255,.6);
}

.resend-text a{
  color:#03b7ff;
  text-decoration:none;
  font-weight:600;
}

/* ===============================
   RESET PASSWORD MODAL
================================ */

.reset-modal{
  position:relative;
  width:420px;
  max-width:92%;
  padding:38px;
  border-radius:26px;

  background:
    radial-gradient(circle at top right, rgba(255,140,0,.15), transparent 60%),
    linear-gradient(180deg,#141823,#0b0e14);

  border: 1px solid rgb(133 89 255 / 19%);
  box-shadow: 0 0 40px rgb(133 89 255 / 7%), inset 0 0 40px rgba(0, 0, 0, .6);
}

.reset-title{
  font-size:22px;
  font-weight:700;
  margin-bottom:8px;
  color:#fff;
}

.reset-sub{
  font-size:14px;
  color:rgba(255,255,255,.6);
  margin-bottom:26px;
}

.reset-modal label{
  font-size:13px;
  margin-bottom:8px;
  display:block;
  color:#fff;
}

.reset-modal input{
  width:100%;
  height:56px;
  padding:0 16px;
  border-radius:16px;
  background:#141823;
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
  margin-bottom:26px;
  outline:none;
  transition:.2s ease;
}

.reset-modal input:focus{
  border-color:#03b7ff;
  box-shadow:0 0 14px rgba(3,183,255,.35);
}


/* =============================== */
/* =========================
   DRAWER OVERLAY
========================= */
.app-drawer {
  overscroll-behavior: contain;
}

body.no-scroll{
  overflow: hidden !important;
  height: 100vh;
  touch-action: none;
}

.drawer-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(6px);
  opacity:0;
  visibility:hidden;
  transition:.3s ease;
  z-index:998;
}

.drawer-overlay.active{
  opacity:1;
  visibility:visible;
}

/* ===== Drawer ===== */
.app-drawer{
  position:fixed;
  top:0;
  right:0;
  width:400px;
  max-width:100%;
  height:100dvh;
  background:#0b0f16;
  border-left:1px solid rgba(255,255,255,.08);
  padding:20px;
  overflow-y:auto;
  overscroll-behavior:contain;
  -webkit-overflow-scrolling:touch;

  transform:translateX(100%);
  transition:transform .35s cubic-bezier(.22,1,.36,1);
  z-index:999;
}

.app-drawer.active{
  transform:translateX(0);
}

/* MOBILE */
@media (max-width:768px){
  .app-drawer{
    width:100%;
    max-width:100%;
    right:0;
    left:auto;
    border-left:none;
  }
}

/* ===== Header ===== */
.drawer-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  margin-bottom:20px;
}
.drawer-close{
  background:transparent;
  border:none;
  color:#fff;
  font-size:18px;
  cursor:pointer;
}
.drawer-user{
  display:flex;
  gap:14px;
}

.drawer-avatar{
  width:60px;
  height:60px;
  border-radius:50%;
  object-fit:cover;
}

.drawer-name{
  font-weight:600;
  font-size:18px;
}

.drawer-email{
  font-size:13px;
  opacity:.6;
  margin-bottom:6px;
}

.plan-badge{
  padding:3px 10px;
  border-radius:20px;
  font-size:11px;
  font-weight:600;
}

.plan-badge.credits{
  /* background:#0d1f2a; */
  border:1px solid #03b7ff;
  color:#03b7ff;
}

.plan-badge.access{
  /* background:#0d1f2a; */
  border:1px solid #ff8a00;
  color:#ff8a00;
}

/* ===== Cards ===== */
.drawer-card{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  padding:16px;
  border-radius:16px;
  margin-bottom:18px;
}

.gradient-card{
  background:linear-gradient(90deg,#1c1108,#1c1108);
  border:1px solid rgba(255,140,0,.4);
}

.card-title{
  font-size:14px;
  margin-bottom:0px;
  letter-spacing:1px;
}

/* Inputs */
.drawer-card input{
  width:100%;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  padding:12px;
  border-radius:12px;
  color:#fff;
  margin-bottom:12px;
}

/* Credit Bar */
.credit-bar{
  height:6px;
  background:rgba(255,255,255,.1);
  border-radius:20px;
  margin:10px 0;
}

.credit-progress{
  width:25%;
  height:100%;
  background:linear-gradient(90deg,#ff9d00,#ff5f00);
  border-radius:20px;
}

/* Slider */
.slider-wrapper input{
  width:100%;
  appearance:none;
  height:4px;
  background:#222;
  border-radius:20px;
  margin-top: 10px;
}

.slider-wrapper input::-webkit-slider-thumb{
  appearance:none;
  width:16px;
  height:16px;
  background:#ff9d00;
  border-radius:50%;
  cursor:pointer;
}

/* Credit options */
.credit-options{
  display:flex;
  gap:10px;
  margin:12px 0;
}

.credit-options button{
  flex:1;
  padding:8px;
  background:transparent;
  border:1px solid rgba(255,255,255,.15);
  border-radius:20px;
  color:#fff;
  font-size:12px;
}

.credit-options button.active{
  border-color:#03b7ff;
  color:#03b7ff;
}

/* Buttons */
.btn-outline{
  background:transparent;
  border:1px solid rgba(255, 255, 255, 0.874);
  padding:10px;
  border-radius:12px;
  color:#fff;
  width: 100%;
}

.logout-btn{
  width:100%;
  margin-top:10px;
  padding:12px;
  border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
}

/* =========================
   MOBILE RESPONSIVE DRAWER
========================= */

@media (max-width: 768px){

  .app-drawer{
    width:100%;
    max-width:100%;
    right:0;
    left:0;              /* important */
    transform:translateX(100%);
  }

  .drawer-header{
    align-items:center;
  }

  .drawer-avatar{
    width:48px;
    height:48px;
  }

  .drawer-name{
    font-size:16px;
  }

  .drawer-email{
    font-size:12px;
  }

  .drawer-card{
    padding:14px;
    border-radius:14px;
  }

  .credit-options{
    flex-wrap:wrap;
  }

  .credit-options button{
    flex:1 1 30%;
  }

}
@media (max-width:768px){

  .app-drawer{
    width:100%;
    max-width:100%;
    right:0;
    left:0;              /* important */
    transform:translateX(100%);
  }

  .app-drawer.active{
    transform:translateX(0);
  }

}
/* ================================
   UNLOCK POPUP
================================ */

.unlock-overlay{
  position:fixed;
  inset:0;
  background:#000000b8;
  /* backdrop-filter:blur(4px); */
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:200;
  max-height: 350px;
  top: 70px;
}

.unlock-modal{
  max-width:92%;
  padding:32px;
  border-radius:22px;
  text-align:center;
  background:#181818d6;
  backdrop-filter:blur(36px);
  /* background:
    radial-gradient(circle at top left, rgba(3, 183, 255, .15), transparent 60%), radial-gradient(circle at bottom right, rgba(255, 140, 0, .15), transparent 60%), linear-gradient(180deg, #0b0e1400, #0b0e14); */
  border:1px solid #FFFFFF1A;
  animation:popupIn .35s ease;
}
.plain-orange{
  color: #FFA100;
}
@keyframes popupIn{
  from{
    opacity:0;
    transform:translateY(20px) scale(.96);
  }
  to{
    opacity:1;
    transform:none;
  }
}

.unlock-close{
  position:absolute;
  top:18px;
  right:22px;
  background:none;
  border:none;
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

.unlock-icon{
  margin-bottom:16px;
}

.unlock-icon img{
  width:50px;
  height:auto;
}

.unlock-modal h2{
  font-size:22px;
  font-weight:600;
  line-height:1.4;
  margin-bottom:28px;
  color:#fff;
}

.unlock-btn{
  width:auto;
  height:50px;
  border-radius:7px;
  font-size:18px;
  font-weight: 600;
}

.unlock-note{
  margin-top:14px;
  font-size:14px;
  color:#ff9800;
  font-weight:600;
}
.textcolor-orange{
  color:#ff9800;
}

.hidden{
  display:none !important;
}

/* ================================
   SEARCH HISTORY
================================ */

.history-wrapper{
  padding:0 20px;
}

.history-header{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:10px;
}

.history-header h2{
  font-size:18px;
  color:#03b7ff;
  font-weight:600;
  margin-bottom: 0px;
}

.back-btn{
  background: #8f8f8f29;
  border: 1px solid #8f8f8f29;
  padding:6px 14px;
  border-radius:8px;
  color:#fff;
  font-size:13px;
  cursor:pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.history-note{
  text-align:center;
  color:white;
  font-size:18px;
  margin:15px 0;
  line-height:1.6;
}

/* CARD */

.history-card{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 14px;
  border-radius:16px;
  margin-bottom:18px;
  background: #8f8f8f29;
  border: 1px solid #8f8f8f29;
  transition:.25s ease;
}

.history-card:hover{
  border-color:#ffffff1f;
  box-shadow:0 0 25px rgba(3,183,255,.15);
}

/* LEFT */

.history-left h3{
  margin: 10px 0 6px;
  font-size: 16px;
  font-weight: 700;
}

.history-meta{
  font-size:14px;
  color:#DBDBDB;
  display:flex;
  align-items:center;
  gap:6px;
}

.history-meta img{
  width:20px;
}

.history-date{
  font-size:14px;
  color:#DBDBDB;
  margin-top:4px;
  font-weight: 700;
}

/* STATUS */

.status{
  font-size:12px;
  font-weight:600;
  padding:4px 10px;
  border-radius:20px;
  letter-spacing:1.2px;
}

.status.active{
  background: #FFFFFF0A;
  color:#00ffb3;
  border:1px solid #FFFFFF1A;
}

.status.expired{
  background: #FFFFFF0A;
  color:#ff3b3b;
  border:1px solid #FFFFFF1A;
}

/* RIGHT */

.history-right{
  display:flex;
  flex-direction:column;
  align-items: end;
  gap: 10px;
}

.history-rating{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:13px;
}

.history-rating img{
  width:16px;
}

/* BUTTON */

.history-btn{
  padding:8px 16px;
  border-radius:8px;
  font-size:14px;
  border:1px solid #FFFFFF1A;
  background:#FFFFFF0A;
  color:#fff;
  cursor:pointer;
  transition:.2s ease;
  font-weight: 500;
  height: 45px;
}

.history-btn.view:hover{
  background:#1e2a35;
}


/* ===================================
   SEARCH HISTORY — MOBILE EXACT MATCH
==================================== */

@media (max-width:768px){

  .history-wrapper{
    padding:0 14px;
    margin:20px auto;
  }

  /* Header */
  .history-header{
    align-items:center;
    gap:10px;
  }

  .history-header h2{
    font-size:16px;
    font-weight:600;
  }

  .back-btn{
    font-size:12px;
    padding:6px 12px;
    border-radius:10px;
    display: flex;
    align-items: center;
  }

  /* Center description */
  .history-note{
    font-size:13px;
    line-height:1.6;
    margin:25px 0 30px;
    padding:0 10px;
  }

  /* Card Layout */
  .history-card{
    padding:18px;
    border-radius:18px;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }

  /* Top Row (Title + Rating + Button aligned right) */
  .history-right{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
  }

  .history-left{
    width:100%;
  }

  .history-left h3{
    font-size:14px;
    margin:4px 0 8px;
  }

  .history-meta{
    font-size:14px;
    gap:6px;
  }

  .history-meta img{
    width:13px;
  }

  .history-date{
    font-size:11px;
    margin-top:4px;
  }

  .history-rating{
    font-size:12px;
    white-space:nowrap;
  }

  .history-rating img{
    width:14px;
  }

  .history-btn{
    font-size:12px;
    padding:8px 14px;
    border-radius:12px;
  }

  .status{
    font-size:10px;
    padding:4px 10px;
  }

}

/* ===================================
   RESOURCES PAGE EXACT DESIGN
=================================== */

.resources-wrapper{
  max-width:1200px;
  margin:60px auto;
  padding: 0px;
}

/* HEADER */

.resources-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
}

.resources-heading h1{
  font-weight: 800;
  font-size:45px;
  margin-bottom:10px;
}
.text-gradient-2{
  background: linear-gradient(90deg, rgba(3, 183, 255, 1) 51%, rgb(26 219 219) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

span.pill.text-gradient-2{
  font-size: 12px;
  letter-spacing: 1px;
  padding: 5px 10px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 20px;
  text-transform: uppercase;
}

.resources-heading p{
  color: #C6C6C6;
  max-width:520px;
  line-height:1.6;
}

.resources-search{
  position:relative;
  width:50%;
}

.resources-search input{
  width: 100%;
  height:54px;
  padding-left:48px;
  border-radius:10px;
  border:1px solid #FFFFFF1A;
  background:rgba(15,18,24,.8);
  color:#fff;
  font-size:14px;
}

.resources-search img{
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  width:18px;
}

/* FILTERS */

.resources-filters{
  margin:30px 0;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.filter{
  padding:10px 18px;
  border-radius:30px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#F1F5F9;
  font-size:13px;
  cursor:pointer;
  transition:.2s;
}

.filter.active{
  background: linear-gradient(90deg, rgba(0, 174, 255, 1) 0%, rgba(0, 178, 214, 1) 50%, rgba(0, 192, 173, 1) 100%);
  color:white;
  font-weight:600;
}

/* FEATURED */

.featured-article{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:40px;
  padding:30px;
  border-radius:18px;
  background:
    radial-gradient(circle at left, rgba(3,183,255,.1), transparent 60%),
    radial-gradient(circle at right, rgba(255,140,0,.1), transparent 60%),
    #0b0e14;
  border:1px solid rgba(255,255,255,.08);
}

.badge{
  display:inline-block;
  font-size:11px;
  line-height: 20px;
  letter-spacing:.8px;
  padding:3px 14px;
  border-radius:30px;
  background:rgba(0, 0, 0, 0.15);
  color:#03b7ff;
  margin-bottom:20px;
  border: 1px solid #FFFFFF1A;
}

.featured-left h2{
  font-size:34px;
  font-weight:700;
  margin-bottom:18px;
}

.featured-left p{
  color:#DBDBDB;
  line-height:1.7;
  margin-bottom:26px;
}

.featured-image img{
  width:100%;
  border-radius:20px;
}

/* GRID */

.article-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:40px;
}

.article-card{
  border-radius:20px;
  overflow:hidden;
  background:#0e1117;
  border:1px solid rgba(255,255,255,.08);
  transition:.25s ease;
  cursor: pointer;
}

.article-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,.4);
}

.article-img{
  position:relative;
}

.article-img img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.badge-small{
  position:absolute;
  top:14px;
  right:14px;
  font-size:10px;
  padding:6px 10px;
  border-radius:20px;
  /* background: #000000; */
  color: #03b7ff;
  border: 1px solid #ffffff36;
}

.article-body{
  padding:22px;
}
a {
  text-decoration: none;
}
a .article-body h3{
  font-size:16px;
  font-weight:600;
  margin-bottom:12px;
  color: white;
}

.article-body p{
  font-size:13px;
  color:#DBDBDB;
  line-height:1.6;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #cccccc1a;
}

.article-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.author{
  display:flex;
  align-items:center;
  gap:10px;
}

.author img{
  width:32px;
  height:32px;
  border-radius:50%;
}

a .author span{
  font-size:13px;
  font-weight:600;
  color: white;
}

.author small{
  font-size:11px;
  color:#DBDBDB;
}

.author-info{
  display:grid;
  align-items:center;
}
.arrow{
  font-size:18px;
  opacity:.6;
}
/* ===================================
   MOBILE RESPONSIVE — RESOURCES
=================================== */

@media (max-width: 768px) {

  .resources-wrapper{
    margin:30px auto;
    padding:0px;
  }

  /* HEADER STACK */
  .resources-top{
    flex-direction:column;
    gap:18px;
  }

  .resources-heading h1{
    font-size:28px;
    line-height:1.2;
  }

  .resources-heading p{
    font-size:13px;
    max-width:100%;
    margin-bottom: 0px;
  }

  /* SEARCH FULL WIDTH */
  .resources-search{
    width:100%;
  }

  .resources-search input{
    height:50px;
    border-radius:10px;
    font-size:13px;
  }

  /* FILTER PILLS — HORIZONTAL SCROLL */
  .resources-filters{
    flex-wrap:nowrap;
    overflow-x:auto;
    padding-bottom:8px;
    scrollbar-width:none;
  }

  .resources-filters::-webkit-scrollbar{
    display:none;
  }

  .filter{
    flex:0 0 auto;
    white-space:nowrap;
    font-size:12px;
    padding:8px 16px;
  }

  /* FEATURED ARTICLE STACKED */
  .featured-article{
    grid-template-columns:1fr;
    padding:20px;
    gap:20px;
    border-radius:20px;
  }

  .featured-left h2{
    font-size:18px;
    line-height:1.3;
  }

  .featured-left p{
    font-size:13px;
  }

  .featured-image img{
    height:220px;
    object-fit:cover;
    border-radius:18px;
  }

  /* ARTICLE GRID SINGLE COLUMN */
  .article-grid{
    grid-template-columns:1fr;
    gap:22px;
  }

  .article-img img{
    height:180px;
  }

  .article-body{
    padding:18px;
  }

  .article-body h3{
    font-size:15px;
  }

  .article-body p{
    font-size:12px;
  }

  .author span{
    font-size:12px;
  }

  .author small{
    font-size:10px;
  }
}

/* =========================================
   ARTICLE DETAILS PAGE
========================================= */

.article-wrapper{
  padding:0px;
  color:#d9d9d9;
}

/* BACK BUTTON */

.article-back{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 16px;
  border-radius:30px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.03);
  font-size:13px;
  color:#aaa;
  text-decoration:none;
  margin-bottom:20px;
  transition:.3s;
}

.article-back:hover{
  background:rgba(255,255,255,.06);
  color:#fff;
}

/* HEADER */

.article-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
}

.article-title{
  font-size:36px;
  font-weight:700;
  line-height:1.25;
  margin-bottom:10px;
}

.text-gradient{
  background:linear-gradient(90deg,#00d4ff,#00ffa3);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.text-gradient-price {
   background: linear-gradient(90deg, rgba(3, 183, 255, 1) 51%, rgb(26 219 219) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 28px;
}

.article-subtitle{
  font-size:14px;
  color:#C6C6C6;
  max-width:100%;
  margin-top: 5px;
}

.featured-pill{
  font-size:11px;
  letter-spacing:1px;
  padding:6px 14px;
  border-radius:20px;
  background:rgba(0,212,255,.08);
  border:1px solid rgba(0,212,255,.4);
  color:#00d4ff;
  white-space:nowrap;
}

/* HERO */

.article-hero{
  margin:10px 0;
  border-radius:20px;
  overflow:hidden;
}

.article-hero img{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:20px;
}

/* AUTHOR */

.article-author{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:30px;
}

.article-author img{
  width:40px;
  height:40px;
  border-radius:50%;
}

.author-name{
  font-weight:600;
  color:#fff;
  font-size:14px;
}

.author-date{
  font-size:12px;
  color:#DBDBDB;
}

/* CONTENT */

.article-content{
  max-width:820px;
}

.article-content h2{
  font-size:20px;
  margin:30px 0 10px;
  color:#fff;
}

.article-content p{
  font-size:14px;
  line-height:1.4;
  color:#C6C6C6;
  margin-bottom:18px;
}

.article-content ul{
  padding-left:18px;
  margin-bottom:18px;
}

.article-content li{
  font-size:14px;
  margin-bottom:8px;
  color:#C6C6C6;
  line-height: 15px;
}
@media(max-width:768px){

  .article-wrapper{
    margin:20px auto;
  }

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

  .article-title{
    font-size:22px;
  }

  .article-subtitle{
    font-size:13px;
  }

  .featured-pill{
    align-self:flex-start;
  }

  .article-hero img{
    height:200px;
  }

  .article-content h2{
    font-size:17px;
  }

  .article-content p,
  .article-content li{
    font-size:13px;
  }

}

/* =========================
   GLASS FORM CARD
========================= */

.contact-form {
  padding: 35px;
  border-radius: 28px;
  background: #0F0F14;
  border: 1px solid rgba(170, 0, 255, 0.25);
  box-shadow:
    0 0 40px rgba(128, 0, 255, 0.15),
    inset 0 0 40px rgba(0, 0, 0, 0.6);
}

/* LABELS */
label{
  font-size: 14px;
  margin-bottom: 4px;
}
.contact-form label {
  display: block;
  margin-bottom: 10px;
  margin-top: 24px;
  font-size: 15px;
  font-weight: 600;
  color: #DBDBDB;
}

/* INPUT + TEXTAREA */
.credit-row{
  display:flex;
  gap:10px;
  justify-content: space-between;
}
.credit-title{
  font-size: 14px;
  color: white;
  font-weight: 600;
}
.credit-used{
  font-size: 11px;
  color: #DBDBDB;
}
.credit-note{
  font-size: 11px;
  color: #DBDBDB;
  font-weight: 400;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: #ffffff;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}


@media (max-width: 520px){
  .contact-form{
    padding: 22px ;
  }
}

/* TEXTAREA HEIGHT */

.contact-form textarea {
  resize: none;
  min-height: 160px;
}

/* FOCUS EFFECT */

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1px solid rgba(0, 200, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.15);
}
@media screen {
  
}
/* BUTTON */

.btn-primary.full {
  width: 100%;
  margin-top: 20px;
  padding: 10px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, #1ea7fd, #1ed5a9);
  color: #fff;
  transition: all 0.3s ease;
}

.btn-primary.full:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 200, 255, 0.25);
}


/* Skeleton Wrapper */
.auto-skeleton {
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Shimmer Effect */
.skeleton-line {
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.06) 25%,
    rgba(255,255,255,0.15) 37%,
    rgba(255,255,255,0.06) 63%
  );
  background-size: 400% 100%;
  animation: shimmer 1.2s ease infinite;
  margin-bottom: 8px;
}

.skeleton-title {
  width: 60%;
  height: 14px;
}

.skeleton-rating {
  width: 40%;
}

.skeleton-location {
  width: 80%;
}

@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

/* Smooth dropdown open */
.autocomplete {
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform-origin: top;
}

.autocomplete.showing {
  opacity: 1;
  transform: scaleY(1);
}

.autocomplete.hiding {
  opacity: 0;
  transform: scaleY(0.98);
}

.auto-card {
  opacity: 0;
  transform: translateY(8px);
  animation: fadeInCard 0.4s ease forwards;
}

@keyframes fadeInCard {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Toaster message */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #28a745;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.error {
    background: #dc3545;
}

/* =========================
   PLATFORM QUESTIONS EXACT
========================= */

.platform-section{
  padding:90px 0 60px;
  position:relative;
  /* background:
    radial-gradient(900px 400px at 50% 10%, rgba(3,183,255,.08), transparent 70%),
    linear-gradient(180deg, #0b0f17 0%, #0e1118 100%); */
}

/* .platform-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 600px;
  background: radial-gradient(circle, rgba(90, 203, 255, 0.123) 0%, transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  animation: floatGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
} */

.platform-title{
  text-align:center;
  font-size:28px;
  font-weight:600;
  margin-bottom:30px;
}

.platform-box{
  border-radius:22px;
  background:rgba(255,255,255,.03);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
}

.platform-item{
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:background .35s ease;
}

.platform-item:last-child{
  border-bottom:none;
}

.platform-question{
  width:100%;
  background:none;
  border:none;
  padding:20px 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  text-align:left;
  color:#e5e7eb;
  font-size:16px;
  font-weight: 600;
  cursor:pointer;
}

.platform-question small{
  display:block;
  margin-top:6px;
  font-size:13px;
  color:#9ca3af;
  font-weight:400;
}

/* ACTIVE ROW */
.platform-item.active{
  background:#FFFFFF14;
}

.platform-item.active .platform-question{
  color:#19b7ff;
}

/* Toggle circle */
/* Toggle circle */
.platform-toggle{
  width:35px;
  height:35px;
  aspect-ratio:1/1;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  font-weight:600;
  line-height:1;
  padding:0;
  transition:all .3s ease;
}

.platform-item.active .platform-toggle{
  background:rgba(255,255,255,.12);
}

/* View all */
.platform-view{
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  text-align:center;
  margin-top:18px;
}

.platform-view a{
  color:#19b7ff;
  font-size:14px;
  text-decoration:none;
}

/* Hide extra initially */
.platform-item.extra{
  max-height:0;
  opacity:0;
  overflow:hidden;
  transition:max-height .5s ease, opacity .4s ease;
}

/* When expanded */
.platform-item.extra.show{
  max-height:200px;
  opacity:1;
}

/* Accordion answer animation */
.platform-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
  font-size:13px;
  color:#9ca3af;
  margin-top:6px;
}

.platform-item.active .platform-answer{
  max-height:120px;
  font-weight: 400;
}

/* View all button */
.platform-view{
  text-align:center;
  margin-top:18px;
}

.platform-view button{
  background:none;
  border:none;
  color:#19b7ff;
  font-size:14px;
  cursor:pointer;
}
.platform-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease, opacity .3s ease;
  opacity:0;
  font-size:13px;
  color:#9ca3af;
  padding:0px;
}

.platform-item.active .platform-answer{
  max-height:120px;
  max-width: 95%;
  opacity:1;
}
.platform-div{
   max-width: 95%;
}

/* Hide extra FAQ */
.platform-item.extra{
  display:none;
}

.platform-item.extra.show{
  display:block;
}
/* =========================
   INTELLIGENCE EXACT
========================= */
.intelligence-exact{
  position:relative;
  padding:120px 0 100px;
  text-align:center;
  background:#0b0f17;
  overflow:hidden;
}

/* Curved divider */
.curve-divider{
  position:absolute;
  top:-120px;
  left:0;
  width:100%;
  height:200px;
  background:radial-gradient(
    120% 100% at 50% 100%,
    rgba(255,140,0,.35),
    transparent 70%
  );
  border-bottom-left-radius:100% 80%;
  border-bottom-right-radius:100% 80%;
}

.intelligence-heading{
  font-size:36px;
  font-weight:600;
  margin-bottom:18px;
}

.intelligence-text{
  max-width:720px;
  margin:0 auto 28px;
  color:#9ca3af;
  font-size:15px;
  line-height:1.7;
}

.intelligence-label{
  display:inline-block;
  padding:6px 18px;
  border-radius:999px;
  font-size:11px;
  letter-spacing:.6px;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
  margin-bottom:28px;
}

.big-cta{
  padding:16px 32px;
  border-radius:14px;
  font-size:16px;
  margin-bottom:30px;
}

.intelligence-checks{
  display:flex;
  justify-content:center;
  gap:28px;
  font-size:14px;
  color:#cfd6e6;
}

@media(max-width:768px){

  .platform-question{
    font-size:14px;
    padding:18px 18px;
  }

  .intelligence-heading{
    font-size:24px;
  }

  .intelligence-checks{
    flex-direction:column;
    gap:10px;
  }

  .intelligence-exact{
    padding:80px 0;
  }
}

.intelligence-section-new{
  position:relative;
  padding:100px 0 1px;
  text-align:center;
  /* background:#070b14; */
  overflow:hidden;
}

/* Top curved blended gradient */
.intelligence-gradient-top{
  position:absolute;
  top:-150px;
  left:50%;
  transform:translateX(-50%);
  width:100%;
  height:800px;
  background:
    radial-gradient(60% 100% at 50% 100%, rgba(255, 140, 0, .35), #03b7ff30, transparent 70%);
  border-bottom-left-radius:100% 50%;
  border-bottom-right-radius:100% 50%;
  /* filter:blur(20px); */
}

.intelligence-title-new{
  font-size:36px;
  font-weight:700;
  margin-bottom:18px;
  color:#fff;
}
@media(max-width:768px){
  .intelligence-title-new{
    font-size:26px;
  }
}
.intelligence-title-new span{
  color:#19b7ff;
  font-weight:700;
}

.intelligence-desc-new{
  font-size:16px;
  color:#C6C6C6;
  line-height:1.7;
}

.intelligence-pill-new{
    margin-bottom: 20px;
}

.intelligence-btn-new{
  padding:14px 32px;
  border-radius:12px;
  font-size:15px;
  margin-bottom:26px;
}

.intelligence-checks-new{
  display:flex;
  justify-content:center;
  gap:28px;
  font-size:14px;
  color:#fff;
  flex-direction:row; /* Desktop layout */
}

@media (max-width:768px){
  .intelligence-checks-new{
    flex-direction:column; /* Mobile layout */
    align-items:center;
  }
}

.popover {
  background-color: #000;
  color: #fff;
  border-radius: 12px;
  border: 1px solid transparent;
  background: linear-gradient(#000000, #000000) padding-box, linear-gradient(90deg, #03b7ff91, #03ffb973) border-box;
  box-shadow: 0 0 20px rgb(3 183 255 / 19%);
}

.popover-header {
  background-color: #000;
  color: #fff;
  border-bottom: none;
}

.popover-body {
  color: #fff;
  font-size: 12px;
  padding: 10px;
}
.text-success{
  color: #1dfa00 !important;
}

.custom-btn {
    width: 300px;
    display: inline-flex;
}
@media (max-width: 520px) {
  .custom-btn {
     width: 100%;
  }
}
/* trams page */

.legal-page{
  padding:30px 20px;
}

.legal-container{
  max-width:900px;
  margin:auto;
}

.legal-container h1{
  font-size:36px;
  margin-bottom:10px;
}
@media (max-width: 520px){
  .legal-container h1{
    font-size:26px;
  }
}

.legal-updated{
  color:#9ca3af;
  margin-bottom:30px;
}

.legal-container h2{
  margin-top:40px;
  margin-bottom:10px;
  font-size:20px;
}

.legal-container p{
  line-height:1.7;
  color:#cfcfcf;
}

.legal-container ul{
  margin:15px 0 15px 20px;
}

.legal-container li{
  margin-bottom:8px;
  color:#cfcfcf;
}


.modal-actions {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers buttons */
  gap: 12px;
}

.modal-actions .btn {
  width: auto; /* remove full width */
  min-width: 180px;
}
.search-input {
  position: relative;
  display: flex;
  align-items: center;
}

.search-input input {
  width: 100%;
  padding: 12px 12px 12px 25px; /* space for icon */
  border: none;
  outline: none;
  background: transparent;
}

.input-icon {
  position: absolute;
  left: 16px;
  display: flex;
  align-items: center;
  height: 100%;
}

.input-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}