:root {
    /* Gold & Black Palette */
    --gold-light: #f7e9c8;
    --gold: #d4af37;
    --gold-dark: #b8941f;
    --gold-accent: #fff9e6;
    --black-light: #2a2a2a;
    --black: #1a1a1a;
    --gray-dark: #3a3a3a;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
    --border-radius: 12px;
    --container-max-width: 1200px;
    --transition: all 0.3s ease;
}

/* Container */
.fin-container {
    margin: 0 auto;
    padding: 0 1.25rem;
    max-width: var(--container-max-width);
}

/* Screen-reader only utility */
.sr-only {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

/* Hero Section */
.fin-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    color: var(--white);
    overflow: hidden;
}

.fin-hero:before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-color: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 1200 600'><defs><linearGradient id='g' x1='0' x2='1'><stop offset='0' stop-color='%231a1a1a' stop-opacity='0.9'/><stop offset='1' stop-color='%232a2a2a' stop-opacity='0.85'/></linearGradient></defs><rect width='1200' height='600' fill='url(%23g)'/><g opacity='0.12' fill='%23d4af37'><path d='M0,200 C150,120 350,260 600,220 C850,180 1050,260 1200,200 L1200,600 L0,600 Z'/></g><g opacity='0.08' fill='%23d4af37'><path d='M0,260 C180,200 400,320 600,280 C800,240 1020,320 1200,260 L1200,600 L0,600 Z'/></g></svg>");
    background-size: cover;
    background-position: center;
}

.fin-hero-content {
    max-width: 820px;
    position: relative;
    z-index: 2;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fin-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--gold-light);
}

.fin-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: var(--gray-light);
}

.fin-hero-stats {
    display: flex;
    gap: 2.25rem;
    margin-top: 2.25rem;
    justify-content: center;
}

.fin-stat {
    display: flex;
    flex-direction: column;
}

.fin-stat-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gold);
}

.fin-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    color: var(--gray-light);
}

.fin-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.fin-hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
}

.fin-shape-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
}

.fin-shape-2 {
    bottom: -150px;
    right: 20%;
    width: 300px;
    height: 300px;
    background: rgba(212, 175, 55, 0.03);
}

/* Make hero slightly taller on larger screens for better centering */
@media (min-width: 992px) {
    .fin-hero {
        padding: 160px 0 120px;
    }
}

/* Section Header */
.fin-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.fin-section-label {
    display: inline-block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.fin-section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.fin-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
    border-radius: 2px;
}

.fin-section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* About Content */
.fin-about-content {
    padding: 100px 0;
    background: var(--white);
}

.fin-about-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3.5rem;
    align-items: start;
}

.fin-about-text p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.fin-about-features {
    margin-top: 2rem;
}

.fin-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.fin-feature i {
    color: var(--gold);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.fin-feature span {
    color: var(--black);
}

.fin-about-visual {
    display: flex;
    justify-content: center;
}

.fin-visual-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    width: 100%;
    max-width: 380px;
    border: 1px solid var(--gold-light);
}

.fin-card-header {
    background: var(--gold-accent);
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
}

.fin-card-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.fin-dot-red {
    background: #ff5f57;
}

.fin-dot-yellow {
    background: #ffbd2e;
}

.fin-dot-green {
    background: #28ca42;
}

.fin-card-content {
    padding: 2rem;
}

.fin-chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 150px;
    margin-bottom: 1rem;
}

.fin-chart-bar {
    width: 40px;
    background: linear-gradient(to top, var(--gold-dark), var(--gold));
    border-radius: 4px 4px 0 0;
}

.fin-chart-label {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Mission & Vision */
.fin-mission-vision {
    padding: 100px 0;
    background: var(--gold-accent);
}

.fin-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.fin-mv-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gold-light);
}

.fin-mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.fin-mv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.fin-mission-card .fin-mv-icon {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold);
}

.fin-vision-card .fin-mv-icon {
    background: rgba(184, 148, 31, 0.12);
    color: var(--gold-dark);
}

.fin-mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
    position: relative;
    padding-bottom: 0.8rem;
}

.fin-mv-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-dark));
    border-radius: 2px;
}

.fin-mv-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Values & Achievements */
.fin-values-achievements {
    padding: 100px 0;
    background: var(--white);
}

.fin-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.fin-value-card, .fin-achievement-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gold-light);
}

.fin-value-card:hover, .fin-achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.fin-value-icon, .fin-achievement-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.fin-value-icon {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.fin-achievement-icon {
    background: rgba(184, 148, 31, 0.1);
    color: var(--gold-dark);
}

.fin-value-card h3, .fin-achievement-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.fin-value-card p, .fin-achievement-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* CTA Section */
.fin-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    color: var(--white);
    text-align: center;
}

.fin-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.fin-cta-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--gold-light);
}

.fin-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: var(--gray-light);
}

.fin-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.fin-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.fin-btn-primary {
    background: var(--gold);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.fin-btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: var(--white);
}

.fin-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(212, 175, 55, 0.5);
}

.fin-btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    border-color: var(--gold);
}

/* Responsive Design */
@media (max-width: 992px) {
    .fin-hero-title {
        font-size: 2.5rem;
    }

    .fin-about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fin-mv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .fin-hero {
        padding: 100px 0 60px;
    }

    .fin-hero-title {
        font-size: 1.75rem;
    }

    .fin-hero-subtitle {
        font-size: 1rem;
    }

    .fin-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .fin-section-header h2 {
        font-size: 1.875rem;
    }

    .fin-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .fin-btn {
        width: 200px;
    }
}

@media (max-width: 576px) {
    .fin-hero-title {
        font-size: 1.75rem;
    }

    .fin-section-header h2 {
        font-size: 1.625rem;
    }

    .fin-mv-card,
    .fin-value-card,
    .fin-achievement-card {
        padding: 2rem 1.5rem;
    }
}