* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
    position: relative;
    display: inline-block;
}

.logo::after {
    content: "Transforming Business Through Intelligent Automation";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    font-size: 10px;
    font-weight: 400;
    color: #64748b;
    margin-top: 2px;
    white-space: nowrap;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-primary {
    background: #ff6b35;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.hero-support {
    margin-top: 15px;
    font-size: 14px;
    opacity: 0.8;
}

.trust-logos {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-logos p {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.7;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.logo-item {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

/* Updated styles for enterprise social proof */
.trust-logos h3 {
    color: #64748b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.enterprise-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    text-align: left;
}

.enterprise-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.company-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.company-logo {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background: #3b82f6;
    border-radius: 4px;
    display: inline-block;
}

.automation-focus {
    font-size: 0.85rem;
    color: #3b82f6;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.result-quote {
    font-style: italic;
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.metrics {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.metric {
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #059669;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    color: #1e293b;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: #64748b;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.problem-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #dc2626;
}

.problem-item h3 {
    color: #dc2626;
    margin-bottom: 15px;
    font-size: 20px;
}

.stat-highlight {
    background: #fee2e2;
    padding: 20px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #dc2626;
    display: block;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: white;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.before, .after {
    text-align: center;
    padding: 40px 30px;
    border-radius: 12px;
}

.before {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.after {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
}

.before h3 {
    color: #dc2626;
    margin-bottom: 20px;
}

.after h3 {
    color: #16a34a;
    margin-bottom: 20px;
}

.comparison-list {
    list-style: none;
    text-align: left;
}

.comparison-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Social Proof Section */
.social-proof {
    padding: 80px 0;
    background: #f1f5f9;
}

.social-proof .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.social-proof .section-header p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 60px;
    color: #2563eb;
    position: absolute;
    top: -10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    padding-top: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #2563eb;
}

.testimonial-company {
    color: #64748b;
    font-size: 14px;
}

.stats-highlight {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    text-align: center;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 8px;
}

.stat-item .label {
    color: #64748b;
    font-weight: 500;
    font-size: 0.9rem;
}

.cta-section {
    text-align: center;
    margin-top: 50px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.feature-item h3 {
    color: #1e293b;
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Objections Section */
.objections {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    background: #2563eb;
    color: white;
    padding: 20px 30px;
    font-weight: 600;
    cursor: pointer;
}

.faq-answer {
    padding: 20px 30px;
    color: #64748b;
    display: none;
}

.guarantees {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.guarantee-badge {
    background: #16a34a;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    min-width: 200px;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.urgency-elements {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.urgency-elements h3 {
    color: #fbbf24;
    margin-bottom: 15px;
}

.calendar-widget {
    background: white;
    color: #333;
    padding: 40px;
    border-radius: 12px;
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.calendar-widget h4 {
    margin-bottom: 20px;
    color: #2563eb;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.time-slot {
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: #2563eb;
    color: white;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer .logo {
    font-size: 1.5em;
    font-weight: 600;
    color: #3498db;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-right {
    text-align: right;
}

.footer .phone {
    color: #3498db;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
}

.footer .phone:hover {
    color: #2980b9;
}

/* ROI Calculator Section - Centered with equal padding */
.roi-container {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
}

.roi-intro {
    color: #bdc3c7;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.roi-button {
    display: inline-block;
    background: linear-gradient(135deg, #3498db 0%, #2ecc71 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
    position: relative;
    overflow: hidden;
}

.roi-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.roi-button:active {
    transform: translateY(-1px);
}

.roi-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.roi-button:hover:before {
    left: 100%;
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #7f8c8d;
    font-size: 0.9em;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 50;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* AI Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.chat-container {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 500px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transform: scale(0.95) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-container.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

.chat-header {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.chat-info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    opacity: 0.9;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.chat-close:hover {
    background: rgba(255,255,255,0.1);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    max-height: 320px;
}

.message {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.message.user {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.message.bot .message-avatar {
    background: #f1f5f9;
}

.message.user .message-avatar {
    background: #2563eb;
    color: white;
}

.message-content {
    background: #f8fafc;
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 250px;
    font-size: 14px;
    line-height: 1.4;
}

.message.user .message-content {
    background: #2563eb;
    color: white;
}

.message-actions {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.action-button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.action-button:hover {
    background: #1d4ed8;
}

.chat-input-container {
    border-top: 1px solid #e2e8f0;
    padding: 15px;
}

.quick-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.quick-action {
    background: #f1f5f9;
    color: #64748b;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.quick-action:hover {
    background: #e2e8f0;
    color: #334155;
}

.chat-input-group {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.chat-input {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 14px;
    resize: none;
    outline: none;
    font-family: inherit;
    max-height: 100px;
}

.chat-input:focus {
    border-color: #2563eb;
}

.chat-send {
    background: #2563eb;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.chat-send:hover {
    background: #1d4ed8;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.chat-toggle:hover {
    background: #1d4ed8;
    transform: scale(1.05);
}

.chat-toggle.has-notification::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid white;
}

/* Booking Form Styles */
.booking-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1002;
}

.booking-form-overlay.active {
    display: flex;
}

.booking-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: scale(0.9) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 20px;
}

.form-header h2 {
    color: #2563eb;
    margin-bottom: 10px;
    font-size: 24px;
}

.form-header p {
    color: #6b7280;
    margin: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.required {
    color: #dc2626;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.submit-btn {
    background: #2563eb;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #1d4ed8;
}

.submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6b7280;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.close-btn:hover {
    background: #f3f4f6;
}

.form-note {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #0c4a6e;
}

/* ROI Calculator Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 2% auto;
    border-radius: 20px;
    width: 95%;
    max-width: 900px;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.4s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8) translateY(50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
}

.close:hover {
    color: #e74c3c;
    background: white;
    transform: scale(1.1);
}

/* Calculator styles */
.calculator-container {
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
}

.calc-header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 30px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

.calc-header h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
    font-weight: 300;
}

.calc-header p {
    font-size: 1.1em;
    opacity: 0.9;
}

.calc-content {
    padding: 40px;
}

.step {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.question {
    margin-bottom: 30px;
}

.question h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.6em;
}

.question p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.options {
    display: grid;
    gap: 15px;
}

.option {
    padding: 15px 20px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.option:hover {
    border-color: #3498db;
    background: #e3f2fd;
}

.option.selected {
    border-color: #3498db;
    background: #3498db;
    color: white;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.input-group input:focus, .input-group select:focus {
    outline: none;
    border-color: #3498db;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #ecf0f1;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transition: width 0.3s ease;
}

.results {
    text-align: center;
}

.results h2 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2em;
}

.calc-content .metric {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.calc-content .metric h3 {
    font-size: 2.2em;
    margin-bottom: 5px;
}

.calc-content .metric p {
    font-size: 1.1em;
    opacity: 0.9;
}

.recommendations {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
    text-align: left;
}

.recommendations h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.recommendations ul {
    list-style: none;
    padding: 0;
}

.recommendations li {
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
    color: #5d6d7e;
}

.recommendations li:last-child {
    border-bottom: none;
}

.cta {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
}

.cta h3 {
    margin-bottom: 10px;
}

.cta button {
    background: white;
    color: #e74c3c;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.cta button:hover {
    background: #f8f9fa;
}

.step-counter {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .before-after {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .guarantees {
        flex-direction: column;
        align-items: center;
    }
    
    .header-contact {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-right {
        text-align: center;
    }

    .roi-container {
        padding: 20px 0;
    }

    .roi-button {
        padding: 15px 30px;
        font-size: 16px;
    }

    .roi-intro {
        font-size: 1em;
        margin-bottom: 15px;
    }
    
    .chat-container {
        width: 100vw;
        height: 100vh;
        bottom: 0;
        right: 0;
        border-radius: 0;
        position: fixed;
    }
    
    .chat-header {
        border-radius: 0;
    }
    
    .sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        padding: 20px 40px;
    }
    
    .booking-form-container {
        padding: 20px;
        margin: 10px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-header h2 {
        font-size: 20px;
    }

    .enterprise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .enterprise-card {
        padding: 20px;
    }
    
    .metrics {
        gap: 10px;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 98%;
    }
    
    .calc-header h1 {
        font-size: 1.8em;
    }
    
    .calc-content {
        padding: 20px;
    }
    
    .question h2 {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .roi-container {
        padding: 20px 0;
    }

    .roi-button {
        padding: 12px 25px;
        font-size: 15px;
    }

    .metric {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
}