:root {
    --primary-color: #4f46e5;
    --primary-light: #6366f1;
    --primary-dark: #4338ca;
    --secondary-color: #14b8a6;
    --secondary-light: #5eead4;
    --secondary-dark: #0d9488;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #94a3b8;
    --gray-light: #e2e8f0;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --border-radius: 8px;
    --box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo-icon {
    margin-right: 10px;
    font-size: 1.8rem;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    position: relative;
    padding: 5px 0;
    font-weight: 500;
    transition: var(--transition);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover:after {
    width: 100%;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.25);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(79, 70, 229, 0.3);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: rgba(79, 70, 229, 0.1);
    transform: translateY(-2px);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(79, 70, 229, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(79, 70, 229, 0.2) 100%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(13, 148, 136, 0.2) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-color);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-stats {
    display: flex;
    gap: 30px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-text {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

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

.phone-mockup {
    width: 300px;
    height: 600px;
    background-color: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    border: 10px solid #333;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    position: relative;
    padding: 15px;
    overflow: hidden;
}

.call-animation {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    z-index: 1;
}

.ripple {
    width: 20px;
    height: 20px;
    background-color: var(--primary-light);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ripple::before,
.ripple::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: var(--primary-light);
    animation: ripple 2s linear infinite;
}

.ripple::after {
    animation-delay: 0.5s;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.ripple i {
    color: white;
    font-size: 1.2rem;
    z-index: 1;
}

.chat-bubble {
    position: relative;
    padding: 10px 12px;
    border-radius: 16px;
    margin-bottom: 12px;
    max-width: 75%;
    font-size: 0.85rem;
    line-height: 1.4;
    word-break: break-word;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.chat-bubble.left {
    background-color: var(--gray-light);
    align-self: flex-start;
    margin-right: auto;
}

.chat-bubble.right {
    background-color: var(--primary-light);
    color: white;
    align-self: flex-end;
    margin-left: auto;
}

.chat-bubble.left::after {
    content: '';
    position: absolute;
    left: -6px;
    bottom: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--gray-light);
    border-radius: 50%;
    z-index: -1;
}

.chat-bubble.right::after {
    content: '';
    position: absolute;
    right: -6px;
    bottom: 8px;
    width: 12px;
    height: 12px;
    background-color: var(--primary-light);
    border-radius: 50%;
    z-index: -1;
}

.conversation-container {
    width: 100%;
    height: calc(100% - 50px);
    margin-top: 10px;
    position: relative;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    -ms-overflow-style: none;  /* Hide scrollbar for IE and Edge */
    scrollbar-width: none;  /* Hide scrollbar for Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.conversation-container::-webkit-scrollbar {
    display: none;
}

.conversation-scenario {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 15px;
}

/* Phone Call Interface Styles */
.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f0f0f0;
    border-bottom: 1px solid #ddd;
    font-size: 0.8rem;
    color: #333;
}

.call-duration {
    font-weight: 600;
}

.call-status {
    color: var(--primary-color);
    font-weight: 600;
}

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

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
}

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

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray-color);
}

/* How It Works Section - Horizontal Layout */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #EFF6FF 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(79, 70, 229, 0.1) 100%);
    z-index: 0;
}

.journey-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto 60px;
    overflow: hidden;
}

.journey-path {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 1;
}

/* Journey line and animation */
.journey-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-light) 0%, var(--secondary-light) 100%);
    border-radius: 4px;
    opacity: 0.6;
}

.journey-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.journey-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
    animation: journey-dot-movement-horizontal 10s ease-in-out infinite;
}

@keyframes journey-dot-movement-horizontal {
    0%, 100% { left: 0%; background-color: var(--primary-color); }
    20% { left: 25%; background-color: var(--primary-light); }
    40% { left: 50%; background-color: var(--secondary-color); }
    60% { left: 75%; background-color: var(--secondary-light); }
    80% { left: 100%; background-color: var(--success-color); }
}

/* Steps styling */
.steps {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 40px 0;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-light) transparent;
}

.steps::-webkit-scrollbar {
    height: 6px;
}

.steps::-webkit-scrollbar-thumb {
    background-color: var(--primary-light);
    border-radius: 6px;
}

.steps::-webkit-scrollbar-track {
    background: transparent;
}

.step {
    display: flex;
    flex-direction: column;
    min-width: 280px;
    max-width: 280px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s ease;
    flex: 1;
}

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

.step-number {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 10px rgba(79, 70, 229, 0.3);
}

