/* assets/css/style.css */

/* ============================================
   GLOBAL STYLES
   ============================================ */

:root {
    --primary-color: #e77f02;
    --primary-deep: #c96a00;
    --secondary-color: #ff9a3c;
    --accent-color: #ffc107;
    --gold-color: #f4c95d;
    --emerald: #10b981;
    --emerald-glow: rgba(16, 185, 129, 0.35);
    --danger: #ef4444;
    --dark-bg: #0a0e1a;
    --dark-bg-2: #111726;
    --dark-bg-3: #1a2235;
    --navy: #0a0e1a;
    --navy-deep: #050810;
    --light-bg: #f7f8fb;
    --text-dark: #0f172a;
    --text-mid: #475569;
    --text-light: #64748b;
    --border-soft: rgba(148, 163, 184, 0.18);
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #e77f02 0%, #ff9a3c 100%);
    --gradient-gold: linear-gradient(135deg, #ffd770 0%, #e77f02 60%, #c96a00 100%);
    --gradient-accent: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    --gradient-dark: linear-gradient(135deg, #0a0e1a 0%, #111726 60%, #1a2235 100%);
    --gradient-hero: radial-gradient(ellipse at top right, rgba(231, 127, 2, 0.20), transparent 55%),
                     radial-gradient(ellipse at bottom left, rgba(255, 193, 7, 0.10), transparent 55%),
                     linear-gradient(160deg, #050810 0%, #0a0e1a 50%, #111726 100%);
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.10);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.18);
    --shadow-glow: 0 0 40px rgba(231, 127, 2, 0.45);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.10);
    --radius-card: 18px;
    --radius-btn: 10px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:not(.btn-login):not(.btn-register)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:not(.btn-login):not(.btn-register):hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn-login {
    color: var(--primary-color) !important;
    padding: 0.6rem 1.5rem !important;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

.btn-register {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

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

.hero {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(231, 127, 2, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header .label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--secondary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.service-card.crypto .service-icon {
    background: linear-gradient(135deg, #e77f02 0%, #ff9a3c 100%);
}

.service-card.stocks .service-icon {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
}

.service-card.nfts .service-icon {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-card a:hover {
    gap: 1rem;
}

/* ============================================
   TRUST SECTION
   ============================================ */

.trust-section {
    background: var(--light-bg);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

.trust-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section h3 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.disclaimer {
    max-width: 600px;
    margin-top: 0.5rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   FORMS
   ============================================ */

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-light);
}

.form-footer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
}

/* Pricing Preview */
.pricing-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.price-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.price-card.featured {
    background: var(--gradient-dark);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.price-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.price-header {
    margin-bottom: 2rem;
}

.price-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-header .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin: 0.5rem 0;
}

.price-card.featured .amount {
    color: var(--accent-color);
}

.price-header p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.price-card.featured .price-header p {
    color: rgba(255,255,255,0.7);
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.price-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.price-card.featured .price-features li {
    border-bottom-color: rgba(255,255,255,0.2);
}

.price-features li i {
    color: var(--accent-color);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.price-card a {
    margin-top: 1.5rem;
}

.price-card a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(231, 127, 2, 0.4) !important;
}

.price-card.featured .btn-primary:hover {
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.6) !important;
}

@media (max-width: 768px) {
    .pricing-preview {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .price-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }
}





/* Alert Messages - Professional Design */
.alert {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid;
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: slideInDown 0.4s ease-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.alert::before {
    content: '';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.alert strong {
    font-weight: 600;
}

/* Success Alert */
.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #e8f5e9 100%);
    border-left-color: #28a745;
    color: #155724;
}

.alert-success::before {
    content: '\f058'; /* fa-check-circle */
    color: #28a745;
}

/* Danger/Error Alert */
.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #ffebee 100%);
    border-left-color: #dc3545;
    color: #721c24;
}

.alert-danger::before {
    content: '\f06a'; /* fa-exclamation-circle */
    color: #dc3545;
}

/* Warning Alert */
.alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #fff9e6 100%);
    border-left-color: #ffc107;
    color: #856404;
}

.alert-warning::before {
    content: '\f071'; /* fa-exclamation-triangle */
    color: #ffc107;
}

/* Info Alert */
.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #e3f2fd 100%);
    border-left-color: #17a2b8;
    color: #0c5460;
}

.alert-info::before {
    content: '\f05a'; /* fa-info-circle */
    color: #17a2b8;
}

/* Close Button (Optional) */
.alert .close-btn {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: inherit;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s;
    line-height: 1;
}

.alert .close-btn:hover {
    opacity: 1;
}

/* Animation */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pulse animation for important alerts */
.alert.alert-pulse {
    animation: slideInDown 0.4s ease-out, pulse 2s ease-in-out 0.5s;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 4px 20px rgba(231, 127, 2, 0.3);
    }
}

/* Alternative Solid Style */
.alert-solid.alert-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #fff;
    border-left-color: #1e7e34;
}

.alert-solid.alert-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    border-left-color: #bd2130;
}

.alert-solid.alert-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #fff;
    border-left-color: #d39e00;
}

