/* =====================================================
   DESIGN SYSTEM VARIABLES
===================================================== */

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;

    --bg-light: #f8fafc;
    --bg-dark: #0f172a;

    --text-main: #0f172a;
    --text-muted: #64748b;

    --border-light: #e5e7eb;
}

/* =========================
GLOBAL MOBILE TOUCH FIXES
========================= */

*{
-webkit-tap-highlight-color:transparent;
}

a,
button,
input,
textarea,
select{
outline:none;
-webkit-tap-highlight-color:transparent;
}

/* =====================================================
   BASE RESET & TYPOGRAPHY
===================================================== */

* {
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin: 0;
    color: var(--text-main);
    line-height: 1.6;
    background: #f5f7fb;
}

h1 {
    font-size: 52px;
    line-height: 1.1;
    margin: 0 0 20px;
}

h2 {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 16px;
    text-align: center;
}

h3 {
    font-size: 20px;
    margin: 0 0 10px;
}

p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-sub {
    max-width: 680px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: var(--text-muted);
    text-align: center;
}

/* =========================
GLOBAL TABLES
========================= */

table{

width:100%;

border-collapse:separate;
border-spacing:0;

margin:24px 0;

background:#fff;

border:1px solid #e2e8f0;

border-radius:18px;

overflow:hidden;

box-shadow:
0 8px 24px rgba(0,0,0,.04);

}

thead{

background:
linear-gradient(
135deg,
#2563eb,
#1d4ed8
);

}

thead th{

padding:16px 20px;

text-align:left;

font-size:14px;
font-weight:700;

letter-spacing:.3px;

color:#fff;

white-space:nowrap;

}

tbody tr{

transition:.2s;

}

tbody tr:nth-child(even){

background:#f8fafc;

}

tbody tr:hover{

background:#eff6ff;

}

td{

padding:15px 20px;

text-align:left;

font-size:15px;
line-height:1.6;

color:#334155;

border-top:1px solid #e2e8f0;

vertical-align:top;

}

th{

text-align:left;

}

td strong{

font-weight:700;

color:#0f172a;

}

td a{

color:#2563eb;

font-weight:600;

text-decoration:none;

}

td a:hover{

text-decoration:underline;

}

/* =========================
RESPONSIVE TABLE
========================= */

.table-responsive{

overflow-x:auto;

-webkit-overflow-scrolling:touch;

margin:24px 0;

}

.table-responsive table{

margin:0;

min-width:700px;

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

table{

font-size:14px;

}

thead th{

padding:14px;

font-size:13px;

}

td{

padding:14px;

font-size:14px;

}

}

/* =====================================================
   LAYOUT
===================================================== */

.sp-container {
    max-width: 1280px;
    margin: auto;
    padding: 10px 20px;
}

/* =========================
BREADCRUMBS
========================= */

.sp-breadcrumbs{
display:flex;
align-items:center;
flex-wrap:wrap;
gap:10px;

margin-bottom:10px;

font-size:13px;
font-weight:500;

color:#64748b;
}

.sp-breadcrumbs a{
color:#2563eb;
text-decoration:none;
}

.sp-breadcrumbs a:hover{
text-decoration:underline;
}

.sp-breadcrumbs .sep{
opacity:.45;
}

/* =====================================================
   BUTTONS
===================================================== */

.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary,
.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-secondary:hover,
.btn-outline:hover {
    background: rgba(37, 99, 235, 0.05);
}

.btn-large {
    font-size: 18px;
    padding: 16px 32px;
}

/* Language selector */
.language-selector {
  background: var(--bg-dark);
  color: #e5e7eb;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 10px;
  border-radius: 6px;
}

.faq {
  padding: 120px 0;
  background: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.faq-item {
  padding: 30px;
  background: var(--bg-light);
  border-radius: 12px;
}

.faq-item h3 {
  margin-bottom: 10px;
}

.support {
  padding: 120px 0;
  background: var(--bg-light);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.support-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 32px;
    }

    .hero-grid,
    .performance-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions .btn {
        display: block;
        margin: 12px auto;
    }
}