.step-icon {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.7rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.step-image {
    width: 100%;
    height: 150px;
    position: relative;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.step-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(270deg, rgba(79, 70, 229, 0.3) 0%, rgba(20, 184, 166, 0.3) 100%);
}

.step-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.step-content p {
    color: var(--gray-color);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Step features */
.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.step-feature {
    display: flex;
    align-items: center;
    background-color: rgba(79, 70, 229, 0.05);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.8rem;
}

.step-feature i {
    color: var(--primary-color);
    margin-right: 6px;
    font-size: 0.7rem;
}

/* CTA box */
.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 30px;
    border-radius: 12px;
    color: white;
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.25);
}

.cta-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-content p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.cta-box .primary-btn {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    font-weight: 600;
}

.cta-box .primary-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive styles for how it works section */
@media (max-width: 992px) {
    .steps {
        padding-bottom: 15px; /* Space for scrollbar */
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .steps {
        padding-top: 30px;
    }
    
    .step {
        min-width: 240px;
    }
    
    .journey-path {
        top: 60px;
    }
}

@media (max-width: 576px) {
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .step {
        min-width: 220px;
    }
}

/* Business Types Section */
.business-types {
    padding: 100px 0;
    background-color: white;
}

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

.business-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--gray-light);
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.business-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.business-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.business-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.business-card p {
    color: var(--gray-color);
}

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

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}

.pricing-toggle span {
    font-weight: 500;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin: 0 15px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-light);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.save-badge {
    background-color: var(--success-color);
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-left: 5px;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    width: 300px;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

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

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.pricing-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 15px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 5px;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.amount.annual {
    display: none;
}

body.annual .amount.monthly {
    display: none;
}

body.annual .amount.annual {
    display: inline;
}

.period {
    font-size: 1rem;
    color: var(--gray-color);
    margin-left: 5px;
}

.pricing-header p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.pricing-features ul li i {
    color: var(--success-color);
    margin-right: 10px;
}

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

/* Enterprise price style */
.enterprise-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
}

@media (max-width: 576px) {
    .enterprise-price {
        font-size: 1.5rem;
    }
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: white;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 900px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 100%;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    background-color: white;
    margin: 10px;
}

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

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-color);
    font-style: italic;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 10px;
}

.testimonial-dots {
    display: flex;
    margin: 0 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray-light);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #f8fafc;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.contact-info {
    flex: 1;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-feature i {
    margin-right: 10px;
    color: var(--secondary-light);
}

.contact-form {
    flex: 1;
    padding: 50px;
    min-width: 300px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

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

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo p {
    color: var(--gray-color);
    margin-top: 5px;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--gray-color);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.legal-links a {
    color: var(--gray-color);
    margin-left: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: white;
}

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

[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(30px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
    opacity: 1;
}

[data-aos="flip-left"] {
    transform: perspective(2500px) rotateY(30deg);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(2500px) rotateY(0);
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .business-grid,
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 350px;
        margin-bottom: 30px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    header nav,
    header .cta-button {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .step:not(:last-child)::after {
        left: 25px;
        top: 50px;
        height: calc(100% - 10px);
    }
    
    .footer-content,
    .footer-links {
        flex-direction: column;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        margin-top: 15px;
    }
    
    .legal-links a {
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        margin-bottom: 20px;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px;
    }
}

/* Client Portal Section */
.client-portal {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    position: relative;
    overflow: hidden;
}

.client-portal::before {
    content: '';
    position: absolute;
    bottom: -300px;
    right: -300px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(79, 70, 229, 0.1) 100%);
    z-index: 0;
}

.portal-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.portal-text {
    flex: 1;
    max-width: 550px;
}

.portal-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.portal-text > p {
    margin-bottom: 30px;
    color: var(--gray-color);
    font-size: 1.05rem;
    line-height: 1.6;
}

.portal-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.portal-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.portal-feature .feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: rgba(79, 70, 229, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portal-feature .feature-icon i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.portal-feature h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.portal-feature p {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.5;
}

.portal-dashboard {
    flex: 1;
    position: relative;
    perspective: 1500px;
}

.dashboard-container {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transform: rotateY(-10deg) rotateX(3deg);
    transition: transform 0.5s ease;
    max-width: 650px;
}

.dashboard-container:hover {
    transform: rotateY(-5deg) rotateX(1deg) scale(1.02);
}

.dashboard-reflection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0) 45%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 55%
    );
    border-radius: 12px;
    pointer-events: none;
    z-index: 10;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--primary-color);
    color: white;
}

