/* Fintech Solutions Custom Styles */

:root {
    --fintech-bg: #110806;
    --fintech-orange: #ec6300;
    --fintech-orange-dark: #2d1300;
    --fintech-orange-hover: #ea580c;
    --fintech-emerald: #10b981;
    --fintech-text-gray: #9ca3af;
    --fintech-border-alpha: rgba(249, 115, 22, 0.2);
    --fintech-glass-bg: rgba(255, 255, 255, 0.05);
}

.fintech-body {
    background-color: var(--fintech-bg);
    color: white;
    /* Restoring white text as default */
    font-family: 'Inter', sans-serif;
}

.fintech-section {
    padding: 80px 0;
    background: radial-gradient(circle at center, #3e1a00 0%, #1d0c00 100%);
    width: 100%;
    min-height: 100vh;
    text-align: center;
}

.fintech-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

}

.fintech-container p {
    font-family: 'Inter';
    color: white;
    max-width: 850px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Badge */
.fintech-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 9999px;
    border: 1px solid var(--fintech-border-alpha);
    color: #ec6300;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    background-color: #9ca3af53;

}

@media (max-width: 768px) {
    .fintech-badge {
    font-size: 12px;
   
}
}

.fintech-badge i {
    font-size: 8px;
    margin-right: 8px;
    font-family: "Inter", sans-serif;
}

/* Typography */
.fintech-title {
    font-family: 'Inknut Antiqua', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 24px;
    line-height: 1.1;
    color: white;
}

.fintech-title span {
      color: #ffbb00;
}



/* Buttons */
.fintech-btn-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 80px;
}

.btn-primary {
    font-family: 'Inter', sans-serif;
    background-color: var(--fintech-orange);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
    border: none;
}

.btn-primary:hover {
    background-color: var(--fintech-orange-hover);
}

.btn-secondary {
    font-family: 'Inter', sans-serif;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.3s;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Stats Grid */
.stats-container {
    padding: 2px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 32px;
    margin-bottom: 80px;
    font-family: 'Inter';
    max-width: 950px;
    margin: 0 auto;
}

.stats-grid {
    background: rgba(66, 66, 66, 0.322);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: rgba(111, 91, 81, 0.4);
    border: 1px solid #ec6300;
    border-radius: 20px;
    padding: 32px;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Inter';
    color: var(--fintech-orange);
    margin-bottom: 8px;
}

.stat-label {
    color: white;
    font-size: 0.99rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Section Header */
.section-header-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border-left: 4px solid var(--fintech-orange);
    padding: 20px 24px;
    background: rgba(31, 41, 55, 0.5);
    border-radius: 0 12px 12px 0;
    max-width: fit-content;
    margin-bottom: 48px;
    color: white;
    font-family: 'Inter';
    margin-top: 48px;
}

.section-header-box h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;

}

.section-header-box p {
    font-family: 'Inter';
    color: white;
    font-size: 0.9rem;
    margin: 4px 0 0;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background: #1a1a1e;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.product-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.product-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.icon-emerald {
    background: rgba(16, 185, 129, 0.15);
    color: var(--fintech-emerald);
}

.icon-orange {
    background: rgba(249, 115, 22, 0.15);
    color: var(--fintech-orange);
}

.product-served {
    font-family: monospace;
    font-size: 10px;
    font-weight: 600;

    padding: 2px 6px;
    border-radius: 20px;
}

.served-emerald {
    color: #10b981;
    background-color: #10b98120;
}

.served-orange {
    color: #f97316;
    background-color: #f9731620;
}

.product-card h3 {
    font-family: 'Inter';
    font-size: 1.75rem;
    color: white;
    font-weight: 800;
    margin-bottom: 16px;
}

.product-card p {
    font-family: 'Inter';
    color: var(--fintech-text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    min-height: 75px;
    margin-bottom: 24px;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.icon-tab {
    
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    padding: 18px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: auto;
}

.icon-tab i {

    color: #10b981;
    font-size: 14px;
    transition: color 0.3s;
}

.icon-tab i:hover {
    color: white;
}


.btn-emerald-solid {
    background: var(--fintech-emerald);
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-emerald-solid:hover {
    background: #059669;
}



.feature-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: white;
    margin-bottom: 12px;
    font-family: 'Inter';
}

.feature-item i {
    margin-right: 12px;
    font-size: 14px;
}

.btn-outline-emerald {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--fintech-emerald);
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline-emerald:hover {
    background: rgba(16, 185, 129, 0.2);
}

.btn-orange-solid {
    background: var(--fintech-orange);
    color: white;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-orange-solid:hover {
    background: var(--fintech-orange-hover);
}

.product-image-box {
    margin-top: 32px;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
    background: #2a2a2e;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: #ff6200;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #ff6200;
}