/* 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: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #4F46E5;
    font-weight: 700;
    font-size: 24px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: #4F46E5;
}

.nav-cta {
    background: #4F46E5 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #4338CA !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: #374151;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff08" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 500px;
}

.hero-content {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 769px) {
    .hero-container {
        min-height: 600px;
    }

    .hero-content {
        min-height: 400px;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    color: #FDE68A;
    display: inline;
    min-height: 1em;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary, .btn-secondary {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background: #10B981;
    color: white;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 20px;
    justify-content: center;
    min-height: 60px;
    align-items: center;
}

@media (min-width: 769px) {
    .hero-stats {
        gap: 32px;
        min-height: 80px;
    }
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 60px;
    min-height: 50px;
}

@media (min-width: 769px) {
    .stat {
        min-width: 80px;
        min-height: 60px;
    }
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FDE68A;
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 769px) {
    .stat-number {
        font-size: 2rem;
        min-height: 2.5rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 4px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

@media (min-width: 769px) {
    .hero-image {
        min-width: 400px;
    }
}

.hero-mockup {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 280px;
    width: 100%;
}

@media (min-width: 769px) {
    .hero-mockup {
        padding: 60px;
        min-width: 400px;
        min-height: 360px;
    }
}

.hero-image-main {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    aspect-ratio: 500 / 400;
}

.hero-image-main:hover {
    transform: scale(1.02);
}

/* Demo Video Section */
.demo-video-section {
    padding: 100px 0;
    background: white;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    display: block;
}

/* Screenshots Section */
.screenshots-section {
    padding: 100px 0;
    background: #f8fafc;
}

.screenshots-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
    padding: 0 20px;
}