/* Social Share */
.share-fixed {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Right side */
.share-right {
    right: 15px;
}

/* Left side */
.share-left {
    left: 15px;
}

/* Icons */
.share-fixed a {
    display: block;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}

.share-fixed img {
    width: 20px;
    height: 20px;
}

/* Hover */
.share-fixed a:hover {
    transform: translateY(-2px);
    background: #6366f1;
}

.share-fixed a:hover img {
    filter: brightness(0) invert(1);
}

/* =========================
MOBILE SHARE BAR
========================= */

.share-mobile-bar{

    position:fixed;

    left:50%;
    bottom:14px;

    transform:translateX(-50%);

    display:none;
    align-items:center;

    gap:10px;

    padding:10px 14px;

    background:rgba(255,255,255,.96);

    border:1px solid #e2e8f0;

    border-radius:999px;

    backdrop-filter:blur(10px);

    box-shadow:
    0 10px 30px rgba(15,23,42,.14);

    z-index:9999;

}

.share-mobile-bar a{

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:999px;

    background:#f8fafc;

}

.share-mobile-bar img{

    width:18px;
    height:18px;

}

/* mobile */
@media(max-width:768px){

    .share-fixed{
        display:none;
    }

    .share-mobile-bar{
        display:flex;
    }
    
    .sp-breadcrumbs{
        display:none;
    }

}

/* =========================
FOOTER
========================= */

.cb-footer{
background:
linear-gradient(
180deg,
#0f172a,
#020617
);

position:relative;

overflow:hidden;

color:#fff;

margin-top:80px;
}

/* glow */
.cb-footer:before{
content:'';

position:absolute;
top:-200px;
left:-120px;

width:520px;
height:520px;

background:
radial-gradient(
circle,
rgba(37,99,235,.22),
transparent 70%
);

pointer-events:none;
}

/* =========================
NEWSLETTER
========================= */

.cb-newsletter{
padding:90px 0 70px;

position:relative;
z-index:2;
}

/* container */
.cb-container{
max-width:1280px;
margin:auto;
padding:0 20px;
}

/* =========================
BOX
========================= */

.cb-newsletter-box{
position:relative;

overflow:hidden;

background:
linear-gradient(
135deg,
rgba(255,255,255,.08),
rgba(255,255,255,.03)
);

border:
1px solid rgba(255,255,255,.10);

border-radius:40px;

padding:58px;

display:grid;
grid-template-columns:
1.1fr .9fr;

gap:50px;

backdrop-filter:blur(16px);

box-shadow:
0 30px 80px rgba(0,0,0,.22);
}

/* glow */
.cb-newsletter-box:before{
content:'';

position:absolute;

right:-140px;
top:-140px;

width:320px;
height:320px;

border-radius:50%;

background:
rgba(37,99,235,.12);

filter:blur(20px);
}

/* =========================
CONTENT
========================= */

.cb-newsletter-content{
position:relative;
z-index:2;
}

.cb-newsletter-content h2{
font-size:28px;
font-weight:700;
line-height:1.1;
text-align: left;
letter-spacing:-.03em;

margin-bottom:22px;

max-width:760px;
}

.cb-newsletter-content p{
font-size:16px;
line-height:1.9;

color:#cbd5e1;

max-width:620px;
}

/* =========================
TRUST
========================= */

.cb-trust{
display:flex;
flex-wrap:wrap;
gap:12px;

margin-top:28px;
}

.cb-trust span{
display:inline-flex;
align-items:center;
justify-content:center;

height:42px;
padding:0 16px;

border-radius:999px;

background:
rgba(255,255,255,.08);

border:
1px solid rgba(255,255,255,.08);

font-size:13px;
font-weight:700;

color:#e2e8f0;

backdrop-filter:blur(8px);
}

/* =========================
FORM SIDE
========================= */

.cb-newsletter-form-wrap{
display:flex;
flex-direction:column;
justify-content:center;

position:relative;
z-index:2;
}

/* form */
.cb-newsletter-form{
display:flex;
align-items:center;
gap:16px;
}

/* input */
.cb-newsletter-form input{
flex:1;

height:72px;

border:none;
outline:none;

padding:0 26px;

border-radius:24px;

background:#fff;

font-size:15px;
font-weight:600;

box-shadow:
0 12px 30px rgba(0,0,0,.10);
}

/* button */
.cb-newsletter-form button{
height:72px;

padding:0 36px;

border:none;
outline:none;

border-radius:24px;

background:
linear-gradient(
135deg,
#2563eb,
#0ea5e9
);

color:#fff;

font-size:15px;
font-weight:900;

cursor:pointer;

transition:
transform .25s ease,
box-shadow .25s ease;

white-space:nowrap;

box-shadow:
0 18px 40px rgba(37,99,235,.28);
}

.cb-newsletter-form button:hover{
transform:translateY(-3px);

box-shadow:
0 24px 50px rgba(37,99,235,.35);
}

/* message */
#cbNewsletterMessage{
margin-top:16px;

font-size:14px;
line-height:1.7;

color:#cbd5e1;
}

