/* CobraClicks AI Integration Services - Landing Page Styles */
/* Brand Colors: Black (#000000), Neon Green (#bff747), White (#ffffff) */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

a {
    color: #bff747;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffffff;
}

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

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
}

.section-headline {
    text-align: center;
    margin-bottom: 3rem;
    color: #bff747;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #cccccc;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(191, 247, 71, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInLeft 1s ease;
    text-align: left;
}

/* Premium Badge */
.premium-badge {
    display: inline-block;
    background: #bff747;
    color: #000000;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(191, 247, 71, 0.6), 0 0 40px rgba(191, 247, 71, 0.3);
}

/* Hero Headline */
.hero-headline {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-align: left;
    font-weight: 700;
}

.headline-white {
    color: #ffffff;
}

.headline-green {
    color: #bff747;
}

/* Hero Description */
.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Hero Benefits */
.hero-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.benefit-item i {
    color: #bff747;
    font-size: 1rem;
    margin-right: 0.75rem;
    width: 16px;
    filter: drop-shadow(0 0 8px rgba(191, 247, 71, 0.6));
}

.benefit-item span {
    font-size: 1rem;
    font-weight: 400;
}

/* Hero CTA */
.hero-cta {
    text-align: left;
}

.cta-button.hero-primary {
    background: #bff747;
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 0.75rem;
    box-shadow: 0 0 20px rgba(191, 247, 71, 0.5), 0 0 40px rgba(191, 247, 71, 0.2);
}

.cta-button.hero-primary:hover {
    background: #a3e635;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(191, 247, 71, 0.8), 0 0 60px rgba(191, 247, 71, 0.4);
    color: #000000;
}

.cta-subtext {
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
    margin-top: 0.5rem;
}

.hero-subheadline {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* CTA Buttons */
.cta-container {
    text-align: center;
    margin: 2rem 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    min-width: 280px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #bff747 0%, #a3e635 100%);
    color: #000000;
    box-shadow: 0 0 20px rgba(191, 247, 71, 0.5), 0 0 40px rgba(191, 247, 71, 0.2);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(191, 247, 71, 0.8), 0 0 60px rgba(191, 247, 71, 0.4);
    color: #000000;
}

.cta-button.secondary {
    background: transparent;
    color: #bff747;
    border: 2px solid #bff747;
}

.cta-button.secondary:hover {
    background: #bff747;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(191, 247, 71, 0.5), 0 0 40px rgba(191, 247, 71, 0.2);
}

.cta-button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #bff747;
    font-size: 0.9rem;
}

