:root {
    --primary: #f97316; /* Vibrant Orange */
    --primary-dark: #c2410c;
    --secondary: #10b981; /* Growth Green (Emerald) */
    --secondary-dark: #059669;
    --dark: #0f172a; /* Deep Slate */
    --dark-muted: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    --text-main: #334155;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 10%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: -0.025em;
}

.logo span {
    color: var(--primary);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600 !important;
    box-shadow: var(--shadow-sm);
}

/* Hero Section */
.hero {
    padding: 6rem 10% 8rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    background: radial-gradient(circle at top right, #f0fdf4, transparent), 
                radial-gradient(circle at bottom left, #fff7ed, transparent),
                var(--white);
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--text-dark);
    margin-left: 1rem;
    background: var(--white);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--light);
}

/* Trust Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem 10%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-bar span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-bar span::before {
    content: "✓";
    color: var(--secondary);
    font-weight: bold;
}

/* Sections */
section {
    padding: 6rem 10%;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s ease;
    background: var(--white);
    position: relative;
}

.card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-muted);
}

/* Pricing Cards */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    background: var(--white);
    transition: transform 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid var(--secondary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured::after {
    content: "MOST POPULAR";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.pricing-features li::before {
    content: "✓";
    color: var(--secondary);
    font-weight: bold;
}

/* Contact Form / Chat Wrapper */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chat-wrapper {
    width: 100%;
    max-width: 900px;
    height: 80vh;
    min-height: 600px;
    margin: 0 auto;
    border: none;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    background: var(--white);
    position: relative;
}

/* Tables (Comparison/Cost) */
.comparison-container {
    overflow-x: auto;
    margin-top: 3rem;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    border: 1px solid var(--border);
    background: var(--white);
}
.comparison-table th, .comparison-table td {
    padding: 1.2rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}
.comparison-table th {
    background: var(--light);
    font-weight: 700;
    color: var(--dark);
}
.comparison-table .feature-name {
    font-weight: 600;
    color: var(--dark);
    width: 30%;
}
.comparison-table .check {
    color: var(--secondary);
    font-weight: bold;
    text-align: center;
}

/* Testimonials */
.testimonials {
    background: var(--light);
    text-align: center;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.testimonial-text {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}
.testimonial-author {
    font-weight: 700;
    color: var(--dark);
}
.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.faq-item h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.faq-item p {
    color: var(--text-muted);
}

/* Cost Comparison Table */
.cost-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    text-align: center;
}
.cost-table th {
    background: var(--dark);
    color: var(--white);
    padding: 1rem;
}
.cost-table td {
    padding: 1rem;
    border: 1px solid var(--border);
}
.cost-highlight {
    background: #fffcf9;
    border: 2px solid var(--primary);
    font-weight: 700;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 10% 2rem;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: left;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    color: #64748b;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 3rem;
    }
    .hero-content p {
        margin: 0 auto 2.5rem;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-content h1 {
        font-size: 2.5rem;
}

/* New Styles for Website 2 Updates */

/* Tireless Employee Section */
.tireless-employee {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 6rem 10%;
}
.tireless-employee .section-header h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 2rem;
}
.employee-content {
    max-width: 800px;
    margin: 0 auto;
}
.hook-text {
    font-size: 1.75rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    font-weight: 500;
}
.sub-hook {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 3rem;
}
.employee-cta {
    display: flex;
    justify-content: center;
}

/* Limitless Possibilities */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}
.feature-list li:last-child {
    border-bottom: none;
}

.contact-layout-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
}

.process-flow-container {
    width: 100%;
    max-width: 1100px;
    padding: 2rem 0;
    text-align: center;
}
.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 5px;
    margin-bottom: 1.5rem;
}
.process-step {
    flex: 1;
    position: relative;
    cursor: pointer;
}
.step-chevron {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%, 8% 50%);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.process-step:first-child .step-chevron {
    clip-path: polygon(0% 0%, 92% 0%, 100% 50%, 92% 100%, 0% 100%);
}
.process-step:last-child .step-chevron {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 8% 50%);
}
.process-step:hover .step-chevron {
    background: var(--primary-dark);
    transform: translateY(-3px);
    z-index: 10;
}
.process-details-box {
    background: var(--light);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 12px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
    transition: opacity 0.2s ease;
    box-shadow: var(--shadow-sm);
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Hook Section */
.hero-hook {
    background: var(--light);
    padding: 4rem 10%;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.hook-title {
    font-size: 2.2rem;
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 1rem;
}
.hook-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
}
