/* ========================================
   Mankuca Landing Page - Main Styles
   ======================================== */

/* CSS Variables */
:root {
    --color-primary: #003366;
    --color-accent: #FFB400;
    --color-secondary: #2ECC71;
    --color-white: #FFFFFF;
    --color-light-gray: #F7F8FA;
    --color-dark-gray: #333333;
    --color-text: #333333;
    --color-text-light: #666666;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --transition: 0.3s ease;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: #FF8C00;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #004080;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: none;
    z-index: 1000;
    transition: var(--transition);
}

.header.sticky {
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 600;
    color: var(--color-text);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background-color: #FF8C00;
    margin-top: 80px;
    position: relative;
}

.hero::before {
    display: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-cta .btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: 2px solid var(--color-secondary);
}

.hero-cta .btn-secondary:hover {
    background-color: #27ae60;
    border-color: #27ae60;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    width: 100%;
    max-width: 500px;
}

.mockup-window {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.mockup-header {
    background-color: var(--color-light-gray);
    padding: 1rem;
    display: flex;
    align-items: center;
}

.mockup-dots {
    display: flex;
    gap: 0.5rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-text-light);
}

.mockup-dots span:nth-child(1) {
    background-color: #FF5F57;
}

.mockup-dots span:nth-child(2) {
    background-color: #FFBD2E;
}

.mockup-dots span:nth-child(3) {
    background-color: #28CA42;
}

.mockup-content {
    padding: 2rem;
    position: relative;
}

.mockup-background-image {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.mockup-background-image .dashboard-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.mockup-chart {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.mockup-chart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1) 0px,
        rgba(255, 255, 255, 0.1) 10px,
        transparent 10px,
        transparent 20px
    );
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-card {
    height: 80px;
    background-color: var(--color-light-gray);
    border-radius: var(--border-radius);
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Financial Lending & Business Management Section */
.financial-lending {
    padding: 5rem 0;
    background: radial-gradient(circle at top left, #f5fbff 0%, #ffffff 45%, #f9f5ff 100%);
}

.system-overview {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}

.system-category {
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(148, 163, 184, 0.25);
    position: relative;
    overflow: hidden;
}

.system-category::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top, rgba(0, 51, 102, 0.08), transparent 60%);
    opacity: 0.8;
    pointer-events: none;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--color-accent);
}

.category-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.system-feature {
    padding: 1.75rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 60%);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    position: relative;
    overflow: hidden;
}

.system-feature::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 180, 0, 0.12), transparent 55%);
    opacity: 0;
    transition: opacity var(--transition);
}

.system-feature:hover::after {
    opacity: 1;
}

.system-feature h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.system-feature p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--color-text);
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: var(--color-text-light);
    line-height: 1.6;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 1.1rem;
}

.system-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #004080 100%);
    border-radius: var(--border-radius-lg);
    color: var(--color-white);
    margin-top: 3rem;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.4);
    position: relative;
    overflow: hidden;
}

.system-cta::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.24), transparent 60%);
    opacity: 0.7;
    mix-blend-mode: screen;
}

.system-cta h3 {
    position: relative;
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.system-cta p {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    position: relative;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.cta-buttons .btn-primary:hover {
    background-color: #ffc933;
    transform: translateY(-2px);
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.cta-buttons .btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

/* Responsive styles for financial-lending section */
@media (max-width: 768px) {
    .system-category {
        padding: 2rem 1.5rem;
    }
    
    .category-title {
        font-size: 1.75rem;
    }
    
    .system-feature {
        padding: 1.5rem;
    }
    
    .system-feature h4 {
        font-size: 1.25rem;
    }
    
    .system-cta {
        padding: 2rem 1.5rem;
    }
    
    .system-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }
}

/* Responsive styles for financial-lending section */
@media (max-width: 768px) {
    .system-category {
        padding: 2rem 1.5rem;
    }
    
    .category-title {
        font-size: 1.75rem;
    }
    
    .system-feature {
        padding: 1.5rem;
    }
    
    .system-feature h4 {
        font-size: 1.25rem;
    }
    
    .system-cta {
        padding: 2rem 1.5rem;
    }
    
    .system-cta h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
    }
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--color-white);
    display: block; /* Visible on single page */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.feature-description {
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Vendor Categories Section */
.vendors {
    padding: 5rem 0;
    background-color: var(--color-light-gray);
    display: block; /* Visible on single page */
}

.vendor-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.vendor-tab {
    padding: 0.875rem 1.5rem;
    background-color: var(--color-white);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition);
}

.vendor-tab:hover,
.vendor-tab.active {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-white);
}