/* =========================
TABLET
========================= */

@media(max-width:1100px){

.cb-newsletter-box{
grid-template-columns:1fr;

padding:42px;

gap:36px;
}

.cb-newsletter-content h2{
font-size:42px;
max-width:100%;
}

}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

.cb-newsletter{
padding:60px 0 40px;
}

.cb-container{
padding:0 14px;
}

.cb-newsletter-box{
padding:28px 22px;

border-radius:28px;

gap:28px;
}

.cb-newsletter-content h2{
font-size:30px;
line-height:1.2;

margin-bottom:16px;
}

.cb-newsletter-content p{
font-size:13px;
line-height:1.8;
}

.cb-trust{
gap:8px;
margin-top:20px;
}

.cb-trust span{
height:36px;
padding:0 12px;

font-size:11px;

border-radius:999px;
}

.cb-newsletter-form{
flex-direction:column;
gap:14px;
}

.cb-newsletter-form input,
.cb-newsletter-form button{
width:100%;
}

.cb-newsletter-form input{
height:58px;

padding:0 18px;

font-size:14px;
flex: none;
border-radius:18px;
}

.cb-newsletter-form button{
height:58px;

font-size:14px;

border-radius:18px;
}

#cbNewsletterMessage{
font-size:12px;
}

}

/* =========================
MAIN FOOTER
========================= */

.cb-footer-main{
padding:70px 0;
position:relative;
z-index:2;
}

.cb-footer-grid{
display:grid;
grid-template-columns:
1.4fr
1fr
1fr
1fr;

gap:50px;
}

/* brand */
.cb-footer-brand h3{
font-size:34px;
font-weight:900;
margin-bottom:20px;
}

.cb-footer-brand p{
font-size:15px;
line-height:1.9;

color:#94a3b8;

margin-bottom:28px;
}

/* app badges */
.cb-apps{
display:flex;
gap:14px;
}

.cb-app{
height:54px;

padding:0 20px;

border-radius:18px;

background:
rgba(255,255,255,.06);

border:
1px solid rgba(255,255,255,.08);

display:flex;
align-items:center;
gap:12px;

text-decoration:none;

color:#fff;

font-size:13px;
font-weight:700;

transition:.25s;
}

.cb-app:hover{
transform:translateY(-3px);
}

/* links */
.cb-footer-links h4{
font-size:18px;
font-weight:900;

margin-bottom:22px;
}

.cb-footer-links ul{
list-style:none;
padding:0;
margin:0;
}

.cb-footer-links li{
margin-bottom:14px;
}

.cb-footer-links a{
text-decoration:none;

font-size:14px;
font-weight:600;

color:#94a3b8;

transition:.2s;
}

.cb-footer-links a:hover{
color:#fff;
padding-left:4px;
}

/* =========================
BOTTOM
========================= */

.cb-footer-bottom{
padding:28px 0;

border-top:
1px solid rgba(255,255,255,.08);

position:relative;
z-index:2;
}