.alert-solid.alert-info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: #fff;
    border-left-color: #117a8b;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .alert {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .alert::before {
        font-size: 1.1rem;
    }
}

/* Auto-dismiss animation (Optional) */
.alert-dismissing {
    animation: slideOutUp 0.4s ease-out forwards;
}

@keyframes slideOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}


/* ============================================
   PREMIUM v3 — clean, conservative, generous spacing
   ============================================ */

html { scroll-behavior: smooth; }
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "cv11", "ss01", "ss03";
}

/* Nav — clean glass on dark pages */
.navbar.is-dark {
    background: rgba(8, 12, 22, 0.72);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: none;
}
.navbar.is-dark .nav-menu a { color: rgba(255, 255, 255, 0.82); }
.navbar.is-dark .nav-menu a:hover,
.navbar.is-dark .nav-menu a.active { color: #fff; }
.navbar.is-dark .nav-menu a:not(.btn-login):not(.btn-register)::after {
    background: var(--gold-color, #f4c95d);
}
.navbar.is-dark .btn-login {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.4);
    background: transparent;
}
.navbar.is-dark .btn-login:hover {
    background: #fff;
    color: var(--primary-color) !important;
}

/* ───────── LANDING HERO ───────── */
.lp-hero {
    position: relative;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(160deg, #06090f 0%, #0a0e1a 55%, #121a2c 100%);
    padding: 120px 0 100px;
}
.lp-hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 60% 50% at 82% 18%, rgba(231, 127, 2, 0.22), transparent 65%),
        radial-gradient(ellipse 50% 40% at 12% 78%, rgba(255, 193, 7, 0.10), transparent 60%);
}
.lp-hero .container { position: relative; }
.lp-hero .hero-row {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.lp-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 14px 8px 12px;
    border-radius: 100px;
    background: rgba(231, 127, 2, 0.10);
    border: 1px solid rgba(231, 127, 2, 0.28);
    font-size: 13px;
    font-weight: 600;
    color: #ffd28a;
    margin-bottom: 1.6rem;
}
.lp-eyebrow .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.30);
    animation: lp-pulse 1.8s ease-in-out infinite;
}
@keyframes lp-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.35); opacity: 0.85; }
}

.lp-hero h1 {
    font-size: clamp(2.4rem, 4.6vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.028em;
    margin: 0 0 1.4rem;
    color: #fff;
}
.lp-hero h1 .accent {
    background: linear-gradient(135deg, #ffd770 0%, #e77f02 55%, #c96a00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.lp-hero p.lead {
    font-size: 1.15rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.74);
    max-width: 540px;
    margin: 0 0 2rem;
}

.lp-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.lp-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.lp-btn-primary {
    background: linear-gradient(135deg, #ffd770 0%, #e77f02 55%, #c96a00 100%);
    color: #fff;
    box-shadow: 0 14px 30px rgba(231, 127, 2, 0.35);
}
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 44px rgba(231, 127, 2, 0.5); }
.lp-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}
.lp-btn-secondary:hover { background: rgba(255, 255, 255, 0.13); border-color: rgba(255, 255, 255, 0.3); }

