/* =================================
   SecureBank - Modern Landing Page CSS
   ================================= */

/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --dark: #1e293b;
    --light: #f8fafc;
    --purple: #a855f7;
    
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.20);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: #ffffff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand i {
    color: var(--primary);
    font-size: 1.75rem;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-btn {
    color: var(--primary) !important;
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102,126,234,0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f5f7ff 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(102,126,234,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139,92,246,0.1) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102,126,234,0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--warning);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-outline-dark {
    border: 2px solid var(--dark);
    color: var(--dark);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
}

.card-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.card-1 i { color: var(--success); }

.card-2 {
    top: 50%;
    right: -5%;
    animation-delay: 1s;
}

.card-2 i { color: var(--warning); }

.card-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

.card-3 i { color: var(--info); }

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background: var(--light);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-logos img {
    height: 30px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.trust-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Section Styles */
.services-section,
.exchange-section,
.calculators-section,
.features-section,
.testimonials-section,
.contact-section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(102,126,234,0.1);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

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

.bg-primary { background: var(--gradient-1); }
.bg-success { background: var(--gradient-4); }
.bg-warning { background: var(--gradient-2); }
.bg-info { background: var(--gradient-3); }
.bg-danger { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.bg-purple { background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%); }

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

.service-description {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Exchange Widget */
.exchange-section {
    background: var(--light);
}

.exchange-widget {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.exchange-header {
    background: var(--gradient-1);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.exchange-header h4 {
    margin: 0;
    font-weight: 700;
}

.exchange-live {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 2s infinite;
}

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

.exchange-body {
    padding: 2.5rem;
}

.btn-swap {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    margin-top: 32px;
}

.exchange-result {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 16px;
    border-left: 4px solid var(--success);
}

.exchange-result h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--success);
    margin-bottom: 0.5rem;
}

.exchange-result p {
    color: #16a34a;
    margin: 0.25rem 0;
}

.rate-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.rate-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.rate-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.rate-card .rate-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

/* Calculator Cards */
.calculator-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.calculator-card:hover {
    box-shadow: var(--shadow-lg);
}

.calculator-header {
    background: var(--gradient-1);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.calculator-header i {
    font-size: 2rem;
}

.calculator-header h3 {
    margin: 0;
    font-weight: 700;
}

.calculator-body {
    padding: 2rem;
}

.calculator-result {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 12px;
    border-left: 4px solid var(--info);
}

.calculator-result h4 {
    color: var(--info);
    font-weight: 700;
    margin-bottom: 1rem;
}

.calculator-result .result-row {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0;
}

/* Features Section */
.features-image {
    position: relative;
}

.features-image img {
    width: 100%;
    height: auto;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    background: rgba(102,126,234,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-text h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.feature-text p {
    color: #64748b;
    margin: 0;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-rating {
    color: var(--warning);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author h5 {
    margin: 0;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-author p {
    margin: 0;
    font-size: 0.875rem;
    color: #64748b;
}

/* Contact Section */
.contact-section {
    background: var(--light);
}

.contact-info {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: rgba(102,126,234,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
}

.contact-info-item h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-info-item p {
    color: #64748b;
    margin: 0;
}

.contact-social {
    margin-top: 2rem;
}

.contact-social h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

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

.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(102,126,234,0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-1);
    padding: 5rem 0;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.cta-section .btn-light {
    background: white;
    color: var(--primary);
    border-radius: 50px;
    padding: 0.875rem 2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.3);
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand i {
    color: var(--primary);
}

.footer-description {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

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

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

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    border: none;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* Form Styles */
.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(102,126,234,0.1);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .floating-card {
        display: none;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .trust-logos {
        gap: 2rem;
    }
    
    .trust-logos img {
        height: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

/* Counter Animation */
.counting {
    display: inline-block;
    animation: countUp 2s ease-out;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}
/* =================================
   Footer v2 (pills + action cards)
   ================================= */

.brand-logo{
    width: 34px;
    height: 34px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    padding: 6px;
}

.navbar-brand .brand-logo{
    background: rgba(99,102,241,0.12);
}

.footer{
    position: relative;
    overflow: hidden;
}

.footer:before{
    content:"";
    position:absolute;
    inset:-30% -30% auto -30%;
    height: 280px;
    background: radial-gradient(closest-side, rgba(99,102,241,0.22), transparent 70%);
    pointer-events:none;
}

.footer .container{
    position: relative;
    z-index: 1;
}

.footer-brand{
    gap: 0.75rem;
}

.footer-social{
    gap: 0.75rem;
}

.footer-social .icon-btn{
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.25s ease;
}

.footer-social .icon-btn:hover{
    background: rgba(99,102,241,0.25);
    border-color: rgba(99,102,241,0.35);
    transform: translateY(-3px);
}

.footer-title{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links--cards{
    display: grid;
    gap: 0.75rem;
}

.footer-pill{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0.95rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 10px 26px rgba(0,0,0,0.16);
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-pill i{
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(99,102,241,0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #c7d2fe;
}

.footer-pill div{
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-pill span{
    font-weight: 700;
    color: #ffffff;
}

.footer-pill small{
    color: #94a3b8;
    font-size: 0.82rem;
    margin-top: 0.15rem;
}

.footer-pill:hover{
    background: rgba(99,102,241,0.18);
    border-color: rgba(99,102,241,0.30);
    transform: translateY(-3px);
}

.footer-actions{
    margin-top: 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.footer-action{
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(99,102,241,0.20), rgba(139,92,246,0.14));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 14px 34px rgba(0,0,0,0.22);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-action i{
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: rgba(255,255,255,0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-action span{
    font-weight: 800;
}

.footer-action small{
    display: block;
    margin-left: auto;
    color: rgba(255,255,255,0.78);
    font-weight: 600;
}

.footer-action:hover{
    transform: translateY(-3px);
    filter: brightness(1.06);
}

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.25rem;
}

.footer-made i{
    color: #fb7185; /* rose */
}

.footer-micro{
    margin-top: 1.25rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px dashed rgba(255,255,255,0.14);
    color: #94a3b8;
    font-size: 0.92rem;
}

@media (max-width: 768px){
    .footer-actions{ grid-template-columns: 1fr; }
    .footer-action small{ margin-left: 0; }
}



/* =========================
   Footer Modals (Policies / Exchange)
   ========================= */
.sb-modal{
  background: linear-gradient(180deg, rgba(18,26,47,.98), rgba(10,15,28,.98));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
  color: rgba(255,255,255,.92);
}
.sb-modal .modal-header{
  border-bottom: 1px solid rgba(255,255,255,.10);
  padding: 18px 18px;
  background: radial-gradient(700px 160px at 10% 0%, rgba(124,92,255,.22), transparent 60%);
}
.sb-modal .modal-title{
  font-weight: 700;
  letter-spacing: .2px;
}
.sb-modal .modal-body{
  padding: 18px;
}
.sb-modal .modal-footer{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 14px 18px;
}

.sb-info-card{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.sb-info-card h6{ margin: 0 0 6px; font-weight: 700; }
.sb-info-card p{ margin: 0 0 8px; color: rgba(255,255,255,.75); }
.sb-info-ico{
  width: 42px; height: 42px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(124,92,255,.14);
  border: 1px solid rgba(124,92,255,.25);
  color: rgba(255,255,255,.92);
  flex: 0 0 auto;
}
.sb-bullets{ margin: 0; padding-left: 18px; color: rgba(255,255,255,.78); }
.sb-bullets li{ margin: 4px 0; }

.sb-callout{
  display:flex; gap: 10px; align-items:flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
}
.sb-callout i{ margin-top: 2px; color: rgba(255,255,255,.85); }

.sb-h{ margin-top: 14px; font-weight: 800; }

.sb-security-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 768px){
  .sb-security-grid{ grid-template-columns: 1fr; }
}
.sb-sec{
  display:flex; gap: 12px; align-items:flex-start;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.sb-sec i{
  width: 36px; height: 36px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(124,92,255,.14);
  border: 1px solid rgba(124,92,255,.25);
}
.sb-sec h6{ margin: 0 0 4px; font-weight: 800; }
.sb-sec p{ margin: 0; color: rgba(255,255,255,.75); }

.sb-accordion .accordion-item{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  overflow: hidden;
}
.sb-accordion .accordion-item + .accordion-item{ margin-top: 10px; }
.sb-accordion .accordion-button{
  background: transparent;
  color: rgba(255,255,255,.90);
  font-weight: 700;
}
.sb-accordion .accordion-button:not(.collapsed){
  background: rgba(124,92,255,.10);
  box-shadow: none;
}
.sb-accordion .accordion-body{ color: rgba(255,255,255,.78); }

.sb-select, .sb-input{
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  color: rgba(255,255,255,.88) !important;
  border-radius: 14px !important;
}
.sb-select:focus, .sb-input:focus{
  box-shadow: 0 0 0 .2rem rgba(124,92,255,.18) !important;
  border-color: rgba(124,92,255,.35) !important;
}

.sb-fx-result{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: radial-gradient(700px 160px at 10% 0%, rgba(124,92,255,.18), transparent 60%), rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.sb-fx-label{ font-size: 12px; color: rgba(255,255,255,.68); }
.sb-fx-value{ font-size: 22px; font-weight: 900; letter-spacing: .2px; }
.sb-fx-meta{ font-size: 12px; color: rgba(255,255,255,.65); align-self:center; text-align:right; }

.sb-table th{ color: rgba(255,255,255,.70); font-weight: 800; }
.sb-table td{ color: rgba(255,255,255,.82); border-top: 1px solid rgba(255,255,255,.06); }
