/* Gainsy - Custom Fintech Styles */

/* Variables */
:root {
    --gainsy-primary: #0d6efd;
    --gainsy-secondary: #6c757d;
    --gainsy-success: #198754;
    --gainsy-warning: #ffc107;
    --gainsy-danger: #dc3545;
    --gainsy-info: #0dcaf0;
    --gainsy-dark: #212529;
    --gainsy-light: #f8f9fa;
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
}


/* Typography */
.display-1, .display-2, .display-3, .display-4, .display-5 {
    font-weight: 700;
    letter-spacing: -0.025em;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
}

.logo {
    height:70px;
}

.trust-cues {
    user-select: none;
}

.trust-cue {
    transition: box-shadow 0.2s;
}

    .trust-cue:hover {
        box-shadow: 0 0 0 0.15rem #ffc10744;
    }

.text-white-90 {
    color: rgba(255,255,255,0.9) !important;
}
/* Buttons */
.btn {
    font-weight: 600;
    transition: all 0.3s ease;
    border-width: 2px;
}

.btn-lg {
    font-size: 1.1rem;
    padding: 0.875rem 2rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #181b20 0%, #23242a 100%);
    position: relative;
    color: #f8f9fa;
    min-height: calc(100vh - 95px);
    min-height: calc(100svh - 95px);
    padding-block: clamp(2rem, 4vh, 3.5rem);
    overflow: hidden;
}

.hero-content {
    min-height: inherit;
}

.hero-media {
    margin-top: 0;
}

.hero-section .display-3,
.hero-section .lead,
.hero-section .fw-bold,
.hero-section .text-white,
.hero-section .text-white-50 {
    color: #f8f9fa !important;
}

.hero-section .bg-white.bg-opacity-10 {
    background: rgba(30, 32, 38, 0.85) !important;
}

.hero-image {
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
    background: #181b20;
}



/* Cards */
.card {
    transition: all 0.3s ease;
    border: none !important;
    background: #23242a;
    color: #f8f9fa;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Feature Icons */
.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    .logo {
        height: 35px;
    }
}

@media (max-width: 991.98px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding-block: 1.5rem;
    }

    .hero-section .display-3 {
        font-size: clamp(1.85rem, 5.2vw, 2.5rem);
        margin-bottom: 0.75rem !important;
    }

    .hero-section .lead {
        font-size: 1rem;
        margin-bottom: 1rem !important;
    }

    .hero-section .mt-5 {
        margin-top: 1.25rem !important;
    }

    .hero-image {
        max-height: 46vh;
        width: auto;
        max-width: 100%;
    }

    .logo{
        height:35px;
    }
}

/* Utility Classes */

.text-muted {
    color: #b0b3b8 !important;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #181b20 0%, #23242a 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #0052cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-soft {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Footer Styles */
footer a:hover {
    color: var(--bs-primary) !important;
    transition: color 0.3s ease;
}

/* Form Styles */
.form-control:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.content-page-hero {
    background: linear-gradient(135deg, #181b20 0%, #23242a 100%);
    color: #f8f9fa;
}

.pricing-comparison-wrap {
    background: #23242a;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.pricing-comparison-grid {
    display: grid;
    grid-template-columns: minmax(180px, 2fr) 1fr 1fr;
}

.pricing-grid-header,
.pricing-grid-cell {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-grid-header {
    font-weight: 700;
    background: rgba(0, 0, 0, 0.2);
}

.pricing-grid-header.feature-col {
    color: #f8f9fa;
}

.pricing-grid-header.free-col {
    color: #ffc107;
}

.pricing-grid-header.paid-col {
    color: #20c997;
}

.pricing-grid-cell.feature-col {
    color: #f8f9fa;
    font-weight: 600;
}

.pricing-grid-cell.plan-col {
    text-align: center;
}

.pricing-grid-cell.plan-col .bi-check-lg {
    color: #20c997;
    font-size: 1.2rem;
}

.pricing-grid-cell.plan-col .bi-dash-lg {
    color: #b0b3b8;
    font-size: 1.2rem;
}

.pricing-price-label {
    color: #ffc107 !important;
}

.pricing-price-value {
    font-weight: 700;
    font-size: 1.05rem;
}

.pricing-price-sub {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #b0b3b8;
}

.pricing-price-cta {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 193, 7, 0.6);
    color: #ffc107;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pricing-price-cta:hover,
.pricing-price-cta:focus-visible {
    background: #ffc107;
    border-color: #ffc107;
    color: #23242a;
}

.pricing-comparison-grid > :nth-last-child(-n+3) {
    border-bottom: none;
}

@media (max-width: 767.98px) {
    .pricing-comparison-grid {
        grid-template-columns: minmax(160px, 2fr) 1fr 1fr;
        font-size: 0.95rem;
    }

    .pricing-grid-header,
    .pricing-grid-cell {
        padding: 0.75rem;
    }
}

.blog-list-card {
    border: 1px solid #e9ecef;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-list-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.blog-list-tags {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6c757d;
}

.blog-list-title a {
    color: #212529;
    text-decoration: none;
}

.blog-list-title a:hover,
.blog-list-title a:focus-visible {
    color: var(--gainsy-primary);
}