.lp-trust {
    margin-top: 2.4rem;
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13.5px;
}
.lp-trust .avatars { display: flex; }
.lp-trust .avatars img {
    width: 34px; height: 34px; border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0a0e1a;
    margin-left: -10px;
}
.lp-trust .avatars img:first-child { margin-left: 0; }
.lp-trust .stars { color: #f4c95d; margin-right: 4px; }
.lp-trust strong { color: #fff; }

/* Hero visual — simple, clean photo card (no 3D tilt) */
.lp-hero-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #0c1424;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(231, 127, 2, 0.12);
}
.lp-hero-visual > img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.lp-hero-visual::after {
    content: ""; position: absolute; inset: 0;
    background:
        linear-gradient(180deg, transparent 35%, rgba(8, 12, 22, 0.6)),
        linear-gradient(160deg, rgba(231, 127, 2, 0.04), transparent 55%);
    pointer-events: none;
}
.lp-hero-badge {
    position: absolute;
    bottom: 22px; left: 22px; right: 22px;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}
.lp-hero-badge .icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: linear-gradient(135deg, #ffd770, #c96a00);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.lp-hero-badge .label  { color: #94a3b8; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.lp-hero-badge .value  { color: #fff; font-weight: 800; font-size: 22px; letter-spacing: -0.01em; }
.lp-hero-badge .delta  { color: #10b981; font-size: 12px; font-weight: 700; margin-left: auto; }

/* Stat strip below hero (single row, thin dividers) */
.lp-stats {
    margin-top: 4.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.lp-stat .num {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.05;
}
.lp-stat .num .u { color: #f4c95d; }
.lp-stat .lbl {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
}

/* Mobile hero */
@media (max-width: 968px) {
    .lp-hero { padding: 100px 0 70px; }
    .lp-hero .hero-row { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .lp-hero p.lead { margin: 0 auto 2rem; }
    .lp-ctas, .lp-trust { justify-content: center; }
    .lp-hero-visual { max-width: 420px; margin: 0 auto; }
    .lp-stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
}

/* ───────── TICKER ───────── */
.lp-ticker {
    background: #06090f;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0;
    overflow: hidden;
    color: #fff;
}
.lp-ticker-track {
    display: flex;
    gap: 50px;
    animation: lp-marquee 60s linear infinite;
    width: max-content;
    will-change: transform;
}
.lp-ticker-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; }
.lp-ticker-item .sym { color: #64748b; font-weight: 600; letter-spacing: .03em; }
.lp-ticker-item .px  { color: #e2e8f0; font-weight: 600; }
.lp-ticker-item .ch.up   { color: #10b981; font-weight: 700; }
.lp-ticker-item .ch.down { color: #ef4444; font-weight: 700; }
@keyframes lp-marquee {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ───────── REGULATOR STRIP ───────── */
.lp-regulators {
    padding: 56px 0;
    background: #f8f8fb;
    border-bottom: 1px solid #e9ebf0;
}
.lp-regulators .small-label {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 22px;
}
.lp-regulators-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    align-items: center;
}
.lp-regulators-row .reg {
    text-align: center;
    color: #94a3b8;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color .2s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.lp-regulators-row .reg i { font-size: 16px; color: #cbd5e1; }
.lp-regulators-row .reg:hover { color: #475569; }
.lp-regulators-row .reg:hover i { color: #e77f02; }
@media (max-width: 768px) {
    .lp-regulators-row { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 1rem; }
}

/* ───────── SECTION (clean, light) ───────── */
.lp-section {
    padding: 100px 0;
    background: #fff;
}
.lp-section.alt { background: #f8f8fb; }
.lp-section-head { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.lp-section-head .eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(231, 127, 2, 0.08);
    color: #e77f02;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.lp-section-head h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.022em;
    margin: 0 0 14px;
    line-height: 1.15;
}
.lp-section-head p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ───────── MARKET CARDS ───────── */
.lp-markets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.lp-market-card {
    background: #fff;
    border: 1px solid #e9ebf0;
    border-radius: 18px;
    padding: 28px;
    transition: transform .25s ease, border-color .2s, box-shadow .25s ease;
    position: relative;
    overflow: hidden;
}
.lp-market-card:hover {
    transform: translateY(-4px);
    border-color: rgba(231, 127, 2, 0.35);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}
.lp-market-card .head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px;
}
.lp-market-card .icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, #ffd770, #e77f02);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.lp-market-card .trend {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700; color: #10b981;
    background: rgba(16, 185, 129, 0.10);
    padding: 5px 10px; border-radius: 100px;
}
.lp-market-card h3 {
    font-size: 1.15rem; font-weight: 800; color: #0f172a;
    margin: 0 0 6px; letter-spacing: -0.012em;
}
.lp-market-card p {
    font-size: 14px; color: #475569; line-height: 1.6; margin: 0 0 20px;
}
.lp-market-card .stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0 14px; padding-top: 16px; border-top: 1px solid #f1f3f7;
}
.lp-market-card .stat .lbl { font-size: 10.5px; color: #94a3b8; text-transform: uppercase; letter-spacing: .07em; font-weight: 700; margin-bottom: 3px; }
.lp-market-card .stat .val { color: #0f172a; font-size: 14px; font-weight: 800; letter-spacing: -.01em; }

/* ───────── FEATURES SHOWCASE ───────── */
.lp-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.lp-showcase .copy h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 14px 0;
}
.lp-showcase .copy .eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    background: rgba(231, 127, 2, 0.08);
    color: #e77f02;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.lp-showcase .copy p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.lp-feat-list { list-style: none; padding: 0; }
.lp-feat-list li {
    display: flex; gap: 16px; padding: 18px 0;
    border-bottom: 1px solid #eef0f5;
}
.lp-feat-list li:last-child { border-bottom: 0; }
.lp-feat-list .ic {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(231, 127, 2, 0.10); color: #e77f02;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
}
.lp-feat-list h4 { font-size: 1rem; font-weight: 800; color: #0f172a; margin: 0 0 4px; letter-spacing: -.01em; }
.lp-feat-list p  { font-size: 14px; color: #475569; line-height: 1.6; margin: 0; }

.lp-showcase .visual {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 5/4;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    border: 1px solid #e9ebf0;
}
.lp-showcase .visual img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .8s cubic-bezier(.2,.7,.3,1);
}
.lp-showcase .visual:hover img { transform: scale(1.04); }
.lp-showcase .visual .badge-tag {
    position: absolute; left: 20px; bottom: 20px;
    background: #fff;
    border-radius: 12px; padding: 12px 16px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18);
    display: flex; align-items: center; gap: 12px;
}
.lp-showcase .visual .badge-tag i { color: #e77f02; font-size: 22px; }
.lp-showcase .visual .badge-tag strong { color: #0f172a; font-size: 14px; font-weight: 800; display: block; }
.lp-showcase .visual .badge-tag span  { color: #64748b; font-size: 12px; }

@media (max-width: 968px) {
    .lp-showcase { grid-template-columns: 1fr; gap: 3rem; }
}

/* ───────── TRUST (dark) ───────── */
.lp-trust-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0e1a 0%, #121a2c 100%);
    color: #fff;
    position: relative; overflow: hidden;
}
.lp-trust-section::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(231, 127, 2, 0.12), transparent 60%),
        radial-gradient(ellipse 40% 30% at 15% 75%, rgba(255, 193, 7, 0.08), transparent 60%);
    pointer-events: none;
}
.lp-trust-section .lp-section-head h2 { color: #fff; }
.lp-trust-section .lp-section-head p  { color: rgba(255, 255, 255, 0.72); }
.lp-trust-section .lp-section-head .eyebrow {
    background: rgba(231, 127, 2, 0.16);
    color: #f4c95d;
}
.lp-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    position: relative;
}
.lp-trust-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px;
    transition: transform .25s ease, border-color .2s;
}
.lp-trust-item:hover {
    transform: translateY(-4px);
    border-color: rgba(231, 127, 2, 0.35);
}
.lp-trust-item .icon {
    width: 50px; height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffd770, #c96a00);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    margin-bottom: 18px;
}
.lp-trust-item h3 {
    font-size: 1.1rem; font-weight: 800; color: #fff; margin: 0 0 6px; letter-spacing: -.01em;
}
.lp-trust-item p {
    font-size: 14px; color: rgba(255, 255, 255, 0.68); line-height: 1.6; margin: 0;
}

/* ───────── PLANS ───────── */
.lp-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.lp-plan {
    background: #fff;
    border: 1px solid #e9ebf0;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: transform .2s, box-shadow .25s, border-color .2s;
}
.lp-plan:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(15, 23, 42, 0.10); }
.lp-plan.featured {
    background: linear-gradient(180deg, #0a0e1a 0%, #121a2c 100%);
    color: #fff;
    border-color: #e77f02;
    box-shadow: 0 24px 60px rgba(231, 127, 2, 0.30);
    transform: scale(1.03);
}
.lp-plan.featured:hover { transform: scale(1.03) translateY(-4px); }
.lp-plan .pop-tag {
    position: absolute; top: 14px; right: 14px;
    background: linear-gradient(135deg, #ffd770, #e77f02);
    color: #fff; font-size: 10.5px; font-weight: 800; letter-spacing: .12em;
    padding: 4px 10px; border-radius: 100px;
}
.lp-plan .name { font-size: 1.05rem; font-weight: 700; color: #0f172a; letter-spacing: -.01em; margin: 0 0 4px; }
.lp-plan.featured .name { color: rgba(255, 255, 255, 0.8); }
.lp-plan .amt-label { font-size: 12px; color: #94a3b8; margin: 0 0 6px; }
.lp-plan .amt {
    font-size: 2.4rem; font-weight: 800;
    color: #0f172a; letter-spacing: -0.03em; line-height: 1;
    margin: 0 0 18px;
}
.lp-plan.featured .amt { color: #fff; }
.lp-plan .roi-box {
    padding: 14px 16px; border-radius: 12px;
    background: rgba(231, 127, 2, 0.08);
    margin-bottom: 22px;
}
.lp-plan.featured .roi-box { background: rgba(255, 193, 7, 0.15); }
.lp-plan .roi-num {
    font-size: 1.8rem; font-weight: 900;
    color: #e77f02; letter-spacing: -.02em; line-height: 1;
}
.lp-plan.featured .roi-num { color: #f4c95d; }
.lp-plan .roi-lbl {
    font-size: 11.5px; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: #94a3b8; margin-top: 4px;
}
.lp-plan ul { list-style: none; padding: 0; margin: 0 0 22px; }
.lp-plan li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; font-size: 14px;
    color: #475569;
}
.lp-plan.featured li { color: rgba(255, 255, 255, 0.78); }
.lp-plan li i { color: #e77f02; font-size: 12px; }
.lp-plan.featured li i { color: #f4c95d; }
.lp-plan .cta {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 13px; border-radius: 12px;
    font-weight: 700; text-decoration: none; font-size: 14.5px;
    background: #fff; color: #e77f02; border: 1.5px solid #e77f02;
    transition: transform .15s, box-shadow .15s, background .15s;
}
.lp-plan .cta:hover { background: #e77f02; color: #fff; transform: translateY(-2px); }
.lp-plan.featured .cta {
    background: linear-gradient(135deg, #ffd770, #e77f02);
    color: #fff; border-color: transparent;
    box-shadow: 0 10px 24px rgba(231, 127, 2, 0.4);
}
.lp-plan.featured .cta:hover { box-shadow: 0 18px 36px rgba(231, 127, 2, 0.6); }
.lp-plan .signin-line {
    text-align: center; margin-top: 14px; font-size: 12.5px; color: #94a3b8;
}
.lp-plan .signin-line a { color: #e77f02; font-weight: 700; text-decoration: none; }
.lp-plan.featured .signin-line a { color: #f4c95d; }

/* ───────── TESTIMONIALS ───────── */
.lp-quotes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.lp-quote {
    background: #fff;
    border: 1px solid #e9ebf0;
    border-radius: 18px;
    padding: 28px;
    transition: transform .2s, box-shadow .25s, border-color .2s;
}
.lp-quote:hover {
    transform: translateY(-4px);
    border-color: rgba(231, 127, 2, 0.30);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.08);
}
.lp-quote .stars { color: #f4c95d; font-size: 13px; margin-bottom: 14px; }
.lp-quote blockquote {
    font-size: 0.98rem; color: #0f172a; line-height: 1.7; margin: 0 0 22px;
    font-weight: 500;
}
.lp-quote .who { display: flex; align-items: center; gap: 12px; }
.lp-quote .who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.lp-quote .who .nm { color: #0f172a; font-weight: 700; font-size: 14px; }
.lp-quote .who .rl { color: #64748b; font-size: 12.5px; margin-top: 2px; }

/* ───────── CTA SECTION ───────── */
.lp-cta {
    padding: 100px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(8, 12, 22, 0.92), rgba(231, 127, 2, 0.65)),
        url('../images/landing/city-skyline.jpg') center/cover no-repeat;
}
.lp-cta h2 {
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.022em;
    margin: 0 0 14px;
}
.lp-cta p {
    color: rgba(255, 255, 255, 0.86);
    max-width: 600px; margin: 0 auto 2.4rem;
    font-size: 1.08rem; line-height: 1.65;
}
.lp-cta .lp-ctas { justify-content: center; }

/* ───────── PAGE HERO for other public pages ───────── */
.page-hero {
    position: relative;
    color: #fff;
    padding: 120px 0 90px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(160deg, #06090f 0%, #0a0e1a 55%, #121a2c 100%);
}
.page-hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(231, 127, 2, 0.18), transparent 65%),
        radial-gradient(ellipse 40% 30% at 15% 75%, rgba(255, 193, 7, 0.10), transparent 60%);
}
.page-hero .container { position: relative; }
.page-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin: 0 0 14px;
    color: #fff;
}
.page-hero h1 .highlight {
    background: linear-gradient(135deg, #ffd770 0%, #e77f02 55%, #c96a00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.page-hero p {
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

/* Service detail premium image */
.service-detail-image {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 22px !important;
    overflow: hidden;
    position: relative;
    aspect-ratio: 5/4;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    border: 1px solid #e9ebf0;
}
.service-detail-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    max-width: none !important;
    display: block;
    transition: transform .6s ease;
}
.service-detail-image:hover img { transform: scale(1.05); }

/* Mission image premium for about page */
.mission-image.premium {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 24px !important;
    overflow: hidden;
    position: relative;
    aspect-ratio: 5/4;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    border: 1px solid #e9ebf0;
}
.mission-image.premium img {
    width: 100% !important; height: 100% !important; object-fit: cover !important; max-width: none !important;
}
.mission-image.premium .badge-float {
    position: absolute; left: 20px; bottom: 20px;
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
    display: flex; align-items: center; gap: 14px;
}
.mission-image.premium .badge-float i { color: #e77f02; font-size: 22px; }
.mission-image.premium .badge-float strong { color: #0f172a; font-weight: 800; font-size: 14px; display: block; }
.mission-image.premium .badge-float span  { color: #64748b; font-size: 12px; }

/* Footer polish */
.footer { background: linear-gradient(180deg, #06090f 0%, #0a0e1a 100%); border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-section h4 { color: #f4c95d; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.footer-section img { max-width: 180px; height: auto; margin-bottom: 1rem; }
.footer-section ul li a { transition: color .15s, padding-left .15s; }
.footer-section ul li a:hover { color: #f4c95d; padding-left: 4px; }
.footer-badges .badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}


/* ============================================
   MOBILE MENU FIX — dark dropdown on dark navbar
   ============================================ */
@media (max-width: 768px) {
    .navbar { position: sticky; }
    .nav-wrapper { position: relative; }
    .nav-menu {
        position: absolute !important;
        top: calc(100% + 1rem);
        left: 0 !important;
        right: 0;
        width: 100%;
        padding: 1rem 1.5rem 1.5rem;
        gap: 0;
        align-items: stretch;
        background: #fff;
        border-top: 1px solid #e9ebf0;
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        transform: translateX(-105%);
        transition: transform .3s ease;
    }
    .nav-menu.active {
        transform: translateX(0);
        left: 0 !important;
    }
    .nav-menu li { width: 100%; }
    .nav-menu a {
        display: block;
        width: 100%;
        padding: 14px 4px !important;
        font-size: 16px;
        border-bottom: 1px solid #f1f3f7;
    }
    .nav-menu li:last-child a { border-bottom: 0; }
    .nav-menu a.btn-login,
    .nav-menu a.btn-register {
        text-align: center;
        margin-top: 10px;
        border-bottom: 0;
    }

    /* Dark navbar variant — dark dropdown with light text */
    .navbar.is-dark .nav-menu {
        background: rgba(8, 12, 22, 0.97);
        backdrop-filter: saturate(180%) blur(20px);
        -webkit-backdrop-filter: saturate(180%) blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    }
    .navbar.is-dark .nav-menu a {
        color: rgba(255, 255, 255, 0.88);
        border-bottom-color: rgba(255, 255, 255, 0.06);
    }
    .navbar.is-dark .nav-menu a:hover,
    .navbar.is-dark .nav-menu a.active { color: #fff; }
    .navbar.is-dark .nav-menu a.btn-login {
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 10px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   LIVE MARKETS — TradingView widget grid on the landing page
   ═══════════════════════════════════════════════════════════════ */
.lp-markets-section {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}
.lp-markets-section .lp-section-head { margin-bottom: 28px; }

/* ── Ticker tape — full-width strip at top ─────────────────────── */
.lp-ticker-wrap {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 22px;
    position: relative;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.lp-ticker-wrap .tradingview-widget-container { padding: 4px 8px; }

/* ── Widget tile (one card per widget) ─────────────────────────── */
.lp-widget-tile {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.2s, border-color 0.2s;
    min-width: 0;
}
.lp-widget-tile:hover {
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}
.lp-widget-head {
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 4px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.lp-widget-head i { color: #6366f1; font-size: 14px; }
.lp-widget-tile .tradingview-widget-container { min-width: 0; }
.lp-widget-tile .tradingview-widget-copyright { display: none; }

/* ── Grid layouts ──────────────────────────────────────────────── */
.lp-widget-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}
.lp-grid-2col       { grid-template-columns: 1fr 1fr; }
.lp-grid-asymmetric { grid-template-columns: 1fr 1.45fr; }

/* ── Per-tile heights — keep iframes from collapsing ───────────── */
.lp-chart-tile {
    height: 500px;
    padding: 0;
    overflow: hidden;
}
.lp-chart-tile .lp-widget-head {
    margin: 14px 18px 10px;
}
.lp-chart-tile > .tradingview-widget-container,
.lp-chart-tile > .tradingview-widget-container > .tradingview-widget-container__widget,
.lp-chart-tile iframe {
    width: 100% !important;
    height: calc(100% - 50px) !important;
    border: 0 !important;
}

.lp-heatmap-tile {
    height: 440px;
    display: flex;
    flex-direction: column;
}
.lp-heatmap-tile > .tradingview-widget-container {
    flex: 1 1 auto;
    min-height: 0;
}
.lp-heatmap-tile > .tradingview-widget-container,
.lp-heatmap-tile > .tradingview-widget-container > .tradingview-widget-container__widget,
.lp-heatmap-tile iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
}

.lp-list-tile,
.lp-overview-tile {
    height: 480px;
    display: flex;
    flex-direction: column;
}
.lp-list-tile > .tradingview-widget-container,
.lp-overview-tile > .tradingview-widget-container {
    flex: 1 1 auto;
    min-height: 0;
}
.lp-list-tile > .tradingview-widget-container iframe,
.lp-overview-tile > .tradingview-widget-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
}

.lp-calendar-tile {
    height: 480px;
    display: flex;
    flex-direction: column;
}
.lp-calendar-tile > .tradingview-widget-container {
    flex: 1 1 auto;
    min-height: 0;
}
.lp-calendar-tile > .tradingview-widget-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
}

/* ── Click shield — prevents off-site navigation while keeping the
       live data feed alive. Same approach used on the dashboard. ─ */
.lp-tv-shield {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: transparent;
    cursor: default;
    border-radius: inherit;
}

/* ── Responsive breakpoints ────────────────────────────────────── */
@media (max-width: 1024px) {
    .lp-grid-asymmetric { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .lp-widget-grid { gap: 16px; }
    .lp-chart-tile   { height: 420px; }
    .lp-heatmap-tile { height: 380px; }
    .lp-list-tile,
    .lp-overview-tile,
    .lp-calendar-tile { height: 420px; }
}

@media (max-width: 768px) {
    .lp-grid-2col       { grid-template-columns: 1fr; }
    .lp-grid-asymmetric { grid-template-columns: 1fr; }
    .lp-widget-tile { padding: 14px; }
    .lp-widget-head { font-size: 12px; }
    .lp-chart-tile   { height: 360px; }
    .lp-heatmap-tile { height: 340px; }
    .lp-list-tile,
    .lp-overview-tile { height: 380px; }
    .lp-calendar-tile { height: 460px; }
}

@media (max-width: 480px) {
    .lp-widget-tile { padding: 12px; border-radius: 12px; }
    .lp-chart-tile   { height: 320px; }
    .lp-heatmap-tile { height: 300px; }
    .lp-list-tile,
    .lp-overview-tile { height: 340px; }
    .lp-calendar-tile { height: 440px; }
    .lp-widget-head i { font-size: 12px; }
}
