@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg1: #7bb3ff;
    --bg2: #6a63ff;
    --bg3: #3c2fb8;

    --nav: #5563a8;
    --white: #ffffff;
    --text: #0b1b3a;
    --muted: #40557c;

    --card: #ffffff;
    --shadow: 0 14px 40px rgba(10, 20, 60, .18);

    --radius-xl: 16px;
    --radius-lg: 14px;
    --radius-md: 12px;

    --btn-green: #3aa64b;
    --btn-green2: #2c8f3b;

    --btn-dark: #2f3f7a;
    --btn-dark2: #223063;

    --line: rgba(255, 255, 255, .55);
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


body {
    margin: 0;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: none;
    /* IMPORTANT: remove per-section gradient painting */
    position: relative;
    min-height: 100vh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(1200px 600px at 25% 20%, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 60%),
        linear-gradient(180deg, var(--bg1), var(--bg2) 55%, var(--bg3));
}


.hero-title {
    font-weight: 800;
}

.section-title {
    font-weight: 800;
}

.nav-link {
    font-weight: 700;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.2px;
}

/* container */
.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

/* TOPBAR */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(86, 104, 175, .92), rgba(86, 104, 175, .75));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.topbar-inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 34px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 26px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .3px;
    font-size: 15px;
    text-transform: uppercase;
    margin-right: 200px;
}

.nav-link:hover {
    opacity: .85;
}

/* Make sure header doesn't clip the drawer */
.topbar {
    overflow: visible;
}

/* Hamburger (image button) */
.burger {
    display: none;
    /* desktop hidden */
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .10);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 95;
    /* above overlay */
}

.burger-img {
    width: 22px;
    height: 22px;
    display: block;

    /* make icon white */
    filter: brightness(0) invert(1);
}

/* Overlay */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(2px);
    z-index: 200;
}

/* Drawer (FULL HEIGHT) */
.drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100dvh;
    width: min(320px, 86vw);

    background: rgba(18, 26, 70);
    border-left: 1px solid rgba(255, 255, 255, .16);
    box-shadow: -18px 0 40px rgba(0, 0, 0, .28);
    z-index: 210;

    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;

    /* 🔑 CRITICAL */
    transform: translateX(100%);
    pointer-events: none;
    visibility: hidden;

    transition: transform .28s ease, visibility 0s linear .28s;
}


.drawer.is-open {
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
    transition: transform .28s ease;
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 6px 2px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.drawer-logo {
    height: 26px;
    width: auto;
    display: block;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-link {
    display: block;
    padding: 12px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .3px;
    font-weight: 800;
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .06);
}

.drawer-link:hover {
    background: rgba(255, 255, 255, .10);
}

/* Mobile: hide desktop nav, show burger */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .burger {
        display: inline-flex;
    }
}


/* HERO */
.hero {
    padding: 26px 0 18px;
}

.hero-inner {
    background: rgba(255, 255, 255, .38);
    border: 1px solid rgba(255, 255, 255, .45);
    box-shadow: var(--shadow);
    border-radius: var(--radius-xl);
    padding: 22px 22px;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 20px;
    align-items: center;
}

/* left */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.hero-illustration {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shark {
    width: 260px;
    /* adjust size here */
    max-width: 85%;
    /* keeps it responsive */
    height: auto;
}

@media (max-width: 768px) {
    .hero-shark {
        width: 220px;
    }
}

.mini-ctas {
    display: flex;
    justify-content: center;
    /* centers buttons horizontally */
    align-items: center;
    width: 100%;
    /* ensures true centering */
    margin: 16px auto 0;
    gap: 12px;
}


/* base button */
.mini-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 16px 26px;
    /* ⬆️ noticeably bigger */
    border-radius: 999px;
    font-size: 15px;
    /* bigger text */
    font-weight: 700;
    letter-spacing: .4px;
    text-decoration: none;

    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;

    animation: pulse-scale 1.8s ease-in-out infinite;
    
}


@keyframes pulse-scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}