.dashboard-logo {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.dashboard-user i {
    font-size: 1.2rem;
}

.dashboard-tabs {
    display: flex;
    background-color: #f0f4f8;
    border-bottom: 1px solid #ddd;
    overflow-x: auto;
    scrollbar-width: none;
}

.dashboard-tabs::-webkit-scrollbar {
    display: none;
}

.dashboard-tabs .tab {
    padding: 12px 20px;
    font-weight: 500;
    color: var(--gray-color);
    cursor: pointer;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.dashboard-tabs .tab.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.dashboard-content {
    padding: 20px;
}

.dashboard-summary {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.summary-card {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    flex: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    text-align: center;
    position: relative;
}

.summary-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.summary-label {
    font-size: 0.85rem;
    color: var(--gray-color);
    margin-bottom: 10px;
}

.summary-trend {
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
}

.summary-trend.positive {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.summary-trend.negative {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
}

.dashboard-graphs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.graph-container {
    flex: 1;
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.graph-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.graph-header h4 {
    font-size: 1rem;
    font-weight: 600;
}

.graph-header select {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 0.8rem;
    color: var(--gray-color);
}

.call-volume-graph {
    height: 150px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding-bottom: 10px;
    position: relative;
}

.call-volume-graph .bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-light), var(--primary-color));
    border-radius: 4px 4px 0 0;
    min-height: 4px;
    transition: height 0.5s ease;
    position: relative;
    cursor: pointer;
}

.call-volume-graph .bar:hover {
    background: linear-gradient(to top, var(--primary-color), var(--primary-dark));
}

.call-volume-graph .bar:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 100;
}

.call-volume-graph .bar:hover::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: var(--dark-color) transparent transparent transparent;
    z-index: 100;
}

.graph-baseline {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ddd;
}

.graph-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.graph-labels span {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-color);
}

.pie-chart {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: #f0f0f0;
}

.pie-slice {
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 0%, 50% 0%);
    border-radius: 50%;
    background-color: var(--color, #ddd);
    transform-origin: center;
    transform: rotate(calc(var(--start, 0) * 3.6deg));
    transition: transform 0.3s ease;
}

.pie-slice:nth-child(1) {
    --start: 0;
    clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 50%, 50% 50%);
    transform: rotate(0deg);
}

.pie-slice:nth-child(2) {
    --start: 45;
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 50% 100%, 50% 50%);
    transform: rotate(calc(45 * 3.6deg));
}

.pie-slice:nth-child(3) {
    --start: 75;
    clip-path: polygon(50% 50%, 50% 100%, 0% 100%, 0% 50%, 50% 50%);
    transform: rotate(calc(75 * 3.6deg));
}

.pie-slice:nth-child(4) {
    --start: 90;
    clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 50% 50%);
    transform: rotate(calc(90 * 3.6deg));
}

.pie-slice:hover {
    transform: scale(1.05) rotate(calc(var(--start, 0) * 3.6deg));
}

.pie-slice:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-color);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 100;
}

.pie-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--dark-color);
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.pie-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 200px;
    margin: 0 auto;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray-color);
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    display: inline-block;
}

