/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Three columns: left, center, right */
    align-items: center;
    padding: 0 1.4rem;
    background: transparent;
    position: fixed;
    width: calc(100% - 30px);
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    border-radius: 16px;
    border: none;
    transition: all 0.3s ease;
}

/* Scrolled state */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    top: 0.8rem;
    margin-top: 0;
    padding: 0.4rem 1.4rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-self: start; /* Align logo to the start of its column */
}

.logo img {
    height: 16px;
    width: auto;
    filter: none;
    transition: height 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 14px;
}

.nav-links {
    /* Center column */
    grid-column: 2;
    justify-self: center;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.925rem;
    letter-spacing: -0.01em;
}

.nav-links a:hover {
    color: rgba(0, 0, 0, 1);
}

.navbar.scrolled .nav-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}

.navbar.scrolled .nav-links a:hover {
    color: white;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #000;
    min-width: 220px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2), 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.4rem 0;
    margin-top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Add a pseudo-element to extend hover area */
.dropdown::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 20px;
    bottom: -20px;
    left: 0;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.4rem 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.925rem;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.navbar.transparent .dropdown-content {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.transparent .dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #0066FF;
    padding-left: 1.5rem;
}

.contact-btn {
    background: white;
    color: black;
    border: none;
    padding: 0.45rem 1.1rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    letter-spacing: -0.01em;
}

.navbar.scrolled .contact-btn {
    padding: 0.4rem 1rem;
    font-size: 0.825rem;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.navbar.transparent .contact-btn {
    background: white;
    color: #0066FF;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
    margin: 0.75rem 0.5rem 0 0.5rem;
    border-radius: 20px;
    background-image: url('images/front-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Add overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.56);
    border-radius: 20px;
}

/* Remove video background styles and update hero content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2.5%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.hero-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
    justify-content: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
    padding-top: 90px;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.01em;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-primary {
    background: #0066FF;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cta-primary:hover, .cta-secondary:hover {
    transform: translateY(-2px);
}

.cta-primary:hover {
    background: #0052cc;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Industry Section */
.industry-section {
    padding: 0 5% 3rem;
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

.industry-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 2rem auto;
    max-width: 800px;
    padding: 0 1rem;
}

.industry-box {
    position: relative;
    padding: 2rem 1.25rem 1.25rem;
    background: linear-gradient(135deg, rgba(18, 18, 20, 0.95), rgba(30, 30, 32, 0.95));
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 140px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.industry-box i {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 3;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

/* Default colorful icons */
.industry-box:nth-of-type(1) i {
    color: #4A90E2;
    background: rgba(74, 144, 226, 0.15);
    border: 2px solid rgba(74, 144, 226, 0.3);
}
.industry-box:nth-of-type(2) i {
    color: #FF6B6B;
    background: rgba(255, 107, 107, 0.15);
    border: 2px solid rgba(255, 107, 107, 0.3);
}
.industry-box:nth-of-type(3) i {
    color: #50E3C2;
    background: rgba(80, 227, 194, 0.15);
    border: 2px solid rgba(80, 227, 194, 0.3);
}
.industry-box:nth-of-type(4) i {
    color: #FFD93D;
    background: rgba(255, 217, 61, 0.15);
    border: 2px solid rgba(255, 217, 61, 0.3);
}

/* Hover effects for icons */
.industry-box:hover i {
    transform: translateX(-50%) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.industry-box h3 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
}

.industry-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    max-width: 90%;
    margin: 0 auto;
}

.industry-box:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(22, 22, 24, 0.98), rgba(34, 34, 36, 0.98));
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.75rem;
    }

    .industry-box {
        min-height: 120px;
        padding: 0.875rem;
    }

    .industry-box i {
        font-size: 1.125rem;
        width: 2.25rem;
        height: 2.25rem;
        margin-bottom: 0.625rem;
    }

    .industry-box h3 {
        font-size: 0.8125rem;
        margin-bottom: 0.375rem;
    }

    .industry-box p {
        font-size: 0.6875rem;
        line-height: 1.3;
    }
}

