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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #000000;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    text-align: center;
}

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

.hero-header {
    text-align: center;
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    color: #666666;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-divider {
    width: 50px;
    height: 2px;
    background-color: #1a1a1a;
    margin: 0 auto 0;
}

.hero-content-centered {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle-secondary {
    font-size: 18px;
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 400px;
    background: #f8f9fa;
    border: 2px dashed #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #666666;
    font-size: 16px;
    font-weight: 500;
}

.hero-image {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.btn-primary:hover {
    background: #000000;
    border-color: #000000;
}

.btn-secondary {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.btn-outline:hover {
    background: #1a1a1a;
    color: #ffffff;
}

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

.page-header {
    background: #f8f9fa;
    text-align: center;
    padding: 60px 0;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

/* Value Proposition */
.value-proposition {
    background: #ffffff;
}

.value-proposition h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: #f8f9fa;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.benefit-card p {
    color: #666666;
    font-size: 16px;
}

/* Services Preview */
.services-preview {
    background: #f8f9fa;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    color: #666666;
    font-size: 16px;
}

.services-cta {
    text-align: center;
}

/* Services Detailed */
.services-detailed {
    background: #ffffff;
}

.service-detail {
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.service-detail h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail>p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 30px;
}

.service-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    color: #1a1a1a;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.service-outcome {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #1a1a1a;
}

.service-outcome h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.service-outcome p {
    color: #666666;
    margin: 0;
}

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

.process-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.step p {
    color: #666666;
    font-size: 16px;
}

/* Hero About Section */
.hero-about {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0 80px;
}

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

.bio-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.bio-section p {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.portrait-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.portrait-container {
    margin-bottom: 20px;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portrait-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.portrait-note {
    font-size: 14px;
    color: #888888;
    font-style: italic;
    max-width: 300px;
    line-height: 1.4;
    margin: 0;
}

/* About Content */
.about-content {
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.about-text h2,
.about-text-centered h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text p {
    color: #666666;
    margin-bottom: 30px;
    font-size: 16px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    padding: 10px 0;
    color: #1a1a1a;
    position: relative;
    padding-left: 25px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}

.about-stats {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.about-stats h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.stat p {
    color: #666666;
    font-size: 14px;
    font-weight: 500;
}

/* Specialties */
.specialties {
    background: #f8f9fa;
}

.specialties h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.specialty {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.specialty h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.specialty p {
    color: #666666;
    font-size: 16px;
}

/* Contact Section */
.contact-section {
    background: #ffffff;
}

.contact-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    margin-top: 40px;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-info>p {
    color: #666666;
    margin-bottom: 27px;
    font-size: 16px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-method p {
    color: #666666;
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* CTA Section */
.cta-section {
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-section .btn-primary {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #ffffff;
}

.cta-section .btn-primary:hover {
    background: #f0f0f0;
}

@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 28px;
        padding: 0 15px;
    }

    .cta-section p {
        font-size: 16px;
        padding: 0 20px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .cta-section h2 {
        font-size: 24px;
        padding: 0 10px;
        line-height: 1.4;
    }

    .cta-section p {
        font-size: 15px;
        padding: 0 15px;
    }
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-content-centered {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-image-placeholder {
        max-width: 300px;
        height: 300px;
    }

    .hero-image {
        max-width: 300px;
        height: 300px;
    }

    .hero-about {
        padding: 80px 0 60px;
    }

    .hero-about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bio-section {
        text-align: center;
    }

    .bio-section h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .bio-section p {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 10px;
    }

    .portrait-container {
        width: 250px;
        height: 250px;
    }

    .portrait-image {
        width: 100%;
        height: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .contact-info h3 {
        margin-top: 0;
        font-size: 22px;
    }

    .contact-info > p {
        margin-bottom: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .benefits-grid,
    .services-grid,
    .specialties-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card,
    .service-card,
    .specialty {
        padding: 25px 20px;
        margin: 0;
    }

    .service-card h3,
    .benefit-card h3,
    .specialty h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .service-card p,
    .benefit-card p,
    .specialty p {
        font-size: 15px;
        line-height: 1.5;
    }

    /* Force mobile layout for tech stack section */
    .two-column-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        align-items: stretch !important;
        width: 100% !important;
    }

    /* Reorder: Tech stack first, then process */
    .tech-stack-card {
        order: -1 !important;
        padding: 25px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .process-card {
        order: 1 !important;
        padding: 25px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .process-timeline {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .process-step {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        position: relative;
        margin-bottom: 15px;
        width: 100%;
    }

    .process-step:not(:last-child)::after {
        content: "↓";
        position: absolute;
        left: 17.5px;
        transform: translateX(-50%);
        bottom: -20px;
        font-size: 14px;
        color: #1a1a1a;
        opacity: 0.5;
        font-weight: 400;
        line-height: 1;
    }

    .tech-grid {
        width: 100%;
    }

    .tech-row {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 15px !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .tech-item {
        flex: 0 0 auto !important;
        min-width: 100px !important;
        max-width: 120px !important;
        padding: 15px 10px !important;
    }

    .tech-item img {
        width: 50px !important;
        height: 50px !important;
    }

    .tech-item span {
        font-size: 12px !important;
    }

    section {
        padding: 60px 0;
    }

    .contact-form {
        padding: 30px;
    }
}

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

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-subtitle-secondary {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .hero-buttons {
        gap: 12px;
        padding: 0 10px;
    }

    .hero-buttons .btn {
        padding: 14px 20px;
        font-size: 15px;
        min-width: 140px;
    }

    .hero-image-placeholder {
        max-width: 280px;
        height: 280px;
    }

    .hero-image {
        max-width: 280px;
        height: 280px;
    }

    .hero-about {
        padding: 60px 0 40px;
    }

    .bio-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .bio-section p {
        font-size: 15px;
        line-height: 1.6;
        padding: 0 15px;
    }

    .portrait-container {
        width: 220px;
        height: 220px;
    }

    .portrait-note {
        font-size: 13px;
        max-width: 250px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 15px;
    }

    .page-header {
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .service-detail h2,
    .about-text h2,
    .about-text-centered h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .contact-info {
        padding: 0 10px;
    }

    .benefit-card,
    .service-card,
    .specialty {
        padding: 20px 15px;
    }

    section {
        padding: 50px 0;
    }

    .process-card,
    .tech-stack-card {
        padding: 20px;
    }

    .process-card h2,
    .tech-stack-card h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .tech-item {
        padding: 15px;
    }

    .tech-item img {
        width: 60px;
        height: 60px;
    }

    .tech-row {
        gap: 15px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }

    .step-content h3 {
        font-size: 16px;
    }

    .step-content p {
        font-size: 13px;
    }

    .process-timeline {
        gap: 20px;
    }

    .process-step:not(:last-child)::after {
        bottom: -15px;
        font-size: 12px;
        left: 15px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }
}

/* What I Offer Page Styles */

/* Navigation CTA Button */
.nav-cta {
    font-size: 14px;
    padding: 10px 20px;
    margin-left: 20px;
}

/* Hero Section for What I Offer */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0 60px;
    text-align: center;
}

.hero-section h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.hero-section .hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #666666;
    max-width: 900px;
    margin: 0 auto;
}

/* Tab Selection */
.tab-selection {
    background: #ffffff;
    padding: 60px 0 40px;
    border-bottom: 1px solid #e0e0e0;
}

.tab-container {
    display: flex;
    justify-content: center;
    gap: 4px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 6px;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e8e8;
}

.tab-button {
    background: transparent;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #666666;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1;
    text-align: center;
    position: relative;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    user-select: none;
    outline: none;
}

.tab-button:hover {
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.5);
}

.tab-button.active {
    background: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.tab-button:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.tab-button:active {
    transform: translateY(0);
}

/* Intelligent Automations Section */
.intelligent-automations {
    background: #ffffff;
    padding: 80px 0;
}

.intelligent-automations .services-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Custom Systems Section */
.custom-systems {
    background: #ffffff;
    padding: 80px 0;
    display: none;
}

.custom-systems.active {
    display: block;
}

/* Service Card Redesign */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 0;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Service Icon styles removed */

/* Service Content */
.service-content {
    text-align: center;
}

.problem-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.problem-description {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.solution-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.solution-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.solution-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #667eea;
    margin-bottom: 15px;
    font-style: italic;
}

.solution-description {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.perfect-for {
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.5;
}

/* Before/After Workflow */
.workflow-section {
    margin-top: 30px;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
}

.before,
.after {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.before {
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
}

.after {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.before h5,
.after h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.before p,
.after p {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.before p {
    color: #666666;
}

.after p {
    color: #ffffff;
}

.arrow {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    text-align: center;
}

/* Timeline Steps */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.timeline-step {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    border: 2px solid #f0f0f0;
}

.timeline-step .step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #667eea;
    color: #ffffff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.timeline-step p {
    color: #666666;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* Custom Examples */
.custom-examples {
    margin: 30px 0;
    text-align: left;
}

.custom-examples h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

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

.example-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #f0f0f0;
}

.example-item h6 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.example-item p {
    color: #666666;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* Closing Section */
.closing-section {
    background: #f8f9fa;
    padding: 40px 0 80px;
}

.closing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.closing-cta {
    text-align: left;
}

.closing-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 20px;
}

.closing-cta .closing-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 40px;
}

.closing-cta .btn {
    display: inline-block;
}

/* Responsive Design for What I Offer */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 32px;
    }

    .hero-section .hero-subtitle {
        font-size: 18px;
    }

    .hero-section {
        padding: 80px 0 60px;
    }

    .tab-container {
        max-width: 100%;
        margin: 0 15px;
        gap: 2px;
        padding: 4px;
        flex-direction: column;
    }

    .tab-button {
        padding: 12px 20px;
        font-size: 14px;
        font-weight: 600;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }

    .intelligent-automations,
    .custom-systems {
        padding: 60px 0;
    }

    .service-card {
        padding: 30px;
        margin-bottom: 0;
    }

    .before-after {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 15px;
    }

    .before,
    .after {
        padding: 15px 12px;
    }

    .before h5,
    .after h5 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .before p,
    .after p {
        font-size: 13px;
        line-height: 1.4;
    }

    .arrow {
        transform: rotate(90deg);
        font-size: 20px;
        margin: 5px 0;
    }

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

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

    .closing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .closing-cta {
        text-align: center;
    }

    .nav-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 28px;
    }

    .hero-section .hero-subtitle {
        font-size: 16px;
    }

    .hero-section {
        padding: 60px 0 40px;
    }

    .tab-container {
        margin: 0 10px;
        gap: 2px;
        padding: 3px;
        flex-direction: column;
    }

    .tab-button {
        padding: 10px 15px;
        font-size: 13px;
        font-weight: 600;
        white-space: normal;
        line-height: 1.3;
    }

    .service-card {
        padding: 20px;
    }

    .solution-section {
        padding: 20px;
    }

    .before-after {
        padding: 15px;
    }

    .before,
    .after {
        padding: 15px;
    }

    .timeline-step {
        padding: 15px;
    }

    .closing-section h2 {
        font-size: 28px;
    }

    .closing-subtitle {
        font-size: 18px;
    }
}

/* Tech Stack */
.tech-stack {
    background: #f8f9fa;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.process-card,
.tech-stack-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.process-card h2,
.tech-stack-card h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    flex: 1;
}

.process-step:not(:last-child)::after {
    content: "↓";
    position: absolute;
    left: 17.5px;
    transform: translateX(-50%);
    bottom: -20px;
    font-size: 16px;
    color: #1a1a1a;
    opacity: 0.5;
    font-weight: 400;
    line-height: 1;
}

.step-number {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.step-content p {
    color: #666666;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.tech-grid .tech-row {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.tech-grid .tech-row:first-child {
    margin-bottom: 40px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background: #ffffff;
}

.tech-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 12px;
    border-radius: 8px;
}

.tech-item span {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    text-align: center;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.service-card,
.benefit-card,
.specialty {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.benefit-card:hover,
.specialty:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}