.upcoming-appointments {
    background-color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.appointments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.appointments-header h4 {
    font-size: 1rem;
    font-weight: 600;
}

.view-all {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.appointment-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.appointment-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 6px;
    background-color: #f8fafc;
    transition: background-color 0.3s ease;
}

.appointment-item:hover {
    background-color: #f0f4f8;
}

.appointment-time {
    min-width: 80px;
    font-weight: 600;
    font-size: 0.9rem;
}

.appointment-details {
    flex: 1;
}

.appointment-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.appointment-service {
    font-size: 0.8rem;
    color: var (--gray-color);
}

.appointment-status {
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.appointment-status.confirmed {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.appointment-status.pending {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

/* Responsive styles for client portal section */
@media (max-width: 992px) {
    .portal-content {
        flex-direction: column;
    }
    
    .portal-text {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .dashboard-container {
        transform: none;
        max-width: 100%;
    }
    
    .dashboard-container:hover {
        transform: none;
    }
    
    .dashboard-graphs {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .dashboard-summary {
        flex-direction: column;
    }
    
    .pie-chart {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .appointment-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .appointment-time {
        margin-bottom: 5px;
    }
    
    .appointment-status {
        margin-top: 5px;
        align-self: flex-start;
    }
}

/* Cost Savings Section Styles */
.cost-savings-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.cost-savings-content {
    flex: 1;
}

.savings-title h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.savings-comparison {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.comparison-item {
    flex: 1;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.comparison-item.traditional {
    background-color: #f8f9fa;
    border: 1px solid var(--gray-light);
}

.comparison-item.ai {
    background-color: white;
    border: 2px solid var(--primary-color);
    transform: translateY(-10px);
}

.comparison-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.comparison-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.comparison-header i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.comparison-item.traditional .comparison-header i {
    color: var(--gray-color);
    background-color: var(--gray-light);
}

.comparison-item.ai .comparison-header i {
    color: white;
    background-color: var(--primary-color);
}

.comparison-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.comparison-cost {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.comparison-cost span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-color);
}

.comparison-item.ai .comparison-cost {
    color: var(--primary-color);
}

.comparison-list {
    margin-bottom: 20px;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.comparison-list li i {
    margin-top: 3px;
}

.comparison-item.traditional .comparison-list li i {
    color: var(--danger-color);
}

.comparison-item.ai .comparison-list li i {
    color: var(--success-color);
}

.savings-cta {
    text-align: center;
    margin-top: 20px;
}

.comparison-header {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.03);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.comparison-header .price-per-minute {
    margin-top: 10px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
}

.comparison-item.traditional .price-per-minute {
    color: var(--danger-color);
}

.comparison-item.ai .price-per-minute {
    color: var(--success-color);
}

.comparison-header i {
    margin-right: 10px;
}

/* Night Call Visualization */
.night-call-visualization {
    flex: 1;
    min-height: 480px;
}

.night-scene {
    position: relative;
    width: 100%;
    height: 480px;
    background: linear-gradient(to bottom, #0f1729 0%, #2c3e50 100%);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.moon {
    position: absolute;
    top: 30px;
    right: 50px;
    width: 60px;
    height: 60px;
    background-color: #f9f9f9;
    border-radius: 50%;
    box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.4);
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.stars::before, 
.stars::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: white;
    border-radius: 50%;
    box-shadow: 
        15px 15px white, 
        30px 60px white,
        60px 30px white,
        100px 70px white,
        130px 40px white,
        150px 90px white,
        200px 20px white,
        230px 80px white,
        250px 40px white,
        280px 110px white,
        320px 30px white,
        350px 60px white,
        380px 20px white,
        400px 110px white,
        420px 50px white;
    animation: twinkle 4s infinite;
}

.stars::after {
    top: 60px;
    left: 40px;
    animation-delay: 2s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.city-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background-image: 
        linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%),
        repeating-linear-gradient(to right, 
            transparent 0px, transparent 30px, 
            #243447 30px, #243447 35px, transparent 35px, transparent 60px,
            #243447 60px, #243447 90px, transparent 90px, transparent 120px,
            #243447 120px, #243447 140px, transparent 140px, transparent 180px);
    background-position: bottom;
    background-size: 100% 100%, 600px 180px;
}

.call-scenario {
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.caller, .ai-receptionist {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.caller-image, .ai-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.caller-image {
    background-color: #f8f9fa;
}

.ai-image {
    background-color: var(--primary-color);
}

.caller-image i, .ai-image i {
    font-size: 2rem;
}

.caller-image i {
    color: var(--dark-color);
}

.ai-image i {
    color: white;
}

.caller-phone {
    position: absolute;
    top: 55px;
    left: 95px;
    width: 30px;
    height: 30px;
    background-color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: pulse 2s infinite;
}

.caller-time, .ai-status {
    background-color: rgba(0,0,0,0.5);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.ai-status {
    background-color: var(--success-color);
}

.call-connection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    position: relative;
}

.call-waves {
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: var(--primary-light);
    top: 50%;
    transform: translateY(-50%);
}

.call-waves:nth-child(1) {
    left: 0;
    animation: wave 2s ease-in-out infinite;
}

.call-waves:nth-child(2) {
    left: 50%;
    transform: translate(-50%, -50%);
    animation: wave 2s ease-in-out infinite 0.3s;
}

.call-waves:nth-child(3) {
    right: 0;
    animation: wave 2s ease-in-out infinite 0.6s;
}

@keyframes wave {
    0%, 100% { width: 20px; opacity: 0.3; }
    50% { width: 40px; opacity: 1; }
}

.conversation-bubbles {
    position: absolute;
    top: 220px;
    left: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
}

.night-scene .chat-bubble {
    margin-bottom: 15px;
    background-color: white;
    padding: 12px 15px;
    border-radius: 18px;
    max-width: 80%;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.night-scene .chat-bubble.left {
    align-self: flex-start;
    background-color: var(--primary-light);
    color: white;
}

.night-scene .chat-bubble.right {
    align-self: flex-end;
    background-color: white;
    color: var(--dark-color);
}

.appointment-confirmation {
    align-self: center;
    background-color: var(--success-color);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-weight: 500;
    animation: pulse 2s infinite;
}

.appointment-confirmation i {
    font-size: 1.2rem;
}

/* Responsive styles for cost savings section */
@media (max-width: 992px) {
    .cost-savings-wrapper {
        flex-direction: column;
    }
    
    .savings-comparison {
        flex-direction: column;
    }
    
    .comparison-item.ai {
        transform: none;
    }
}

@media (max-width: 768px) {
    .night-scene {
        height: 550px;
    }
    
    .conversation-bubbles {
        top: 210px;
    }
}

@media (max-width: 576px) {
    .night-scene {
        height: 600px;
    }
}

/* Redesigned Time Periods Visualization */
.time-periods-container {
    position: relative;
    width: 100%;
    height: 540px;  /* Increased height for better spacing */
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.time-period {
    position: relative;
    height: calc(100% / 3);
    padding: 0;
    overflow: hidden;
}

/* Time Labels */
.time-label {
    position: absolute;
    left: 15px;
    top: 15px;  /* Moved to top instead of middle */
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.time-label i {
    font-size: 1rem;
}

/* Call Visualization Layout */
.call-visualization {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

/* Icon Wrappers */
.icon-wrapper {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: var(--dark-color);
}

/* Person and AI Icon Containers */
.person-icon, .ai-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 80px;
}

/* AI Icon Specific Styles */
.ai-icon .icon-wrapper {
    background-color: var(--primary-color);
    border-color: rgba(255, 255, 255, 0.5);
}

.ai-icon .icon-wrapper i {
    color: white;
}

/* Status Badge */
.status-badge {
    background-color: var(--success-color);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.02em;
}

/* Phone Badge */
.phone-badge {
    position: absolute;
    top: -5px;
    right: 0;
    width: 22px;
    height: 22px;
    background-color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
    border: 2px solid white;
}

.phone-badge i {
    color: white;
    font-size: 0.7rem;
}

/* Connection Waves */
.connection-waves {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 50px;
}

.wave {
    height: 2px;
    width: 20%;
    background-color: rgba(255, 255, 255, 0.8);
    animation: wave-animation 2s ease-in-out infinite;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.wave:nth-child(2) {
    animation-delay: 0.3s;
}

.wave:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes wave-animation {
    0%, 100% { 
        width: 15%; 
        opacity: 0.6; 
    }
    50% { 
        width: 30%; 
        opacity: 1; 
    }
}

/* Time Period Specific Styles - Afternoon */
.afternoon-period {
    background: linear-gradient(to right, #64b3f4 0%, #c2e9fb 100%);
}

.afternoon-period::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #ffef5e 30%, #ffd700 70%);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
    z-index: 1;
}

.afternoon-period .wave {
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Time Period Specific Styles - Morning */
.morning-period {
    background: linear-gradient(to right, #ff7e5f 0%, #feb47b 100%);
}

.morning-period::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15%;
    width: 60px;
    height: 30px;
    background: linear-gradient(to bottom, #ff7e5f, #feb47b);
    border-radius: 60px 60px 0 0;
    box-shadow: 0 0 20px rgba(255, 126, 95, 0.5);
    z-index: 1;
}

.morning-period .wave {
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Time Period Specific Styles - Night */
.night-period {
    background: linear-gradient(to right, #0f1729 0%, #2c3e50 100%);
    padding-bottom: 50px; /* Keeping this for badge space */
    position: relative; /* Ensuring position is relative */
    overflow: visible; /* Changed from hidden to ensure moon is visible */
}

.night-period::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15%;
    width: 50px;
    height: 50px;
    background-color: #f9f9f9;
    border-radius: 50%;
    box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.4);
    z-index: 5; /* Increased z-index to ensure visibility */
    pointer-events: none; /* Prevents interference with interactions */
}

/* Always Available Badge - Adjusted to ensure proper stacking */
.always-available-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 10; /* Keeping higher z-index than moon */
    font-size: 1rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

/* Time Divider */
.time-divider {
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    width: 85%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Always Available Badge */
.always-available-badge {
    position: absolute;
    bottom: 0; /* Changed back to 0 to keep it inside the container */
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 10;
    font-size: 1rem;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .time-periods-container {
        height: 500px;
    }
    
    .time-label {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .call-visualization {
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .time-periods-container {
        height: 450px;
    }
    
    .icon-wrapper {
        width: 46px;
        height: 46px;
    }
    
    .icon-wrapper i {
        font-size: 1.2rem;
    }
    
    .status-badge {
        padding: 3px 8px;
        font-size: 0.7rem;
    }
    
    .phone-badge {
        width: 18px;
        height: 18px;
    }
    
    .connection-waves {
        padding: 0 15px;
    }
    
    .always-available-badge {
        font-size: 0.9rem;
        padding: 10px;
    }
}

/* Special Offer Badge Styling */
.save-badge {
    display: inline-block;
    padding: 4px 8px;
    margin-left: 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    background-color: var(--primary-color);
    color: white;
}

.save-badge.special-offer {
    background: var(--primary-color);
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(79, 70, 229, 0.3);
    animation: pulse-special 2s infinite;
    transform: scale(1);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

@keyframes pulse-special {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(79, 70, 229, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
        transform: scale(1);
    }
}

.save-badge.special-offer:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(79, 70, 229, 0.4);
}

.limited-time-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 10px;
    border: 1px dashed var(--primary-color);
}

.limited-time-offer span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-left: 10px;
}

.limited-time-offer .save-badge.special-offer {
    margin-left: 0;
}

/* Redesigned How It Works Section - Flip Cards */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #EFF6FF 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(79, 70, 229, 0.1) 100%);
    z-index: 0;
}

.how-it-works::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05) 0%, rgba(13, 148, 136, 0.1) 100%);
    z-index: 0;
}

/* Process Cards Layout */
.process-flow {
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

.process-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Process Card Flip Effect */
.process-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    height: 380px;
    perspective: 1000px;
    margin-bottom: 20px;
}

.process-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.process-card:hover .process-card-inner,
.process-card-inner.flipped {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.card-front {
    background: white;
    padding: 30px 20px;
}

.card-back {
    background: white;
    padding: 30px 20px;
    transform: rotateY(180deg);
    text-align: left;
}

/* Process Card Content Styling */
.process-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.step-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    border: 2px solid white;
}

.process-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.process-preview-text {
    color: var(--gray-color);
    font-size: 1rem;
    margin-bottom: 30px;
    flex-grow: 1;
    line-height: 1.5;
}

.card-back p {
    color: var(--gray-color);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.process-features {
    margin-top: auto;
    text-align: left;
}

.process-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.process-features li i {
    color: var(--success-color);
    margin-right: 10px;
    font-size: 1rem;
}

.card-flip-prompt {
    margin-top: auto;
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
    font-size: 0.9rem;
}

.card-flip-prompt i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.process-card:hover .card-flip-prompt i {
    transform: rotate(180deg);
}

/* Connection Between Process Cards */
.process-connection {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 60px;
    height: 2px;
}

.connection-line {
    width: 100%;
    height: 2px;
    background-color: var(--primary-light);
    position: relative;
}

.connection-icon {
    position: absolute;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 4px 8px rgba(79, 70, 229, 0.3);
}

/* Process Animation */
.process-animation {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.animation-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 120px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
}

.pulse-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.8;
    }
}

.robot-animation {
    font-size: 2.5rem;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
    margin-bottom: 15px;
    z-index: 2;
}

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

.animation-text {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
}

.typing-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    color: var(--dark-color);
    font-weight: 500;
    border-right: 2px solid var(--primary-color);
    animation: typing 4s steps(40) infinite, blink-caret 0.75s step-end infinite;
    font-size: 0.9rem;
}

@keyframes typing {
    0%, 100% {
        width: 0;
    }
    50%, 90% {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--primary-color);
    }
}

/* Responsive Styles for the How It Works Section */
@media (max-width: 992px) {
    .process-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .process-card {
        max-width: 350px;
        width: 100%;
    }
    
    .process-connection {
        width: 2px;
        height: 60px;
    }
    
    .connection-line {
        width: 2px;
        height: 100%;
    }
    
    .connection-icon {
        transform: rotate(90deg);
    }
}

@media (max-width: 576px) {
    .process-card {
        height: 350px;
    }
    
    .process-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .process-card h3 {
        font-size: 1.3rem;
    }
    
    .animation-container {
        width: 240px;
    }
    
    .typing-text {
        font-size: 0.8rem;
    }
}

/* Redesigned How It Works Section - Timeline Style */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #EFF6FF 100%);
    position: relative;
    overflow: hidden;
}

/* Background visuals */
.section-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.shape1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.1) 0%, rgba(79, 70, 229, 0.2) 100%);
    top: -100px;
    right: -50px;
    animation: float-around 20s ease-in-out infinite alternate;
}

.shape2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(20, 184, 166, 0.1) 0%, rgba(13, 148, 136, 0.2) 100%);
    bottom: -50px;
    left: -50px;
    animation: float-around 15s ease-in-out infinite alternate-reverse;
}

.shape3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.2) 100%);
    top: 40%;
    left: 10%;
    animation: float-around 18s ease-in-out infinite alternate;
}

@keyframes float-around {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -20px) rotate(5deg);
    }
    66% {
        transform: translate(-20px, 15px) rotate(-5deg);
    }
    100% {
        transform: translate(15px, -25px) rotate(3deg);
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(248, 250, 252, 0.8) 70%);
}