.vendor-content {
    position: relative;
    min-height: 300px;
}

.vendor-panel {
    display: none;
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.vendor-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vendor-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.vendor-info p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background-color: var(--color-white);
    display: block; /* Visible on single page */
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.step-description {
    color: var(--color-text-light);
    line-height: 1.6;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    color: var(--color-primary);
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background-color: var(--color-light-gray);
    display: block; /* Visible on single page */
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.benefit-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefit-item.reverse {
    direction: rtl;
}

.benefit-item.reverse > * {
    direction: ltr;
}

.benefit-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-icon-large {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.benefit-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.benefit-content p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--color-white);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 300px;
}

.testimonial-slide {
    display: none;
    animation: slideIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-content {
    text-align: center;
    padding: 2rem;
}

.testimonial-icon {
    font-size: 4rem;
    color: var(--color-accent);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--color-light-gray);
}

.author-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--color-primary);
    width: 32px;
    border-radius: 6px;
}

/* Pricing Section */
.pricing {
    background-color: var(--color-light-gray);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border: 3px solid var(--color-accent);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent);
    color: var(--color-primary);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.875rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-light-gray);
}

.plan-name {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
}

.period {
    font-size: 1rem;
    color: var(--color-text-light);
}

.plan-description {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 1.25rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #0f9f6e 0%, #0b5a3d 100%);
    color: var(--color-white);
    padding: 6rem 0;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta .btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.cta .btn-primary:hover {
    background-color: #FFC933;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    margin-bottom: 1.5rem;
}

.footer-contact li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Smooth scrolling for anchor links */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

.features-modal-container {
    max-width: 1200px;
    width: 95%;
}

.vendors-modal-container {
    max-width: 1000px;
    width: 95%;
}

.how-it-works-modal-container {
    max-width: 1200px;
    width: 95%;
}

.how-it-works-modal-body {
    background: linear-gradient(135deg, #8B6F47 0%, #6B5335 100%);
    border-bottom-left-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
    padding: 3rem;
}

.how-it-works-modal-body .section-title,
.how-it-works-modal-body .section-subtitle,
.how-it-works-modal-body .step-title,
.how-it-works-modal-body .step-description {
    color: var(--color-white) !important;
}

.how-it-works-modal-body .step-description {
    opacity: 0.9;
}

.how-it-works-modal-body #howItWorksValueTabs .value-tab {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--color-white);
}

.how-it-works-modal-body #howItWorksValueTabs .value-tab:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.how-it-works-modal-body #howItWorksValueTabs .value-tab.active {
    background: var(--color-white);
    color: #6B5335;
    border-color: var(--color-white);
}

.how-it-works-modal-body .value-item {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.4);
}

.how-it-works-modal-body .value-item h3 {
    color: #6B5335;
}

.how-it-works-modal-body .value-item p {
    color: var(--color-text);
}

.how-it-works-modal-body .value-cta .cta-note {
    color: var(--color-white);
    opacity: 0.9;
}

.how-it-works-modal-body svg path {
    stroke: currentColor;
}

.support-modal-container {
    max-width: 960px;
    width: 95%;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--color-light-gray);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--color-primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-light);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--color-light-gray);
    color: var(--color-text);
}

.modal-body {
    padding: 2rem;
}

.modal-subtitle {
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    text-align: center;
}

.institutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.institutions-display-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.institution-display-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--color-light-gray);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.institution-display-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.institution-logo-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--color-light-gray);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--color-light-gray);
}

