/* ===============================
   GLOBAL RESET & BASE
================================ */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background: #F5F7FA;
    color: #1D2D50;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

img {
    max-width: 100%;
}

main {
    padding: 50px 40px;
    min-height: 70vh;
}

/* ===============================
   HEADER (PREMIUM NAVBAR)
================================ */
header {
    background: #1D2D50;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #FBB13C;
}

nav a {
    color: white;
    margin-left: 22px;
    font-weight: 600;
    font-size: 0.95rem;
}

nav a:hover {
    color: #FBB13C;
}

.cta {
    background: #FBB13C;
    color: #1D2D50 !important;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    margin-left: 25px;
}

.cta:hover {
    background: #e0a22f;
}

/* ===============================
   FOOTER
================================ */
footer {
    background: #1D2D50;
    color: white;
    padding: 60px 40px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

footer h3, footer h4 {
    color: #FBB13C;
    font-family: 'Montserrat', sans-serif;
}

footer a {
    color: white;
    display: block;
    margin-top: 8px;
}

footer a:hover {
    color: #FBB13C;
}

.footer-bottom {
    border-top: 1px solid #2f3e66;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===============================
   UI COMPONENTS
================================ */
.card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #1D2D50;
    color: white;
}

.btn-primary:hover {
    background: #16203b;
}

.btn-success {
    background: #27ae60;
    color: white;
}

.btn-danger {
    background: #e74c3c;
    color: white;
}

/* ===============================
   FORMS
================================ */
input, textarea, select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-top: 8px;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #FBB13C;
    box-shadow: 0 0 0 2px rgba(251,177,60,0.2);
}

/* ===============================
   TABLES
================================ */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
}

th {
    background: #1D2D50;
    color: white;
    padding: 14px;
}

td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

tr:hover {
    background: #f4f6fb;
}
/* ===== GLOBAL ===== */

body {
    margin:0;
    font-family:'Open Sans', sans-serif;
    background:#F5F7FA;
    color:#1D2D50;
}

.site-main {
    padding:60px 6vw;
    min-height:70vh;
}

/* ===== HEADER ===== */

.site-header {
    background:#1D2D50;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
}

