/* NEXTVC - Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
    overscroll-behavior: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Inter", "Poppins", sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #f9f9f9;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overscroll-behavior: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo h1 {
    color: #007bff;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #007bff;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background-image: url('../images/header\ image/hero\ background-service\ page.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: #333;
    padding: 20px 20px 40px !important;
    margin: 0 !important;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 350px;
    padding-top: 60px !important;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 0;
}

.hero .container {
    max-width: 900px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: flex-start;
    justify-items: center;
    width: 100%;
    text-align: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: center;
    color: #000000;
    text-shadow: none;
}

.hero h1 .highlight {
    color: #FDD966;
}

.hero h1 .typewriter-text {
    color: #1f2937 !important;
}

.hero h1 br {
    display: block;
    content: "";
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #333333;
    text-align: center;
    text-shadow: none;
    max-width: 600px;
}

.hero-eyebrow {
    background-color: #e8e8e8;
    padding: 10px 18px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 0.8rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000000;
    border: 1px solid #d0d0d0;
    width: fit-content;
    text-shadow: none;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 3rem;
    align-items: center;
    justify-content: center;
}

.hero-buttons .btn {
    padding: 14px 28px !important;
    font-size: 15px;
    font-weight: 600;
}

.btn-secondary {
    background-color: transparent !important;
    color: #FDD966 !important;
    border: 2px solid #FDD966 !important;
    border-radius: 50px !important;
    padding: 12px 28px !important;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #FDD966 !important;
    color: #ffffff !important;
}

/* Hero Badges */
.hero-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background-color: #FDD966;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1a1a1a;
    font-size: 18px;
    flex-shrink: 0;
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

.hero-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    width: 100%;
}

/* Hide benefits section during typing animation */
.benefits {
    opacity: 0;
    transition: opacity 0.5s ease-in;
}

.benefits.show {
    opacity: 1;
}



/* Sections */
section {
    padding: 60px 20px;
}

section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Challenges to Advantages Section */
.challenges-section {
    background: white;
    padding: 80px 20px;
}

.challenges-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.challenges-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.challenges-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.challenge-card {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FDD966 0%, #f5d54a 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.challenge-card:hover {
    transform: translateY(-8px);
    border-color: #FDD966;
    box-shadow: 0 12px 32px rgba(253, 217, 102, 0.15);
    background: white;
}

.challenge-card:hover::before {
    transform: scaleX(1);
}

.card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FDD966 0%, #f5d54a 100%);
    color: #1a1a1a;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.challenge-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.challenge-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Core Solutions Section */
.core-solutions {
    background: white;
    padding: 80px 20px;
}

.solutions-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solutions-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.solutions-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: #f9f9f9;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 217, 102, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #FDD966;
    background: #ffffff;
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card .card-icon {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.solution-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.solution-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.solution-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Technologies Section */
.technologies-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 20px;
    overflow: hidden;
}

.tech-header {
    text-align: center;
    margin-bottom: 60px;
}

.tech-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.tech-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 3rem 0;
    border: 1px solid rgba(253, 217, 102, 0.2);
}