/* Animated section header */
.animated-header {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 60px;
}

.header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    animation: pulse-soft 2s infinite;
}

@keyframes pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(79, 70, 229, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

.header-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto 0;
    position: relative;
    border-radius: 2px;
}

.header-underline:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--secondary-color);
    right: -20px;
    border-radius: 2px;
}

/* Timeline layout */
.process-timeline {
    position: relative;
    margin: 80px 0;
    padding: 0 40px;
}

.timeline-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, 
        var(--primary-light) 0%, 
        var(--primary-color) 50%, 
        var(--secondary-color) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 1;
}

.timeline-step {
    position: relative;
    margin-bottom: 120px;
    z-index: 2;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: white;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.step-2 .timeline-number {
    border-color: var(--primary-dark);
}

.step-3 .timeline-number {
    border-color: var(--secondary-color);
}

.timeline-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.timeline-content.reversed {
    flex-direction: row-reverse;
}

.timeline-card {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    max-width: 450px;
    border-top: 5px solid var(--primary-color);
}

.step-2 .timeline-card {
    border-top-color: var(--primary-dark);
}

.step-3 .timeline-card {
    border-top-color: var(--secondary-color);
}

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

.card-icon {
    position: absolute;
    top: -25px;
    left: 30px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 15px rgba(79, 70, 229, 0.3);
}

.step-2 .icon-circle {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.step-3 .icon-circle {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
}

.timeline-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 15px 0 10px;
    color: var(--dark-color);
}

.timeline-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.feature-list li i {
    color: var(--success-color);
    margin-right: 10px;
}

/* Step illustrations */
.step-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 450px;
}

