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

:root {
    --primary-color: #4ade80;
    --secondary-color: #22c55e;
    --accent-color: #84cc16;
    --dark-color: #1f2937;
    --light-color: #f0fdf4;
    --text-color: #374151;
    --success-color: #4ade80;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--gray-50);
    background-image: radial-gradient(circle at top left, rgba(74, 222, 128, 0.12), transparent 25%), radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.10), transparent 22%);
}

/* ===== NAVIGATION BAR ===== */
.navbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.logo-icon {
    font-size: 2.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 550px;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: slideInLeft 0.8s ease-out;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    opacity: 0.95;
}

.subtitle {
    font-size: 1.05rem !important;
    opacity: 0.9;
    margin-bottom: 2.5rem !important;
    font-weight: 500;
}

.hero-image {
    flex: 1;
    text-align: center;
    animation: slideInRight 0.8s ease-out;
}

.hero-illustration {
    font-size: 15rem;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cta-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.3px;
}

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

.cta-btn:active {
    transform: translateY(-2px);
}

/* ===== FEATURES SECTION ===== */
.features {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.features h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
    letter-spacing: -1px;
}

.features h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 1.5rem auto 3rem;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    border-radius: 12px;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 222, 128, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== DEMO SECTION ===== */
.demo-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.demo-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
    letter-spacing: -1px;
}

.demo-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 1.5rem auto 3rem;
    border-radius: 2px;
}

.demo-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.demo-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.1);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(74, 222, 128, 0.2);
}

.demo-card h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group label {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--gray-50);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group input[type="range"] {
    padding: 0;
    cursor: pointer;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: #ddd;
    outline: none;
    border-radius: 5px;
}

.form-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.form-group input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    cursor: pointer;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.demo-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

.demo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.45);
}

.demo-btn:active {
    transform: translateY(-1px);
}

.result-box {
    background: #f0f7f4;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--success-color);
    margin-top: 1rem;
    animation: slideIn 0.3s ease;
}

.result-box.hidden {
    display: none;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-box p {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.result-box strong {
    color: var(--dark-color);
}

.result-box span {
    color: var(--success-color);
    font-weight: bold;
}

.result-box ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.result-box li {
    margin-bottom: 0.5rem;
}

.alert-warning {
    color: var(--warning-color);
    font-weight: bold;
}

.alert-danger {
    color: var(--danger-color);
    font-weight: bold;
}

/* ===== SCHEMES SECTION ===== */
.schemes-section {
    background: linear-gradient(135deg, var(--gray-50), rgba(16, 185, 129, 0.05));
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.schemes-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
    letter-spacing: -1px;
}

.schemes-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 1.5rem auto 3rem;
    border-radius: 2px;
}

.schemes-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.scheme-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.scheme-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 222, 128, 0.2);
    border-top-color: var(--primary-color);
}

.scheme-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

    .news-section {
        max-width: 1200px;
        margin: 4rem auto 0;
        padding: 0 2rem;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(240, 253, 244, 0.9));
        border-radius: 24px;
        box-shadow: 0 30px 80px rgba(31, 41, 55, 0.08);
    }

    .news-section h2 {
        text-align: center;
        font-size: 2.8rem;
        margin-bottom: 1rem;
        color: var(--dark-color);
        font-weight: 800;
        letter-spacing: -1px;
    }

    .news-section h2::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background: var(--primary-color);
        margin: 1.5rem auto 3rem;
        border-radius: 2px;
    }

    .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.75rem;
    }

    .news-card {
        background: white;
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(74, 222, 128, 0.1);
        transition: all 0.3s ease;
        border-left: 5px solid var(--accent-color);
        min-height: 230px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .news-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 40px rgba(74, 222, 128, 0.18);
    }

    .section-head {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .section-head h2 {
        flex: 1 1 100%;
        margin: 0;
        text-align: center;
    }

    .section-head .scheme-btn {
        flex: 0 1 auto;
    }

    .news-loading {
        text-align: center;
        color: var(--dark-color);
        margin-bottom: 1.5rem;
        font-weight: 600;
        opacity: 0.8;
        background: rgba(255, 255, 255, 0.9);
        padding: 1rem 1.25rem;
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(74, 222, 128, 0.08);
    }

    .news-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        display: inline-block;
    }

    .news-card h3 {
        color: var(--dark-color);
        margin-bottom: 0.75rem;
        font-size: 1.3rem;
        font-weight: 700;
    }

    .news-card p {
        color: var(--text-color);
        line-height: 1.75;
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .news-meta {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0.75rem;
        font-size: 0.85rem;
        color: rgba(55, 65, 81, 0.8);
        margin-top: auto;
    }

    .news-link {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 700;
        margin-top: 1rem;
        display: inline-block;
    }

    .scheme-btn {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: white;
        border: none;
        padding: 0.9rem 1.8rem;
        border-radius: 30px;
        cursor: pointer;
        font-weight: 700;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        box-shadow: 0 6px 20px rgba(74, 222, 128, 0.28);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .scheme-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 35px rgba(74, 222, 128, 0.35);
    }

.scheme-btn:active {
    transform: translateY(0);
}

/* ===== COMPARISON SECTION ===== */
.compare-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.compare-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
    letter-spacing: -1px;
}

