/* Modern Apple-Inspired Design for Bilio */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 64px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 400;
    font-size: 17px;
    transition: color 0.3s ease;
    letter-spacing: -0.2px;
}

.nav-link:hover {
    color: #007aff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 17px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: -0.2px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.4);
}

.btn-secondary {
    background: rgba(0, 122, 255, 0.1);
    color: #007aff;
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 122, 255, 0.15);
    transform: translateY(-1px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 19px;
    border-radius: 16px;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 50%);
    padding: 120px 0 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 70vh;
}

.hero-text {
    text-align: left;
}

.hero-pretitle {
    font-size: 16px;
    font-weight: 500;
    color: #86868b;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 32px;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-description {
    font-size: 20px;
    color: #515154;
    margin-bottom: 40px;
    line-height: 1.5;
    letter-spacing: -0.2px;
    max-width: 500px;
    margin-bottom: 32px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    flex: 1;
    min-width: 140px;
}

.hero-stat-number {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    letter-spacing: -1px;
    line-height: 1;
}

.hero-stat-text {
    font-size: 14px;
    color: #86868b;
    font-weight: 400;
    letter-spacing: -0.1px;
    line-height: 1.3;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.screenshot-placeholder {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: relative;
}

.screenshot-content {
    width: 100%;
    height: 100%;
    padding: 20px;
}

.mock-header {
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
}

.mock-header::after {
    content: 'Bilio Dashboard';
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.mock-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    height: calc(100% - 80px);
}

.mock-invoice {
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.mock-invoice::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 4px;
    background: linear-gradient(90deg, #007aff 0%, #5856d6 100%);
    border-radius: 2px;
}

.mock-invoice::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 8px;
}

.mock-sidebar {
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Feature Blocks Section */
.feature-blocks {
    padding: 80px 0;
    background: white;
}

.feature-block {
    padding: 80px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-block:last-child {
    border-bottom: none;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-block-reverse .feature-content {
    direction: rtl;
}

.feature-block-reverse .feature-text,
.feature-block-reverse .feature-visual {
    direction: ltr;
}

.feature-pretitle {
    font-size: 16px;
    font-weight: 500;
    color: #86868b;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.feature-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.feature-description {
    color: #515154;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.2px;
    margin-bottom: 32px;
}

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

.feature-benefits li {
    padding: 8px 0;
    color: #515154;
    font-size: 17px;
    letter-spacing: -0.1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-benefits li svg {
    color: #34c759;
    flex-shrink: 0;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-screenshot {
    width: 100%;
    max-width: 500px;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Feature Mockups */
.invoice-mockup {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.invoice-header {
    height: 40px;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    border-radius: 8px;
    margin-bottom: 16px;
}

.invoice-content {
    margin-bottom: 16px;
}

.invoice-line {
    height: 12px;
    background: #f0f0f0;
    border-radius: 6px;
    margin-bottom: 8px;
}

.invoice-line.short {
    width: 60%;
}

.invoice-total {
    height: 20px;
    background: linear-gradient(135deg, #34c759 0%, #30d158 100%);
    border-radius: 10px;
    width: 40%;
    margin-left: auto;
}

.tracking-mockup {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tracking-header {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.tracking-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: #515154;
}

.tracking-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.tracking-dot.opened {
    background: #34c759;
}

.tracking-dot.clicked {
    background: #007aff;
}

.tracking-dot.pending {
    background: #ff9500;
}

.subscription-mockup {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sub-header {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.sub-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.sub-item:last-child {
    border-bottom: none;
}

.sub-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.sub-status.active {
    background: #34c759;
}

.sub-name {
    font-size: 14px;
    font-weight: 500;
    color: #1d1d1f;
}

.sub-amount {
    font-size: 12px;
    color: #86868b;
}

.reports-mockup {
    background: white;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.reports-header {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
}

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

.chart-bar {
    flex: 1;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
}

.reports-summary {
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    font-size: 14px;
    color: #86868b;
}

.summary-value {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
}

/* Testimonials Slider */
.testimonials-slider {
    padding: 80px 0;
    background: #f5f5f7;
}

.slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-track {
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    text-align: center;
    padding: 48px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-size: 24px;
    color: #1d1d1f;
    font-style: italic;
    margin-bottom: 32px;
    line-height: 1.5;
    letter-spacing: -0.2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 4px;
}

.author-role {
    font-size: 15px;
    color: #86868b;
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #007aff;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

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

.dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 122, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #007aff;
    transform: scale(1.2);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing .section-title {
    text-align: center;
    margin-bottom: 64px;
    font-size: 48px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -1px;
}

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

.pricing-card {
    background: #f5f5f7;
    padding: 48px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pricing-card-popular {
    background: white;
    border: 2px solid #007aff;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 122, 255, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff9500 0%, #ff6b35 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.1px;
}

.pricing-plan {
    font-size: 28px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.pricing-price {
    margin-bottom: 16px;
}

.price-main {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.price-period {
    font-size: 21px;
    color: #86868b;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.pricing-note {
    color: #86868b;
    font-size: 15px;
    margin-bottom: 32px;
    letter-spacing: -0.1px;
}

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

.pricing-features li {
    padding: 8px 0;
    color: #515154;
    font-size: 17px;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features li svg {
    color: #34c759;
    flex-shrink: 0;
}

/* Audience Section */
.audience {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
}

.audience-header {
    text-align: center;
    margin-bottom: 64px;
}

.audience .section-title {
    font-size: 48px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.audience .section-subtitle {
    font-size: 21px;
    color: #86868b;
    letter-spacing: -0.2px;
    max-width: 600px;
    margin: 0 auto;
}

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

.audience-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.audience-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 122, 255, 0.2);
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
}

.audience-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.audience-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.3);
}

.audience-icon svg {
    width: 28px;
    height: 28px;
}

.audience-title {
    font-size: 28px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.audience-description {
    color: #515154;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -0.2px;
    margin-bottom: 24px;
}

.audience-stats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.audience-stat {
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: #86868b;
    font-weight: 500;
    letter-spacing: -0.1px;
    text-transform: uppercase;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f5f5f7;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.faq-icon svg {
    color: #007aff;
}

.faq .section-title {
    font-size: 48px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

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

.faq-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 21px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
    letter-spacing: -0.2px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: #007aff;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    color: #515154;
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: -0.2px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

/* Footer CTA */
.footer-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1d1d1f 0%, #2c2c2e 100%);
    color: white;
    text-align: center;
}

.footer-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.footer-icon svg {
    color: white;
    opacity: 0.9;
}

.footer-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.footer-subtitle {
    font-size: 21px;
    opacity: 0.8;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    letter-spacing: -0.2px;
}

/* Section Titles */
.section-title {
    font-size: 48px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 21px;
    color: #86868b;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: -0.2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .feature-block-reverse .feature-content {
        direction: ltr;
    }
    
    .feature-block {
        padding: 60px 0;
    }
    
    .feature-title {
        font-size: 32px;
    }
    
    .feature-description {
        font-size: 18px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-description {
        max-width: none;
    }
    
    .hero-stats {
        gap: 32px;
        justify-content: center;
    }
    
    .hero-stat {
        text-align: center;
        min-width: 120px;
    }
    
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 19px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .stats-grid,
    .feature-grid,
    .pricing-grid,
    .audience-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        gap: 24px;
    }
    
    .pricing-card-popular {
        transform: none;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .feature-card,
    .pricing-card,
    .audience-card,
    .testimonial-card,
    .faq-item {
        padding: 32px 24px;
    }
    
    .audience-stats {
        gap: 24px;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .stat-card {
        padding: 32px 24px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 0;
        min-height: auto;
    }
    
    .hero-content {
        min-height: auto;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-pretitle {
        font-size: 14px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-card,
    .pricing-card,
    .audience-card,
    .testimonial-card,
    .faq-item {
        padding: 24px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-text {
        font-size: 14px;
    }
    
    .price-main {
        font-size: 40px;
    }
}

/* Loading animation for buttons */
.btn:active {
    transform: scale(0.98);
}

/* Improved focus states for accessibility */
.btn:focus,
.nav-link:focus,
.faq-item:focus {
    outline: 2px solid #007aff;
    outline-offset: 2px;
}

/* Enhanced animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.stats,
.features,
.pricing,
.audience,
.testimonials,
.faq {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}