.illustration-container {
    width: 250px;
    height: 250px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.illustration {
    width: 80%;
    height: 80%;
    position: relative;
}

/* Sign-up illustration */
.form-graphic {
    width: 120px;
    height: 150px;
    background: #f8fafc;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-line {
    height: 10px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 15px;
}

.form-button {
    height: 20px;
    width: 60px;
    background: var(--primary-color);
    border-radius: 5px;
    margin-top: 30px;
}

.cursor-graphic {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-color);
    position: absolute;
    top: 60%;
    left: 70%;
    animation: cursor-move 3s infinite alternate;
}

@keyframes cursor-move {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-30px, -20px);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

/* Implementation illustration */
.gear-graphic {
    position: absolute;
    border-radius: 50%;
    border: 6px dashed white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gear-graphic:before {
    content: '';
    position: absolute;
    width: 30%;
    height: 30%;
    background: white;
    border-radius: 50%;
}

.gear-large {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    top: 30px;
    left: 20px;
    animation: rotate 8s linear infinite;
}

.gear-medium {
    width: 70px;
    height: 70px;
    background: var(--primary-dark);
    top: 100px;
    right: 30px;
    animation: rotate 6s linear infinite reverse;
}

.gear-small {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    bottom: 40px;
    left: 50px;
    animation: rotate 4s linear infinite;
}

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

.progress-bar {
    width: 80%;
    height: 15px;
    background: #e2e8f0;
    border-radius: 8px;
    position: absolute;
    bottom: 20px;
    left: 10%;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 8px;
    animation: progress 3s ease-in-out infinite;
}

@keyframes progress {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* Growth illustration */
.chart-graphic {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
}

.chart-bar {
    width: 20px;
    background: var(--primary-light);
    border-radius: 3px 3px 0 0;
}

.bar1 {
    height: 40px;
    animation: grow 2s 0.1s infinite alternate;
}

.bar2 {
    height: 55px;
    animation: grow 2s 0.3s infinite alternate;
}

.bar3 {
    height: 70px;
    animation: grow 2s 0.5s infinite alternate;
}

.bar4 {
    height: 85px;
    animation: grow 2s 0.7s infinite alternate;
}

.bar5 {
    height: 100px;
    animation: grow 2s 0.9s infinite alternate;
}

@keyframes grow {
    0% {
        height: 20px;
    }
    100% {
        height: 100%;
    }
}

.spark-graphic {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--secondary-light);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.spark1 {
    top: 40px;
    right: 40px;
    animation: pulse-spark 1.5s infinite;
}

.spark2 {
    bottom: 90px;
    left: 40px;
    animation: pulse-spark 1.5s 0.5s infinite;
}

@keyframes pulse-spark {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* CTA Wrapper and AI Assistant */
.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 80px;
    flex-wrap: wrap;
}

.ai-assistant-visual {
    position: relative;
    width: 200px;
    height: 200px;
}

.assistant-avatar {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.robot-head {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 20px;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.antenna {
    width: 4px;
    height: 20px;
    background: var(--dark-color);
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.antenna:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--secondary-color);
    border-radius: 50%;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    animation: blink 1s infinite;
}

.eye {
    width: 15px;
    height: 15px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 25px;
}

.eye.left {
    left: 20px;
}

.eye.right {
    right: 20px;
}

.eye:after {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--dark-color);
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
    animation: look-around 4s infinite;
}

@keyframes look-around {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(3px, -2px); }
    50% { transform: translate(-2px, 2px); }
    75% { transform: translate(2px, 3px); }
}

.mouth {
    width: 30px;
    height: 10px;
    background: white;
    border-radius: 5px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.mouth:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 4px;
    background: var(--dark-color);
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    animation: talk 1s infinite;
}

@keyframes talk {
    0%, 100% { width: 15px; }
    50% { width: 25px; }
}

.glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, rgba(79, 70, 229, 0) 70%);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.pulse-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.ring {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.ring1 {
    width: 100%;
    height: 100%;
    animation: pulse-ring 2s 0s infinite;
}

.ring2 {
    width: 80%;
    height: 80%;
    animation: pulse-ring 2s 0.4s infinite;
}

.ring3 {
    width: 60%;
    height: 60%;
    animation: pulse-ring 2s 0.8s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.typing-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.7;
}

.typing-dot:nth-child(1) {
    animation: bounce 1s infinite 0.2s;
}

.typing-dot:nth-child(2) {
    animation: bounce 1s infinite 0.4s;
}

.typing-dot:nth-child(3) {
    animation: bounce 1s infinite 0.6s;
}

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

/* Responsive styles for How It Works section */
@media (max-width: 1200px) {
    .timeline-track {
        left: 30px;
        transform: none;
    }
    
    .timeline-number {
        left: 30px;
        transform: none;
    }
    
    .timeline-content {
        margin-left: 60px;
    }
    
    .timeline-content.reversed {
        flex-direction: row;
    }
}

@media (max-width: 992px) {
    .timeline-content,
    .timeline-content.reversed {
        flex-direction: column;
        gap: 60px;
    }
    
    .timeline-card {
        max-width: 100%;
    }
    
    .step-illustration {
        max-width: 100%;
    }
    
    .cta-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .process-timeline {
        padding: 0 20px;
    }
    
    .timeline-step {
        margin-bottom: 80px;
    }
    
    .timeline-card {
        padding: 20px;
    }
    
    .feature-list li {
        font-size: 0.9rem;
    }
    
    .timeline-card h3 {
        font-size: 1.3rem;
    }
    
    .illustration-container {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .how-it-works {
        padding: 80px 0;
    }
    
    .process-timeline {
        margin: 40px 0;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .illustration-container {
        width: 180px;
        height: 180px;
    }
    
    .timeline-card {
        padding: 15px;
    }
    
    .card-icon {
        top: -20px;
    }
    
    .icon-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .ai-assistant-visual {
        width: 150px;
        height: 150px;
    }
    
    .robot-head {
        width: 60px;
        height: 60px;
    }
    
    .eye {
        width: 12px;
        height: 12px;
        top: 20px;
    }
    
    .eye.left {
        left: 15px;
    }
    
    .eye.right {
        right: 15px;
    }
    
    .mouth {
        width: 25px;
        height: 8px;
        bottom: 15px;
    }
    
    .typing-dot {
        width: 6px;
        height: 6px;
    }
    
    .header-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .gear-large {
        width: 80px;
        height: 80px;
    }
    
    .gear-medium {
        width: 50px;
        height: 50px;
    }
    
    .gear-small {
        width: 30px;
        height: 30px;
    }
    
    .chart-bar {
        width: 15px;
    }
}

/* Comparison Styling */
.comparison-header {
    text-align: center;
    padding: 20px 15px;
    background-color: rgba(0, 0, 0, 0.03);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.comparison-header i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    display: block;
}

.comparison-item.traditional .comparison-header i {
    color: var(--danger-color);
}

.comparison-item.ai .comparison-header i {
    color: var(--primary-color);
}

.price-box {
    text-align: center;
    padding: 15px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.02), transparent);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.price-box .price-per-minute {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.price-box .price-period {
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.price-box .price-condition {
    font-size: 0.9rem;
    color: var(--dark-color);
    opacity: 0.7;
    font-style: italic;
}

.price-box.traditional .price-per-minute {
    color: var(--danger-color);
}

.price-box.ai .price-per-minute {
    color: var(--success-color);
}

/* Pricing Cards Styling */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border-bottom-left-radius: var(--border-radius);
}

.pricing-card.disabled {
    opacity: 0.7;
    transform: scale(0.95);
    filter: grayscale(70%);
}

.pricing-card.disabled:hover {
    transform: scale(0.95);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.pricing-card.disabled .pricing-header {
    position: relative;
}

.pricing-card.disabled .pricing-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        rgba(255, 0, 0, 0.05),
        rgba(255, 0, 0, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
}

.disabled-badge {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.disabled-badge i {
    margin-right: 8px;
    font-size: 1rem;
}

.pricing-features li.disabled {
    color: var(--gray-color);
    text-decoration: line-through;
    opacity: 0.7;
}

.pricing-features li.disabled i {
    color: var(--danger-color);
}

.pricing-features li i.fa-check-circle {
    color: var(--success-color);
}

@media (max-width: 992px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1);
    }
    
    .pricing-card.disabled {
        transform: scale(1);
    }
    
    .pricing-card.disabled:hover {
        transform: scale(1);
    }
}