.cb-bottom-inner{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
}

.cb-copy{
font-size:14px;
line-height:1.8;
color:#94a3b8;
}

/* social */
.cb-social{
display:flex;
gap:14px;
}

.cb-social a{
width:48px;
height:48px;

border-radius:16px;

background:
rgba(255,255,255,.06);

border:
1px solid rgba(255,255,255,.08);

display:flex;
align-items:center;
justify-content:center;

text-decoration:none;

color:#fff;

font-size:18px;

transition:.25s;
}

.cb-social a:hover{
transform:translateY(-4px);

background:#2563eb;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

.cb-newsletter-box{
grid-template-columns:1fr;
}

.cb-footer-grid{
grid-template-columns:repeat(2,1fr);
}

.cb-bottom-inner{
flex-direction:column;
text-align:center;
}

}

@media(max-width:768px){

.cb-footer-grid{
grid-template-columns:1fr;
}

.cb-apps{
grid-template-columns: repeat(2, 1fr);
gap:14px;
}

}

/* =========================
HEADER
========================= */

.cb-header{
position:sticky;
top:0;
z-index:9999;

background:
rgba(255,255,255,.92);

backdrop-filter:blur(18px);

border-bottom:
1px solid rgba(226,232,240,.8);
}

/* top */
.cb-topbar{
padding:18px 0;
}

.cb-container{
max-width:1280px;
margin:auto;
padding:0 20px;
}

/* layout */
.cb-top-inner{
display:grid;
grid-template-columns:
220px
1fr
260px;

gap:28px;

align-items:center;
}

/* =========================
LOGO
========================= */

.cb-logo{
display:flex;
align-items:center;
gap:14px;

text-decoration:none;
}

.cb-logo-icon{
width:52px;
height:52px;

border-radius:18px;

background:
linear-gradient(
135deg,
#2563eb,
#0ea5e9
);

display:flex;
align-items:center;
justify-content:center;

font-size:24px;

color:#fff;

box-shadow:
0 14px 30px rgba(37,99,235,.22);
}

.cb-logo-text{
display:flex;
flex-direction:column;
}

.cb-logo-text strong{
font-size:28px;
font-weight:900;
line-height:1;
color:#0f172a;
}

.cb-logo-text span{
font-size:12px;
font-weight:700;
letter-spacing:.12em;
text-transform:uppercase;
color:#64748b;
margin-top:4px;
}

/* =========================
RIGHT
========================= */

.cb-right{
display:flex;
justify-content:flex-end;
align-items:center;
gap:16px;
}

/* notification */
.cb-notification{
width:54px;
height:54px;

border-radius:18px;

background:#fff;

display:flex;
align-items:center;
justify-content:center;

position:relative;

cursor:pointer;

box-shadow:
0 10px 25px rgba(0,0,0,.05);

transition:.25s;
}

.cb-notification:hover{
transform:translateY(-3px);
}

.cb-notification i{
font-size:18px;
color:#0f172a;
}

.cb-dot{
position:absolute;
top:12px;
right:12px;

width:10px;
height:10px;

border-radius:50%;

background:#ef4444;
}

/* =========================
NOTIFICATION WRAP
========================= */

.cb-notification-wrap{
position:relative;
}

/* button */
.cb-notification{
border:none;
outline:none;
}

/* dropdown */
.cb-notification-dropdown{
position:absolute;

top:72px;
right:0;

width:380px;

background:#fff;

border-radius:28px;

box-shadow:
0 30px 80px rgba(0,0,0,.12);

opacity:0;
visibility:hidden;

transform:
translateY(10px);

transition:.28s;

overflow:hidden;

z-index:9999;
}

/* active */
.cb-notification-dropdown.active{
opacity:1;
visibility:visible;

transform:
translateY(0);
}

/* head */
.cb-notification-head{
height:72px;

padding:0 22px;

display:flex;
align-items:center;
justify-content:space-between;

border-bottom:
1px solid #eef2f7;
}

.cb-notification-head h4{
font-size:18px;
font-weight:900;
margin:0;
}

