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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --accent-orange: #f59e0b;
    --success-green: #10b981;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Header and Navigation */
header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-robot {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.logo-main {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-medium);
    font-style: italic;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-button.secondary {
    background-color: var(--text-medium);
}

.cta-button.secondary:hover {
    background-color: var(--text-dark);
}

/* Hero Sections */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

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

.hero-robot img {
    width: 100%;
    max-width: 400px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

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

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-align: left;
}

.hero-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
    text-align: left;
}

.page-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.assessment-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    max-width: 800px;
}

/* Problem Section */
.problems {
    background-color: var(--bg-light);
}

.problems h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.problem-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

/* Solution Section */
.solution {
    text-align: center;
}

.solution h2 {
    text-align: center;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.feature {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--success-green);
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Example Section */
.example {
    background-color: var(--bg-light);
}

.example h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.example-story {
    max-width: 900px;
    margin: 0 auto;
}

.example-intro {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.before-after {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.before, .after {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.before h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.after h3 {
    color: var(--success-green);
    margin-bottom: 1rem;
}

.before ul, .after ul {
    list-style-position: inside;
    color: var(--text-medium);
}

.before li, .after li {
    margin-bottom: 0.5rem;
}

.example-cta {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 2rem;
}

/* Who We Help */
.who-we-help {
    text-align: center;
}

.business-types {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.business-tag {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s;
}

.business-tag:hover {
    transform: scale(1.05);
}

/* About Page Styles */
.about-story {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.family-businesses {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    list-style-position: inside;
}

.family-businesses li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.approach-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.approach-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.approach-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-box {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 3rem;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/* Values Section */
.values {
    background-color: var(--bg-light);
}

.values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Local Section */
.local-section {
    text-align: center;
    background-color: var(--bg-light);
}

.local-section h2 {
    margin-bottom: 1.5rem;
}

.local-section p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 1rem auto;
    line-height: 1.8;
}

/* Services Page */
.services-detail {
    max-width: 1000px;
    margin: 0 auto;
}

.service-list {
    margin-top: 3rem;
}

.service-item {
    background-color: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.service-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem 2rem;
}

.service-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.service-body {
    padding: 2rem;
}

.service-body p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.service-body ul {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--text-medium);
}

.service-body li {
    margin-bottom: 0.5rem;
}

/* Pricing Philosophy */
.pricing-philosophy {
    background-color: var(--bg-light);
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-principle {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.philosophy-principle h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.philosophy-principle p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

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

.path {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 3px solid var(--primary-color);
}

.path h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.path ul {
    margin: 1rem 0;
    list-style-position: inside;
}

.path li {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.path-best-for {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.paths-note {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid var(--accent-orange);
}

/* Differentiators */
.differentiators {
    background-color: var(--bg-light);
}

.differentiators h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.diff-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.diff-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Assessment/Timeline */
.timeline {
    max-width: 900px;
    margin: 3rem auto;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 3rem;
    border-left: 3px solid var(--border-color);
}

.timeline-item.highlight {
    border-left-color: var(--accent-orange);
}

.timeline-marker {
    position: absolute;
    left: -3rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.timeline-item.highlight .timeline-marker {
    background-color: var(--accent-orange);
    font-size: 1rem;
}

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

.timeline-content h4 {
    color: var(--primary-color);
    margin: 1.5rem 0 0.75rem 0;
}

.timeline-content p, .timeline-content li {
    color: var(--text-medium);
    margin-bottom: 0.75rem;
}

.timeline-content ul, .timeline-content ol {
    margin: 1rem 0 1rem 1.5rem;
}

.timeline-note, .timeline-why {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid var(--primary-color);
}

.timeline-item.highlight .timeline-note,
.timeline-item.highlight .timeline-why {
    border-left-color: var(--accent-orange);
}

.path-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
}

.path-option {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

/* Real Costs Section */
.real-costs {
    background-color: var(--bg-light);
    max-width: 1000px;
    margin: 0 auto;
}

.cost-breakdown {
    margin: 2rem 0;
}

.cost-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.cost-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cost-item ul {
    margin: 1rem 0 1rem 1.5rem;
}

.cost-note {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.cost-philosophy {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.cost-philosophy h3 {
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq {
    max-width: 900px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* Contact Form */
.contact-form-section {
    background-color: var(--bg-light);
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-form-section .section-intro {
    text-align: center;
    margin: 0 auto 3rem auto;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Contact Page Specific */
.contact-info {
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.contact-details h2 {
    margin-bottom: 1.5rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    margin-bottom: 2rem;
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-note {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-note h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    margin-bottom: 2rem;
}

/* Quick Actions */
.quick-actions {
    text-align: center;
}

.quick-actions h2 {
    margin-bottom: 3rem;
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.action-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.action-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.action-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

/* Trust Section */
.trust-section {
    background-color: var(--bg-light);
    text-align: center;
}

.trust-section h2 {
    margin-bottom: 3rem;
}

.trust-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 2rem auto;
}

.trust-step {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 1rem;
}

.trust-step h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.trust-note {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid var(--success-green);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.final-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.final-cta .small-text {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    opacity: 0.85;
}

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

.final-encouragement h2 {
    margin-bottom: 2rem;
}

.final-encouragement p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Assessment Overview */
.assessment-overview {
    max-width: 1000px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem 0;
}

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

.footer-brand {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-robot {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-tagline {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.95rem;
    margin-bottom: 0.75rem !important;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-robot {
        order: -1;
    }

    .hero-robot img {
        max-width: 250px;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
    }

    .hero-note {
        text-align: center;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .section-intro {
        font-size: 1.05rem;
    }

    .problem-grid,
    .solution-features,
    .before-after,
    .paths,
    .diff-grid,
    .action-cards,
    .trust-steps {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .timeline-marker {
        left: -2.5rem;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .timeline-item {
        padding-left: 2.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

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

    .logo-robot {
        width: 40px;
        height: 40px;
    }

    .logo-main {
        font-size: 1rem;
    }

    .logo-tagline {
        font-size: 0.65rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .page-hero {
        padding: 3rem 0;
    }

    section {
        padding: 3rem 0;
    }

    .cta-button.large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .footer-robot {
        width: 50px;
        height: 50px;
    }
}