.marquee-track {
    display: flex;
    gap: 3rem;
    animation: scroll-left 40s linear infinite;
    width: fit-content;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-track:hover {
    animation-play-state: paused;
}

.tech-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.logo-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    padding: 1rem 1.5rem;
    background: rgba(253, 217, 102, 0.1);
    border: 1px solid rgba(253, 217, 102, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tech-logo:hover .logo-label {
    background: rgba(253, 217, 102, 0.25);
    border-color: #FDD966;
    color: #FDD966;
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(253, 217, 102, 0.2);
}

/* Business Impact Section */
.business-impact {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    padding: 100px 20px;
}

.impact-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.impact-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.impact-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FDD966 0%, #FDD966 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: #FDD966;
    box-shadow: 0 12px 32px rgba(253, 217, 102, 0.15);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FDD966;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

/* How We Transform Businesses Section */
.transform-section {
    background: white;
    padding: 100px 20px;
}

.transform-header {
    text-align: center;
    margin-bottom: 80px;
}

.transform-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-step {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 250px;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-step:hover {
    transform: translateY(-8px);
    border-color: #FDD966;
    box-shadow: 0 12px 32px rgba(253, 217, 102, 0.15);
    background: #ffffff;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FDD966 0%, #f5d54a 100%);
    color: #1a1a1a;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.timeline-step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.timeline-step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.timeline-arrow {
    font-size: 2rem;
    color: #FDD966;
    font-weight: bold;
    margin: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

/* Real-World Business Transformations Section */
.transformations-section {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    padding: 100px 20px;
}

.transformations-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.transformations-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.transformations-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.transformations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.transformation-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.transformation-card:hover {
    transform: translateY(-8px);
    border-color: #FDD966;
    box-shadow: 0 12px 40px rgba(253, 217, 102, 0.15);
}

.card-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid #FDD966;
}

.card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.card-content {
    padding: 2.5rem;
}

.card-section {
    margin-bottom: 2rem;
}

.card-section:last-child {
    margin-bottom: 0;
}

.card-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.card-section p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.card-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-section li {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.card-section.impact {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 0;
}

.card-section.impact h4 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.card-section.impact li {
    color: #1a1a1a;
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #007bff;
}

/* Testimonials */
.testimonials {
    background-color: #f0f0f0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.rating {
    margin-bottom: 1rem;
}

.testimonial-card p {
    margin-bottom: 1rem;
}

.author {
    font-weight: 600;
    color: #007bff;
}

.title {
    font-size: 0.9rem;
    color: #666;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.pricing-card.featured {
    border: 3px solid #007bff;
    transform: scale(1.05);
}

.price {
    font-size: 2.5rem;
    color: #007bff;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

/* Case Studies */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-study-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.case-study-card h3 {
    color: #007bff;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.company {
    color: #666;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 3rem 20px 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #007bff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
}

/* AI Chatbot Page Styles */

/* Hero Section - AI Chatbot */
.chatbot-hero {
    background: white;
    padding: 60px 20px;
}

.chatbot-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.chatbot-hero .hero-content {
    text-align: left;
}

.chatbot-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: left;
}

.chatbot-hero .hero-subtitle {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: left;
}

.chatbot-hero .hero-ctas {
    display: flex;
    gap: 1rem;
}

.chatbot-hero .btn {
    padding: 12px 24px;
    height: auto;
}

.chatbot-hero .btn-secondary {
    background: transparent;
    color: #111;
    border: 2px solid #111;
}

.chatbot-hero .btn-secondary:after {
    background: transparent;
}

.chatbot-hero .hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-hero .hero-visual {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    width: 100%;
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
}

/* Intro Section */
.intro-section {
    background: white;
    padding: 40px 20px;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    line-height: 1.8;
}

/* Trusted Section - Benefits */
.trusted-section {
    background: #f9f9f9;
    padding: 60px 20px;
}

.trusted-section h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.trusted-section .section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-section {
    margin-top: 2rem;
}

.benefits-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
}

.benefit-item .checkmark {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item span:last-child {
    color: #1a1a1a;
    font-size: 1rem;
}

/* Feature Banner Section */
.feature-banner {
    background: white;
    padding: 60px 20px;
}

.feature-banner .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-banner .banner-content {
    text-align: left;
}

.feature-banner h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: left;
}

.feature-banner p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.perfect-for h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.perfect-for-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.perfect-for-item {
    background: #f0f0f0;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #1a1a1a;
}

.feature-banner .banner-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-banner .banner-visual {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    width: 100%;
    height: 350px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
}

/* Why Choose Section */
.why-choose-section {
    background: #f9f9f9;
    padding: 60px 20px;
}

.why-choose-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.why-choose-section .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Solutions Section */
.solutions-section {
    background: white;
    padding: 60px 20px;
}

.solutions-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1.5px solid #e0dcd4;
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: #1a1a1a;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.solution-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.solution-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Industries Section */
.industries-section {
    background: #f9f9f9;
    padding: 60px 20px;
}

.industries-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1.5px solid #e0dcd4;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: #1a1a1a;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.industry-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.industry-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    background: white;
    padding: 60px 20px;
}

.process-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.process-step p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e0dcd4;
    transform: translateX(-50%);
}

/* Key Features Section */
.key-features-section {
    background: #f9f9f9;
    padding: 60px 20px;
}

.key-features-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-column .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 6px;
    font-size: 1rem;
    color: #1a1a1a;
}

