/* ============================================
   BEACON PAIN CLINIC - HOME PAGE STYLES
   ============================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 700px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(91, 163, 208, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 0.9fr 1.6fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.08;
    color: #374151;
    margin-bottom: 18px;
    margin-top: 0;
}

.title-highlight {
    background: linear-gradient(135deg, #5BA3D0, #4A8BC2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 20px;
    max-width: 500px;
}

/* ============================================
   HERO FAQ ACCORDION
   ============================================ */
.hero-faq {
    margin-top: 20px;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-faq-label {
    margin: 0 0 8px 0;
    font-size: 0.95rem;
    color: #6B7280;
}

.hero-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hero-faq-item {
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    background: #FFFFFF;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-faq-item.active {
    border-color: #5BA3D0;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    background: #F9FAFB;
}

.hero-faq-question {
    width: 100%;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 0.96rem;
    color: #111827;
}

.hero-faq-question span:first-child {
    flex: 1;
    text-align: left;
}

.hero-faq-toggle {
    font-size: 1.1rem;
    color: #6B7280;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.hero-faq-item.active .hero-faq-toggle {
    transform: rotate(45deg);
    color: #2563EB;
}

.hero-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.hero-faq-answer p {
    padding: 0 14px 10px 44px;
    font-size: 0.92rem;
    color: #4B5563;
    margin: 0;
}

/* ============================================
   HERO ACTIONS & BUTTONS
   ============================================ */
.hero-actions {
    margin-top: 16px;
    max-width: 520px;
}

.hero-actions .hero-cta {
    width: 100%;
    justify-content: center;
}

.hero-actions .hero-cta.primary {
    background: linear-gradient(135deg, #5BA3D0, #4A8BC2);
    color: white;
    box-shadow: 0 4px 12px rgba(91, 163, 208, 0.3);
    padding: 18px 28px;
    font-size: 1.1rem;
}

.hero-actions .hero-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 163, 208, 0.4);
    color: white;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}

.btn-subtext {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 2px;
}

.btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* ============================================
   HERO VISUAL
   ============================================ */
.hero-visual {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #5BA3D0 0%, #4A8BC2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container:hover {
    transform: translateY(-8px);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(91, 163, 208, 0.9), transparent);
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-container:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content {
    color: white;
    text-align: center;
}

.overlay-text {
    font-weight: 600;
    font-size: 1rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-section__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-white);
}

.faq-item:hover .faq-item__question {
    background: var(--bg-light);
}

.faq-item.active .faq-item__question {
    background: rgba(91, 163, 208, 0.05);
    border-bottom: 1px solid var(--border-color);
}

.faq-item__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    line-height: 1.4;
    transition: var(--transition);
}

.faq-item.active .faq-item__title {
    color: var(--primary-color);
}