/* Logo Showcase Section */
.logo-showcase {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.logo-showcase h2 {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 500;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo-grid img {
    max-width: 120px;
    height: auto;
    filter: grayscale(1) opacity(0.6);
    transition: all 0.3s ease;
}

.logo-grid img:hover {
    filter: grayscale(0) opacity(1);
}

/* How We Work Section */
.how-we-work {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.how-we-work::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.5;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;

}

.section-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.flow-chart {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.flow-step {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.flow-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-number {
    background: linear-gradient(135deg, #FF3366, #FF6B98);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF3366, #FF6B98);
    opacity: 0.5;
    filter: blur(5px);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #FF3366;
    transition: all 0.3s ease;
}

.flow-step:hover .step-icon {
    transform: scale(1.2);
    color: #FF6B98;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .flow-chart {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .flow-chart {
        grid-template-columns: 1fr;
    }

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

    .section-intro {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .flow-step {
        padding: 1.5rem;
    }
}

.work-cta {
    text-align: center;
    margin-top: 4rem;
}

.work-cta .cta-button {
    background: #FF3366;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.work-cta .cta-button:hover {
    background: #E62E5C;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.2);
}

.work-cta .cta-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .how-we-work h2 {
        font-size: 2rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }
}

/* Reviews Section */
.reviews {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.reviews-masonry {
    columns: 3;
    column-gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.masonry-column {
    break-inside: avoid;
    margin-bottom: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    break-inside: avoid;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.reviewer-info p {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    color: #E84738;
    font-size: 1rem;
    margin-top: 0.5rem;
    text-align: left;
}

.review-text {
    color: #444;
    line-height: 1.6;
    font-size: 1.1rem;
}

.load-more {
    display: block;
    margin: 3rem auto 0;
    padding: 1rem 2.5rem;
    background: #0066FF;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more:hover {
    background: #0052cc;
    transform: translateY(-2px);
}

/* Growth CTA Section */
.growth-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0066FF, #0052cc);
    color: white;
    text-align: center;
}

.growth-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.growth-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    font-size: 1.5rem;
    opacity: 0.9;
}

.cta-button {
    padding: 1.2rem 3rem;
    background: white;
    color: #0066FF;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Team Support Section */
.team-support {
    padding: 6rem 0;
    background: #f8f9fa;
    text-align: center;
}

.team-support h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.support-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.support-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-card i {
    font-size: 2.5rem;
    color: #0066FF;
    margin-bottom: 1.5rem;
}

.support-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.support-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Blog Section */
.blog {
    padding: 6rem 5%;
    background: white;
}

.blog h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.center {
    text-align: center;
}
.white {
    color: white;
}
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
    background: white;
}

.blog-category {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: #f0f4ff;
    color: #0066FF;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #0066FF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Footer Styles */
.footer {
    background: #fff;
    padding: 80px 0 40px;
    color: #333;
}

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

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

.footer-logo {
    height: 30px;
    margin-bottom: 40px;
    filter: brightness(0); /* Make logo black */
}

.address-block {
    margin-bottom: 30px;
}

.block-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.block-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
}

.block-description a {
    color: #666;
    text-decoration: none;
}

.app-stores {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.app-store-link img {
    height: 40px;
}

.footer-top-right {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: #0066FF;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.9rem;
    color: #666;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #666;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #0066FF;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-top-right {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Add styles for the right navigation section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    justify-self: end; /* Align right content to the end of its column */
}

.login-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.925rem;
    margin-right: 1rem;
}

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

/* Update transparent navbar styles for login link */
.navbar.transparent .login-link {
    color: white;
}

/* Update mobile styles */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* You'll need JavaScript for a mobile menu */
    }

    .hero {
        min-height: 100vh;
        padding: 6rem 5% 3rem;
    }

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

    .stat-box {
        padding: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-links a {
        margin: 0 1rem;
    }

    .logo img {
        height: 15px;
    }

    .nav-right {
        gap: 1.2rem;
    }
}

/* Update dropdown caret styles */
.dropdown a i {
    font-size: 0.75em;
    margin-left: 4px;
    transition: transform 0.2s ease;
    color: rgba(0, 0, 0, 0.85);
    opacity: 0.9;
}

.dropdown:hover a i {
    transform: rotate(180deg);
    opacity: 1;
}

/* Update caret color when navbar is scrolled */
.navbar.scrolled .dropdown a i {
    color: rgba(255, 255, 255, 0.95);
}

/* Update existing dropdown styles */
.dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Keep the caret white in transparent mode */
.navbar.transparent .dropdown a i {
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

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

    .reviews-masonry {
        columns: 1;
    }

    .cta-features {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .blog-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

/* Automotive Hero Section */
.automotive-hero {
    background-image: url('images/automotive-background.jpg');
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: #0066FF;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Case Study Section */
.case-study {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0066FF, #0052cc);
    color: white;
}

.case-study-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.case-study h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

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

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-box h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-box p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Integrations Section */
.integrations {
    padding: 6rem 0;
    background: #f8f9fa;
    text-align: center;
}

.integrations h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}
.hufflepuff-house {
    width: 100%;
    position: absolute;
    top: 10px;
    display: flex;
    margin: 0 auto;
    z-index: 99;
    justify-content: center;
}

.hufflepuff-house-content {
    background: white;
    width: 590px;
    height: 59px;
    position: relative;
}
.hufflepuff-house-content:after {
    content: "";
    background-position: -13px 1px;
    position: absolute;
    top: -7px;
    width: 119px;
    left: calc(100% - 5px);
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' clip-rule='evenodd' viewBox='0 0 140 78'%3E%3Cpath fill='%23fff' fill-rule='nonzero' d='m139.79 0-.556 7.83c-16.54 0-32.45 6.32-44.49 17.66l-36.43 34.33c-12.04 11.34-27.95 17.66-44.49 17.66H.812L0 0h139.79Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}
.hufflepuff-house-content:before {
    background-position: 15px 1px;
    content: "";
    position: absolute;
    top: -7px;
    right: calc(100% - 24px);
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' fill-rule='evenodd' stroke-linejoin='round' stroke-miterlimit='2' clip-rule='evenodd' viewBox='0 0 140 78'%3E%3Cpath fill='%23fff' fill-rule='nonzero' d='m0 0 .556 7.83c16.54 0 32.45 6.32 44.49 17.66l36.43 34.33c12.04 11.34 27.95 17.66 44.49 17.66h13.012L139.79 0H0Z'/%3E%3C/svg%3E");
    width: 141px;
    background-repeat: no-repeat;
    background-size: contain;
}
.integration-logo {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.integration-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.integration-logo img {
    max-width: 150px;
    height: auto;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .features-grid,
    .stats-grid,
    .integration-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .case-study h2 {
        font-size: 2rem;
    }

    .stat-box {
        padding: 1.5rem;
    }

    .stat-box h3 {
        font-size: 2rem;
    }
}

.hero-logos {
    position: relative;
    text-align: center;
    padding: 2rem;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    margin-top: auto;
}

.hero-logos h4 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-logo-grid img {
    height: 22px;
    width: auto;
    filter: grayscale(1) brightness(100);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-logo-grid img:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-logo-grid {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .hero-logo-grid img {
        height: 16px;
    }

    .hero-logos {
        padding: 1.5rem;
    }
}

/* Serviceform Difference Sections - Shared Styles */
.difference-section {
    padding: 6rem 0;
    background: #fff;
}

.difference-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.02em;
}

/* Layout 1: Modern Split Layout */
.layout-1 .difference-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.layout-1 .difference-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 3rem;
}

.layout-1 .difference-features {
    display: grid;
    gap: 2rem;
}

.layout-1 .feature {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.layout-1 .feature i {
    font-size: 2rem;
    color: #0066FF;
}

.layout-1 .feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.layout-1 .feature p {
    color: #666;
    line-height: 1.5;
}

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

.layout-1 .tech-item {
    background: linear-gradient(135deg, #f8f9fa, #fff);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.layout-1 .tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #0066FF;
}

/* Layout 2: Cards with Hover Effect */
.layout-2 {
    background: #f8f9fa;
}

.layout-2 .section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.layout-2 .section-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
}

.layout-2 .cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.layout-2 .difference-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.layout-2 .difference-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.layout-2 .card-icon {
    font-size: 2.5rem;
    color: #0066FF;
    margin-bottom: 1.5rem;
}

.layout-2 .difference-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.layout-2 .difference-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.layout-2 .feature-list {
    list-style: none;
    padding: 0;
}

.layout-2 .feature-list li {
    padding: 0.5rem 0;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.layout-2 .feature-list li:before {
    content: "→";
    color: #0066FF;
}

/* Layout 3: Background Image Cards */
.layout-3 {
    background: linear-gradient(135deg, #fff, #f8f9fa);
}

.layout-3 .difference-header {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.layout-3 .difference-intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
}

.layout-3 .experience-timeline {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.layout-3 .timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.layout-3 .timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.layout-3 .timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.layout-3 .timeline-icon {
    width: 4rem;
    height: 4rem;
    background: #0066FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.layout-3 .timeline-icon i {
    font-size: 2rem;
    color: white;
}

.layout-3 .timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.layout-3 .timeline-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.layout-3 .tech-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f0f4ff;
    color: #0066FF;
    border-radius: 20px;
    margin: 0.25rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .layout-1 .difference-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .layout-2 .cards-container {
        grid-template-columns: 1fr;
    }

    .layout-3 .timeline-item {
        margin-left: 0;
    }

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

/* Layout 7: Glassmorphism Cards */
.layout-7 {
    position: relative;
    background: linear-gradient(45deg, #0066FF, #00C6FF);
    overflow: hidden;
}

.glass-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255, 255, 255, 0.1)" d="M43.5,-67.7C57.9,-61.8,72.3,-52.1,78.9,-38.1C85.5,-24.1,84.3,-5.8,79.4,10.2C74.5,26.2,65.9,39.9,54.4,49.9C42.9,59.9,28.5,66.2,13.5,69.1C-1.5,72,-17.1,71.5,-32.4,66.7C-47.7,61.9,-62.8,52.8,-70.8,39.2C-78.8,25.6,-79.8,7.5,-76.6,-9.3C-73.4,-26.1,-66,-41.6,-54.3,-48.8C-42.6,-56,-26.6,-54.9,-11.8,-57.4C3,-59.9,29.1,-73.6,43.5,-67.7Z" transform="translate(100 100)" /></svg>') no-repeat center center,
    url('data:image/svg+xml,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path fill="rgba(255, 255, 255, 0.05)" d="M47.7,-73.2C62.3,-66.7,75.1,-54.5,81.5,-39.5C87.9,-24.4,87.9,-6.6,84.5,10.1C81.1,26.8,74.3,42.4,63.3,54.9C52.2,67.4,37,76.8,20.5,80.3C4,83.9,-13.8,81.6,-29.7,75.1C-45.6,68.6,-59.5,57.9,-69.9,44.1C-80.3,30.2,-87.1,13.2,-86.5,-3.8C-85.8,-20.8,-77.6,-37.8,-65.6,-45.8C-53.6,-53.9,-37.8,-53,-24.1,-58.8C-10.4,-64.6,1.2,-77.1,15.3,-79.7C29.5,-82.3,33.1,-79.7,47.7,-73.2Z" transform="translate(100 100)" /></svg>') no-repeat 80% 80%;
    background-size: 50% 50%;
    opacity: 0.8;
}

.glass-header {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
}

.glass-message {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.glass-message p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.glass-card.highlight {
    background: rgba(255, 255, 255, 0.2);
}

.glass-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.glass-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.glass-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Layout 8: Floating Sections */
.layout-8 {
    background: #111;
    color: white;
}

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

.float-header {
    text-align: center;
    margin-bottom: 4rem;
}

.float-intro {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.float-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.float-section {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.float-section:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
}

.float-number {
    font-size: 3rem;
    font-weight: 800;
    color: #0066FF;
    opacity: 0.8;
}

.float-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.float-content p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.float-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.float-tags span {
    padding: 0.3rem 0.8rem;
    background: rgba(0, 102, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Layout 9: Gradient Mesh */
.layout-9 {
    background: #0c0c0c;
    color: white;
    position: relative;
    overflow: hidden;
}

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

.mesh-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.mesh-text {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 1rem;
}

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

.mesh-card {
    position: relative;
    padding: 2rem;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mesh-content {
    position: relative;
    z-index: 2;
}

.mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #0066FF, transparent);
    opacity: 0.1;
    transition: all 0.3s ease;
}

.mesh-card:hover .mesh-gradient {
    opacity: 0.2;
    transform: scale(1.1);
}

.mesh-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0066FF;
}

.mesh-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.mesh-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Layout 10: Kinetic Typography */
.layout-10 {
    background: #fff;
    overflow: hidden;
}

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

.kinetic-header {
    text-align: center;
    margin-bottom: 4rem;
}

.scroll-text {
    position: relative;
    height: 40px;
    overflow: hidden;
    margin-top: 1rem;
}

.scroll-wrapper {
    animation: scrollText 10s linear infinite;
    display: flex;
    flex-direction: column;
}

.scroll-wrapper span {
    height: 40px;
    line-height: 40px;
    font-size: 1.2rem;
    color: #0066FF;
}

@keyframes scrollText {
    0% { transform: translateY(0); }
    100% { transform: translateY(-120px); }
}

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

.kinetic-card {
    position: relative;
    height: 200px;
    perspective: 1000px;
    cursor: pointer;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s;
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-front {
    background: white;
    border: 1px solid #eee;
}

.card-back {
    background: #0066FF;
    color: white;
    transform: rotateY(180deg);
}

.kinetic-card:hover .card-front {
    transform: rotateY(180deg);
}

.kinetic-card:hover .card-back {
    transform: rotateY(360deg);
}

/* Layout 11: Brutalist Design */
.layout-11 {
    background: #000;
    color: white;
    font-family: monospace;
}

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

.brutalist-header {
    text-align: center;
    margin-bottom: 4rem;
}

.glitch-text {
    position: relative;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    animation: glitch 1s linear infinite;
}

@keyframes glitch {
    2%, 64% { transform: translate(2px, 0) skew(0deg); }
    4%, 60% { transform: translate(-2px, 0) skew(0deg); }
    62% { transform: translate(0, 0) skew(5deg); }
}

.pixel-divider {
    height: 5px;
    background: repeating-linear-gradient(to right, #fff 0, #fff 5px, transparent 5px, transparent 10px);
    margin: 2rem auto;
    max-width: 200px;
}

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

.brutalist-card {
    border: 2px solid white;
    padding: 2rem;
    position: relative;
    transition: all 0.2s steps(2);
}

.brutalist-card:hover {
    background: white;
    color: black;
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 #0066FF;
}

.card-number {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.brutalist-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: monospace;
}

.pixel-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #0066FF;
    margin-top: 1rem;
    font-size: 0.8rem;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

/* Responsive Styles for New Layouts */
@media (max-width: 768px) {
    .glass-grid,
    .mesh-grid,
    .kinetic-grid,
    .brutalist-grid {
        grid-template-columns: 1fr;
    }

    .float-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .float-number {
        margin-bottom: 1rem;
    }

    .glitch-text {
        font-size: 2rem;
    }
}

/* Experimental Pixel Art Layouts */

/* Layout 12: Glitch Cascade */
.layout-12 {
    background: #000;
    color: #0f0;
    font-family: 'Press Start 2P', monospace;
    position: relative;
    overflow: hidden;
}

.glitch-cascade {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem;
}

.glitch-box {
    border: 2px solid #0f0;
    padding: 2rem;
    position: relative;
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) infinite;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate(2px, 0, 0); }
    30%, 50%, 70% { transform: translate(-4px, 0, 0); }
    40%, 60% { transform: translate(4px, 0, 0); }
}

.glitch-box:hover {
    animation: glitchEffect 0.3s infinite;
}

@keyframes glitchEffect {
    0% { clip-path: inset(50% 0 30% 0); }
    20% { clip-path: inset(20% 0 60% 0); }
    40% { clip-path: inset(40% 0 40% 0); }
    60% { clip-path: inset(80% 0 5% 0); }
    80% { clip-path: inset(10% 0 85% 0); }
    100% { clip-path: inset(40% 0 50% 0); }
}

/* Layout 13: Pixel Rain */
.layout-13 {
    background: #111;
    position: relative;
}

.pixel-rain {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0.5rem;
    padding: 2rem;
}

.rain-pixel {
    aspect-ratio: 1;
    background: #00ff00;
    animation: rainDrop 2s infinite;
    opacity: 0;
}

@keyframes rainDrop {
    0% { transform: translateY(-100%); opacity: 1; }
    100% { transform: translateY(1000%); opacity: 0; }
}

.rain-pixel:nth-child(3n) { animation-delay: 0.3s; }
.rain-pixel:nth-child(2n) { animation-delay: 0.6s; }
.rain-pixel:nth-child(5n) { animation-delay: 0.9s; }

/* Layout 14: Mouse Trail */
.layout-14 {
    background: #000;
    min-height: 60vh;
    position: relative;
}

.pixel-trail {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #ff0;
    pointer-events: none;
    transition: transform 0.1s linear;
}

/* Layout 15: Scanline Effect */
.layout-15 {
    background: #000;
    position: relative;
}

.scanline-content {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 255, 0, 0.3);
    animation: scan 2s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

/* Layout 16: Pixel Explosion */
.layout-16 {
    background: #111;
    position: relative;
}

.pixel-explosion {
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    gap: 2px;
    padding: 2rem;
}

.explosion-pixel {
    aspect-ratio: 1;
    background: #f0f;
    transform-origin: center;
}

.pixel-explosion:hover .explosion-pixel {
    animation: explode 0.5s ease-out forwards;
}

@keyframes explode {
    0% { transform: scale(1) rotate(0); }
    100% {
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
}

/* Layout 17: Data Stream */
.layout-17 {
    background: #000;
    position: relative;
}

.data-stream {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 2rem;
}

.data-bit {
    width: 20px;
    height: 20px;
    background: #00ff00;
    animation: dataFlow 1s infinite;
    opacity: 0;
}

@keyframes dataFlow {
    0% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(100%); }
}

/* Layout 18: Corrupted Display */
.layout-18 {
    background: #000;
    position: relative;
}

.corrupted-text {
    font-family: monospace;
    color: #0f0;
    font-size: 2rem;
    text-align: center;
    padding: 2rem;
    animation: corrupt 2s steps(2) infinite;
}

@keyframes corrupt {
    0% { text-shadow: none; }
    25% {
        text-shadow:
                2px 0 #f00,
                -2px 0 #0ff;
    }
    50% { text-shadow: none; }
    75% {
        text-shadow:
                -2px 0 #f00,
                2px 0 #0ff;
    }
}

/* Layout 19: Circuit Board */
.layout-19 {
    background: #001100;
    position: relative;
}

.circuit-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1px;
    padding: 2rem;
}

.circuit-node {
    aspect-ratio: 1;
    background: #003300;
    position: relative;
}

.circuit-node::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #00ff00;
    top: 50%;
    transform-origin: left;
    animation: circuitFlow 2s infinite;
}

@keyframes circuitFlow {
    0% { transform: scaleX(0); opacity: 1; }
    100% { transform: scaleX(1); opacity: 0; }
}

/* Responsive Styles for New Layouts */
@media (max-width: 768px) {
    .glitch-cascade {
        grid-template-columns: 1fr;
    }

    .pixel-rain {
        grid-template-columns: repeat(4, 1fr);
    }

    .pixel-explosion {
        grid-template-columns: repeat(10, 1fr);
    }

    .circuit-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Mouse Trail JavaScript Helper */
.pixel-trail {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

/* Layout 3: Background Image Cards */
.layout-3 .difference-card {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.layout-3 .difference-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.layout-3 .card-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

.layout-3 .feature-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.layout-3 .feature-list li {
    margin-bottom: 5px;
}

/* Alternative Layouts for The Serviceform Difference Section */
.difference-section.layout-3 {
    background: url('images/serviceform-background-front.png') no-repeat center right;
    background-size: contain;
    padding: 80px 0;
}

.difference-section.layout-3 .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.difference-section.layout-3 .content-side {
    text-align: left;
    padding-right: 40px;
}

.difference-section.layout-3 .section-header {
    text-align: left;
    margin-bottom: 40px;
}

.difference-section.layout-3 .difference-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.difference-section.layout-4 {
    background: linear-gradient(to right, #fff 50%, rgba(255, 255, 255, 0.9)), url('images/serviceform-background-front-2.png');
    background-size: cover;
    padding: 100px 0;
}

.difference-section.layout-4 .container {
    max-width: 1200px;
    margin: 0 auto;
}

.difference-section.layout-4 .content-wrapper {
    max-width: 600px;
    text-align: left;
}

.difference-section.layout-4 .difference-card {
    background: transparent;
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.difference-section.layout-5 {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.difference-section.layout-5::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
    height: 100%;
    background: url('images/serviceform-background-front.png') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

.difference-section.layout-5 .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
}

.difference-section.layout-5 .content-area {
    max-width: 550px;
    text-align: left;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
}

.difference-section.layout-6 {
    background: #f8f9fa;
    padding: 100px 0;
}

.difference-section.layout-6 .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.difference-section.layout-6 .image-side {
    background: url('images/serviceform-background-front-2.png') no-repeat center center;
    background-size: cover;
    border-radius: 20px;
    min-height: 500px;
}

.difference-section.layout-6 .content-side {
    text-align: left;
    padding: 40px;
}

.difference-section.layout-6 .difference-point {
    margin-bottom: 30px;
    position: relative;
    padding-left: 30px;
}

.difference-section.layout-6 .difference-point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color, #007bff);
}

/* Testimonials Section - Chat Style */
.testimonials {
    padding: 6rem 0;
    background: #f8f9fa;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.testimonials .section-intro {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.chat-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.chat-message {
    opacity: 1;
    transform: none;
    display: block;
}

.message-bubble p {
    margin: 0;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0.5rem;
}

.rating {
    color: #E84738;
    font-size: 1rem;
    margin-top: 0.5rem;
    text-align: left;
}

/* Remove animation-related styles */
.chat-message.visible {
    opacity: 1;
    transform: none;
}

.message-content {
    width: 100%;
}

.message-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.sender {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.time {
    color: #666;
    font-size: 0.9rem;
}

.message-bubble {
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    border-top-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    transform-origin: top left;
    animation: messagePop 0.3s ease-out forwards;
}

.message-bubble p {
    margin: 0;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0.5rem;
}

/* Remove typing animation */
.chat-message.visible .message-bubble p {
    animation: none;
}

@keyframes typing {
    from { width: auto; }
    to { width: auto; }
}

.rating {
    margin-top: 0.5rem;
    color: #FFD700;
    font-size: 1rem;
}

/* Row-by-row animation delays */
.chat-message:nth-child(3n+1),
.chat-message:nth-child(3n+2),
.chat-message:nth-child(3n+3),
.chat-message:nth-child(3n+4),
.chat-message:nth-child(3n+5),
.chat-message:nth-child(3n+6),
.chat-message:nth-child(3n+7),
.chat-message:nth-child(3n+8),
.chat-message:nth-child(3n+9) {
    transition-delay: 0s;
}

/* Highlight message style */
.chat-message.highlight .message-bubble {
    background: linear-gradient(135deg, #0066FF, #0052cc);
    color: white;
}

.chat-message.highlight .message-bubble p,
.chat-message.highlight .rating {
    color: white;
}

/* Remove avatar-related styles */
.message-avatar {
    display: none;
}

/* Update responsive styles */
@media (max-width: 1200px) {
    .chat-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .chat-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .chat-message {
        margin-bottom: 1.5rem;
    }

    .message-bubble {
        padding: 1rem;
    }
}

.message-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.sender {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.time {
    color: #666;
    font-size: 0.9rem;
}

.message-bubble {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    border-top-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.message-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.message-bubble p {
    margin: 0;
    line-height: 1.6;
    color: #444;
    margin-bottom: 0.5rem;
}

.message-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.tag {
    padding: 0.3rem 0.8rem;
    background: rgba(0, 102, 255, 0.1);
    color: #0066FF;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    animation: tagSlideIn 0.4s ease-out forwards;
    opacity: 0;
}

.tag:nth-child(2) {
    animation-delay: 0.1s;
}

.tag:nth-child(3) {
    animation-delay: 0.2s;
}

/* Highlight message style */
.chat-message.highlight .message-bubble {
    background: linear-gradient(135deg, #0066FF, #0052cc);
    color: white;
}

.chat-message.highlight .message-bubble p,
.chat-message.highlight .rating {
    color: white;
}

/* Remove avatar-related styles */
.message-avatar {
    display: none;
}

/* Update responsive styles */
@media (max-width: 768px) {
    .chat-container {
        padding: 0 1rem;
    }

    .message-avatar {
        width: 40px;
        height: 40px;
    }

    .message-avatar i {
        color: white;
        font-size: 1.2rem;
    }

    .message-content {
        max-width: calc(100% - 56px);
    }

    .message-bubble {
        padding: 0.8rem 1.2rem;
    }

    .message-bubble p {
        font-size: 0.95rem;
    }

    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonials .section-intro {
        font-size: 1.1rem;
    }
}

/* Typing animation styles */
@keyframes typing {
    from { width: auto; }
    to { width: auto; }
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Write your own testimonial section */
.write-testimonial {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.new-message {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    opacity: 1 !important;
    transform: none !important;
}

.message-bubble.editable {
    padding: 0;
    background: white;
    transition: all 0.3s ease;
}

.message-bubble.editable textarea {
    width: 100%;
    min-height: 120px;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: 16px;
    border-top-left-radius: 4px;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    resize: vertical;
}

.message-bubble.editable textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px #0066FF;
}

.message-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

.send-button {
    background: #0066FF;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.send-button:hover {
    background: #0052cc;
    transform: translateY(-2px);
}

.send-button i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .write-testimonial {
        padding: 0 1rem;
    }

    .new-message {
        max-width: 100%;
    }

    .message-bubble.editable textarea {
        min-height: 100px;
    }
}

.load-more-container {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
}

.load-more-btn {
    background: #FF3366;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.load-more-btn:hover {
    background: #E62E5C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.load-more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.load-more-btn:hover i {
    transform: translateY(2px);
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhance message animations */
.message-bubble {
    transform-origin: top left;
    animation: messagePop 0.3s ease-out forwards;
}

@keyframes messagePop {
    0% {
        transform: scale(0.95);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

/* Add hover effect to chat messages */
.chat-message:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Enhance tag animations */
.message-tags .tag {
    animation: tagSlideIn 0.4s ease-out forwards;
    opacity: 0;
}

@keyframes tagSlideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.message-tags .tag:nth-child(2) {
    animation-delay: 0.1s;
}

.message-tags .tag:nth-child(3) {
    animation-delay: 0.2s;
}

/* Founders Section */
.founders-section {
    position: relative;
    padding: 120px 0;
    background: url('images/founders.png') no-repeat bottom right;
    background-size: contain;
    color: white;
    text-align: left;
    background-color: #000;
}

.founders-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 70%);
    z-index: 1;
}

.founders-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0;
    padding-left: 2rem;
}

@media (max-width: 1024px) {
    .founders-section {
        background-position: 100px bottom;
    }

    .founders-content {
        margin-left: 0;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .founders-section {
        padding: 80px 0;
        background-position: center bottom;
        text-align: center;
    }

    .founders-content {
        margin: 0 auto;
        padding: 0 1rem;
        max-width: 100%;
    }
}

.founders-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.founders-section p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.founders-note {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-top: 1rem;
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Hero Section Enhancements */
.hero {
    animation: gradientBG 15s ease infinite;
}

.hero::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0% { opacity: 0.1; }
    50% { opacity: 0.9; }
    100% { opacity: 0.1; }
}

nav.navbar.scrolled {
    color: white;
}

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

/* Industry Box Enhancements */
.industry-box {
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-box:hover {
    transform: translateY(-10px) rotateX(10deg) rotateY(-10deg);
    box-shadow:
            20px 20px 60px rgba(0, 0, 0, 0.2),
            -20px -20px 60px rgba(255, 255, 255, 0.1);
}

.industry-box i {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-box:hover i {
    transform: translateX(-50%) translateY(-5px) scale(1.2);
}

/* Difference Section Enhancements */
.difference-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.difference-item:nth-child(2) { animation-delay: 0.2s; }
.difference-item:nth-child(3) { animation-delay: 0.4s; }

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

/* How We Work Section Enhancements */
.step-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
            0 20px 40px rgba(255, 51, 102, 0.15),
            0 8px 16px rgba(255, 51, 102, 0.1);
}

.step-icon {
    transition: all 0.5s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.2) rotate(360deg);
    color: #FF3366;
}

/* Testimonials Enhancement */
.chat-message {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-message:hover {
    transform: translateY(-5px) scale(1.02);
    z-index: 2;
}

.message-bubble {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-message:hover .message-bubble {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.tag {
    transition: all 0.3s ease;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 102, 255, 0.2);
}

/* Founders Section Enhancement */
.founders-section {
    position: relative;
    overflow: hidden;
}

.founders-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 51, 102, 0.1), transparent);
    z-index: 1;
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0% { opacity: 0; }
    50% { opacity: 0.5; }
    100% { opacity: 0; }
}

/* Growth CTA Enhancement */
.growth-cta {
    position: relative;
    overflow: hidden;
}

.growth-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-button {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
            0 20px 40px rgba(0, 102, 255, 0.3),
            0 8px 16px rgba(0, 102, 255, 0.2);
}

/* Blog Section Enhancement */
.blog-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Footer Enhancement */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), transparent);
}

.footer-list a {
    position: relative;
    transition: all 0.3s ease;
}

.footer-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #0066FF;
    transition: width 0.3s ease;
}

.footer-list a:hover::after {
    width: 100%;
}

/* Social Icons Enhancement */
.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.2);
    color: #0066FF;
}

/* Navbar Enhancement */
.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    transform: translateX(-50%) translateY(0);
    backdrop-filter: blur(10px);
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Contact Button Enhancement */
.contact-btn {
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    transform: rotate(0deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.contact-btn:hover::before {
    transform: rotate(180deg);
    opacity: 1;
}

/* Product Selector Section */
.product-selector {
    position: relative;
    padding: 6rem 0;
    background: #000;
}

/* Floating Message Container */
.floating-message-container {
    position: relative;
    max-width: 1200px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 2rem;
}

/* Base Floating Message Styles */
.floating-message {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: messageAppear 0.5s ease-out forwards;
}

.floating-message-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.floating-message i {
    font-size: 1.5rem;
}

.floating-message p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Variation 1: Glowing Card */
.floating-message.glow {
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.3);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.2);
    animation-delay: 0s;
}

.floating-message.glow i {
    color: #FF3366;
    animation: pulse 2s ease-in-out infinite;
}

/* Variation 2: Minimal Pill */
.floating-message.pill {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 1rem 2rem;
    backdrop-filter: blur(10px);
    animation-delay: 0.2s;
    transform: translateX(-100%);
    animation: pillSlide 0.5s ease-out 0.2s forwards;
}

.floating-message.pill i {
    color: #00FFFF;
}

/* Variation 3: Gradient Card */
.floating-message.gradient {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(255, 51, 102, 0.2));
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation-delay: 0.4s;
    transform: translateX(100%);
    animation: gradientSlide 0.5s ease-out 0.4s forwards;
}

.floating-message.gradient i {
    color: #0066FF;
    animation: spin 4s linear infinite;
}

/* Animations */
@keyframes messageAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pillSlide {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientSlide {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hover Effects */
.floating-message.glow:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 51, 102, 0.3);
}

.floating-message.pill:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.floating-message.gradient:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.3), rgba(255, 51, 102, 0.3));
}

/* Responsive Styles */
@media (max-width: 768px) {
    .floating-message {
        padding: 1rem;
    }

    .floating-message p {
        font-size: 1rem;
    }
}

/* Rest of the product selector styles */
.product-selector-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.label-grey {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.heading-2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

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

.reusable-p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Tabs Navigation */
.tabs-menu {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.product-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 120px;
}

.product-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.product-tab.active {
    background: #FF3366;
    color: white;
    border-color: #FF3366;
}

.tab-image {
    width: 32px;
    height: 32px;
    margin-bottom: 0.5rem;
}

.tab-text {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Tab Content */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tab-feature-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.tab-content-side h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tab-content-side p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.feature-item span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.button-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #FF3366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.button-primary:hover {
    background: #E62E5C;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.2);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .tab-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tab-image-side {
        order: 2;
    }

    .tab-content-side {
        order: 1;
    }
}

@media (max-width: 768px) {
    .product-selector {
        padding: 4rem 0;
    }

    .heading-2 {
        font-size: 2rem;
    }

    .tabs-menu {
        gap: 0.5rem;
    }

    .product-tab {
        padding: 0.75rem;
        min-width: 100px;
    }

    .tab-image {
        width: 24px;
        height: 24px;
    }

    .tab-text {
        font-size: 0.8rem;
    }
}

/* How We Work Section - Style 1 (Modern Gradient) */
.how-we-work.style-1 {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.style-1 .flow-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.style-1 .connector {
    background: #FF3366;
}

/* Style 2 (Cyber Tech) */
.how-we-work.style-2 {
    background: #000 url('/images/circuit-pattern.png') repeat;
    color: #00ff00;
    padding: 6rem 0;
}

.style-2 .flow-step {
    background: rgba(0, 255, 0, 0.05);
    border: 2px solid #00ff00;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.style-2 .step-number {
    background: #00ff00;
    color: #000;
}

.style-2 .connector {
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

/* Style 3 (Elegant Paper) */
.how-we-work.style-3 {
    background: #f5f5f5 url('/images/paper-texture.png') repeat;
    padding: 6rem 0;
}

.style-3 .flow-step {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

.style-3 .connector {
    background: #333;
}

/* Style 4 (Neon Night) */
.how-we-work.style-4 {
    background: #0c0c1d url('/images/stars-bg.png') repeat;
    color: white;
    padding: 6rem 0;
}

.style-4 .flow-step {
    background: rgba(255, 51, 102, 0.1);
    border: 2px solid #FF3366;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.3);
}

.style-4 .step-icon {
    text-shadow: 0 0 10px #FF3366;
}

/* Style 5 (Nature Inspired) */
.how-we-work.style-5 {
    background: url('/images/leaves-pattern.png') center/cover;
    padding: 6rem 0;
}

.style-5 .flow-step {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.style-5 .connector {
    background: #4CAF50;
}

/* Style 6 (Geometric) */
.how-we-work.style-6 {
    background: #2C3E50 url('/images/geometric-pattern.png') repeat;
    color: white;
    padding: 6rem 0;
}

.style-6 .flow-step {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}

/* Style 7 (Minimal Light) */
.how-we-work.style-7 {
    background: white;
    padding: 6rem 0;
}

.style-7 .flow-step {
    border: 2px solid #eee;
    background: white;
}

.style-7 .connector {
    height: 1px;
    background: #ddd;
}

/* Style 8 (Glass Morphism) */
.how-we-work.style-8 {
    background: linear-gradient(45deg, #FF3366, #FF6B98);
    padding: 6rem 0;
    position: relative;
}

.style-8 .flow-step {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.style-8 .connector {
    background: rgba(255, 255, 255, 0.5);
}

/* Common Hover Effects for All Styles */
.flow-step:hover {
    transform: translateY(-5px);
}

.style-2 .flow-step:hover {
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
}

.style-4 .flow-step:hover {
    box-shadow: 0 0 30px rgba(255, 51, 102, 0.5);
}

.style-8 .flow-step:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .how-we-work [class^="style-"] {
        padding: 3rem 0;
    }

    .flow-step {
        margin: 1rem 0;
    }
}

/* Timeline Variations */
.timeline-style-1, .timeline-style-2, .timeline-style-3 {
    display: none;
}

.timeline-style-1 {
    display: block;
}

/* Timeline Style 1: Modern Horizontal */
.timeline-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    padding: 2rem 0;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #E84738 0%, #f06b5d 100%);
    z-index: 0;
}

.timeline-step {
    position: relative;
    text-align: center;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.timeline-step:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #E84738;
    transition: all 0.3s ease;
}

.timeline-step:hover .step-icon {
    transform: scale(1.1);
    color: #f06b5d;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(232, 71, 56, 0.2);
    margin-bottom: 1rem;
}

.step-content h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Timeline Style 2: Vertical Steps */
.vertical-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.vertical-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #E84738 0%, #f06b5d 100%);
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    position: relative;
    z-index: 1;
}

.marker-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #E84738;
    transition: all 0.3s ease;
}

.timeline-item:hover .marker-icon {
    transform: scale(1.1);
    color: #f06b5d;
    background: rgba(255, 255, 255, 0.2);
}

.marker-line {
    position: absolute;
    left: 35px;
    top: 70px;
    bottom: -50px;
    width: 2px;
    background: rgba(232, 71, 56, 0.3);
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

.step-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(232, 71, 56, 0.1);
    border-radius: 20px;
    color: #E84738;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Timeline Style 3: Connected Cards */
.connected-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    padding: 2rem 0;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.card-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #E84738;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.card-icon {
    font-size: 2.5rem;
    color: #E84738;
    margin: 1rem 0 1.5rem;
    transition: all 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1);
    color: #f06b5d;
}

.connector {
    position: absolute;
    top: 50%;
    right: -1.5rem;
    width: 1.5rem;
    height: 2px;
    background: #E84738;
    z-index: 1;
}

.connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #E84738;
    border-radius: 50%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .timeline-track,
    .connected-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .timeline-track::before {
        display: none;
    }

    .connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .timeline-track,
    .connected-cards {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-marker {
        position: absolute;
        left: 0;
    }

    .marker-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .vertical-timeline::before {
        left: 25px;
    }

    .marker-line {
        left: 25px;
    }

    .timeline-content {
        padding: 1.5rem;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.5;
}

.pricing-calculator {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    position: relative;
}

/* Industry Selector */
.industry-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 2rem;
}

.industry-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.industry-btn i {
    font-size: 1.5rem;
    color: #E84738;
    transition: all 0.3s ease;
}

.industry-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.industry-btn.active {
    background: #E84738;
    border-color: #E84738;
}

.industry-btn.active i {
    color: white;
}

/* Pricing Packages */
.industry-packages {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    animation: fadeIn 0.3s ease-out;
}

.industry-packages.active {
    display: grid;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.package-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.package-card.featured {
    background: rgba(232, 71, 56, 0.1);
    border-color: #E84738;
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: #E84738;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.package-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-header h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 700;
}

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin: 2rem 0;
}

.currency {
    font-size: 3.5rem;
    font-weight: 500;
    color: white;
    margin-top: 1.5rem;
}

.amount {
    font-size: 6.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    background: linear-gradient(135deg, #E84738, #f06b5d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.period {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2rem;
    margin-left: 0.5rem;
}

.package-card.featured .amount {
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .package-header h3 {
        font-size: 1.8rem;
    }

    .currency {
        font-size: 2.5rem;
    }

    .amount {
        font-size: 4.5rem;
    }

    .period {
        font-size: 1.2rem;
        margin-top: 1rem;
    }
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.package-features .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.package-features .feature i {
    color: #E84738;
    font-size: 1.2rem;
}

.package-features .feature span {
    color: rgba(255, 255, 255, 0.9);
}

.package-btn {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.package-btn.featured {
    background: #E84738;
    border-color: #E84738;
}

.package-btn.featured:hover {
    background: #d43d2f;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .pricing-calculator {
        grid-template-columns: 1fr;
    }

    .industry-selector {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .industry-btn {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .industry-packages {
        grid-template-columns: 1fr;
    }

    .industry-btn {
        width: 100%;
    }

    .pricing-section {
        padding: 4rem 0;
    }

    .package-header h3 {
        font-size: 1.3rem;
    }

    .amount {
        font-size: 2rem;
    }

    .pricing-calculator {
        padding: 0 1rem;
    }
}

/* Style Switcher */
.style-switcher {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.style-btn {
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.style-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.style-btn.active {
    background: #E84738;
    border-color: #E84738;
}


.pricing-style.active {
    display: block;
    opacity: 1;
}

/* Style 1: Modern Dark (Current Style) */
.pricing-style-1 {
    /* Existing styles remain unchanged */
}

/* Style 2: Minimal Light */
.pricing-style-2 {
    background: white;
    padding: 3rem 0;
    border-radius: 20px;
    margin-top: 3rem;
}

.industry-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.industry-tabs .tab {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: #f5f5f5;
    border-radius: 12px;
    color: #333;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.industry-tabs .tab i {
    font-size: 1.2rem;
    color: #E84738;
}

.industry-tabs .tab:hover {
    background: #eee;
    transform: translateY(-2px);
}

.industry-tabs .tab.active {
    background: #E84738;
    color: white;
}

.industry-tabs .tab.active i {
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.price-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    border-color: #E84738;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-card.popular {
    border: 2px solid #E84738;
    box-shadow: 0 10px 30px rgba(232, 71, 56, 0.1);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: #E84738;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #E84738;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #444;
}

.features li i {
    color: #E84738;
    font-size: 1.2rem;
}

.select-plan {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E84738;
    border-radius: 8px;
    background: transparent;
    color: #E84738;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-plan:hover {
    background: #E84738;
    color: white;
}

.price-card.popular .select-plan {
    background: #E84738;
    color: white;
}

.price-card.popular .select-plan:hover {
    background: #d43d2f;
}

/* Style 3: Gradient Cards */
.pricing-style-3 {
    margin-top: 3rem;
}

.industry-carousel {
    position: relative;
    padding: 0 4rem;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.carousel-arrow.prev {
    left: 0;
}

.carousel-arrow.next {
    right: 0;
}

.carousel-track {
    overflow: hidden;
}

.industry-slide {
    display: none;
}

.industry-slide.active {
    display: block;
}

.gradient-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gradient-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    padding: 0.5rem;
    position: relative;
    overflow: hidden;
}

.gradient-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 71, 56, 0.2), transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gradient-card:hover::before {
    opacity: 1;
}

.gradient-card.featured {
    background: linear-gradient(135deg, rgba(232, 71, 56, 0.2), rgba(232, 71, 56, 0.1));
}

.card-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.plan-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #E84738;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.plan-price {
    margin-bottom: 2rem;
    color: white;
}

.plan-price .currency {
    font-size: 2rem;
    vertical-align: top;
    margin-right: 0.2rem;
}

.plan-price .amount {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.plan-price .period {
    font-size: 1rem;
    opacity: 0.7;
}

.plan-features {
    margin-bottom: 2rem;
}

.plan-features .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.plan-features .feature i {
    color: #E84738;
    font-size: 1.2rem;
}

.gradient-btn {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.gradient-btn.featured {
    background: #E84738;
    border-color: #E84738;
}

.gradient-btn.featured:hover {
    background: #d43d2f;
}

/* Responsive Styles for All Variations */
@media (max-width: 1024px) {
    .pricing-grid,
    .gradient-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .industry-tabs {
        flex-wrap: wrap;
    }

    .industry-tabs .tab {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .style-switcher {
        flex-direction: column;
        align-items: center;
    }

    .style-btn {
        width: 100%;
        max-width: 300px;
    }

    .industry-carousel {
        padding: 0 2rem;
    }

    .carousel-arrow {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }

    .price-card,
    .card-content {
        padding: 1.5rem;
    }

    .plan-price .amount {
        font-size: 3rem;
    }
}

/* Pricing Navigation */
.pricing-nav {
    background: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pricing-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.pricing-menu a:hover {
    color: #E84738;
}

.pricing-menu a.active {
    background: #E84738;
    color: white;
}

/* Enterprise Solutions (Style 1) */
#pricing-enterprise {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

#pricing-enterprise .section-header h2 {
    background: linear-gradient(135deg, #E84738, #f06b5d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Business Solutions (Style 2) */
#pricing-business {
    background: white;
}

#pricing-business .section-header h2 {
    color: #333;
}

#pricing-business .section-intro {
    color: #666;
}

#pricing-business .industry-tabs .tab {
    border: 1px solid #eee;
}

/* Startup Solutions (Style 3) */
#pricing-startup {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
}

#pricing-startup .section-header h2 {
    background: linear-gradient(135deg, #f06b5d, #E84738);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#pricing-startup .gradient-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-section.active {
    display: block;
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .pricing-menu {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
    }

    .pricing-menu a {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }

    .pricing-nav {
        position: relative;
    }
}

/* Success Simulator Section */
.success-simulator {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.success-simulator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    opacity: 0.5;
}

.simulator-container {
    max-width: 1200px;
    margin: 3rem auto;
    position: relative;
}

/* Floating Industry Cards */
.industry-selector-floating {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.floating-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    width: 220px;
}

.floating-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, #E84738, transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.floating-card:hover {
    transform: translateY(-10px);
}

.floating-card:hover::before {
    opacity: 1;
}

.floating-card.active {
    background: rgba(232, 71, 56, 0.1);
    border-color: #E84738;
    transform: translateY(-10px);
}

.floating-card.active::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    color: #E84738;
    margin-bottom: 1rem;
}

.floating-card span {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.stat-preview {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 12px;
}

.stat {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #E84738;
    margin-bottom: 0.3rem;
}

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

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.metric-content {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: rgba(232, 71, 56, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #E84738;
}

.metric-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.arrow {
    color: #E84738;
    font-size: 1.2rem;
}

.projected {
    color: #E84738;
}

.growth-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #E84738, #f06b5d);
    border-radius: 2px;
    transition: width 1s ease;
}

/* Simulation Graph */
.simulation-graph {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.graph-container {
    height: 300px;
    margin-bottom: 1.5rem;
}

.graph-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.dot.current {
    background: rgba(255, 255, 255, 0.5);
}

.dot.projected {
    background: #E84738;
}

/* Success Stories Ticker */
.success-stories-ticker {
    overflow: hidden;
    margin: 3rem 0;
    height: 60px;
}

.ticker-track {
    display: flex;
    gap: 2rem;
    animation: ticker 20s linear infinite;
}

.story-chip {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    white-space: nowrap;
}

.story-chip i {
    color: #E84738;
    font-size: 1.2rem;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* CTA Section */
.simulator-cta {
    text-align: center;
    margin-top: 4rem;
}

.simulate-btn {
    background: #E84738;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 auto;
}

.simulate-btn:hover {
    transform: translateY(-2px);
    background: #d43d2f;
    box-shadow: 0 10px 20px rgba(232, 71, 56, 0.2);
}

.simulate-btn i {
    transition: transform 0.3s ease;
}

.simulate-btn:hover i {
    transform: translateX(5px);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .industry-selector-floating {
        flex-wrap: wrap;
    }

    .floating-card {
        width: calc(50% - 1rem);
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .floating-card {
        width: 100%;
    }

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

    .story-chip {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

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