.compare-intro {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 2.5rem;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.8;
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.compare-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(74, 222, 128, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 220px;
}

.compare-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(74, 222, 128, 0.18);
}

.compare-card h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
    color: var(--dark-color);
}

.compare-card p {
    color: var(--text-color);
    line-height: 1.8;
}

.compare-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.compare-details-left,
.compare-details-right {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(74, 222, 128, 0.16);
}

.compare-details h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: var(--dark-color);
}

.compare-details ul {
    list-style: none;
    padding-left: 0;
    color: var(--text-color);
    line-height: 1.75;
}

.compare-details li {
    margin-bottom: 0.9rem;
    padding-left: 1.25rem;
    position: relative;
}

.compare-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .compare-details {
        grid-template-columns: 1fr;
    }

    .section-head {
        justify-content: center;
    }
}

/* ===== MY INFORMATION SECTION ===== */
.my-info-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    text-align: center;
}

.my-info-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
    letter-spacing: -1px;
}

.my-info-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 1.5rem auto 3rem;
    border-radius: 2px;
}

.my-info-container {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
    justify-items: center;
    gap: 3rem;
    align-items: center;
}

.profile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(74, 222, 128, 0.12);
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 680px;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(74, 222, 128, 0.25);
}

.profile-photo {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.profile-photo .photo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(74, 222, 128, 0.4);
    transition: transform 0.3s ease;
}

.profile-photo .photo:hover {
    transform: scale(1.05);
}

.profile-details h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.profile-details .title {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.3rem;
    display: inline-block;
    background: rgba(74, 222, 128, 0.1);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
}

.profile-details .subtitle-role {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.profile-details .bio {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 0.95rem;
    max-width: 100%;
}

.qualifications-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(74, 222, 128, 0.12);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.qualifications-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(74, 222, 128, 0.25);
}

.qualifications-card h3 {
    color: var(--dark-color);
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary-color);
    font-weight: 800;
}

.qualification-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.qualification-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
}

.qualification-item:hover {
    background: rgba(74, 222, 128, 0.08);
    padding-left: 1.5rem;
}

.qual-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.qual-content h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.qual-content p {
    color: var(--text-color);
    font-size: 0.95rem;
}

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

@media (max-width: 768px) {
    .my-info-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .profile-photo .photo {
        width: 180px;
        height: 180px;
    }

    .profile-details h3 {
        font-size: 1.6rem;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 3.5rem 1.5rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-illustration {
        font-size: 8rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .demo-container {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .schemes-grid {
        grid-template-columns: 1fr;
    }

    .features h2,
    .demo-section h2,
    .schemes-section h2,
    .my-info-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .demo-form {
        gap: 0.75rem;
    }

    .demo-btn {
        width: 100%;
    }
}

/* ===== UTILITY CLASSES ===== */
.hidden {
    display: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 5rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(31, 41, 55, 0.1);
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
    letter-spacing: -1px;
}

.how-it-works h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 1.5rem auto 3rem;
    border-radius: 2px;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.step {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 222, 128, 0.2);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.step h3 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.step p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Connection line between steps */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    width: 2rem;
    height: 2px;
    background: var(--primary-color);
    display: none;
}

@media (min-width: 900px) {
    .step:not(:last-child)::after {
        display: block;
    }
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    background: linear-gradient(180deg, var(--gray-50), rgba(16, 185, 129, 0.05));
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
    letter-spacing: -1px;
}

.benefits-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 1.5rem auto 3rem;
    border-radius: 2px;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.benefit-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.1);
    border-bottom: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 222, 128, 0.2);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.benefit-item h3 {
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.benefit-item p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
    letter-spacing: -1px;
}