.faq-item__toggle {
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item__toggle:hover {
    background: var(--primary-light);
    color: var(--bg-white);
    transform: scale(1.05);
}

.faq-item.active .faq-item__toggle {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: rotate(45deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-item__answer {
    max-height: 300px;
}

.faq-item__content {
    padding: 0 30px 30px;
}

.faq-item__content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    display: inline-block;
    background: rgba(91, 163, 208, 0.1);
    color: #5BA3D0;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #5BA3D0, #4A8BC2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #5BA3D0;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.appointment-icon {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.assessment-icon {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
}

.treatment-icon {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-meta {
    flex: 1;
}

.service-category {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
    line-height: 1.3;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-description {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: #374151;
    transition: transform 0.3s ease;
}

.feature-icon {
    width: 16px;
    height: 16px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    flex-shrink: 0;
}

.service-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #5BA3D0;
    border: 2px solid #5BA3D0;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-button:hover {
    background: #5BA3D0;
    color: white;
    transform: translateX(4px);
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.service-button:hover .btn-arrow {
    transform: translateX(4px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: #F8FAFC;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(91, 163, 208, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 139, 194, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.about-content {
    text-align: center;
}

.section-subdescription {
    font-size: 1rem;
    color: #6B7280;
    max-width: 700px;
    margin: 16px auto 0;
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 60px 0 40px;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #5BA3D0, #4A8BC2);
    transition: height 0.6s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.stat-card:hover::before {
    height: 100%;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(91, 163, 208, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5BA3D0;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: #5BA3D0;
    color: white;
    transform: scale(1.1);
}

.stat-icon svg {
    width: 24px;
    height: 24px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5BA3D0;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #6B7280;
    font-weight: 500;
    line-height: 1.4;
}

.about-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.about-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-button.primary {
    background: linear-gradient(135deg, #5BA3D0, #4A8BC2);
    color: white;
    box-shadow: 0 4px 12px rgba(91, 163, 208, 0.3);
}

.about-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 163, 208, 0.4);
    color: white;
}

.about-button.secondary {
    background: white;
    color: #5BA3D0;
    border: 2px solid #5BA3D0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-button.secondary:hover {
    background: #5BA3D0;
    color: white;
    transform: translateY(-2px);
}

.about-button:hover .btn-icon {
    transform: translateX(4px);
}

/* ============================================
   CONDITIONS SECTION
   ============================================ */
.conditions-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.conditions-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(91, 163, 208, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.conditions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.condition-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 24px 20px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.condition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #5BA3D0, #4A8BC2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.condition-card:hover::before {
    transform: scaleX(1);
}

.condition-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(91, 163, 208, 0.15);
    border-color: #5BA3D0;
}

.condition-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(91, 163, 208, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.condition-card:hover .condition-icon-wrap {
    background: linear-gradient(135deg, #5BA3D0, #4A8BC2);
    transform: scale(1.1);
}

.condition-icon-wrap svg {
    width: 28px;
    height: 28px;
    color: #5BA3D0;
    transition: color 0.3s ease;
}

.condition-card:hover .condition-icon-wrap svg {
    color: white;
}

.condition-name {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin: 0;
    transition: color 0.3s ease;
}

.condition-card:hover .condition-name {
    color: #5BA3D0;
}

.conditions-cta {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #5BA3D0, #4A8BC2);
    color: white;
    font-weight: 600;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(91, 163, 208, 0.3);
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 163, 208, 0.4);
    color: white;
}

.view-all-btn svg {
    transition: transform 0.3s ease;
}

.view-all-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .conditions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .conditions-section {
        padding: 60px 0;
    }

    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .condition-card {
        padding: 20px 16px;
    }

    .condition-icon-wrap {
        width: 48px;
        height: 48px;
    }

    .condition-icon-wrap svg {
        width: 24px;
        height: 24px;
    }

    .condition-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .condition-card {
        padding: 16px 12px;
    }

    .condition-icon-wrap {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .condition-icon-wrap svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners-section {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.partner-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(91, 163, 208, 0.02), rgba(74, 139, 194, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #5BA3D0;
}

.partner-logo-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: grayscale(20%);
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.partner-info {
    position: relative;
    z-index: 1;
}

.partner-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.partner-description {
    font-size: 0.875rem;
    color: #6B7280;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #5BA3D0 0%, #4A8BC2 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

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

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 16px;
    height: 16px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 40px 0;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 28px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: white;
    color: #5BA3D0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    color: #4A8BC2;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-4px);
    color: white;
}

.cta-button .btn-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.cta-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-text {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

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

@keyframes ripple-effect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-faq {
        max-width: 100%;
        text-align: left;
    }

    .faq-section {
        padding: 60px 0;
    }
    
    .faq-item__question {
        padding: 20px 24px;
    }
    
    .faq-item__title {
        font-size: 16px;
    }
    
    .faq-item__content {
        padding: 0 24px 24px;
    }
    
    .faq-item__toggle {
        width: 36px;
        height: 36px;
        margin-left: 16px;
    }

    .services-section {
        padding: 60px 0;
    }

    .services-container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        padding: 24px;
        min-height: auto;
    }

    .service-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-container {
        padding: 0 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 40px 0 30px;
    }

    .about-actions {
        flex-direction: column;
        align-items: center;
    }

    .about-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

    .partners-section {
        padding: 60px 0;
    }

    .partners-container {
        padding: 0 20px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .partner-card {
        padding: 24px;
        min-height: 200px;
    }

    .partner-logo-container {
        height: 80px;
        margin-bottom: 16px;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-container {
        padding: 0 20px;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-description {
        font-size: 1.125rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .cta-button .btn-content {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-badge {
        font-size: 13px;
        padding: 6px 12px;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partner-card {
        padding: 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-button {
        padding: 16px 20px;
    }
}