.nav-container {
    max-width:1300px;
    margin:auto;
    padding:18px 6vw;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo {
    font-family:'Montserrat', sans-serif;
    font-size:1.8rem;
    font-weight:700;
    color:#FBB13C;
    text-decoration:none;
    letter-spacing:0.4px;
}

.nav-links a {
    color:white;
    margin:0 16px;
    text-decoration:none;
    font-weight:600;
    font-size:0.95rem;
}

.nav-links a:hover {
    color:#FBB13C;
}

.admin-link {
    color:#f08fff !important;
}

.nav-actions {
    display:flex;
    align-items:center;
    gap:16px;
}

.user-chip {
    background:#2f3e66;
    color:white;
    padding:8px 14px;
    border-radius:30px;
    font-size:0.85rem;
    display:flex;
    align-items:center;
    gap:6px;
}

.btn-primary {
    background:#FBB13C;
    color:#1D2D50;
    padding:10px 18px;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
}

.btn-primary:hover {
    background:#e0a22f;
}

.btn-link {
    color:white;
    font-weight:600;
    text-decoration:none;
}
/* ===== AUTH PAGES ===== */

.auth-wrapper {
    min-height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;
    background:radial-gradient(circle at top, #243b6b, #0f1c34);
    padding:80px 20px;
}

.auth-card {
    background:white;
    width:100%;
    max-width:430px;
    padding:45px;
    border-radius:18px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.auth-header h1 {
    font-family:'Montserrat', sans-serif;
    font-size:2rem;
    color:#1D2D50;
}

.auth-header p {
    margin-top:8px;
    color:#555;
    font-size:0.95rem;
}

.auth-card form {
    margin-top:30px;
}

.auth-card label {
    font-weight:600;
    font-size:0.9rem;
    display:block;
    margin-bottom:6px;
}

.auth-card input {
    width:100%;
    padding:12px 14px;
    border-radius:10px;
    border:1px solid #dcdfe6;
    margin-bottom:18px;
    font-size:0.95rem;
}

.auth-card input:focus {
    outline:none;
    border-color:#FBB13C;
    box-shadow:0 0 0 2px rgba(251,177,60,.2);
}

.auth-error {
    background:#ffe3e3;
    color:#a80000;
    padding:12px;
    border-radius:10px;
    font-size:0.9rem;
    margin-top:18px;
}

.full {
    width:100%;
    margin-top:8px;
    text-align:center;
    border:none;
    cursor:pointer;
}

.auth-footer {
    margin-top:25px;
    text-align:center;
    font-size:0.9rem;
}

.auth-footer a {
    color:#FBB13C;
    font-weight:700;
    text-decoration:none;
}

.auth-footer a:hover {
    text-decoration:underline;
}
.auth-success {
    background:#e9f9f0;
    color:#0d7a3b;
    padding:12px;
    border-radius:10px;
    font-size:0.9rem;
    margin-top:18px;
}

.auth-trust {
    margin-top:25px;
    font-size:0.75rem;
    color:#777;
    text-align:center;
}
/* ===== DASHBOARD ===== */

.dashboard-wrapper {
    max-width:1300px;
    margin:auto;
}

.dashboard-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:50px;
}

.dashboard-header h1 {
    font-family:'Montserrat', sans-serif;
    font-size:2.4rem;
}

.dashboard-user {
    display:flex;
    align-items:center;
    gap:12px;
    background:white;
    padding:12px 18px;
    border-radius:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.dashboard-user span {
    font-size:0.75rem;
    color:#666;
}

.avatar {
    background:#FBB13C;
    color:#1D2D50;
    border-radius:50%;
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.3rem;
}

.license-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
    gap:30px;
}

.license-card {
    background:white;
    border-radius:20px;
    padding:28px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.license-top {
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.license-top h3 {
    font-family:'Montserrat', sans-serif;
    font-size:1.25rem;
}

.license-status {
    font-size:0.7rem;
    padding:6px 12px;
    border-radius:20px;
    font-weight:700;
    text-transform:uppercase;
}

.license-status.active {
    background:#e9f9f0;
    color:#0d7a3b;
}

.license-status.locked {
    background:#ffeaea;
    color:#9d0000;
}

.license-meta {
    display:grid;
    grid-template-columns:1fr 1fr;
    margin:22px 0;
    gap:18px;
}

.license-meta small {
    color:#888;
    font-size:0.75rem;
}

.license-progress {
    margin-bottom:22px;
}

.progress-label {
    font-size:0.8rem;
    margin-bottom:8px;
    color:#666;
}

.progress-bar {
    background:#e4e7ec;
    height:8px;
    border-radius:10px;
    overflow:hidden;
}

.progress-bar span {
    display:block;
    height:100%;
    background:#FBB13C;
    border-radius:10px;
}

.license-actions {
    margin-top:auto;
}

.btn-disabled {
    background:#ccd2da;
    color:#666;
    padding:12px;
    border-radius:10px;
    font-weight:700;
    text-align:center;
}

.empty-dashboard {
    background:white;
    border-radius:20px;
    padding:70px;
    text-align:center;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.empty-dashboard h2 {
    font-family:'Montserrat', sans-serif;
    font-size:2rem;
}
/* =====================================================
   HERO SECTION — LUXURY AGGRESSIVE TRADING STYLE
   (Elite fintech / high-performance trading bots)
===================================================== */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px;
    background:
        url('hero-luxury-bg.png') center/cover no-repeat,
        radial-gradient(circle at 15% 20%, #2f4fb8 0%, transparent 45%),
        radial-gradient(circle at 85% 30%, rgba(251,177,60,0.35) 0%, transparent 40%),
        linear-gradient(180deg, #050812 0%, #0a1022 60%, #0f1c34 100%);
    color: #fff;
    overflow: hidden;
}

/* Animated luxury grid overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at top, black 30%, transparent 75%);
    opacity: 0.25;
    z-index: 0;
}

/* Gold plasma glow */
.hero::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(251,177,60,0.35), transparent 65%);
    top: -350px;
    right: -350px;
    filter: blur(50px);
    z-index: 0;
    transform: rotate(25deg);
}

/* =====================================================
   HERO CONTENT WRAP
===================================================== */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =====================================================
   BADGE
===================================================== */
.hero .badge {
    background: linear-gradient(135deg, rgba(251,177,60,0.3), rgba(255,255,255,0.05));
    border: 1px solid rgba(251,177,60,0.6);
    color: #fbb13c;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 0.7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 900;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 35px rgba(251,177,60,0.45);
}

/* =====================================================
   HEADLINE — POWER TYPOGRAPHY
===================================================== */
.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(3rem, 5vw, 4.2rem);
    line-height: 1.05;
    margin: 28px 0 18px;
    letter-spacing: -0.02em;
    text-shadow: 0 12px 35px rgba(0,0,0,0.6);
    font-weight: 900;
}

.hero h1 span {
    background: linear-gradient(90deg, #fbb13c, #fff1c2, #fbb13c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =====================================================
   DESCRIPTION
===================================================== */
.hero p {
    font-size: 1.18rem;
    max-width: 820px;
    opacity: 0.88;
    color: #e0e6ff;
    line-height: 1.55;
}

/* =====================================================
   CTA ACTIONS
===================================================== */
.hero-actions {
    margin-top: 48px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero .btn-primary {
    background: linear-gradient(135deg,#fbb13c,#ffcc6f);
    color: #0b1224;
    padding: 16px 38px;
    border-radius: 16px;
    font-weight: 900;
    letter-spacing: .4px;
    box-shadow: 0 12px 45px rgba(251,177,60,0.55);
    transition: all 0.3s ease;
}

.hero .btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 18px 65px rgba(251,177,60,0.75);
}

.hero .btn-secondary {
    border: 2px solid rgba(251,177,60,0.75);
    color: #fbb13c;
    padding: 16px 36px;
    border-radius: 16px;
    font-weight: 800;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.hero .btn-secondary:hover {
    background: #fbb13c;
    color: #081124;
}

/* =====================================================
   TRUST STRIP
===================================================== */
.trust-strip {
    margin-top: 60px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-strip div {
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.25);
    padding: 14px 22px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #e7ecff;
    letter-spacing: .3px;
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.45);
}


/* =====================================================
   ELITE BOTS SECTION — LUXURY AGGRESSIVE BRANDING (LIGHT CONTRAST)
===================================================== */

.elite-bots {
    position: relative;
    padding: 140px 24px;
    background:
        radial-gradient(circle at 20% 10%, rgba(47,79,184,.08), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(251,177,60,.12), transparent 45%),
        linear-gradient(180deg,#ffffff,#f4f7fc,#eef2f9);
    color: #0b1224;
    overflow: hidden;
}

.elite-wrap {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: center;
}

/* =====================================================
   TEXT SIDE
===================================================== */

.elite-text .section-badge {
    background: linear-gradient(135deg, rgba(251,177,60,0.3), rgba(255,255,255,0.05));
    border: 1px solid rgba(251,177,60,0.6);
    color: #fbb13c;
    padding: 10px 22px;
    border-radius: 40px;
    font-size: 0.65rem;
    letter-spacing: .2em;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(251,177,60,0.45);
}

.elite-text h2 {
    font-family:'Montserrat',sans-serif;
    font-size: clamp(2.4rem,4vw,3.3rem);
    line-height:1.08;
    margin:26px 0 20px;
    font-weight:900;
}

.elite-lead {
    font-size:1.12rem;
    line-height:1.6;
    color:#000208;
    max-width:620px;
}

.elite-points {
    margin:28px 0 34px;
    padding:0;
    list-style:none;
}

.elite-points li {
    margin-bottom:14px;
    font-size:1.02rem;
    color:#01040e;
}

.elite-points strong {
    color:#fbb13c;
}

.elite-actions {
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

/* =====================================================
   BOT CARDS
===================================================== */

.elite-visual {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}

.bot-card {
    background: linear-gradient(145deg,#0c142b,#070d1c);
    border-radius:22px;
    padding:28px;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 45px rgba(0,0,0,.55);
    transition:.35s ease;
    position:relative;
}

.bot-card:hover {
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 28px 70px rgba(0,0,0,.75);
    border-color:rgba(251,177,60,.6);
}

.bot-card h3 {
    margin:0 0 10px;
    font-size:1.25rem;
    color:#fbb13c;
    letter-spacing:.3px;
}

.bot-card p {
    font-size:.95rem;
    line-height:1.55;
    color:#d6ddff;
}

.bot-card.glow {
    box-shadow:
        0 0 0 1px rgba(251,177,60,.3),
        0 30px 90px rgba(251,177,60,.25);
}

.bot-card.highlight {
    background: linear-gradient(145deg,#111a33,#0b1224);
    border:1px solid rgba(251,177,60,.4);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:980px){
    .elite-wrap {
        grid-template-columns:1fr;
        gap:60px;
    }
}

/* =====================================================
   LUXURY ACTION BUTTONS — ELITE SECTION
===================================================== */

.elite-actions a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 36px;
    border-radius: 14px;
    font-weight: 900;
    letter-spacing: .4px;
    text-transform: uppercase;
    font-size: .8rem;
    transition: .35s ease;
    overflow: hidden;
}

/* GOLD PRIMARY BUTTON */
.elite-actions .btn-primary {
    background: linear-gradient(135deg,#fbb13c,#ffd98a,#fbb13c);
    color: #0b1224;
    box-shadow:
        0 12px 35px rgba(251,177,60,.45),
        inset 0 1px 0 rgba(255,255,255,.4);
}

.elite-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 22px 60px rgba(251,177,60,.75),
        inset 0 1px 0 rgba(255,255,255,.6);
}

/* OUTLINE LUXURY BUTTON */
.elite-actions .btn-secondary {
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(251,177,60,.7);
    color: #b07a1a;
    box-shadow:
        0 10px 30px rgba(0,0,0,.12),
        inset 0 0 0 1px rgba(255,255,255,.6);
}

.elite-actions .btn-secondary:hover {
    background: linear-gradient(135deg,#fbb13c,#ffd98a);
    color: #0b1224;
    transform: translateY(-3px);
    box-shadow: 0 20px 55px rgba(251,177,60,.65);
}

/* SOFT SHINE SWEEP */
.elite-actions a::after {
    content:"";
    position:absolute;
    top:-50%;
    left:-120%;
    width:60%;
    height:200%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,.6),transparent);
    transform:skewX(-20deg);
}

.elite-actions a:hover::after {
    left:140%;
    transition:.8s ease;
}

/* ===== MARKETPLACE ===== */

.market-hero {
    background:radial-gradient(circle at top,#253b6e,#1D2D50);
    color:white;
    padding:90px 40px;
    text-align:center;
}

.market-hero h1 {
    font-family:'Montserrat',sans-serif;
    font-size:3rem;
}

.market-section {
    padding:90px 40px;
}

.market-layout {
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:300px 1fr;
    gap:50px;
}

.market-side {
    background:#f4f7fb;
    border-radius:22px;
    padding:30px;
}

.market-side h3 {
    margin-bottom:14px;
}

.market-side ul {
    padding-left:18px;
}

.market-side li {
    margin-bottom:10px;
}

.market-side-box {
    background:white;
    border-radius:14px;
    padding:20px;
    margin-top:22px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.market-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:30px;
}

.product-card {
    background:white;
    border-radius:22px;
    padding:28px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    box-shadow:0 20px 40px rgba(0,0,0,.08);
    transition:.3s;
}

.product-card:hover {
    transform:translateY(-6px);
    box-shadow:0 30px 70px rgba(0,0,0,.14);
}

.product-top h3 {
    font-family:'Montserrat',sans-serif;
}

.product-badge {
    display:inline-block;
    background:#1D2D50;
    color:white;
    font-size:.65rem;
    padding:6px 10px;
    border-radius:14px;
    margin-bottom:10px;
}

.product-meta {
    margin-top:22px;
}

.product-price {
    font-weight:800;
    font-size:1.2rem;
    margin-bottom:14px;
}

.btn-primary.block {
    display:block;
    text-align:center;
}

.market-trust {
    background:#f4f7fb;
    padding:90px 40px;
    text-align:center;
}

.market-trust h2 {
    font-family:'Montserrat',sans-serif;
}

.trust-icons {
    display:flex;
    justify-content:center;
    gap:22px;
    margin-top:22px;
    flex-wrap:wrap;
    font-weight:600;
}
/* ===== PRODUCT PAGE ===== */

.product-hero {
    background:radial-gradient(circle at top,#2b4482,#1D2D50);
    padding:100px 40px;
    color:white;
    text-align:center;
}

.product-hero h1 {
    font-family:'Montserrat',sans-serif;
    font-size:3.2rem;
}

.product-price-box {
    margin-top:30px;
}

.product-price {
    font-size:2.4rem;
    font-weight:800;
    margin-bottom:14px;
}

.product-section {
    padding:100px 40px;
}

.product-wrap {
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
}

.product-features {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:16px;
    margin-top:30px;
}

.feature-box {
    background:#f4f7fb;
    padding:18px;
    border-radius:14px;
    font-weight:600;
}

.product-purchase-card {
    background:white;
    padding:30px;
    border-radius:22px;
    box-shadow:0 30px 70px rgba(0,0,0,.12);
    position:sticky;
    top:120px;
}

.product-purchase-card h3 {
    font-family:'Montserrat',sans-serif;
}

.purchase-price {
    font-size:2rem;
    font-weight:800;
    margin:20px 0;
}

.product-purchase-card ul {
    padding-left:18px;
}

.secure-note {
    margin-top:20px;
    font-size:.85rem;
    color:#555;
}

.product-for {
    padding:90px 40px;
    background:#f4f7fb;
    text-align:center;
}

.for-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-top:30px;
}

.for-box {
    background:white;
    padding:22px;
    border-radius:18px;
    font-weight:600;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.product-license {
    padding:90px 40px;
    text-align:center;
}

.license-grid {
    margin-top:30px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:18px;
}

.license-grid div {
    background:#f4f7fb;
    padding:20px;
    border-radius:14px;
    font-weight:600;
}

.product-cta {
    padding:90px 40px;
    background:linear-gradient(135deg,#1D2D50,#2b4482);
    color:white;
    text-align:center;
}
/* ===== ABOUT PAGE ===== */

/* Hero Section */
.about-hero {
    background: radial-gradient(circle at top, #2b4482, #1D2D50);
    padding: 100px 40px;
    color: white;
    text-align: center;
    border-radius: 12px;
}

.about-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}

.about-hero .btn-primary {
    display: inline-block;
    margin-top: 30px;
    background: #FBB13C;
    color: #1D2D50;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.about-hero .btn-primary:hover {
    background: #e0a22f;
}

/* Features Section */
.about-features {
    padding: 100px 40px;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.about-features .feature-box {
    background: #f4f7fb;
    padding: 28px 22px;
    border-radius: 14px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.about-features .feature-box:hover {
    transform: translateY(-5px);
}

.about-features .feature-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* CTA Section */
.about-cta {
    padding: 90px 40px;
    background: linear-gradient(135deg, #1D2D50, #2b4482);
    color: white;
    text-align: center;
    border-radius: 12px;
}

.about-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta .btn-primary,
.about-cta .btn-secondary {
    display: inline-block;
    margin: 0 10px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.about-cta .btn-primary {
    background: #FBB13C;
    color: #1D2D50;
}

.about-cta .btn-primary:hover {
    background: #e0a22f;
}

.about-cta .btn-secondary {
    background: #27ae60;
    color: white;
}

.about-cta .btn-secondary:hover {
    background: #1e8449;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.4rem;
    }

    .about-cta h2 {
        font-size: 1.8rem;
    }

    .about-features {
        gap: 25px;
    }

    .about-hero p,
    .about-cta p {
        font-size: 1rem;
    }
}


/* ===== FOOTER ===== */
.footer {
    background:#1D2D50;
    color:white;
    padding:60px 40px 40px;
    font-family:'Open Sans', sans-serif;
}

.footer-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
    gap:40px;
    margin-bottom:40px;
}

.footer-col h3, .footer-col h4 {
    color:#FBB13C;
    font-family:'Montserrat', sans-serif;
    margin-bottom:18px;
}

.footer-col p, .footer-col a {
    color:white;
    text-decoration:none;
    display:block;
    margin-bottom:8px;
    font-weight:500;
    font-size:0.95rem;
}

.footer-col a:hover {
    color:#FBB13C;
}

.footer-bottom {
    text-align:center;
    font-size:0.95rem;
    color:#ccc;
    border-top:1px solid rgba(255,255,255,0.2);
    padding-top:20px;
    font-family:'Montserrat', sans-serif;
}

.footer-bottom .heart {
    color:#FBB13C;
    margin:0 5px;
    font-size:1.1rem;
    animation: pulse 1.5s infinite;
}

.footer-bottom a {
    color:#FBB13C;
    font-weight:700;
    text-decoration:none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    text-decoration:underline;
}

/* Heart pulse animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ===== CONTACT PAGE PREMIUM ===== */
.contact-hero {
    background: radial-gradient(circle at top,#2b4482,#1D2D50);
    color:white;
    text-align:center;
    padding:120px 40px 80px 40px;
    position:relative;
    overflow:hidden;
}

.contact-hero .hero-bg svg {
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:80px;
}

.contact-hero h1 {
    font-family:'Montserrat',sans-serif;
    font-size:3rem;
    margin-bottom:12px;
}

.contact-hero p {
    font-size:1.2rem;
    opacity:0.85;
}

.contact-section {
    padding:100px 40px;
    background:#F5F7FA;
}

.contact-wrap {
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
}

.contact-info, .contact-form-container {
    background:white;
    padding:40px;
    border-radius:18px;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover, .contact-form-container:hover {
    transform: translateY(-6px);
    box-shadow:0 30px 80px rgba(0,0,0,0.12);
}

.contact-info h2, .contact-form-container h2 {
    font-family:'Montserrat',sans-serif;
    margin-bottom:20px;
    color:#1D2D50;
}

.contact-info ul {
    list-style:none;
    padding:0;
    margin-top:20px;
}

.contact-info ul li {
    margin-bottom:16px;
    font-weight:600;
    font-size:1rem;
    display:flex;
    align-items:center;
    gap:8px;
    color:#1D2D50;
}

.contact-form input,
.contact-form textarea {
    width:100%;
    padding:18px;
    margin-bottom:20px;
    border-radius:12px;
    border:1px solid #ccc;
    font-size:1rem;
    font-family:'Open Sans',sans-serif;
    transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border:2px solid #FBB13C;
    outline:none;
}

.contact-form button {
    background:#FBB13C;
    color:#1D2D50;
    font-weight:700;
    padding:18px 30px;
    border:none;
    border-radius:12px;
    cursor:pointer;
    font-size:1rem;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background:#e0a22f;
    transform: translateY(-2px);
}

.form-message {
    background:#27ae60;
    color:white;
    padding:12px 18px;
    border-radius:8px;
    margin-bottom:20px;
    text-align:center;
    font-weight:600;
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity:0; transform: translateY(-10px);}
    to { opacity:1; transform: translateY(0);}
}

@media screen and (max-width: 900px) {
    .contact-wrap {
        grid-template-columns:1fr;
        gap:40px;
    }
}

/* ===== LEGAL PAGES ===== */
.legal-hero {
    background: radial-gradient(circle at top,#2b4482,#1D2D50);
    padding:100px 40px;
    text-align:center;
    color:white;
}

.legal-hero h1 {
    font-family:'Montserrat',sans-serif;
    font-size:3rem;
    margin-bottom:12px;
}

.legal-hero p {
    font-size:1.2rem;
    opacity:0.85;
}

.legal-content {
    padding:80px 40px;
    background:#F5F7FA;
}

.legal-wrap {
    max-width:900px;
    margin:auto;
    font-family:'Open Sans',sans-serif;
    color:#1D2D50;
}

.legal-wrap h2 {
    font-family:'Montserrat',sans-serif;
    font-size:1.6rem;
    margin-top:30px;
    margin-bottom:12px;
    color:#2980b9;
}

.legal-wrap p, .legal-wrap ul {
    font-size:1rem;
    line-height:1.8;
    margin-bottom:20px;
}

.legal-wrap ul {
    padding-left:20px;
    list-style-type: disc;
}

.legal-wrap ul li {
    margin-bottom:10px;
}
/* ================================
   LEGAL SUMMARY BANNER
================================ */

.legal-summary {
    padding:70px 40px;
    background:linear-gradient(135deg,#0f1c38,#1D2D50);
    color:white;
}

.legal-summary-wrap {
    max-width:1100px;
    margin:auto;
    display:flex;
    gap:28px;
    align-items:flex-start;
    background:rgba(255,255,255,0.05);
    border-radius:24px;
    padding:40px;
    box-shadow:0 30px 70px rgba(0,0,0,.25);
    border:1px solid rgba(255,255,255,.08);
}

.legal-summary-icon {
    font-size:2.8rem;
    line-height:1;
}

.legal-summary-content h3 {
    font-family:'Montserrat',sans-serif;
    font-size:1.5rem;
    margin-bottom:10px;
    color:#FBB13C;
}

.legal-summary-content p {
    opacity:0.9;
    line-height:1.7;
    max-width:800px;
}

.legal-summary-links {
    margin-top:18px;
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.legal-summary-links a {
    color:#FBB13C;
    font-weight:600;
    text-decoration:none;
    border:1px solid rgba(251,177,60,.4);
    padding:8px 14px;
    border-radius:10px;
    font-size:.85rem;
    transition:.25s;
}

.legal-summary-links a:hover {
    background:#FBB13C;
    color:#1D2D50;
}

/* Mobile */
@media(max-width:768px){
    .legal-summary-wrap {
        flex-direction:column;
    }
}

/* BOT SHOWCASE */
.bot-showcase {
    padding: 90px 20px;
    text-align: center;
    background: radial-gradient(circle, #101b34, #070b16);
    color: white;
    overflow: hidden;
}

.bot-showcase .subtitle {
    color: #cfd8ff;
    margin-bottom: 50px;
}

.orbit {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto 40px;
    border-radius: 50%;
    animation: spin 18s linear infinite;
}

.bot {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 12px 18px;
    border-radius: 14px;
    backdrop-filter: blur(8px);
    font-weight: 600;
}

.bot1 { top: 0; left: 50%; transform: translateX(-50%); }
.bot2 { right: 0; top: 50%; transform: translateY(-50%); }
.bot3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.bot4 { left: 0; top: 50%; transform: translateY(-50%); }
.bot5 { top: 50%; left: 50%; transform: translate(-50%,-50%); background:#fbb13c;color:#000; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* HOW IT WORKS */
.how-it-works { padding:90px 20px; background:#0b1220;color:white;text-align:center; }
.hiw-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:20px; max-width:1000px; margin:auto; }
.hiw-card { padding:22px; border-radius:16px; background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); }

/* FAQ */
.faq-section { padding:90px 20px; background:#070b16;color:white;text-align:center; }
.faq-item { max-width:750px;margin:0 auto 15px;border-radius:12px;overflow:hidden;border:1px solid rgba(255,255,255,0.1); }
.faq-question { width:100%;padding:16px;background:rgba(255,255,255,0.05);color:white;border:none;text-align:left;font-weight:600;cursor:pointer; }
.faq-answer { display:none;padding:16px;background:rgba(0,0,0,0.4);color:#dbe0ff; }

/* LIVE PERFORMANCE (WHITE SECTION) */
.live-performance {
    padding: 100px 20px;
    background: #f6f9ff;
    color: #1D2D50;
    position: relative;
    overflow: hidden;
}

.lp-header {
    max-width: 820px;
    margin: 0 auto 70px;
    text-align: center;
}

.lp-header p {
    color: #5b6fa6;
    margin-top: 10px;
}

.lp-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 26px;
}

/* Cards remain dark/glass */
.lp-card {
    background: linear-gradient(160deg,#0c1324,#060a14);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 30px 22px;
    text-align: center;
    transition: all 0.3s ease;
    color: white;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.lp-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(120,140,255,0.5);
    box-shadow: 0 22px 55px rgba(0,0,0,0.28);
}

.lp-card h3 {
    font-size: 2.6rem;
    font-weight: 800;
    background: linear-gradient(90deg,#8ab4ff,#ffffff,#8ab4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-card p {
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.lp-card span {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: #b6c2ff;
}

.lp-card.highlight {
    border-color: rgba(251,177,60,0.6);
    box-shadow: 0 0 35px rgba(251,177,60,0.35);
}

.lp-card.glow {
    border-color: rgba(120,160,255,0.6);
    box-shadow: 0 0 40px rgba(120,160,255,0.35);
}

.lp-footnote {
    margin-top: 50px;
    text-align: center;
    font-size: 0.85rem;
    color: #6b7fc4;
}

/* =====================================================
   FEATURES — LUXURY FINTECH EDITION (LIGHT CONTRAST)
===================================================== */

.features {
    position: relative;
    padding: 130px 30px;
    background:
        radial-gradient(circle at 15% 10%, rgba(47,79,184,.06), transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(251,177,60,.10), transparent 40%),
        linear-gradient(180deg,#ffffff,#f4f7fb,#eef2f9);
    overflow: hidden;
}

/* =====================================================
   HEADER
===================================================== */

.section-center {
    max-width: 820px;
    margin: 0 auto 70px;
    text-align: center;
}

.section-center .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(251,177,60,0.25), rgba(255,255,255,0.6));
    border: 1px solid rgba(251,177,60,0.55);
    color: #d08a19;
    padding: 10px 22px;
    border-radius: 40px;
    font-size: 0.65rem;
    letter-spacing: .22em;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(251,177,60,.25);
}

.section-center h2 {
    margin: 26px 0 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -.03em;
    color: #0b1224;
}

.section-center p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #3c465a;
}

/* =====================================================
   GRID
===================================================== */

.features-grid {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 34px;
}

/* =====================================================
   FEATURE CARDS
===================================================== */

.features .feature-card {
    position: relative;
    background: linear-gradient(145deg,#ffffff,#f8faff);
    border-radius: 22px;
    padding: 36px 32px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow:
        0 15px 40px rgba(15,28,52,.08),
        inset 0 1px 0 rgba(255,255,255,.85);
    transition: .45s ease;
    overflow: hidden;
}

/* gold scan line */
.features .feature-card::before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background: linear-gradient(90deg, transparent, rgba(251,177,60,.85), transparent);
    opacity:0;
    transition:.45s ease;
}

.features .feature-card:hover::before {
    opacity:1;
}

.features .feature-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 28px 70px rgba(15,28,52,.16),
        0 0 0 1px rgba(251,177,60,.28);
}

/* =====================================================
   TEXT
===================================================== */

.features .feature-card h3 {
    font-size: 1.35rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: #0b1224;
    letter-spacing: -.02em;
}

.features .feature-card p {
    font-size: 0.98rem;
    color: #3e485c;
    line-height: 1.7;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width: 768px){

    .features {
        padding: 90px 22px;
    }

    .section-center h2 {
        font-size: 2rem;
    }

    .features .feature-card {
        padding: 28px 24px;
    }

}

/* =====================================================
   LUXURY ICON SYSTEM — FEATURES
===================================================== */

.feature-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin-bottom: 18px;
    position: relative;
    isolation: isolate;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.6),
        0 12px 28px rgba(15,28,52,.18);
    transition: .45s ease;
}

/* GOLD VARIANT */
.feature-icon.gold {
    background: linear-gradient(145deg,#fff6df,#f3d08a);
    color: #9c6a12;
}

.feature-icon.gold::after {
    content:"";
    position:absolute;
    inset:-1px;
    border-radius:18px;
    background: linear-gradient(135deg, rgba(251,177,60,.7), transparent 60%);
    opacity:.55;
    z-index:-1;
}

/* BLUE VARIANT */
.feature-icon.blue {
    background: linear-gradient(145deg,#eef3ff,#dbe6ff);
    color: #1e3a8a;
}

.feature-icon.blue::after {
    content:"";
    position:absolute;
    inset:-1px;
    border-radius:18px;
    background: linear-gradient(135deg, rgba(47,79,184,.45), transparent 60%);
    opacity:.45;
    z-index:-1;
}

/* CARD HOVER EFFECT */
.features .feature-card:hover .feature-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 18px 45px rgba(15,28,52,.25),
        0 0 0 1px rgba(251,177,60,.35);
}

/* =====================================================
   LUXURY CTA — ELITE FINTECH (LIGHT CONTRAST VERSION)
===================================================== */

.cta-block {
    position: relative;
    padding: 130px 28px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(251,177,60,.14), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(47,79,184,.10), transparent 45%),
        linear-gradient(180deg, #ffffff, #f5f8fd, #eef3fa);
    color: #0b1224;
    overflow: hidden;
    isolation: isolate;
}

/* Subtle luxury grid */
.cta-block::after {
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at center, black 28%, transparent 75%);
    opacity:.25;
    z-index:-1;
}

/* Soft gold aura */
.cta-block::before {
    content:"";
    position:absolute;
    width:850px;
    height:850px;
    background: radial-gradient(circle, rgba(251,177,60,.18), transparent 65%);
    bottom:-380px;
    right:-280px;
    filter: blur(45px);
    z-index:-1;
}

/* =====================================================
   TEXT
===================================================== */

.cta-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.4rem);
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: #050812;
}

.cta-block p {
    max-width: 700px;
    margin: 0 auto 42px;
    font-size: 1.12rem;
    line-height: 1.65;
    color: #1c2a44;
    opacity: .92;
}

/* =====================================================
   PREMIUM CTA BUTTON
===================================================== */

.cta-block .btn-primary.large {
    display: inline-block;
    padding: 18px 46px;
    border-radius: 18px;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: .4px;
    color: #0b1224;
    background: linear-gradient(135deg,#fbb13c,#ffe09a,#fbb13c);
    box-shadow:
        0 12px 32px rgba(251,177,60,.45),
        inset 0 1px 0 rgba(255,255,255,.7);
    position: relative;
    overflow: hidden;
    transition: .35s ease;
}

/* shimmer */
.cta-block .btn-primary.large::after {
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:120%;
    height:100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
    transition:.7s ease;
}

.cta-block .btn-primary.large:hover::after {
    left:120%;
}

.cta-block .btn-primary.large:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 20px 55px rgba(251,177,60,.65),
        0 0 0 1px rgba(251,177,60,.55);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:768px){
    .cta-block {
        padding: 95px 22px;
    }

    .cta-block h2 {
        font-size: 2.1rem;
    }

    .cta-block p {
        font-size: 1.05rem;
    }
}