.testimonials-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 1.5rem auto 3rem;
    border-radius: 2px;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.1);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(74, 222, 128, 0.2);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.testimonial-text {
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.testimonial-author {
    border-top: 1px solid var(--gray-200);
    padding-top: 1.2rem;
}

.author-name {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.author-location {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: linear-gradient(135deg, var(--gray-50), rgba(16, 185, 129, 0.05));
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
    letter-spacing: -1px;
}

.faq-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 1.5rem auto 3rem;
    border-radius: 2px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.1);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.2);
    transform: translateX(5px);
}

.faq-question {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-answer {
    color: var(--text-color);
    margin-top: 1rem;
    font-size: 0.95rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-color);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 5rem 2rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 5s ease-in-out infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.cta-btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== ENHANCED FOOTER ===== */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-icon {
    font-size: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

/* ===== COMPARISON SECTION - SIZE COMPARISON ===== */
.comparison-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 800;
    letter-spacing: -1px;
}

.comparison-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 1.5rem auto 3rem;
    border-radius: 2px;
}

.comparison-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Size Comparison Chart */
.size-comparison-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(74, 222, 128, 0.12);
    margin-bottom: 4rem;
}

.size-comparison-container h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.chart-wrapper {
    overflow-x: auto;
}

.size-chart {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 100%;
}

.chart-bar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.chart-bar-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.bar-label {
    min-width: 140px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.bar-container {
    flex: 1;
    height: 45px;
    background: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 50px;
    position: relative;
}

.bar:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.bar-value {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.chart-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(74, 222, 128, 0.08);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Feature Comparison Table */
.feature-comparison-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(74, 222, 128, 0.12);
    margin-bottom: 4rem;
    overflow-x: auto;
}

.feature-comparison-container h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.comparison-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
}

.comparison-table th.highlight-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.comparison-table td {
    padding: 1.2rem;
    border-bottom: 1px solid #e5e7eb;
    font-size: 0.9rem;
}

.feature-name {
    font-weight: 600;
    color: var(--dark-color);
    background: #f9fafb;
}

.comparison-table tbody tr:hover {
    background: rgba(74, 222, 128, 0.05);
}

.comparison-table td:nth-child(n+2) {
    text-align: center;
    font-size: 1.2rem;
}

.highlight-green {
    background: rgba(74, 222, 128, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

/* Efficiency Container */
.efficiency-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(74, 222, 128, 0.12);
}

.efficiency-container h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.efficiency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.efficiency-card {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.08) 0%, rgba(34, 197, 94, 0.05) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(74, 222, 128, 0.16);
    transition: all 0.3s ease;
}

.efficiency-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 35px rgba(74, 222, 128, 0.2);
}

.efficiency-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.efficiency-card h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.efficiency-card p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Team Info and Social Contact */
.team-info {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.08) 0%, rgba(34, 197, 94, 0.05) 100%);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(74, 222, 128, 0.16);
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out;
}

.team-info h3 {
    color: var(--dark-color);
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.highlight {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.1);
    transition: all 0.3s ease;
}

.highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.2);
}

.highlight h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.highlight p {
    color: var(--text-color);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Social Contact */
.social-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(74, 222, 128, 0.2);
}

.social-contact p {
    margin: 0.8rem 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

.social-contact strong {
    color: var(--primary-color);
}

.social-contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-contact a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ===== RESPONSIVE ENHANCEMENTS ===== */
@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-head {
        justify-content: center;
    }

    .how-it-works h2,
    .benefits-section h2,
    .testimonials-section h2,
    .faq-section h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.language-selector:hover {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.language-selector option {
    background: var(--dark-color);
    color: white;
    padding: 0.8rem;
}

.language-selector:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.35);
}