.badge i {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 8px rgba(191, 247, 71, 0.6));
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}  .dashboard-container {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            border: 2px solid #bff747;
            border-radius: 20px;
            box-shadow: 0 0 40px rgba(191, 247, 71, 0.2), inset 0 0 10px rgba(191, 247, 71, 0.1);
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
            overflow: hidden;
        }

        /* Digital rain background */
        .dashboard-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                rgba(191, 247, 71, 0.05) 0px,
                transparent 1px,
                transparent 15px
            );
            animation: digital-rain 15s linear infinite;
            pointer-events: none;
            z-index: -2;
        }

        .dashboard-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            border: 2px solid transparent;
            background: linear-gradient(45deg, transparent, #bff747, transparent);
            background-size: 200% 200%;
            animation: shimmer-border 5s linear infinite;
            pointer-events: none;
            z-index: -1;
        }

        .stat-card {
            background: rgba(191, 247, 71, 0.05);
            border-radius: 8px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            border: 1px solid rgba(191, 247, 71, 0.2);
            box-shadow: 0 0 10px rgba(191, 247, 71, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-card:hover {
            transform: scale(1.02);
            box-shadow: 0 0 20px rgba(191, 247, 71, 0.3);
        }

        .stat-card .value {
            font-size: 2.5rem;
            font-weight: 700;
            color: #bff747;
            text-shadow: 0 0 10px rgba(191, 247, 71, 0.5);
            animation: text-glow 2s infinite alternate;
        }

        .stat-card .label {
            font-size: 0.8rem;
            color: #d1d1d1;
            font-weight: 400;
            letter-spacing: 0.5px;
            margin-top: 4px;
        }

        .voice-chart-container {
            position: relative;
            background: rgba(191, 247, 71, 0.05);
            border: 1px solid rgba(191, 247, 71, 0.2);
            border-radius: 8px;
            height: 120px;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 0 10px rgba(191, 247, 71, 0.1);
        }

        .voice-bars {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            width: 80%;
            height: 80%;
            transform: scaleX(-1); /* Flips the waves to the right */
        }

        .voice-bar {
            width: 6px;
            background: #bff747;
            filter: drop-shadow(0 0 8px #bff747);
            animation: voice-pulse 1.5s ease-in-out infinite;
            transform-origin: bottom;
        }

        .voice-bar:nth-child(1) { height: 20%; animation-delay: 0s; }
        .voice-bar:nth-child(2) { height: 40%; animation-delay: 0.1s; }
        .voice-bar:nth-child(3) { height: 60%; animation-delay: 0.2s; }
        .voice-bar:nth-child(4) { height: 80%; animation-delay: 0.3s; }
        .voice-bar:nth-child(5) { height: 100%; animation-delay: 0.4s; }
        .voice-bar:nth-child(6) { height: 80%; animation-delay: 0.5s; }
        .voice-bar:nth-child(7) { height: 60%; animation-delay: 0.6s; }
        .voice-bar:nth-child(8) { height: 40%; animation-delay: 0.7s; }
        .voice-bar:nth-child(9) { height: 20%; animation-delay: 0.8s; }
        .voice-bar:nth-child(10) { height: 10%; animation-delay: 0.9s; }
        
        .activity-section {
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex-grow: 1;
            overflow-y: auto;
        }
        
        .activity-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #d1d1d1;
        }
        
        .activity-item .activity-icon {
            font-size: 0.75rem;
            color: #bff747;
            filter: drop-shadow(0 0 5px rgba(191, 247, 71, 0.5));
        }

        .dashboard-header h1 {
            animation: pulse-title 2s infinite ease-in-out;
            text-shadow: 0 0 15px rgba(191, 247, 71, 0.5);
        }

        /* --- Keyframe Animations --- */
        @keyframes digital-rain {
            0% { background-position: 0 0; }
            100% { background-position: 0 100%; }
        }

        @keyframes pulse-title {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.02); opacity: 0.9; }
        }

        @keyframes shimmer-border {
            0% { background-position: 0% 0%; }
            100% { background-position: 100% 100%; }
        }

        @keyframes text-glow {
            0% { text-shadow: 0 0 10px rgba(191, 247, 71, 0.5); }
            100% { text-shadow: 0 0 20px rgba(191, 247, 71, 0.8); }
        }

        @keyframes voice-pulse {
            0%, 100% { transform: scaleY(0.5); }
            50% { transform: scaleY(1); }
        }
/* Pain Points Section */
.pain-points-section {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
}

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

.pain-point {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(191, 247, 71, 0.2);
    transition: all 0.3s ease;
}

.pain-point:hover {
    transform: translateY(-5px);
    border-color: #bff747;
    box-shadow: 0 10px 30px rgba(191, 247, 71, 0.1);
}

.pain-point i {
    font-size: 3rem;
    color: #bff747;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(191, 247, 71, 0.7));
}

.pain-point h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.pain-point p {
    color: #cccccc;
}

/* Solutions Section */
.solutions-section {
    background: #000000;
}

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

.solution-card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid rgba(191, 247, 71, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(191, 247, 71, 0.1), transparent);
    transition: left 0.5s ease;
}

.solution-card:hover::before {
    left: 100%;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: #bff747;
    box-shadow: 0 20px 40px rgba(191, 247, 71, 0.2);
}

.solution-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #bff747 0%, #a3e635 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
}

.solution-icon i {
    font-size: 2rem;
    color: #000000;
}

.solution-icon {
    box-shadow: 0 0 20px rgba(191, 247, 71, 0.5), 0 0 40px rgba(191, 247, 71, 0.2);
}

