/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */

.back-to-top {
    position: fixed;
    top: 110px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(30, 58, 138, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.back-to-top:hover {
    background: rgba(30, 58, 138, 1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top:active {
    transform: translateY(-1px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

/* ==========================================
   INCENTIVES HERO SECTION
   ========================================== */

.incentives-hero {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.incentives-hero .video-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.incentives-hero .video-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.5);
}

.incentives-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(59, 130, 246, 0.3) 100%);
    z-index: 2;
}

.incentives-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    z-index: 2;
    opacity: 0.3;
}

.incentives-hero .hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    padding: 0 20px;
}

.incentives-hero .hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.incentives-hero .hero-content .hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 40px;
    height: 40px;
    color: #fff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.scroll-indicator:hover {
    animation: bounceHover 0.6s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes bounceHover {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

/* ==========================================
   INTRO SECTION
   ========================================== */

.intro-section {
    background: #e5e7eb;
    padding: 60px 20px;
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.intro-text {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: all 0.3s ease;
}

.intro-text:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.intro-text p {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 20px;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.intro-text strong {
    color: #1e3a8a;
    font-weight: 600;
}

.intro-highlight {
    color: #1e3a8a;
    font-weight: 600;
    font-size: 1.15rem !important;
    text-align: center;
    margin-top: 24px !important;
}

.intro-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.intro-card,
.faq-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.intro-card:hover,
.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.intro-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.intro-card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   TYPES SECTION
   ========================================== */

.types-section {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.types-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.types-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.types-header {
    text-align: center;
    margin-bottom: 50px;
}

.types-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.types-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.type-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    background: #fff;
}

.type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1b2a4a;
    margin-bottom: 20px;
}

.type-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.type-list li {
    font-size: 1rem;
    color: #374151;
    padding: 8px 0 8px 28px;
    position: relative;
    line-height: 1.6;
}

.type-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
    font-size: 1.2rem;
}

/* ==========================================
   SUPPORT BANNER
   ========================================== */

.support-banner {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 60px auto 0;
    max-width: 1000px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.support-banner h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.support-banner p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.7;
}

/* ==========================================
   DOCUMENTATION SECTION
   ========================================== */

.docs-section {
    background: #f9fafb;
    padding: 80px 20px;
}

.docs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.docs-header {
    margin-bottom: 50px;
}

.docs-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.docs-title,
.process-title,
.faq-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #08254F;
    margin-bottom: 12px;
}

.docs-subtitle,
.process-subtitle,
.faq-subtitle {
    font-size: 1.15rem;
    color: #5b6b85;
}

.docs-header-action {
    flex-shrink: 0;
    transform: translateY(70px);
}

.docs-button {
    white-space: nowrap;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.doc-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.doc-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.doc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.doc-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.doc-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1b2a4a;
    margin: 0;
}

.doc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.doc-list li {
    font-size: 0.95rem;
    color: #374151;
    padding: 8px 0 8px 28px;
    position: relative;
    line-height: 1.6;
}

.doc-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
    font-size: 1.2rem;
}

.doc-note {
    margin-top: 30px;
    padding: 20px;
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
}

.doc-note p {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */

.process-section {
    background: #fff;
    padding: 80px 20px;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 20px;
}

.process-subtitle {
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-bottom: 30px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(10% + 30px);
    right: calc(10% + 30px);
    height: 3px;
    background: linear-gradient(to right, #3b82f6, #2563eb);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.step-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1b2a4a;
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq-section {
    background: #f9fafb;
    padding: 80px 20px;
}

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

.faq-subtitle {
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.faq-card {
    border-radius: 20px;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1b2a4a;
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 0.95rem;
    color: #5b6b85;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   CTA SECTION
   ========================================== */

.incentives-cta {
    position: relative;
    background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
    padding: 100px 20px;
    overflow: hidden;
}

.incentives-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
}

.incentives-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-button,
.docs-button {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.docs-button {
    padding: 12px 32px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.cta-button-primary,
.docs-button {
    background: #fff;
    color: #0066cc;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.docs-button {
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.cta-button-primary:hover,
.docs-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button-primary:hover {
    color: #0066cc;
}

.docs-button:hover {
    background: #1e3a8a;
    color: #fff;
}

.cta-button-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

.cta-info {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cta-info-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.cta-info-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    display: block;
}

.cta-info-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-cards {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .process-steps {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 30px;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        flex: none;
    }
}

@media (max-width: 768px) {
    .incentives-hero {
        height: 400px;
    }

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

    .incentives-hero .hero-content .hero-description {
        font-size: 1.1rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator svg {
        width: 35px;
        height: 35px;
    }

    .intro-section,
    .types-section,
    .docs-section,
    .process-section,
    .faq-section,
    .incentives-cta {
        padding: 60px 20px;
    }

    .intro-title,
    .types-title,
    .docs-title,
    .process-title,
    .faq-title,
    .cta-title {
        font-size: 2rem;
    }

    .types-subtitle,
    .docs-subtitle,
    .process-subtitle,
    .faq-subtitle,
    .cta-subtitle {
        font-size: 1.1rem;
    }

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

    .intro-cards {
        grid-template-columns: 1fr;
    }

    .intro-text {
        padding: 30px;
    }

    .docs-header-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .docs-header-action {
        transform: none;
        margin-bottom: 20px;
    }

    .docs-title,
    .docs-subtitle {
        text-align: center;
    }

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

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 40px;
    }

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

    .cta-info {
        grid-template-columns: 1fr;
    }

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

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .step-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        top: 90px;
        right: 15px;
    }

    .back-to-top svg {
        width: 20px;
        height: 20px;
    }

    .incentives-hero {
        height: 350px;
    }

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

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

    .scroll-indicator {
        bottom: 15px;
    }

    .scroll-indicator svg {
        width: 30px;
        height: 30px;
    }

    .intro-card,
    .type-card,
    .doc-card {
        padding: 24px;
    }
}