.features-column .feature-item::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: bold;
}

/* Results Section */
.results-section {
    background: white;
    padding: 60px 20px;
}

.results-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.result-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.result-metric {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.result-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: #f9f9f9;
    padding: 60px 20px;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1.5px solid #e0dcd4;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item h3 {
    padding: 1.5rem;
    margin: 0;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: #1a1a1a;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-item h3:hover {
    background: #f9f9f9;
}

.faq-item h3::after {
    content: '+';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #1a1a1a;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    transition: all 0.3s ease;
}

.faq-item.active h3::after {
    transform: rotate(45deg);
}

.faq-item p {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    margin: 0;
}

.faq-item.active p {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.final-cta-section h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 1rem;
}

.final-cta-section p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.final-cta-section .btn {
    background: white;
    color: #1a1a1a;
}

.final-cta-section .btn:hover {
    background: #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 40px 20px 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-badges {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .badge {
        gap: 15px;
    }

    .badge-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .badge-text {
        font-size: 12px;
    }

    .hero-image {
        max-width: 100%;
    }

    /* Challenges Section Responsive */
    .challenges-section {
        padding: 60px 20px;
    }

    .challenges-header h2 {
        font-size: 2rem;
    }

    .challenges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .challenge-card {
        padding: 2rem 1.5rem;
    }

    .challenge-card h3 {
        font-size: 1.1rem;
    }

    /* Core Solutions Responsive */
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .solutions-header h2 {
        font-size: 2rem;
    }

    .solutions-subtitle {
        font-size: 1rem;
    }

    .solution-card {
        padding: 2rem 1.5rem;
    }

    .solution-card h3 {
        font-size: 1.1rem;
    }

    /* Technologies Section Responsive */
    .technologies-section {
        padding: 60px 20px;
    }

    .tech-header h2 {
        font-size: 1.8rem;
    }

    .tech-marquee {
        padding: 2rem 0;
    }

    .marquee-track {
        gap: 1.5rem;
    }

    .tech-logo {
        min-width: 120px;
    }

    .logo-label {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    /* Business Impact Responsive */
    .impact-header h2 {
        font-size: 2rem;
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* How We Transform Section Responsive */
    .transform-header h2 {
        font-size: 2rem;
    }

    .timeline {
        gap: 1rem;
    }

    .timeline-step {
        min-width: 180px;
        max-width: 200px;
        padding: 1.5rem 1rem;
    }

    .timeline-step h3 {
        font-size: 1rem;
    }

    .timeline-step p {
        font-size: 0.85rem;
    }

    .timeline-arrow {
        font-size: 1.5rem;
        margin: 0.5rem 0;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
    }

    /* Real-World Transformations Responsive */
    .transformations-section {
        padding: 60px 20px;
    }

    .transformations-header h2 {
        font-size: 2rem;
    }

    .transformations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .transformation-card {
        margin: 0;
    }

    .card-header h3 {
        font-size: 1.2rem;
    }

    .card-content {
        padding: 2rem;
    }

    .card-section h4 {
        font-size: 1rem;
    }
    }
    
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }

    /* Chatbot responsive */
    .chatbot-hero .container,
    .feature-banner .container {
        grid-template-columns: 1fr;
    }

    .chatbot-hero h1 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item {
        padding: 1rem;
    }

    .why-choose-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solutions-grid,
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .perfect-for-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-section .features-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Business Impact Mobile */
    .business-impact {
        padding: 60px 20px;
    }

    .impact-header h2 {
        font-size: 1.8rem;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Challenges Section Mobile */
    .challenges-section {
        padding: 40px 20px;
    }

    .challenges-header h2 {
        font-size: 1.6rem;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .challenge-card {
        padding: 1.5rem 1rem;
    }

    .challenge-card h3 {
        font-size: 1rem;
    }

    .card-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Technologies Section Mobile */
    .technologies-section {
        padding: 40px 20px;
    }

    .tech-header h2 {
        font-size: 1.5rem;
    }

    .tech-marquee {
        padding: 1.5rem 0;
    }

    .marquee-track {
        gap: 1rem;
        animation: scroll-left 30s linear infinite;
    }

    .tech-logo {
        min-width: 100px;
    }

    .logo-label {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    /* How We Transform Section Mobile */
    .transform-section {
        padding: 60px 20px;
    }

    .transform-header h2 {
        font-size: 1.8rem;
    }

    .timeline {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-step {
        min-width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .timeline-arrow {
        writing-mode: initial;
        transform: none;
        margin: 0;
    }

    /* Real-World Transformations Mobile */
    .transformations-section {
        padding: 40px 20px;
    }

    .transformations-header h2 {
        font-size: 1.6rem;
    }

    .transformations-subtitle {
        font-size: 1rem;
    }

    .transformations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-header {
        padding: 1.5rem;
    }

    .card-header h3 {
        font-size: 1.1rem;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-section {
        margin-bottom: 1.5rem;
    }

    .card-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .card-section p,
    .card-section li {
        font-size: 0.85rem;
    }

    .card-section.impact {
        padding: 1rem;
    }

    .chatbot-hero h1 {
        font-size: 1.5rem;
    }

    .chatbot-hero .hero-ctas {
        flex-direction: column;
    }

    .chatbot-hero .btn {
        width: 100%;
    }
}


/* AI Voice Agents Page Styles */

/* Voice Agents Hero Section */
.voice-agents-hero {
    background: white;
    padding: 60px 20px;
}

.voice-agents-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.voice-agents-hero .hero-content {
    text-align: left;
}

.voice-agents-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.voice-agents-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.voice-agents-hero .hero-description {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.voice-agents-hero .hero-ctas {
    display: flex;
    gap: 1rem;
}

.voice-agents-hero .btn {
    padding: 12px 24px;
    height: auto;
}

.voice-agents-hero .btn-secondary {
    background: transparent;
    color: #111;
    border: 2px solid #111;
}

.voice-agents-hero .btn-secondary:after {
    background: transparent;
}

.voice-agents-hero .hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.voice-agents-hero .hero-visual {
    background: linear-gradient(135deg, #fff0f0 0%, #ffe8e8 100%);
    width: 100%;
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
}

/* Benefits Highlight Section */
.benefits-highlight {
    background: #f9f9f9;
    padding: 60px 20px;
}

.benefits-highlight h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-list .benefit-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.benefits-list .checkmark {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.benefits-list .benefit-item span:last-child {
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 500;
}

/* Perfect For Grid - Voice Agents */
.perfect-for-grid-voice {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Features Grid - Voice Agents */
.features-grid-voice {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Core Features Section */
.core-features-section {
    background: white;
    padding: 60px 20px;
}

.core-features-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.features-list-voice {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.features-list-voice .features-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-list-voice .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 6px;
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.features-list-voice .feature-item::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: bold;
}

/* Outcomes Section */
.outcomes-section {
    background: #f9f9f9;
    padding: 60px 20px;
}

.outcomes-section h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.outcome-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e0dcd4;
}

.outcome-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.outcome-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.outcome-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Why NEXTVC Section */
.why-nextvc-section {
    background: white;
    padding: 60px 20px;
}

.why-nextvc-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.why-nextvc-intro {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.nextvc-benefits {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.nextvc-benefit {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #1a1a1a;
    border-left: 4px solid #007bff;
}

.why-nextvc-closing {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-top: 2rem;
}

/* Final CTA Buttons */
.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1rem;
}

/* Responsive - Voice Agents */
@media (max-width: 768px) {
    .voice-agents-hero .container,
    .feature-banner .container {
        grid-template-columns: 1fr;
    }

    .voice-agents-hero h1 {
        font-size: 2rem;
    }

    .benefits-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .perfect-for-grid-voice {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid-voice {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcomes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nextvc-benefits {
        grid-template-columns: 1fr;
    }

    .final-cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .benefits-list {
        grid-template-columns: 1fr;
    }

    .perfect-for-grid-voice {
        grid-template-columns: 1fr;
    }

    .features-grid-voice {
        grid-template-columns: 1fr;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .voice-agents-hero h1 {
        font-size: 1.5rem;
    }

    .voice-agents-hero .hero-ctas {
        flex-direction: column;
    }

    .voice-agents-hero .btn {
        width: 100%;
    }

    .features-list-voice {
        grid-template-columns: 1fr;
    }
}


/* WhatsApp Automation Page Styles */

/* WhatsApp Hero Section */
.whatsapp-hero {
    background: white;
    padding: 60px 20px;
}

.whatsapp-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.whatsapp-hero .hero-content {
    text-align: left;
}

.whatsapp-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.whatsapp-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #25d366;
    font-weight: 600;
    margin-bottom: 1rem;
}

.whatsapp-hero .hero-description {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.whatsapp-hero .hero-ctas {
    display: flex;
    gap: 1rem;
}

.whatsapp-hero .btn {
    padding: 12px 24px;
    height: auto;
}

.whatsapp-hero .btn-secondary {
    background: transparent;
    color: #111;
    border: 2px solid #111;
}

.whatsapp-hero .btn-secondary:after {
    background: transparent;
}

.whatsapp-hero .hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-hero .hero-visual {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    width: 100%;
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
}

/* Perfect For Grid - WhatsApp */
.perfect-for-grid-whatsapp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Features Grid - WhatsApp */
.features-grid-whatsapp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Core Features Section - WhatsApp */
.features-list-whatsapp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.features-list-whatsapp .features-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-list-whatsapp .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 6px;
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.features-list-whatsapp .feature-item::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: bold;
}

/* Outcomes Grid - WhatsApp */
.outcomes-grid-whatsapp {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

/* WhatsApp Specific Outcome Item */
.outcomes-grid-whatsapp .outcome-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e0dcd4;
}

.outcomes-grid-whatsapp .outcome-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.outcomes-grid-whatsapp .outcome-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.outcomes-grid-whatsapp .outcome-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Why NEXTVC - WhatsApp */
.nextvc-benefits-whatsapp {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.nextvc-benefits-whatsapp .nextvc-benefit {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #1a1a1a;
    border-left: 4px solid #25d366;
}

/* Responsive - WhatsApp */
@media (max-width: 768px) {
    .whatsapp-hero .container,
    .feature-banner .container {
        grid-template-columns: 1fr;
    }

    .whatsapp-hero h1 {
        font-size: 2rem;
    }

    .perfect-for-grid-whatsapp {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid-whatsapp {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcomes-grid-whatsapp {
        grid-template-columns: repeat(3, 1fr);
    }

    .nextvc-benefits-whatsapp {
        grid-template-columns: 1fr;
    }

    .final-cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .perfect-for-grid-whatsapp {
        grid-template-columns: 1fr;
    }

    .features-grid-whatsapp {
        grid-template-columns: 1fr;
    }

    .outcomes-grid-whatsapp {
        grid-template-columns: 1fr;
    }

    .whatsapp-hero h1 {
        font-size: 1.5rem;
    }

    .whatsapp-hero .hero-ctas {
        flex-direction: column;
    }

    .whatsapp-hero .btn {
        width: 100%;
    }

    .features-list-whatsapp {
        grid-template-columns: 1fr;
    }
}


/* CRM Automation Page Styles */

/* CRM Hero Section */
.crm-hero {
    background: white;
    padding: 60px 20px;
}

.crm-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.crm-hero .hero-content {
    text-align: left;
}

.crm-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.crm-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 1rem;
}

.crm-hero .hero-description {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.crm-hero .hero-ctas {
    display: flex;
    gap: 1rem;
}

.crm-hero .btn {
    padding: 12px 24px;
    height: auto;
}

.crm-hero .btn-secondary {
    background: transparent;
    color: #111;
    border: 2px solid #111;
}

.crm-hero .btn-secondary:after {
    background: transparent;
}

.crm-hero .hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.crm-hero .hero-visual {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    width: 100%;
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
}

/* Perfect For Grid - CRM */
.perfect-for-grid-crm {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Features Grid - CRM */
.features-grid-crm {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Core Features Section - CRM */
.features-list-crm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.features-list-crm .features-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-list-crm .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 6px;
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.features-list-crm .feature-item::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: bold;
}

/* Outcomes Grid - CRM */
.outcomes-grid-crm {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

/* CRM Specific Outcome Item */
.outcomes-grid-crm .outcome-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e0dcd4;
}

.outcomes-grid-crm .outcome-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.outcomes-grid-crm .outcome-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.outcomes-grid-crm .outcome-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Why NEXTVC - CRM */
.nextvc-benefits-crm {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.nextvc-benefits-crm .nextvc-benefit {
    background: #f0f4ff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #1a1a1a;
    border-left: 4px solid #0066cc;
}

/* Responsive - CRM */
@media (max-width: 768px) {
    .crm-hero .container,
    .feature-banner .container {
        grid-template-columns: 1fr;
    }

    .crm-hero h1 {
        font-size: 2rem;
    }

    .perfect-for-grid-crm {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid-crm {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcomes-grid-crm {
        grid-template-columns: repeat(3, 1fr);
    }

    .nextvc-benefits-crm {
        grid-template-columns: 1fr;
    }

    .final-cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .perfect-for-grid-crm {
        grid-template-columns: 1fr;
    }

    .features-grid-crm {
        grid-template-columns: 1fr;
    }

    .outcomes-grid-crm {
        grid-template-columns: 1fr;
    }

    .crm-hero h1 {
        font-size: 1.5rem;
    }

    .crm-hero .hero-ctas {
        flex-direction: column;
    }

    .crm-hero .btn {
        width: 100%;
    }

    .features-list-crm {
        grid-template-columns: 1fr;
    }
}


/* Customer Support AI Page Styles */

/* Support AI Hero Section */
.support-ai-hero {
    background: white;
    padding: 60px 20px;
}

.support-ai-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.support-ai-hero .hero-content {
    text-align: left;
}

.support-ai-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.support-ai-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #dc3545;
    font-weight: 600;
    margin-bottom: 1rem;
}

.support-ai-hero .hero-description {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.support-ai-hero .hero-ctas {
    display: flex;
    gap: 1rem;
}

.support-ai-hero .btn {
    padding: 12px 24px;
    height: auto;
}

.support-ai-hero .btn-secondary {
    background: transparent;
    color: #111;
    border: 2px solid #111;
}

.support-ai-hero .btn-secondary:after {
    background: transparent;
}

.support-ai-hero .hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-ai-hero .hero-visual {
    background: linear-gradient(135deg, #ffe8e8 0%, #ffd4d4 100%);
    width: 100%;
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
}

/* Perfect For Grid - Support AI */
.perfect-for-grid-support {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Features Grid - Support AI */
.features-grid-support {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Core Features Section - Support AI */
.features-list-support {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.features-list-support .features-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-list-support .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 6px;
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.features-list-support .feature-item::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: bold;
}

/* Outcomes Grid - Support AI */
.outcomes-grid-support {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

/* Support AI Specific Outcome Item */
.outcomes-grid-support .outcome-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e0dcd4;
}

.outcomes-grid-support .outcome-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.outcomes-grid-support .outcome-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.outcomes-grid-support .outcome-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Why NEXTVC - Support AI */
.nextvc-benefits-support {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.nextvc-benefits-support .nextvc-benefit {
    background: #fff5f5;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #1a1a1a;
    border-left: 4px solid #dc3545;
}

/* Responsive - Support AI */
@media (max-width: 768px) {
    .support-ai-hero .container,
    .feature-banner .container {
        grid-template-columns: 1fr;
    }

    .support-ai-hero h1 {
        font-size: 2rem;
    }

    .perfect-for-grid-support {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid-support {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcomes-grid-support {
        grid-template-columns: repeat(3, 1fr);
    }

    .nextvc-benefits-support {
        grid-template-columns: 1fr;
    }

    .final-cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .perfect-for-grid-support {
        grid-template-columns: 1fr;
    }

    .features-grid-support {
        grid-template-columns: 1fr;
    }

    .outcomes-grid-support {
        grid-template-columns: 1fr;
    }

    .support-ai-hero h1 {
        font-size: 1.5rem;
    }

    .support-ai-hero .hero-ctas {
        flex-direction: column;
    }

    .support-ai-hero .btn {
        width: 100%;
    }

    .features-list-support {
        grid-template-columns: 1fr;
    }
}


/* Workflow Automation Page Styles */

/* Workflow Hero Section */
.workflow-hero {
    background: white;
    padding: 60px 20px;
}

.workflow-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.workflow-hero .hero-content {
    text-align: left;
}

.workflow-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.workflow-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #6f42c1;
    font-weight: 600;
    margin-bottom: 1rem;
}

.workflow-hero .hero-description {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.workflow-hero .hero-ctas {
    display: flex;
    gap: 1rem;
}

.workflow-hero .btn {
    padding: 12px 24px;
    height: auto;
}

.workflow-hero .btn-secondary {
    background: transparent;
    color: #111;
    border: 2px solid #111;
}

.workflow-hero .btn-secondary:after {
    background: transparent;
}

.workflow-hero .hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.workflow-hero .hero-visual {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    width: 100%;
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
}

/* Perfect For Grid - Workflow */
.perfect-for-grid-workflow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Features Grid - Workflow */
.features-grid-workflow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Core Features Section - Workflow */
.features-list-workflow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.features-list-workflow .features-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-list-workflow .feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 6px;
    font-size: 1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.features-list-workflow .feature-item::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #6f42c1;
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    font-weight: bold;
}

/* Outcomes Grid - Workflow */
.outcomes-grid-workflow {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

/* Workflow Specific Outcome Item */
.outcomes-grid-workflow .outcome-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e0dcd4;
}

.outcomes-grid-workflow .outcome-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.outcomes-grid-workflow .outcome-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.outcomes-grid-workflow .outcome-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Why NEXTVC - Workflow */
.nextvc-benefits-workflow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.nextvc-benefits-workflow .nextvc-benefit {
    background: #f5f0ff;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #1a1a1a;
    border-left: 4px solid #6f42c1;
}

/* Responsive - Workflow */
@media (max-width: 768px) {
    .workflow-hero .container,
    .feature-banner .container {
        grid-template-columns: 1fr;
    }

    .workflow-hero h1 {
        font-size: 2rem;
    }

    .perfect-for-grid-workflow {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid-workflow {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcomes-grid-workflow {
        grid-template-columns: repeat(3, 1fr);
    }

    .nextvc-benefits-workflow {
        grid-template-columns: 1fr;
    }

    .final-cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .perfect-for-grid-workflow {
        grid-template-columns: 1fr;
    }

    .features-grid-workflow {
        grid-template-columns: 1fr;
    }

    .outcomes-grid-workflow {
        grid-template-columns: 1fr;
    }

    .workflow-hero h1 {
        font-size: 1.5rem;
    }

    .workflow-hero .hero-ctas {
        flex-direction: column;
    }

    .workflow-hero .btn {
        width: 100%;
    }

    .features-list-workflow {
        grid-template-columns: 1fr;
    }
}
