/* =========================
FOREX24 CLEAN STYLE SYSTEM
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

font-family:'Inter',sans-serif;
background:#070b1a;
color:#eef2ff;
line-height:1.6;

}

/* =========================
LAYOUT
========================= */

.container{

width:min(92%,1200px);
margin:auto;

}

.section{

padding:60px 0;

}

/* =========================
NAVBAR
========================= */

.nav-wrap{

position:sticky;
top:0;
background:#070b1a;
border-bottom:1px solid rgba(255,255,255,.08);
z-index:100;

}

.nav{

display:flex;
align-items:center;
justify-content:space-between;
padding:14px 0;

}

.brand{

display:flex;
align-items:center;
gap:10px;
text-decoration:none;
color:#eef2ff;

}

.brand-icon{

background:#66e0ee;
color:#07131d;
font-weight:800;
padding:10px 12px;
border-radius:10px;

}

.nav-links{

display:flex;
gap:18px;

}

.nav-links a{

color:#aab4df;
text-decoration:none;
font-size:14px;

}

/* =========================
BUTTONS
========================= */

.btn{

display:inline-flex;
align-items:center;
justify-content:center;

padding:12px 20px;
border-radius:14px;

font-weight:700;
font-size:14px;

cursor:pointer;
border:none;

}

.btn-primary{

background:#66e0ee;
color:#07131d;

box-shadow:0 0 20px rgba(102,224,238,.25);

}

.btn-secondary{

background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.1);
color:#eef2ff;

}

/* =========================
HERO
========================= */

.hero{

padding:80px 0;

}

.hero h1{

font-size:42px;
margin-bottom:20px;

}

.hero p{

color:#8fa0d2;
max-width:600px;

}

/* =========================
CARD SYSTEM
========================= */

.card{

background:rgba(15,21,48,.92);

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

border-radius:22px;

padding:22px;

box-shadow:0 18px 50px rgba(0,0,0,.25);

}

/* =========================
GRID SYSTEM
========================= */

.grid-2{

display:grid;
grid-template-columns:1fr 1fr;
gap:22px;

}

.grid-3{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:22px;

}

/* =========================
INPUTS
========================= */

input,
select,
textarea{

width:100%;
padding:14px 16px;

border-radius:14px;

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

color:#eef2ff;

font-size:14px;
font-family:inherit;

outline:none;

}

input::placeholder,
textarea::placeholder{

color:#8fa0d2;

}

input:hover,
select:hover,
textarea:hover{

border:1px solid rgba(102,224,238,.35);

}

input:focus,
select:focus,
textarea:focus{

border:1px solid #66e0ee;

box-shadow:0 0 0 2px rgba(102,224,238,.15);

}

select{

appearance:none;
-webkit-appearance:none;
-moz-appearance:none;

}

/* =========================
KPI BOXES
========================= */

.kpi{

background:rgba(255,255,255,.04);

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

border-radius:18px;

padding:18px;

}

.kpi-label{

font-size:11px;
letter-spacing:.12em;
text-transform:uppercase;

color:#8fa0d2;

margin-bottom:6px;

}

.kpi-value{

font-size:30px;
font-weight:800;

}

/* =========================
TABLES
========================= */

.table{

width:100%;
border-collapse:collapse;

}

.table th,
.table td{

padding:12px;
border-bottom:1px solid rgba(255,255,255,.08);

}

.table th{

font-size:11px;
text-transform:uppercase;
letter-spacing:.12em;
color:#8fa0d2;

}

/* =========================
FOOTER
========================= */

.footer{

border-top:1px solid rgba(255,255,255,.08);

margin-top:60px;
padding:40px 0;

}

.footer-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;

}

.footer a{

display:block;
color:#9aa6cb;
margin-bottom:8px;
text-decoration:none;

}

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

@media(max-width:900px){

.grid-2{

grid-template-columns:1fr;

}

.grid-3{

grid-template-columns:1fr;

}

.hero h1{

font-size:32px;

}

.nav-links{

overflow-x:auto;
white-space:nowrap;

}

.footer-grid{

grid-template-columns:1fr;

}

}