@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-3xl) var(--spacing-lg) var(--spacing-4xl);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 1400px;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.5) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 540px;
    width: 100%;
    text-align: center;
    padding: 0 var(--spacing-lg);
}

.hero-headline {
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -3px;
    color: #ffffff;
    margin: 0;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    background: linear-gradient(135deg, #ff0a16 0%, #ff4444 50%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #e50914 50%, transparent 100%);
    border-radius: 2px;
}

.hero-description {
    font-size: 19px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: -0.3px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-price-block {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.hero-price-amount {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: -4px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-price-currency {
    font-size: 32px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -1px;
}

.hero-price-subtext {
    font-size: 17px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: -0.3px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: -0.3px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-guarantee svg {
    width: 25x;
    height: 25px;
    color: #10b981;
}

/* Introduction Section */
.introduction-section {
    background: var(--surface);
    padding: var(--spacing-3xl) 0;
}

.introduction-title {
    font-size: 40px;
    font-weight: 800;
    color: #0a0a0a;
    text-align: center;
    margin-bottom: var(--spacing-4xl);
    letter-spacing: -1.5px;
}

.introduction-container {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.introduction-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.introduction-item {
    display: flex;
    gap: var(--spacing-xl);
    align-items: flex-start;
    background: var(--background);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.introduction-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e50914 0%, #b8070e 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 16px rgba(229, 9, 20, 0.25);
}

.introduction-icon svg {
    width: 28px;
    height: 28px;
}

.introduction-content {
    flex: 1;
}

.introduction-text-title {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.3px;
}

.introduction-text-desc {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    line-height: 1.7;
    letter-spacing: -0.2px;
    margin: 0;
}

/* Comparison Section */
.comparison-section {
    padding: var(--spacing-3xl) 0;
    background: var(--background);
}

.comparison-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.comparison-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #e50914 0%, #c4070f 100%);
    color: white;
    font-size: 17px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-xl);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(229, 9, 20, 0.25);
}

.comparison-title {
    font-size: 40px;
    font-weight: 800;
    color: #0a0a0a;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    letter-spacing: -1.5px;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-3xl);
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;

}

.comparison-column {
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
}

.comparison-column.highlight {
    background: linear-gradient(135deg, #e50914 0%, #b8070e 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(229, 9, 20, 0.3);
}

.comparison-label {
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-2xl);
    letter-spacing: -0.3px;
}

.comparison-column:not(.highlight) .comparison-label {
    background: var(--background);
    color: var(--text-primary);
}

.comparison-column.highlight .comparison-label {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.comparison-item {
    text-align: center;
    padding: var(--spacing-md) 0;
}

.comparison-item-text {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: -0.2px;
}

.comparison-column:not(.highlight) .comparison-item-text {
    color: var(--text-primary);
}

.comparison-column.highlight .comparison-item-text {
    color: white;
}

.comparison-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0;
}

.comparison-column.highlight .comparison-divider {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
}

/* Features Section */
.features-section {
    background: var(--background);
    padding: var(--spacing-3xl) 0;
}

.features-title {
    font-size: 40px;
    font-weight: 800;
    color: #0a0a0a;
    text-align: center;
    margin-bottom: var(--spacing-md);
    letter-spacing: -1.5px;
}

.features-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: var(--spacing-4xl);
    font-weight: 500;
}

.features-container {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--surface);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e50914 0%, #ff1f1f 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 16px rgba(229, 9, 20, 0.2);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-content {
    flex: 1;
}

.feature-text {
    font-size: 15px;
    font-weight: 600;
    color: #0a0a0a;
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.3px;
}

/* How to Section */
.how-to-section {
    background: var(--background);
    padding: var(--spacing-3xl) 0;
}

.how-to-title {
    font-size: 40px;
    font-weight: 800;
    color: #0a0a0a;
    text-align: center;
    margin-bottom: var(--spacing-4xl);
    letter-spacing: -1.5px;
}

.how-to-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    max-width: 540px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.how-to-step {
    display: flex;
    gap: var(--spacing-xl);
    align-items: flex-start;
    background: var(--surface);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
}

.step-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e50914 0%, #b8070e 100%);
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(229, 9, 20, 0.25);
}

.step-content {
    flex: 1;
    padding-top: var(--spacing-md);
}

.step-text {
    font-size: 17px;
    font-weight: 600;
    color: #0a0a0a;
    line-height: 1.6;
    letter-spacing: -0.3px;
}

/* Insurance Section */
.insurance-section {
    padding: var(--spacing-3xl) 0;
    background: var(--surface);
    text-align: center;
}

.insurance-title {
    font-size: 40px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: var(--spacing-md);
    letter-spacing: -1.5px;
}

.insurance-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: var(--spacing-3xl);
    font-weight: 500;
}

.insurance-image-container {
    position: relative;
    display: inline-block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.insurance-image {
    max-width: 300px;
    height: auto;
    border-radius: var(--radius-lg);
    cursor: pointer;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    backdrop-filter: blur(8px);
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.2s ease;
}

.modal-content {
    position: relative;
    max-width: 600px;
    width: 100%;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: var(--spacing-xl);
    right: var(--spacing-xl);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    transition: all 0.2s;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 24px;
    height: 24px;
    color: white;
}

.modal-image {
    width: 100%;
    height: auto;
    display: block;
}
.faq-section {
    background: var(--surface);
    padding: var(--spacing-3xl) 0;
}

.faq-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
}

.faq-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -1.5px;
}

.faq-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 500;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 540px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.faq-item {
    background-color: var(--background);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-item.active {
    background-color: var(--background);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: var(--spacing-xl);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
    user-select: none;
    letter-spacing: -0.3px;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer-content {
    padding: 0 var(--spacing-xl) var(--spacing-xl);
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 500;
}

.faq-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.2s;
}

.faq-link:hover {
    opacity: 0.8;
}

/* Partners Section */
.partners-section {
    padding: var(--spacing-3xl) 0;
    background: var(--surface);
    text-align: center;
}

.partners-title {
    font-size: 32px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: var(--spacing-4xl);
    letter-spacing: -1px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-3xl);
    max-width: 540px;
    margin: 0 auto;
    align-items: center;
    padding: 0 var(--spacing-lg);
}

.partner-logo {
    width: 100%;
    height: auto;
    max-width: 100px;
    object-fit: contain;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--surface);
    padding: var(--spacing-2xl) var(--spacing-lg) var(--spacing-5xl);
}

.footer-content {
    max-width: 540px;
    margin: 0 auto;
}

.footer-info {
    margin-bottom: var(--spacing-3xl);
    padding-left: var(--spacing-lg);
}

.footer-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    text-align: left;
}

.company-name {
    font-size: 20px;
    font-weight: 800;
    color: #0a0a0a !important;
    margin-bottom: var(--spacing-lg) !important;
    letter-spacing: -0.5px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-links a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links .separator {
    color: #ddd;
    font-size: 14px;
}