/* icons */
.mini-icon {
    width: 20px;
    height: 20px;
    display: block;
    filter: brightness(0) invert(1);
}

/* WhatsApp */
.mini-btn--whatsapp {
    background: linear-gradient(180deg, #2ecc71, #25b861);
}

/* Telegram */
.mini-btn--telegram {
    background: linear-gradient(180deg, #38a1db, #2b8bc7);
}

/* hover / tap */
.mini-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
    opacity: .95;
}

.mini-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
}


/* right */
.hero-right {
    text-align: center;
    padding: 6px 10px;
}

.hero-title {
    margin: 0 0 4px;
    font-size: 28px;
    font-weight: 900;
    color: #182b66;
}

.hero-subtitle {
    margin: 0 0px 30px; /* Centers the block if text-align is center */
    color: #2b3f7a;      /* Use a slightly softer color than pure white for dark backgrounds */
    font-weight: 450;    /* for better legibility */
    line-height: 1.5;    /* Increased for breathing room */
    font-size: 14.5px;     /* Slightly larger for hero prominence */
    max-width: 650px;    /* Keeps the lines at an ideal reading length */
    opacity: 0.9;        /* Adds a subtle premium feel */
}

.download-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.dl-btn {
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 14px 26px rgba(0, 0, 0, .14);
    border: 1px solid rgba(255, 255, 255, .18);
}

.dl-icon {
    width: 30px;
    height: 30px;
    display: block;
}

.dl-text {
    text-align: left;
    line-height: 1.05;
}

.dl-top {
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .2px;
}

.dl-bottom {
    font-weight: 900;
    font-size: 13px;
}

.dl-btn--android {
    background: linear-gradient(180deg, var(--btn-green), var(--btn-green2));
}

.dl-btn--ios {
    background: linear-gradient(180deg, var(--btn-dark), var(--btn-dark2));
}

/* Test ID bar */
.testid {
    margin-top: 8px;
}

.testid-hint {
    font-size: 12px;
    font-weight: 800;
    color: rgba(34, 60, 120, .85);
    margin-bottom: 8px;
}

.testid-bar {
    width: min(520px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(32, 64, 150, .90), rgba(24, 50, 130, .90));
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 12px;
    padding: 8px 10px;
    box-shadow: 0 14px 26px rgba(0, 0, 0, .14);
}

.testid-btn {
    border: 0;
    background: transparent;
    color: #fff;
    font-weight: 900;
    letter-spacing: .2px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    cursor: pointer;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .24);
    border: 2px solid rgba(255, 255, 255, .8);
    box-shadow: inset 0 0 0 4px rgba(12, 205, 255, .25);
}

.testid-right {
    position: relative;
    /* anchor for dropdown */
    display: flex;
    align-items: center;
}

/* clickable trigger */
.testid-dd {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    padding: 8px 12px;
    color: rgba(255, 255, 255, .92);
    font-weight: 800;
    cursor: pointer;
    line-height: 1;
}

.testid-dd:hover {
    background: rgba(255, 255, 255, .18);
}

.testid-dd:active {
    transform: translateY(1px);
}

/* arrow */
.testid-arrow {
    opacity: .9;
    transition: transform .2s ease;
    font-size: 12px;
}

/* rotate arrow when open */
.testid-dd[aria-expanded="true"] .testid-arrow {
    transform: rotate(90deg);
}

.testid-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 320px;
    background: linear-gradient(180deg,
            rgba(12, 20, 60, .95),
            rgba(12, 20, 60, .75));
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
    z-index: 50;
}

/* content layout */
.testid-panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.testid-k {
    font-size: 14px;
    font-weight: 800;
    color: rgba(255, 255, 255, .95);
    margin-bottom: 4px;
}

.testid-v {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, .55);
}

@media (max-width: 768px) {
    .testid-panel {
        right: 50%;
        transform: translateX(50%);
        min-width: 180px;
    }

    .testid-panel-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}


/* SECTIONS */
.section {
    padding: 18px 0;
}

.content-box {
    background: rgba(255, 255, 255, .92);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .55);
    padding: 22px 18px;
}