.cb-notification-head a{
font-size:13px;
font-weight:800;

color:#2563eb;

text-decoration:none;
}

/* list */
.cb-notification-list{
max-height:460px;
overflow:auto;
}

/* item */
.cb-notification-item{
display:flex;
align-items:center;
gap:14px;

padding:16px 20px;

text-decoration:none;

transition:.22s;

border-bottom:
1px solid #f1f5f9;
}

.cb-notification-item:last-child{
border-bottom:none;
}

.cb-notification-item:hover{
background:#f8fafc;
}

/* image */
.cb-notification-thumb{
width:74px;
height:52px;

border-radius:14px;

object-fit:cover;

border:
2px dotted #cbd5e1;

flex-shrink:0;
}

/* title */
.cb-notification-content{
flex:1;
}

.cb-notification-content h5{
font-size:14px;
font-weight:800;
line-height:1.6;

color:#0f172a;

margin:0;
}

/* =========================
MOBILE NOTIFICATION
========================= */

.cb-mobile-notification-wrap{
width:100%;
margin-top:10px;
}

/* button */
.cb-mobile-notification-wrap .cb-notification{
display:flex !important;

width:100%;
height:58px;

padding:0 18px;

border-radius:18px;

justify-content:flex-start;
gap:14px;

box-shadow:none;

background:#f8fafc;
}

.cb-mobile-notification-wrap .cb-notification i{
font-size:18px;
}

/* text */
.cb-mobile-notification-wrap .cb-notification:after{
content:'Notifications';

font-size:15px;
font-weight:800;

color:#0f172a;
}

/* dropdown */
.cb-mobile-notification-wrap .cb-notification-dropdown{
position:static;

width:100%;

margin-top:12px;

border-radius:22px;

box-shadow:none;

border:
1px solid #e2e8f0;

opacity:1;
visibility:visible;

display:none;

transform:none;
}

/* active */
.cb-mobile-notification-wrap
.cb-notification-dropdown.active{
display:block;
}

/* items */
.cb-mobile-notification-wrap
.cb-notification-item{
padding:14px;
}

/* image */
.cb-mobile-notification-wrap
.cb-notification-thumb{
width:64px;
height:46px;
}
/* =========================
MOBILE NOTIFICATIONS
========================= */

.cb-mobile-dot{
width:8px;
height:8px;

border-radius:50%;

background:#ef4444;

margin-left:auto;
}

/* overlay */
.cb-mobile-notifications{
position:fixed;
inset:0;

background:#fff;

z-index:999999;

transform:
translateX(100%);

transition:
transform .32s cubic-bezier(.22,1,.36,1);

display:flex;
flex-direction:column;
}

/* active */
.cb-mobile-notifications.active{
transform:
translateX(0);
}

/* head */
.cb-mobile-notification-head{
height:74px;

padding:0 20px;

display:flex;
align-items:center;
justify-content:space-between;

border-bottom:
1px solid #e2e8f0;

flex-shrink:0;
}

.cb-mobile-notification-head h3{
font-size:24px;
font-weight:900;
margin:0;
}

.cb-mobile-notification-head button{
width:46px;
height:46px;

border:none;
border-radius:14px;

background:#f8fafc;

font-size:18px;
font-weight:900;

cursor:pointer;
}

/* list */
.cb-mobile-notification-list{
flex:1;

overflow:auto;

padding:20px;
}

/* item */
.cb-mobile-notification-item{
display:flex;
align-items:center;
gap:14px;

padding:14px;

border-radius:22px;

background:#fff;

box-shadow:
0 10px 30px rgba(0,0,0,.04);

text-decoration:none;

margin-bottom:16px;
}

/* image */
.cb-mobile-notification-thumb{
width:82px;
height:60px;

border-radius:16px;

object-fit:cover;

border:
2px dotted #cbd5e1;

flex-shrink:0;
}

/* content */
.cb-mobile-notification-content{
flex:1;
}

.cb-mobile-notification-content h4{
font-size:15px;
font-weight:800;
line-height:1.6;

color:#0f172a;

margin:0;
}

