/* 
   Main Stylesheet for AI Automation ROI Website
   Colors:
   - Primary: #0072C6 (Blue)
   - Secondary: #00B050 (Green)
   - Accent: #FF8C00 (Orange)
   - Text: #444444 (Dark Gray)
   - Background: #F8F8F8 (Light Gray)
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #444444;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333333;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: #005999;
}

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #0072C6;
    margin-bottom: 15px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: #0072C6;
    color: white;
}

.btn-primary:hover {
    background-color: #005999;
    color: white;
}

.btn-secondary {
    background-color: #00B050;
    color: white;
}

.btn-secondary:hover {
    background-color: #008c40;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

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

.logo h2 {
    margin: 0;
    font-size: 1.5rem;
    color: #0072C6;
}

.main-nav ul {
    display: flex;
    margin-right: 30px;
}

.main-nav li {
    margin-left: 30px;
}

.main-nav a {
    color: #444444;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.main-nav a:hover {
    color: #0072C6;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #0072C6 0%, #005999 100%);
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-value {
    margin: 40px 0;
}

.value-metric {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.value-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #FF8C00;
}

.value-label {
    font-size: 1.2rem;
    color: white;
}

/* Introduction Section */
.intro {
    background-color: #F8F8F8;
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-pricing {
    flex: 1;
    min-width: 300px;
}

.pricing-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-header {
    background-color: #0072C6;
    color: white;
    padding: 20px;
    text-align: center;
}

.pricing-header h3 {
    color: white;
    margin: 0;
}

.pricing-details {
    padding: 20px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.pricing-item.total {
    margin-top: 15px;
    border-bottom: none;
    font-weight: 700;
    color: #0072C6;
}

.pricing-label {
    font-weight: 600;
}

/* Market Overview Section */
.market-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.market-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.market-icon {
    font-size: 2.5rem;
    color: #0072C6;
    margin-bottom: 20px;
}

.market-card h3 {
    margin-bottom: 15px;
}

/* Salary Information Section */
.salaries {
    background-color: #F8F8F8;
}

.salary-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.salary-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.salary-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #0072C6;
    color: white;
}

.salary-card.admin .salary-header {
    background-color: #0072C6;
}

.salary-card.sales .salary-header {
    background-color: #00B050;
}

.salary-header i {
    font-size: 2rem;
    margin-right: 15px;
}

.salary-header h3 {
    color: white;
    margin: 0;
}

.salary-details {
    padding: 20px;
}

.salary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.salary-label {
    font-weight: 600;
}

.business-case {
    text-align: center;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Time Spent Section */
.time-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.time-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.time-header {
    padding: 20px;
    text-align: center;
    background-color: #0072C6;
}

.time-card.admin .time-header {
    background-color: #0072C6;
}

.time-card.sales .time-header {
    background-color: #00B050;
}

.time-header h3 {
    color: white;
    margin: 0;
}

.time-chart {
    padding: 30px;
    text-align: center;
}

.pie-chart {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(#0072C6 0% 48%, #F8F8F8 48% 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-card.sales .pie-chart {
    background: conic-gradient(#00B050 0% 56%, #F8F8F8 56% 100%);
}

.percentage {
    position: relative;
    font-size: 2rem;
    font-weight: 700;
    color: #444;
}

.time-details {
    padding: 0 20px 20px;
}

.time-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.time-item.total {
    margin-top: 15px;
    border-bottom: none;
    font-weight: 700;
    color: #0072C6;
}

.time-card.sales .time-item.total {
    color: #00B050;
}

.time-label {
    font-weight: 600;
}

.time-tasks {
    padding: 0 20px 20px;
}

.time-tasks h4 {
    margin-bottom: 10px;
}

.time-tasks ul {
    list-style: disc;
    padding-left: 20px;
}

.time-tasks li {
    margin-bottom: 5px;
}

.productivity-loss {
    text-align: center;
    background-color: #0072C6;
    color: white;
    border-radius: 8px;
    padding: 30px;
}

.productivity-loss h3 {
    color: white;
    margin-bottom: 15px;
}

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

.counter {
    color: #FF8C00;
}

/* Solution Section */
.solution {
    background-color: #F8F8F8;
}

.solution-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.solution-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#ai-agent-placeholder {
    width: 100%;
    max-width: 400px;
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.2rem;
}

.solution-features {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    color: #0072C6;
    margin-right: 15px;
    padding-top: 5px;
}

.feature-text h3 {
    margin-bottom: 5px;
}

/* ROI Calculation Section */
.roi-steps {
    max-width: 800px;
    margin: 0 auto 50px;
}

.roi-step {
    display: flex;
    margin-bottom: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    background-color: #0072C6;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

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

.step-content h3 {
    margin-bottom: 15px;
}

.step-total {
    margin-top: 10px;
    font-weight: 700;
    color: #0072C6;
}

.roi-calculator-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.roi-calculator-container h3 {
    text-align: center;
    margin-bottom: 20px;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

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

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.calculator-results {
    margin-top: 30px;
    background-color: #F8F8F8;
    padding: 20px;
    border-radius: 4px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    font-weight: 600;
}

.result-value {
    font-weight: 700;
    color: #0072C6;
}

#enhanced-roi {
    color: #FF8C00;
}

/* Business Impact Section */
.impact {
    background-color: white;
}

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

.impact-card {
    background-color: #F8F8F8;
    border-radius: 8px;
    padding: 30px;
    transition: transform 0.3s ease;
}

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

.impact-icon {
    font-size: 2.5rem;
    color: #0072C6;
    margin-bottom: 20px;
}

.impact-card:nth-child(2) .impact-icon {
    color: #00B050;
}

.impact-card:nth-child(3) .impact-icon {
    color: #FF8C00;
}

/* Implementation Process Section */
.implementation {
    background-color: #F8F8F8;
}

.implementation-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.implementation-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: #0072C6;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0072C6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 1;
}

.timeline-content {
    width: 45%;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
    margin-bottom: 10px;
}

/* Call to Action Section */
.cta {
    background-color: white;
}

.cta-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.cta-text {
    flex: 1;
    min-width: 300px;
}

.cta-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    background-color: #F8F8F8;
    border-radius: 8px;
    padding: 30px;
}

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

.highlight-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.highlight-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0072C6;
    margin-bottom: 5px;
}

.highlight-item:last-child .highlight-value {
    color: #00B050;
}

.highlight-period {
    display: block;
    font-size: 0.9rem;
    color: #666;
}

.highlight-arrow {
    font-size: 2rem;
    color: #FF8C00;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: #F8F8F8;
    border-radius: 8px;
    padding: 30px;
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 20px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo h2 {
    color: white;
    margin-bottom: 15px;
}

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

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-column a {
    color: #ccc;
}

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

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

.social-links a {
    color: white;
    font-size: 1.2rem;
    margin-left: 15px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .value-number {
        font-size: 3rem;
    }
    
    .implementation-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-icon {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .cta-button {
        display: none;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1rem;
    }
    
    .value-number {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .roi-step {
        flex-direction: column;
    }
    
    .step-number {
        width: 100%;
        padding: 10px;
    }
    
    .cta-highlight {
        flex-direction: column;
        gap: 20px;
    }
    
    .highlight-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 576px) {
    .section {
        padding: 40px 0;
    }
    
    .hero {
        min-height: 400px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .value-number {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        margin-top: 20px;
    }
    
    .social-links a:first-child {
        margin-left: 0;
    }
}