.institution-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.institution-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.institution-display-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.institution-display-type {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.institution-display-branches {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.institution-apply-btn {
    width: 100%;
    margin-top: auto;
}

.institution-card {
    background: var(--color-light-gray);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.institution-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.institution-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.institution-name {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.institution-type {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.institution-branches {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.btn-select {
    width: 100%;
    margin-top: 0.5rem;
}

.loading-state,
.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--color-text-light);
    font-style: italic;
}

/* Progressive Form Styles */
.progressive-form-container {
    max-width: 800px;
    width: 95%;
    max-height: 90vh;
}

.progressive-form-body {
    background: linear-gradient(135deg, #8B6F47 0%, #6B5335 100%);
    padding: 2rem;
}

.form-progress-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #ffffff;
    border-bottom: 2px solid #8B6F47;
    position: relative;
}

.form-progress-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: var(--color-light-gray);
    z-index: 0;
    transform: translateY(-50%);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-light-gray);
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
    border: 2px solid var(--color-light-gray);
}

.progress-step.active .step-number {
    background: #8B6F47;
    color: var(--color-white);
    border-color: #8B6F47;
    box-shadow: 0 0 0 4px rgba(139, 111, 71, 0.2);
}

.progress-step.completed .step-number {
    background: #6B5335;
    color: var(--color-white);
    border-color: #6B5335;
}

.step-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-align: center;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: #8B6F47;
    font-weight: 600;
}

.form-step {
    display: none;
    animation: fadeInStep 0.3s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-title {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.progressive-form-body .form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.progressive-form-body .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.4;
    min-height: 1.4rem;
}

.progressive-form-body .form-group input,
.progressive-form-body .form-group select,
.progressive-form-body .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    font-size: 1rem;
    transition: var(--transition);
    box-sizing: border-box;
    min-height: 2.75rem;
    line-height: 1.5;
}

.progressive-form-body .form-group textarea {
    min-height: 4rem;
    resize: vertical;
}

.progressive-form-body .form-group input:focus,
.progressive-form-body .form-group select:focus,
.progressive-form-body .form-group textarea:focus {
    outline: none;
    border-color: var(--color-white);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.progressive-form-body .form-group small {
    display: block;
    margin-top: 0.375rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    line-height: 1.4;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: start;
}

.form-row .form-group {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
}

/* Single field in a row should span full width on mobile, half on desktop */
.form-row .form-group:only-child {
    grid-column: 1 / -1;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row .form-group:only-child {
        grid-column: 1;
    }
}

.reference-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.reference-section h4 {
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.reference-section .form-row {
    margin-bottom: 0;
}

.reference-section .form-group {
    margin-bottom: 1.5rem;
}

.reference-section .form-group:last-child {
    margin-bottom: 0;
}

/* File Upload Styles */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.file-upload-display {
    background: rgba(255, 255, 255, 0.95);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.file-upload-display:hover {
    border-color: var(--color-white);
    background: var(--color-white);
}

.file-upload-wrapper.has-file .file-upload-display {
    border-color: #6B5335;
    background: rgba(107, 83, 53, 0.1);
}

.file-icon {
    color: #8B6F47;
    opacity: 0.6;
}

.file-upload-wrapper.has-file .file-icon {
    opacity: 1;
    color: #6B5335;
}

.file-info {
    width: 100%;
}

.file-name {
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 0.25rem 0;
    word-break: break-word;
}

.file-hint {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

.file-upload-wrapper.has-file .file-hint {
    color: #6B5335;
}

/* Checkbox Styles */
.checkbox-group {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-white);
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
    accent-color: #6B5335;
}

.checkbox-label a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--color-white);
}

/* Progressive Form Actions */
.progressive-form-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.progressive-form-actions button {
    flex: 1;
    min-width: 120px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .progressive-form-actions {
        flex-direction: column;
    }
    
    .progressive-form-actions button {
        width: 100%;
        min-width: unset;
    }
}

.progressive-form-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.progressive-form-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.progressive-form-actions .btn-primary {
    background: #6B5335;
    border-color: #6B5335;
}

.progressive-form-actions .btn-primary:hover {
    background: #5a442b;
    border-color: #5a442b;
}

/* Responsive Progressive Form */
@media (max-width: 768px) {
    .form-progress-indicator {
        padding: 1rem;
        overflow-x: auto;
    }
    
    .step-label {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .progressive-form-body {
        padding: 1.5rem 1rem;
    }
    
    .progressive-form-actions {
        flex-wrap: wrap;
    }
    
    .progressive-form-actions button {
        flex: 1 1 calc(50% - 0.5rem);
    }
}

/* Support Modal */
.support-modal-body {
    padding-bottom: 3rem;
}

.support-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.support-tab {
    border: 1px solid var(--color-light-gray);
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    background: var(--color-white);
    color: var(--color-text);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.support-tab.active {
    background: #6B5335;
    color: var(--color-white);
    border-color: #6B5335;
    box-shadow: 0 10px 20px rgba(107, 83, 53, 0.2);
}

.support-content .support-panel {
    display: none;
}

.support-content .support-panel.active {
    display: block;
}

.support-content h3 {
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-size: 1.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: var(--color-light-gray);
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: var(--color-text);
}

.support-resource-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-resource-list li {
    background: var(--color-light-gray);
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.05);
}

.support-resource-list strong {
    display: block;
    font-size: 1rem;
    color: var(--color-text);
}

.support-resource-list span {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0.25rem 0 0.5rem 0;
}

.resource-link {
    color: #6B5335;
    font-weight: 600;
    text-decoration: underline;
}

.help-center-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}

.help-card {
    background: var(--color-light-gray);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.help-card h4 {
    margin: 0;
    color: var(--color-text);
}

.help-card p a {
    color: var(--color-primary);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.support-modal-body .btn-secondary,
.support-modal-body .btn-primary {
    width: fit-content;
}

@media (max-width: 600px) {
    .support-tabs {
        overflow-x: auto;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-light-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-light-gray);
}

/* Hero CTA Updates */
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
    }
    
    .institutions-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-container {
        max-width: 100%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body {
        padding: 1rem;
    }
}

/* Toast Animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Enhanced Hero Section Styles */
.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 180, 0, 0.15);
    border: 1px solid rgba(255, 180, 0, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.badge-text {
    color: var(--color-accent);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-item .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
}

.hero-stat-item .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-group-title {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.trust-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin: 0;
}

/* Statistics Section */
.statistics {
    padding: 5rem 0;
    background: linear-gradient(135deg, #8B6F47 0%, #6B5335 100%);
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    overflow: visible;
}

.statistics .section-title,
.statistics .section-subtitle,
.statistics .section-description {
    color: var(--color-white);
}

.statistics .section-subtitle,
.statistics .section-description {
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.stat-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 51, 102, 0.1);
    position: relative;
    z-index: 3;
    overflow: visible;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    z-index: 4;
}

.stat-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.stat-card .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-card .stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Value Proposition Section */
.value-proposition {
    display: block; /* Visible on single page */
    padding: 6rem 0;
    background: var(--color-white);
    position: relative;
    z-index: 1;
    margin-top: 0;
    clear: both;
    overflow: visible;
}

.value-proposition .section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.value-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0 2rem;
    flex-wrap: wrap;
}

.value-tab {
    padding: 1rem 2.5rem;
    background: var(--color-light-gray);
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition);
}

.value-tab:hover {
    background: rgba(0, 51, 102, 0.1);
    border-color: rgba(0, 51, 102, 0.2);
}

.value-tab.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.value-content {
    position: relative;
    min-height: 400px;
}

.value-panel {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.value-panel.active {
    display: block;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-item {
    padding: 2rem;
    background: var(--color-light-gray);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

#value-proposition .value-item {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.value-icon {
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.value-item p {
    font-size: 0.9375rem;
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.6;
}

.value-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 51, 102, 0.1);
}

.value-cta .btn-primary,
.value-cta .btn-secondary {
    margin: 0 0.5rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}