/* mobile */
@media(max-width:768px){
    
.cb-topbar {
    padding: 10px 0;
}

.cb-notification-dropdown{
width:92vw;
right:-70px;
}

}

/* account */
.cb-account{
display:flex;
align-items:center;
gap:12px;

padding:10px 14px;

background:#fff;

border-radius:20px;

cursor:pointer;

box-shadow:
0 10px 25px rgba(0,0,0,.05);

transition:.25s;
}

.cb-account:hover{
transform:translateY(-3px);
}

.cb-avatar{
width:44px;
height:44px;

border-radius:16px;

background:
linear-gradient(
135deg,
#2563eb,
#0ea5e9
);

display:flex;
align-items:center;
justify-content:center;

font-size:18px;
font-weight:800;

color:#fff;
}

.cb-account-info{
display:flex;
flex-direction:column;
}

.cb-account-info strong{
font-size:14px;
font-weight:800;
color:#0f172a;
}

.cb-account-info span{
font-size:12px;
color:#64748b;
}

/* =========================
ACCOUNT MENU
========================= */

.cb-account-menu{
position:relative;
}

/* toggle */
.cb-account-toggle{
display:flex;
align-items:center;
gap:12px;
cursor:pointer;
}

/* chevron */
.cb-account-toggle i{
font-size:12px;
color:#64748b;
transition:.2s ease;
}

/* dropdown */
.cb-account-dropdown{
position:absolute;

top:calc(100% + 14px);
right:0;

width:240px;

background:#fff;

border-radius:22px;

padding:12px;

opacity:0;
visibility:hidden;

transform:
translateY(10px);

transition:.22s ease;

box-shadow:
0 20px 50px rgba(0,0,0,.12);

border:1px solid #eef2f7;

z-index:9999;
}

/* show */
.cb-account-menu:hover
.cb-account-dropdown{
opacity:1;
visibility:visible;
transform:none;
}

/* rotate */
.cb-account-menu:hover
.cb-account-toggle i{
transform:rotate(180deg);
}

/* links */
.cb-account-dropdown a{
display:flex;
align-items:center;
gap:12px;

padding:14px 16px;

border-radius:14px;

font-size:14px;
font-weight:700;

color:#0f172a;

text-decoration:none;

transition:.18s ease;
}

/* icon */
.cb-account-dropdown a i{
width:18px;
text-align:center;
color:#2563eb;
}

/* hover */
.cb-account-dropdown a:hover{
background:#f8fafc;
color:#2563eb;
}

/* points */
.cb-account-points{
display:flex;
align-items:center;
gap:6px;

font-size:12px;
font-weight:700;

color:#f59e0b;
}

.cb-account-points i{
font-size:11px;
}

/* mobile */
@media(max-width:768px){

.cb-account-dropdown{
right:-10px;
width:220px;
}

}

/* =========================
NAVBAR
========================= */

.cb-navbar{
border-top:
1px solid rgba(226,232,240,.8);

background:#fff;
}

.cb-nav-inner{
display:flex;
justify-content:space-between;
align-items:center;

height:72px;
}

.cb-nav-left,
.cb-nav-right{
display:flex;
align-items:center;
gap:14px;
}

/* links */
.cb-nav-link{
height:50px;

padding:0 20px;

border-radius:16px;

display:flex;
align-items:center;
gap:10px;

text-decoration:none;

font-size:14px;
font-weight:800;

color:#0f172a;

transition:.25s;
}

.cb-nav-link i{
font-size:16px;
}

.cb-nav-link:hover,
.cb-nav-link.active{
background:#eff6ff;
color:#2563eb !important;
}

/* CTA */
.cb-nav-cta{
background:
linear-gradient(
135deg,
#2563eb,
#0ea5e9
);

color:#fff !important;

box-shadow:
0 12px 25px rgba(37,99,235,.22);
}

.cb-nav-cta:hover{
transform:translateY(-2px);
}

/* =========================
MOBILE TOGGLE
========================= */