/* Responsive grid adjustments */
@media (min-width: 768px) {
    .screenshots-gallery {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .screenshots-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (min-width: 1400px) {
    .screenshots-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

.screenshot-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.screenshot-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.screenshot-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
}

/* Responsive image heights */
@media (min-width: 768px) {
    .screenshot-item img {
        height: 240px;
    }
}

@media (min-width: 1024px) {
    .screenshot-item img {
        height: 260px;
    }
}

.screenshot-item:hover img {
    transform: scale(1.05);
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-title {
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.screenshot-hint {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-style: italic;
}


/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.feature-card p {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 6px 0;
    color: #374151;
    position: relative;
    padding-left: 24px;
}

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

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-item {
    text-align: center;
    padding: 24px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.benefit-icon i {
    font-size: 32px;
    color: white;
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: #f8fafc;
}

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

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-card.featured {
    border-color: #4F46E5;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4F46E5;
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 16px;
}

.price {
    margin-bottom: 32px;
}

.currency {
    font-size: 1.5rem;
    color: #6b7280;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
}

.period {
    font-size: 1rem;
    color: #6b7280;
}

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

.pricing-features li {
    padding: 12px 0;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.pricing-features i {
    color: #10B981;
    font-size: 16px;
    width: 16px;
}

.btn-pricing {
    width: 100%;
    padding: 14px;
    background: #4F46E5;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: #4338CA;
    transform: translateY(-2px);
}

/* Problem-Solution Section */
.problem-solution {
    padding: 100px 0;
    background: #f8fafc;
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.problem-side {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid #EF4444;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.solution-side {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border-left: 4px solid #10B981;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.problem-side h2,
.solution-side h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1f2937;
}

.highlight-green {
    color: #10B981;
    display: inline;
    min-height: 1em;
}

.problem-list,
.solution-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problem-item,
.solution-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.problem-item i {
    color: #EF4444;
    font-size: 20px;
    margin-top: 4px;
    flex-shrink: 0;
}

.solution-item i {
    color: #10B981;
    font-size: 20px;
    margin-top: 4px;
    flex-shrink: 0;
}

.problem-item h4,
.solution-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.problem-item p,
.solution-item p {
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.solution-cta {
    margin-top: 32px;
    text-align: center;
}

.cta-subtitle {
    margin-top: 12px;
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Social Proof Section */
.social-proof {
    padding: 100px 0;
    background: white;
}

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

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

.featured-testimonial {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white;
    border: none;
}

.testimonial-content {
    margin-bottom: 24px;
}

.stars {
    color: #FCD34D;
    font-size: 18px;
    margin-bottom: 16px;
}

.featured-testimonial .stars {
    color: #FDE68A;
}

.testimonial-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: inherit;
}

.testimonial-content p {
    line-height: 1.6;
    color: inherit;
    opacity: 0.9;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.featured-testimonial .author-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.author-info h5 {
    font-weight: 600;
    margin-bottom: 4px;
    color: inherit;
}

.author-info span {
    font-size: 14px;
    opacity: 0.7;
    color: inherit;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.trust-badge i {
    font-size: 24px;
    color: #4F46E5;
}

.trust-badge h5 {
    font-weight: 600;
    margin-bottom: 4px;
    color: #1f2937;
}

.trust-badge span {
    font-size: 14px;
    color: #6b7280;
}

/* Success Story Section */
.success-story {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.success-story-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

.success-badge {
    display: inline-block;
    background: #10B981;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.success-story-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1f2937;
    line-height: 1.2;
}

.story-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10B981;
    display: block;
}

.stat-item .stat-label {
    font-size: 14px;
    color: #6b7280;
    margin-top: 4px;
}

.story-points {
    margin-bottom: 32px;
}

.story-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.story-point i {
    color: #10B981;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.story-point p {
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.success-story blockquote {
    background: white;
    padding: 24px;
    border-left: 4px solid #10B981;
    border-radius: 8px;
    margin: 32px 0;
    font-style: italic;
    color: #374151;
}

.success-story cite {
    display: block;
    margin-top: 12px;
    font-weight: 600;
    color: #1f2937;
    font-style: normal;
}

.success-story-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.growth-chart {
    background: white;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 480px;
}

.growth-chart h4 {
    text-align: center;
    margin-bottom: 24px;
    color: #1f2937;
    font-weight: 600;
}

.chart-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 200px;
    margin-bottom: 40px;
    gap: 20px;
}

.chart-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.bar {
    width: 80px;
    border-radius: 8px 8px 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    transition: all 0.8s ease;
    margin-bottom: 40px;
}

.bar.before {
    background: #FCA5A5;
    height: 120px;
}

.bar.after {
    background: #10B981;
    height: 200px;
}

.bar-label {
    position: absolute;
    bottom: -30px;
    font-size: 13px;
    color: #6b7280;
    text-align: center;
    width: 100px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 500;
}

.bar-value {
    color: white;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 12px;
    text-align: center;
    padding: 0 8px;
}

.chart-arrow {
    display: flex;
    align-items: center;
    color: #10B981;
    font-size: 28px;
    margin: 0 8px;
    margin-bottom: 60px;
}

.chart-improvement {
    text-align: center;
    color: #10B981;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Metrics Comparison Styles */
.metrics-comparison {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.metric-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

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

.metric-header i {
    color: #4F46E5;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.metric-header span {
    font-weight: 600;
    color: #1f2937;
    font-size: 16px;
}

.metric-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metric-before,
.metric-after {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.metric-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.progress-bar {
    background: #e5e7eb;
    border-radius: 8px;
    height: 28px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.progress-fill {
    height: 100%;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    transition: width 0.8s ease;
    position: relative;
    min-width: 100px;
}

.progress-fill.before {
    background: linear-gradient(135deg, #FCA5A5, #F87171);
    width: 65%;
}

.progress-fill.after {
    background: linear-gradient(135deg, #10B981, #059669);
    width: 90%;
}

.progress-fill[data-width="85%"] {
    width: 85%;
}

.progress-fill[data-width="25%"] {
    width: 25%;
    min-width: 120px;
}

.progress-fill[data-width="55%"] {
    width: 55%;
    min-width: 80px;
}

.progress-fill[data-width="85%"] {
    width: 85%;
    min-width: 110px;
}

.progress-fill[data-width="95%"] {
    width: 95%;
    min-width: 110px;
}

.progress-fill[data-width="60%"] {
    width: 60%;
    min-width: 90px;
}

.progress-fill[data-width="99%"] {
    width: 99%;
    min-width: 100px;
}

.progress-text {
    color: white;
    font-weight: 600;
    font-size: 12px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: white;
}

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

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #4F46E5;
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h4 {
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    flex: 1;
    padding-right: 16px;
}

.faq-question i {
    color: #6b7280;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 24px;
    max-height: 200px;
}

.faq-answer p {
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    text-align: center;
}

.urgency-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EF4444;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 32px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtext {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.value-props {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.value-prop i {
    color: #10B981;
    font-size: 16px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
    position: relative;
}

.btn-subtitle {
    display: block;
    font-size: 14px;
    font-weight: normal;
    margin-top: 4px;
    opacity: 0.9;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 500px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-badge i {
    color: #10B981;
    font-size: 24px;
}

.guarantee-badge strong {
    display: block;
    margin-bottom: 4px;
}

.guarantee-badge span {
    font-size: 14px;
    opacity: 0.8;
}

.social-proof-mini {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-item {
    text-align: center;
}

.proof-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #10B981;
    margin-bottom: 4px;
}

.proof-text {
    font-size: 14px;
    opacity: 0.8;
}

/* Risk Reversal Section */
.risk-reversal {
    padding: 80px 0;
    background: #f8fafc;
}

.risk-reversal-content {
    text-align: center;
}

.risk-reversal-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: #1f2937;
}

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

.promise-item {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.promise-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.promise-item i {
    font-size: 32px;
    color: #4F46E5;
    margin-bottom: 16px;
}

.promise-item h4 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.promise-item p {
    color: #6b7280;
    line-height: 1.5;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #4F46E5;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4F46E5;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4F46E5;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #9ca3af;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #374151;
}

.modal-content h2 {
    margin-bottom: 24px;
    color: #1f2937;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

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

    .hero-stats {
        justify-content: center;
        gap: 24px;
    }

    .hero-mockup {
        padding: 20px;
    }

    .hero-image-main {
        max-width: 100%;
        border-radius: 8px;
    }

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

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

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

    .pricing-card.featured {
        transform: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .final-cta-content h2 {
        font-size: 2rem;
    }

    /* Problem-Solution Mobile */
    .problem-solution-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .problem-side,
    .solution-side {
        padding: 32px 24px;
    }

    .problem-side h2,
    .solution-side h2 {
        font-size: 1.5rem;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .featured-testimonial {
        grid-column: 1;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    /* Success Story Mobile */
    .success-story-content {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: center;
    }

    .success-story-text h2 {
        font-size: 1.75rem;
    }

    .story-stats {
        gap: 24px;
    }

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

    .growth-chart {
        max-width: 100%;
        padding: 20px;
        margin-left: 0;
    }

    .metrics-comparison {
        gap: 24px;
    }

    .metric-item {
        padding: 20px;
    }

    .metric-header {
        gap: 8px;
        margin-bottom: 16px;
    }

    .metric-header i {
        font-size: 18px;
    }

    .metric-header span {
        font-size: 14px;
    }

    .progress-bar {
        height: 24px;
    }

    .progress-text {
        font-size: 12px;
    }

    .metric-bars {
        gap: 10px;
    }

    .metric-before,
    .metric-after {
        gap: 4px;
    }

    .chart-improvement span {
        font-size: 14px;
        text-align: center;
    }

    /* FAQ Mobile */
    .faq-question {
        padding: 20px;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 20px;
    }

    /* Final CTA Mobile */
    .value-props {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

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

    .proof-number {
        font-size: 1.25rem;
    }

    .guarantee-badge {
        flex-direction: column;
        text-align: center;
    }

    /* Risk Reversal Mobile */
    .promises-grid {
        grid-template-columns: 1fr;
    }

    .risk-reversal-content h3 {
        font-size: 1.5rem;
    }
}

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

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

    .container,
    .hero-container,
    .nav-container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .features,
    .benefits,
    .pricing,
    .cta {
        padding: 60px 0;
    }

    .modal-content {
        margin: 10% auto;
        padding: 24px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero {
        background: #000;
        color: #fff;
    }

    .btn-primary {
        border: 2px solid #fff;
    }

    .feature-card,
    .pricing-card {
        border-width: 2px;
    }
}

/* Loading animations */
.feature-card,
.benefit-item,
.pricing-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

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