body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    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 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

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

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-cta {
    background: white;
    color: #6366f1;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1.1rem;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    color: #6366f1;
    text-decoration: none;
}

.hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-badge {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 160px;
    transition: transform 0.3s;
}

.stat-badge:hover {
    transform: translateY(-5px);
}

.stat-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-badge .label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Activity Counter */
.activity-counter {
    background: #f8fafc;
    padding: 2rem 0;
    text-align: center;
}

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

.counter-item {
    display: inline-block;
    background: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.live-number {
    font-size: 2rem;
    font-weight: 700;
    color: #6366f1;
    margin-right: 0.5rem;
}

.counter-item .label {
    color: #64748b;
    font-weight: 500;
}

/* AEO Direct Answer Block */
.aeo-answer-block {
    background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 100%);
    border-left: 4px solid #6366f1;
    border-radius: 0 12px 12px 0;
    padding: 2rem 2.5rem;
    margin: 0 auto 0;
    max-width: 900px;
}

.aeo-answer-block h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.aeo-answer-block p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

.aeo-wrapper {
    background: #fff;
    padding: 3rem 2rem;
}

/* GEO Summary Block */
.geo-summary-block {
    background: #1e293b;
    color: white;
    padding: 3rem 2rem;
}

.geo-summary-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.geo-summary-inner h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e2e8f0;
    grid-column: 1 / -1;
}

.geo-fact {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.geo-fact i {
    color: #818cf8;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.geo-fact strong {
    color: #e2e8f0;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.geo-fact span {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Interactive Demo */
.interactive-demo {
    background: white;
    padding: 4rem 0;
}

.demo-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.demo-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.live-generator-demo {
    background: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid #e2e8f0;
}

.demo-input {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.demo-input input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
}

.generate-btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.generate-btn:hover {
    transform: translateY(-2px);
}

.demo-output {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    font-family: monospace;
    border: 1px solid #e2e8f0;
}

.typing-effect {
    color: #10b981;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e2e8f0;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
    background: white;
    padding: 6rem 0;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.feature-comparison {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-comparison th,
.feature-comparison td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.feature-comparison th {
    background: #f8fafc;
    font-weight: 600;
    color: #1e293b;
}

.feature-comparison td.highlight {
    background: #f0fdf4;
    color: #059669;
    font-weight: 600;
}

/* Industry Showcase */
.industry-showcase {
    background: #f8fafc;
    padding: 6rem 0;
}

.industry-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: white;
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.industry-card i {
    font-size: 2.5rem;
    color: #6366f1;
    margin-bottom: 1.5rem;
    display: block;
}

.industry-card h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-size: 1.1rem;
    line-height: 1.3;
}

.industry-card p {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Steps Section */
.steps {
    padding: 6rem 0;
    background: white;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.steps-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
}

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

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.3s;
    border: 1px solid #e2e8f0;
}

.step-item:hover {
    transform: translateX(10px);
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1e293b;
    font-size: 1.1rem;
}

.step-content p {
    color: #64748b;
    font-size: 0.875rem;
}

.preview-pane {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border: 1px solid #e2e8f0;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.preview-title {
    font-weight: 600;
    color: #1e293b;
}

.live-indicator {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.chart-placeholder {
    height: 200px;
    background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-weight: 500;
}

/* Pricing */
.pricing {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.pricing-card.popular {
    border: 2px solid #6366f1;
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.plan-features li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

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

.cta-button {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    width: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    color: white;
    text-decoration: none;
}

/* Credit Benefits Section */
.credit-benefits-section {
    padding: 4rem 0;
    background: #f8fafc;
    clear: both;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.credit-benefits-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.credit-benefits-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.credit-benefits-section .section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.credit-benefits-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 0;
}

.credit-benefits-section .benefit-card {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 16px;
    text-align: center;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.credit-benefits-section .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.credit-benefits-section .benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #6366f1;
    line-height: 1;
    display: block;
}

.credit-benefits-section .benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
    line-height: 1.3;
}

.credit-benefits-section .benefit-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: white;
}

.testimonials-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card.verified {
    border-left: 4px solid #10b981;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #475569;
    font-size: 1.05rem;
    position: relative;
    flex-grow: 1;
}

.testimonial-content::before {
    content: '"';
    font-size: 3rem;
    color: #6366f1;
    position: absolute;
    top: -15px;
    left: -15px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1.2rem;
    color: white;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.author-info h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1e293b;
    font-size: 1.05rem;
}

.verified {
    color: #10b981;
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.funding-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* FAQ */
.faq {
    padding: 6rem 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

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

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 6rem 0;
}

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

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

/* Startup Idea Validation Banner */
.idea-validation-banner {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.idea-validation-banner h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.idea-validation-banner p {
    color: #94a3b8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.validation-cta {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 1.05rem;
}

.validation-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99,102,241,0.4);
    color: white;
    text-decoration: none;
}

/* AI Tools Suite Section */
.tools-suite {
    padding: 4rem 0;
    background: #fdfdfd;
    border-bottom: 1px solid #eee;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tool-card {
    background: white;
    border: 1px solid #e1e4e8;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: #6366f1;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.15);
}

.tool-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.bg-blue { background: #e3f2fd; color: #1976d2; }
.bg-green { background: #e8f5e9; color: #2e7d32; }
.bg-purple { background: #f3e5f5; color: #7b1fa2; }
.bg-orange { background: #fff3e0; color: #ef6c00; }

.tool-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.tool-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.tool-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: #6366f1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.tool-link:hover {
    gap: 8px;
}

.new-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff4757;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
    animation: pulse 2s infinite;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .credit-benefits-section .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    .credit-benefits-section .benefit-card { min-height: 220px; }
    .credit-benefits-section .benefit-icon { font-size: 3rem; }
    .industry-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .testimonials-enhanced { grid-template-columns: repeat(2, 1fr); }
    .geo-summary-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .steps-container { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .trust-indicators { gap: 2rem; flex-direction: column; align-items: center; }
    .stat-badge { min-width: 140px; padding: 1.5rem; }
    .demo-input { flex-direction: column; }
    .feature-comparison { font-size: 0.875rem; }
    .pricing-grid { grid-template-columns: 1fr; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .industry-card { padding: 2rem 1.5rem; min-height: 160px; }
    .industry-card i { font-size: 2rem; margin-bottom: 1rem; }
    .testimonials-enhanced { grid-template-columns: 1fr; gap: 2rem; }
    .testimonial-card { padding: 2rem; min-height: auto; }
    .credit-benefits-section .benefits-grid { grid-template-columns: 1fr; gap: 1.5rem; max-width: 400px; margin-left: auto; margin-right: auto; }
    .credit-benefits-section .section-title { font-size: 2rem; }
    .credit-benefits-section .benefit-card { min-height: 200px; padding: 1.5rem; }
    .credit-benefits-section .benefit-icon { font-size: 2.5rem; margin-bottom: 1rem; }
    .credit-benefits-section .benefit-card h3 { font-size: 1.1rem; }
    .credit-benefits-section .benefit-card p { font-size: 0.9rem; }
    .geo-summary-inner { grid-template-columns: 1fr; }
    .aeo-answer-block { padding: 1.5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .industry-card { padding: 1.5rem 1rem; min-height: 140px; }
    .industry-card h4 { font-size: 1rem; }
    .testimonial-content { font-size: 1rem; }
    .author-avatar { width: 48px; height: 48px; }
}
