/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #0F172A;
    background-color: #F8FAFC;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: #0F172A;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-height: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: white;
    color: #3B82F6;
    border: 2px solid #E2E8F0;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #F8FAFC;
    border-color: #3B82F6;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    min-height: 56px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E2E8F0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3B82F6;
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #475569;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-radius: 0 0 0 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, #3B82F6, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.hero-title {
    margin-bottom: 24px;
    background: linear-gradient(135deg, #0F172A 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    background: white;
    color: #475569;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 0px;
}

.hero-cards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 500px;
    margin-right: 160px;
    transform: translateY(-60px) translateX(120px);
}

.hero-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    animation: float 6s ease-in-out infinite;
}

.main-card {
    min-height: 280px;
}

.secondary-card {
    min-height: 120px;
    animation-delay: 1s;
}

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

.card-header {
    background: #F8FAFC;
    padding: 16px 20px;
    border-bottom: 1px solid #E2E8F0;
}

.card-dots {
    display: flex;
    gap: 8px;
}

.card-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E2E8F0;
}

.card-dots span:nth-child(1) { background: #EF4444; }
.card-dots span:nth-child(2) { background: #F59E0B; }
.card-dots span:nth-child(3) { background: #10B981; }

.card-content {
    padding: 24px;
}

.chart-placeholder {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 120px;
    margin-bottom: 16px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(135deg, #3B82F6, #A855F7);
    border-radius: 4px 4px 0 0;
    animation: grow 2s ease-out;
}

@keyframes grow {
    from { height: 0; }
    to { height: var(--height, 50%); }
}

.chart-label {
    text-align: center;
    color: #475569;
    font-weight: 500;
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 100%;
    align-items: center;
}

.stat-item {
    text-align: center;
    padding: 8px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #475569;
}

/* Platform Section */
.platform {
    padding: 80px 0;
    background: white;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    text-align: center;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3B82F6, #A855F7);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.feature-title {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.feature-description {
    color: #475569;
    font-size: 1rem;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background: #F8FAFC;
}

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

.solution-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

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

.solution-title {
    color: #3B82F6;
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.solution-subtitle {
    color: #475569;
    margin-bottom: 24px;
    font-weight: 500;
}

.solution-features {
    list-style: none;
    flex-grow: 1;
}

.solution-features li {
    padding: 8px 0;
    color: #475569;
    position: relative;
    padding-left: 24px;
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

/* Industry Solutions */
.industry-solutions {
    padding: 80px 0;
    background: white;
}


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

.industry-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.industry-title {
    color: #3B82F6;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.industry-features {
    list-style: none;
}

.industry-features li {
    padding: 6px 0;
    color: #475569;
    position: relative;
    padding-left: 20px;
}

.industry-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3B82F6;
    font-weight: bold;
}

/* Results Section */
.results {
    padding: 80px 0;
    background: linear-gradient(135deg, #3B82F6, #A855F7);
    color: white;
}

.results .section-title,
.results .section-subtitle {
    color: white;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.result-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 32px 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #FFFFFF, #E2E8F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-label {
    font-size: 1rem;
    opacity: 0.9;
}

.trusted-by {
    text-align: center;
}

.trusted-title {
    margin-bottom: 32px;
    font-size: 1.5rem;
    opacity: 0.9;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trusted-logo {
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.8;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #F8FAFC;
}

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

.review-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

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

.review-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    color: #0F172A;
}

.review-author {
    border-top: 1px solid #E2E8F0;
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #E2E8F0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 4px;
}

.author-title {
    color: #475569;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: #F8FAFC;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E2E8F0;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #0F172A;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-info {
    text-align: center;
    margin-top: 32px;
}

.contact-alternative {
    color: #475569;
}

.contact-alternative a {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 500;
}

.contact-alternative a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #0F172A;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-tagline {
    color: #94A3B8;
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    overflow-x: auto;
}

.footer-link {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.social-link {
    color: #94A3B8;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    color: #94A3B8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .platform-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trusted-logos {
        gap: 24px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: flex-start;
        gap: 16px;
        padding-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .platform,
    .solutions,
    .industry-solutions,
    .results,
    .reviews,
    .contact {
        padding: 60px 0;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 24px;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    text-align: center;
}

.pricing-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
    background: linear-gradient(135deg, #0F172A 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.billing-label {
    font-weight: 500;
    color: #475569;
    position: relative;
}

.discount-badge {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 8px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #E2E8F0;
    transition: 0.3s;
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked + .toggle-slider {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.pricing-plans {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #3B82F6;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.plan-description {
    color: #475569;
    margin-bottom: 24px;
}

.plan-price {
    margin-bottom: 32px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1;
}

.price-period {
    color: #475569;
    font-size: 1rem;
    margin-left: 4px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.plan-features li {
    padding: 8px 0;
    color: #475569;
    position: relative;
    padding-left: 24px;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.plan-btn {
    width: 100%;
    justify-content: center;
}

.features-comparison {
    padding: 80px 0;
    background: #F8FAFC;
}

.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E2E8F0;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: #F8FAFC;
    font-weight: 600;
    color: #0F172A;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #E2E8F0;
}

.table-header > div,
.table-row > div {
    padding: 20px;
    display: flex;
    align-items: center;
}

.table-header > div:not(:first-child),
.table-row > div:not(:first-child) {
    justify-content: center;
    text-align: center;
}

.plan-column.featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
    color: #3B82F6;
    font-weight: 600;
}

.table-row:last-child {
    border-bottom: none;
}

.feature-name {
    font-weight: 500;
    color: #0F172A;
}

.plan-value {
    color: #475569;
    font-weight: 500;
}

.faq {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #F8FAFC;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 16px;
}

.faq-answer {
    color: #475569;
    line-height: 1.6;
}

.pricing-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #3B82F6, #A855F7);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: white;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Legal Pages Styles */
.legal-content {
    padding: 120px 0 80px;
    background: white;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
    background: linear-gradient(135deg, #0F172A 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-subtitle {
    color: #475569;
    font-size: 1.1rem;
}

.legal-body {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    color: #0F172A;
    margin-bottom: 16px;
    font-size: 1.5rem;
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 8px;
}

.legal-section p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    margin-bottom: 8px;
    color: #475569;
    line-height: 1.6;
}

.contact-info {
    background: #F8FAFC;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    margin-top: 16px;
}

.contact-info p {
    margin-bottom: 8px;
    color: #0F172A;
}

.contact-info a {
    color: #3B82F6;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Security Page Styles */
.security-content {
    padding: 120px 0 80px;
    background: white;
}

.security-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.security-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
    background: linear-gradient(135deg, #0F172A 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.security-subtitle {
    color: #475569;
    font-size: 1.25rem;
    line-height: 1.6;
}

.security-updated {
    color: #475569;
    font-size: 1rem;
    margin-top: 16px;
    font-style: italic;
}

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

.security-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #E2E8F0;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3B82F6, #A855F7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.security-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 16px;
}

.security-card-description {
    color: #475569;
    line-height: 1.6;
}

.security-details {
    max-width: 1000px;
    margin: 0 auto;
}

.security-section {
    margin-bottom: 60px;
}

.security-section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 32px;
    text-align: center;
}

.certifications-grid,
.protection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.certification-item,
.protection-item {
    background: #F8FAFC;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.certification-item:hover,
.protection-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.certification-item h4,
.protection-item h4 {
    color: #3B82F6;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.certification-item p,
.protection-item p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.incident-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.incident-list li {
    padding: 12px 0;
    color: #475569;
    position: relative;
    padding-left: 24px;
    border-bottom: 1px solid #E2E8F0;
}

.incident-list li:last-child {
    border-bottom: none;
}

.incident-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 1.1rem;
}
