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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 16px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: #111827;
}

h3 {
    font-size: 1.5rem;
    color: #374151;
}

p {
    line-height: 1.5;
    margin-bottom: 16px;
    color: #4b5563;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #111827;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta-secondary {
    text-decoration: none;
    color: #3b82f6;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-cta-secondary:hover {
    background: #eff6ff;
}

.nav-cta-primary {
    text-decoration: none;
    background: #3b82f6;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.nav-cta-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: #374151;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: #14b8a6;
    color: white;
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.2);
}

.btn-secondary:hover {
    background: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
}

.btn.large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 120px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Dashboard Preview */
.dashboard-preview {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    transition: transform 0.3s ease;
}

.dashboard-preview:hover {
    transform: scale(1.02);
}

.dashboard-header {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.dashboard-user {
    font-size: 0.875rem;
    opacity: 0.9;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #e5e7eb;
}

.stat-card {
    background: white;
    padding: 24px 16px;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-content {
    padding: 24px;
}

.recent-jobs h4 {
    font-size: 1rem;
    color: #111827;
    margin-bottom: 16px;
}

.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.job-customer {
    font-weight: 600;
    color: #111827;
    font-size: 0.875rem;
}

.job-address {
    color: #6b7280;
    font-size: 0.75rem;
}

.job-status {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
}

.job-status.scheduled {
    background: #dbeafe;
    color: #1e40af;
}

.job-status.in-progress {
    background: #d1fae5;
    color: #065f46;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Problem Section */
.problem-section {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.problem-content > p {
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.problem-item {
    background: #fef2f2;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #fecaca;
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.problem-item h3 {
    font-size: 1.125rem;
    color: #374151;
    margin: 0;
}

.problem-conclusion {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #dc2626;
    font-weight: 600;
}

/* Solution Section */
.solution-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.solution-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.solution-intro {
    font-size: 1.25rem;
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 24px;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.feature-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    color: #111827;
    margin-bottom: 12px;
}

.feature-card p {
    color: #6b7280;
    margin: 0;
}

/* Comparison Section */
.comparison-section {
    background: #ffffff;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.comparison-card {
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.comparison-card.diy {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.comparison-card.franchise {
    background: #fffbeb;
    border: 2px solid #fed7aa;
}

.comparison-card.us {
    background: #f0fdf4;
    border: 2px solid #bbf7d0;
    transform: scale(1.05);
}

.comparison-card:hover {
    transform: translateY(-4px);
}

.comparison-card.us:hover {
    transform: translateY(-4px) scale(1.05);
}

.comparison-card h3 {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.comparison-list {
    list-style: none;
    text-align: left;
}

.comparison-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
}

.comparison-list.negative li::before {
    content: '❌';
    position: absolute;
    left: 0;
}

.comparison-list.positive li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

/* Promise Section */
.promise-section {
    background: linear-gradient(135deg, #fefcbf 0%, #fef3c7 100%);
}

.promise-intro {
    text-align: center;
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.promise-item {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.promise-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.promise-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.promise-item h3 {
    color: #111827;
    margin-bottom: 8px;
}

.promise-item p {
    color: #6b7280;
    margin: 0;
}

/* Services Section */
.services-section {
    background: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.service-card h3 {
    color: #111827;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.service-card p {
    color: #6b7280;
    margin: 0;
    font-size: 0.875rem;
}

/* Process Section */
.process-section {
    background: white;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.step-card {
    background: #f8fafc;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #e2e8f0;
    min-width: 250px;
    flex: 1;
    max-width: 300px;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: #3b82f6;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-block;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step-card h3 {
    color: #111827;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.step-card p {
    color: #6b7280;
    margin: 0;
}

.step-arrow {
    font-size: 2rem;
    color: #3b82f6;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.stars {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #fbbf24;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #111827;
    text-align: right;
}

/* Community Section */
.community-section {
    background: white;
}

.community-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.business-types {
    text-align: center;
    margin-top: 48px;
}

.business-types h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 24px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.type-item {
    background: #f3f4f6;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
}

.type-item:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Eco Section */
.eco-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.eco-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.eco-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.eco-item {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #d1fae5;
}

.eco-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.eco-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.eco-item h3 {
    color: #111827;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.faq-item {
    background: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-item h3 {
    color: #111827;
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.faq-item p {
    color: #4b5563;
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    text-align: center;
}

.cta-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
}

.cta-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e40af;
    font-style: italic;
}

/* Trust Section */
.trust-section {
    background: #f8fafc;
    text-align: center;
}

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

.trust-content p {
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.trust-conclusion {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e40af;
}

/* Footer */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.footer-section p {
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 32px 24px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .problem-grid,
    .solution-features,
    .promise-grid,
    .services-grid,
    .eco-features,
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.875rem;
    }

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

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

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-visual {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.nav-cta-primary:focus,
.nav-cta-secondary:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .feature-card,
    .service-card,
    .testimonial-card,
    .step-card,
    .promise-item,
    .eco-item {
        border: 2px solid #374151;
    }
}