.content-box table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    margin-bottom: 30px; 
}

.content-box table td {
    padding: 15px 10px;   
    vertical-align: top;    
    border-bottom: 1px solid #f5f5f5;
    color: #4a4a4a;          
    font-size: 15px;
    line-height: 1.6;
}

.content-box table td p {
    margin: 0;
}

.content-box table tr:first-child td {
    color: #2b3f7a;            
    border-bottom: 2px solid #eef1f5; 
    font-size: 16px;           
}

.content-box table td:first-child {
    color: #2b3f7a;
    width: 25%;                
}

@media (max-width: 600px) {
    .content-box table td {
        padding: 10px 5px;
        font-size: 13px;
    }
}

.center {
    text-align: center;
}

.content-card {
    background: rgba(245, 248, 255, .9);
    border: 1px solid rgba(30, 60, 150, .10);
    border-radius: 14px;
    padding: 16px 16px;
}

.content-card h3 {
    margin: 0 0 10px;
    color: #1b2f6a;
}

.content-card p {
    margin: 0 0 10px;
    color: #233a75;
}

.note {
    background: rgba(70, 110, 255, .10);
    border: 1px solid rgba(70, 110, 255, .22);
    padding: 10px 12px;
    border-radius: 12px;
}

.clean-list,
.clean-ol {
    margin: 10px 0 0;
    padding-left: 18px;
    color: #233a75;
}

.clean-list li,
.clean-ol li {
    margin: 6px 0;
}

/* Testimonials */
.section--soft {
    padding-top: 10px;
}

.section-title {
    text-align: center;
    margin: 0 0 14px;
    color: #000000;
    font-weight: 900;
    text-shadow: 0 10px 22px rgba(0, 0, 0, .12);
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.t-card {
    background: rgba(255, 255, 255, .95);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .65);
    box-shadow: var(--shadow);
    padding: 14px 14px;
}

.t-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.t-name {
    font-weight: 900;
    color: #203775;
}

.t-loc {
    font-weight: 800;
    color: #6072a2;
    font-size: 12px;
}

.t-text {
    margin: 0 0 10px;
    color: #253a74;
}

.stars {
    font-weight: 900;
    letter-spacing: 1px;
    color: #f7a21b;
}

/* FAQ */
.faq {
    background: rgba(255, 255, 255, .92);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .55);
    box-shadow: var(--shadow);
    padding: 10px;
}

.faq-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 12px;
    border: 1px solid rgba(55, 90, 190, .18);
    background: linear-gradient(180deg, rgba(72, 108, 255, .18), rgba(72, 108, 255, .10));
    cursor: pointer;
    font-weight: 900;
    color: #1b2f6a;
    margin-bottom: 10px;
}

.faq-item:hover {
    filter: brightness(1.03);
}

.faq-icon {
    font-size: 14px;
    opacity: .75;
}

.faq-panel {
    padding: 0 14px 14px;
    color: #243a74;
}

.faq-panel p {
    margin: 0;
}

/* FOOTER */
.footer {
    margin-top: 10px;
    background: rgba(6, 10, 30, .55);
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .92);
}

.footer-inner {
    padding: 22px 0;
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.footer-logo {
    width: 120px;
    height: auto;
    display: block;
    margin-bottom: 10px;
}

.footer-desc {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .82);
    line-height: 1.35;
}

.footer-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, .68);
}

.footer-title {
    font-weight: 900;
    letter-spacing: .5px;
    font-size: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-link {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, .85);
    font-weight: 800;
    font-size: 12px;
    padding: 6px 0;
}

.footer-link:hover {
    opacity: .85;
}

.footer-icons {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    text-decoration: none;
    box-shadow: 0 12px 22px rgba(0, 0, 0, .18);
}

.icon-btn img {
    width: 22px;
    height: 22px;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-left {
        align-items: center;
    }

    .mini-ctas {
        padding-left: 0;
        justify-content: center;
        flex-wrap: wrap;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .nav {
        gap: 16px;
    }
}