.solution-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.solution-card p {
    color: #cccccc;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}

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

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.benefit:hover {
    background: rgba(191, 247, 71, 0.1);
    transform: translateX(10px);
}

.benefit i {
    font-size: 1.5rem;
    color: #bff747;
    margin-top: 0.25rem;
    filter: drop-shadow(0 0 10px rgba(191, 247, 71, 0.6));
}

.benefit h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.benefit p {
    color: #cccccc;
    margin-bottom: 0;
}

/* Social Proof Section */
.social-proof-section {
    background: #000000;
}

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

.testimonial {
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-left: 4px solid #bff747;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #bff747;
    font-family: serif;
}

.testimonial-content p {
    font-style: italic;
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.author-info h4 {
    color: #bff747;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #cccccc;
    font-size: 0.9rem;
}

.case-study {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #bff747 0%, #a3e635 100%);
    color: #000000;
}

.case-study h3 {
    color: #000000;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.case-study-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #000000;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #bff747 0%, #a3e635 100%);
    color: #000000;
    font-size: 2rem;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 25px rgba(191, 247, 71, 0.6), 0 0 50px rgba(191, 247, 71, 0.3);
}

.step-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.step-content p {
    color: #cccccc;
}

.step-arrow {
    color: #bff747;
    font-size: 2rem;
    filter: drop-shadow(0 0 12px rgba(191, 247, 71, 0.7));
}

.step-arrow i {
    animation: bounce 2s infinite;
}

/* Risk Reversal Section */
.risk-reversal-section {
    background: #000000;
}

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

.guarantee {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid rgba(191, 247, 71, 0.3);
    transition: all 0.3s ease;
}

.guarantee:hover {
    transform: translateY(-5px);
    border-color: #bff747;
    box-shadow: 0 15px 35px rgba(191, 247, 71, 0.2);
}

.guarantee-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #bff747 0%, #a3e635 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 25px rgba(191, 247, 71, 0.6), 0 0 50px rgba(191, 247, 71, 0.3);
}

.guarantee-icon i {
    font-size: 2.5rem;
    color: #000000;
}

.guarantee h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.guarantee p {
    color: #cccccc;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    text-align: center;
}

.cta-description {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    color: #cccccc;
}

.urgency-text {
    margin-top: 1.5rem;
    color: #bff747;
    font-weight: 600;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    background: #000000;
    border-top: 1px solid rgba(191, 247, 71, 0.3);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(191, 247, 71, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #bff747;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(191, 247, 71, 0.3);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #bff747;
    box-shadow: 0 0 15px rgba(191, 247, 71, 0.3);
}

.contact-info {
    padding: 2rem;
}

.contact-info h3 {
    color: #bff747;
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.contact-method i {
    color: #bff747;
    width: 20px;
    filter: drop-shadow(0 0 8px rgba(191, 247, 71, 0.6));
}

.response-time {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(191, 247, 71, 0.1);
    border-radius: 10px;
    color: #bff747;
    font-size: 0.9rem;
}

.response-time i {
    filter: drop-shadow(0 0 8px rgba(191, 247, 71, 0.6));
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    border-top: 2px solid rgba(191, 247, 71, 0.3);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #bff747;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(191, 247, 71, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #bff747;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #bff747;
    color: #000000;
    box-shadow: 0 0 15px rgba(191, 247, 71, 0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(191, 247, 71, 0.3);
    color: #cccccc;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(10px);
    }
    60% {
        transform: translateX(5px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-headline {
        font-size: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-grid {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-headline {
        font-size: 2.8rem;
        letter-spacing: normal;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-cta {
        text-align: center;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section-headline {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        min-width: 250px;
    }
    
    .trust-badges {
        justify-content: center;
        gap: 1rem;
    }
    
    .ai-dashboard-mockup {
        width: 300px;
        height: 300px;
    }
    
    .case-study-metrics {
        gap: 2rem;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.2rem;
        letter-spacing: normal;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .cta-button.hero-primary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-headline {
        font-size: 1.6rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        min-width: 220px;
    }
    
    .ai-dashboard-mockup {
        width: 250px;
        height: 250px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}