.cb-mobile-toggle{
display:none;

width:54px;
height:54px;

border:none;
border-radius:18px;

background:#fff;

box-shadow:
0 10px 25px rgba(0,0,0,.05);

cursor:pointer;

flex-direction:column;
justify-content:center;
align-items:center;
gap:5px;
}

.cb-mobile-toggle span{
width:22px;
height:2px;

background:#0f172a;

border-radius:999px;
}

/* =========================
MOBILE MENU
========================= */

.cb-mobile-overlay{
position:fixed;
inset:0;

background:
rgba(15,23,42,.6);

opacity:0;
visibility:hidden;

transition:.25s;

z-index:99998;
}

.cb-mobile-overlay.active{
opacity:1;
visibility:visible;
}

.cb-mobile-menu{
position:fixed;

top:0;
left:0;

width:320px;
max-width:90%;

height:100vh;

background:#fff;

z-index:99999;

transform:translateX(-100%);

transition:.32s cubic-bezier(.22,1,.36,1);

overflow:auto;
}

.cb-mobile-menu.active{
transform:translateX(0);
}

/* head */
.cb-mobile-head{
padding:24px;

display:flex;
justify-content:space-between;
align-items:center;

border-bottom:
1px solid #e2e8f0;
}

.cb-mobile-logo{
display:flex;
align-items:center;
gap:12px;
}

.cb-mobile-close{
width:44px;
height:44px;

border:none;
border-radius:14px;

background:#f8fafc;

font-size:18px;
font-weight:900;

cursor:pointer;
}

/* links */
.cb-mobile-links{
padding:20px;
}

.cb-mobile-links a{
height:58px;

padding:0 18px;

border-radius:18px;

display:flex;
align-items:center;
gap:14px;

text-decoration:none;

font-size:15px;
font-weight:800;

color:#0f172a;

margin-bottom:10px;

transition:.25s;
}

.cb-mobile-links a:hover{
background:#eff6ff;
color:#2563eb;
}

.cb-mobile-links a i{
width:22px;
font-size:18px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:900px){

/* top */
.cb-top-inner{
grid-template-columns:
1fr
auto
auto;

gap:12px;
}

/* nav hide */
.cb-navbar{
display:none;
}

/* hide desktop notification */
.hide-on-mobile{
display:none;
}

/* toggle show */
.cb-mobile-toggle{
display:flex;
}

/* smaller logo */
.cb-logo-text strong{
font-size:22px;
}

/* account */
.cb-account{
padding:8px;
}

.cb-account-info{
display:none;
}

.cb-avatar{
width:42px;
height:42px;
}

}

@media(max-width:600px){
/* smaller logo */
.cb-logo-text strong{
font-size:18px;
}

.cb-logo-text span{
font-size:10px;
}

.cb-logo-icon{
width:44px;
height:44px;
}

}

@media(max-width:468px){
.cb-logo-text span{
font-size:8px;
}
}

/* =========================
FAQ
========================= */

.cb-faq-wrap{

margin:40px 0;

display:flex;
flex-direction:column;
gap:16px;

}

.cb-faq-item{

background:#fff;

border:1px solid #e2e8f0;

border-radius:20px;

overflow:hidden;

box-shadow:
0 8px 24px rgba(0,0,0,.04);

transition:.25s;

}

.cb-faq-item:hover{

border-color:#bfdbfe;

}

.cb-faq-item summary{

list-style:none;

cursor:pointer;

padding:22px 24px;

font-size:17px;
font-weight:700;

color:#0f172a;

position:relative;

padding-right:60px;

}

.cb-faq-item summary::-webkit-details-marker{
display:none;
}

.cb-faq-item summary:after{

content:'+';

position:absolute;

right:24px;
top:50%;

transform:translateY(-50%);

font-size:24px;
font-weight:300;

color:#2563eb;

transition:.2s;

}

.cb-faq-item[open] summary:after{

content:'−';

}

.cb-faq-answer{

padding:0 24px 24px;

font-size:15px;

line-height:1.9;

color:#475569;

}
