/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

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

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

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

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #667eea;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #718096;
    margin-top: 0.25rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.primary-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.secondary-button {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-animation {
    position: relative;
    width: 300px;
    height: 300px;
}

.ai-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #667eea;
    opacity: 0.6;
}

.ai-circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite ease-in-out;
}

.ai-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite ease-in-out 0.5s;
}

.ai-circle:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite ease-in-out 1s;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

/* Value Proposition Section */
.value-prop {
    padding: 80px 0;
    background: white;
}

.value-prop h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2d3748;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.value-item p {
    color: #718096;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #718096;
    margin-bottom: 3rem;
}

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

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

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

.service-card.featured {
    border: 2px solid #667eea;
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

.service-description {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.service-focus {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    font-style: italic;
    color: #718096;
    margin-bottom: 1.5rem;
}

.service-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.about-text p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.founder-profile {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #667eea;
}

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

.founder-text {
    order: 1;
}

.founder-image {
    order: 2;
    text-align: center;
}

.tony-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #667eea;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

.founder-profile h3 {
    color: #2d3748;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-profile p {
    color: #4a5568;
    margin-bottom: 1rem;
}

.linkedin-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.linkedin-link:hover {
    color: #5a67d8;
    border-bottom-color: #5a67d8;
    transform: translateY(-1px);
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.about-stat-label {
    display: block;
    font-size: 0.875rem;
    color: #718096;
    margin-top: 0.25rem;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.tech-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-text p {
    color: #e2e8f0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    background: #667eea;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.contact-form-container {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.button-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: #a0aec0;
}

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

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.footer-section a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #e2e8f0;
    }

    .cta-button {
        margin-top: 1rem;
        width: 80%;
        text-align: center;
        border-bottom: none;
    }

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

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

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

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        justify-content: center;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .founder-text {
        order: 2;
    }

    .founder-image {
        order: 1;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .tech-stack {
        grid-template-columns: 1fr;
    }
}

/* Hero Proof Point */
.hero-proof {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.proof-label {
    color: #667eea;
    font-weight: 600;
    font-size: 0.875rem;
}

.proof-text {
    color: #e2e8f0;
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background: #f7fafc;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.featured-project {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-header {
    margin-bottom: 2rem;
}

.project-title h3 {
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.project-link {
    color: #2d3748;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.project-link:hover {
    color: #667eea;
    transform: translateY(-1px);
}

.project-link::after {
    content: ' 🔗';
    font-size: 0.8em;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-link:hover::after {
    opacity: 1;
}

.project-subtitle {
    font-size: 1.125rem;
    color: #718096;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.project-overview {
    margin: 2rem 0;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 8px;
}

.project-challenge h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.project-challenge p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #4a5568;
}

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

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-card p {
    color: #718096;
    line-height: 1.5;
}

.tech-stack-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 8px;
}

.tech-stack-section h4 {
    color: #2d3748;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

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

.tech-category h5 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.tech-category ul {
    list-style: none;
    padding: 0;
}

.tech-category li {
    padding: 0.5rem 0;
    color: #718096;
    border-bottom: 1px solid #e2e8f0;
}

.tech-category li:last-child {
    border-bottom: none;
}

.project-results {
    margin: 3rem 0;
    text-align: center;
}

.project-results h4 {
    color: #2d3748;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.result-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
    display: block;
}

.result-label {
    color: #718096;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.testimonial {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-left: 4px solid #667eea;
    border-radius: 8px;
}

.testimonial blockquote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #2d3748;
    margin: 0 0 1rem 0;
    font-style: italic;
}

.testimonial cite {
    color: #718096;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-tier-example {
    margin: 3rem 0;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 8px;
    border: 2px solid #667eea;
}

.service-tier-example h4 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.tier-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.tier-feature {
    color: #2d3748;
    font-size: 0.875rem;
    padding: 0.5rem 0;
}

.demo-cta {
    text-align: center;
    margin: 3rem 0 2rem 0;
    padding: 2rem;
    background: white;
    border: 2px solid #667eea;
    border-radius: 12px;
}

.demo-cta h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.demo-cta p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.demo-button {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #667eea;
}

.demo-button:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.portfolio-cta {
    text-align: center;
    margin-top: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    color: white;
}

.portfolio-cta h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.portfolio-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Responsive Design for Portfolio */
@media (max-width: 768px) {
    .featured-project {
        padding: 2rem 1.5rem;
    }

    .project-tags {
        justify-content: center;
    }

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

    .tech-categories {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tier-features {
        grid-template-columns: 1fr;
    }
}

/* Consulting Services Section */
.consulting-services {
    padding: 6rem 0;
    background: #f7fafc;
}

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

.consulting-header h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.consulting-subtitle {
    font-size: 1.125rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

.consulting-intro {
    margin-bottom: 4rem;
    text-align: center;
}

.consultant-credentials h3 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.consultant-credentials p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.credentials-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.credential {
    text-align: center;
}

.credential-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.credential-label {
    display: block;
    font-size: 0.875rem;
    color: #718096;
    font-weight: 500;
}

.consulting-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.consulting-package {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.consulting-package:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.consulting-package.featured {
    border: 2px solid #667eea;
    transform: scale(1.05);
}

.consulting-package.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-header h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
}

.package-price span {
    font-size: 1rem;
    color: #718096;
    font-weight: normal;
}

.package-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-align: center;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.package-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.package-ideal {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-align: center;
}

.consulting-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consulting-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.consulting-testimonials {
    margin-bottom: 4rem;
}

.consulting-testimonials h3 {
    text-align: center;
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 2rem;
}

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

.consulting-testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.consulting-testimonial blockquote {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0 0 1rem 0;
    font-style: italic;
}

.consulting-testimonial cite {
    color: #667eea;
    font-size: 0.875rem;
    font-weight: 600;
}

.consulting-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.consulting-cta h3 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.consulting-cta p {
    font-size: 1.125rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.benefit {
    color: #667eea;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Responsive Design for Consulting Section */
@media (max-width: 768px) {
    .consulting-packages {
        grid-template-columns: 1fr;
    }

    .consulting-package.featured {
        transform: none;
    }

    .consulting-package.featured:hover {
        transform: translateY(-4px);
    }

    .credentials-highlights {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .consulting-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Portfolio Teaser Section */
.portfolio-teaser {
    padding: 6rem 0;
    background: white;
}

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

.teaser-content h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.teaser-content > p {
    font-size: 1.125rem;
    color: #718096;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.project-previews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-preview {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.project-preview h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.project-preview p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.preview-stats {
    color: #718096;
    font-size: 0.875rem;
    font-weight: 500;
}

.preview-stats span {
    color: #667eea;
}

.teaser-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.portfolio-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.portfolio-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.demo-link {
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    border: 2px solid #667eea;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.demo-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .project-previews {
        grid-template-columns: 1fr;
    }

    .teaser-cta {
        flex-direction: column;
        align-items: center;
    }
}

/* Portfolio Page Styles */
.portfolio-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    margin-top: 70px;
}

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

.portfolio-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.portfolio-hero-subtitle {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-stat {
    text-align: center;
}

.portfolio-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.portfolio-stat .stat-label {
    display: block;
    font-size: 0.875rem;
    color: #a0aec0;
}

.portfolio-overview {
    padding: 6rem 0;
    background: white;
}

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

.overview-content h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.overview-content p {
    font-size: 1.125rem;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 3rem;
}

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

.capability {
    text-align: center;
    padding: 2rem 1rem;
}

.capability-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.capability h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.capability p {
    color: #718096;
    line-height: 1.5;
}

.featured-projects {
    padding: 4rem 0;
    background: #f7fafc;
}

.service-tier-showcase {
    margin: 4rem 0;
    padding: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-tier-showcase h2 {
    text-align: center;
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.service-tier-showcase p {
    text-align: center;
    color: #718096;
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

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

.tier-project {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #667eea;
}

.tier-project h4 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-align: center;
}

.portfolio-final-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    color: white;
}

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

.portfolio-final-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.125rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .primary-button,
.cta-buttons .secondary-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-buttons .primary-button {
    background: white;
    color: #667eea;
    border: 2px solid white;
}

.cta-buttons .primary-button:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.cta-buttons .secondary-button {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .secondary-button:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* Responsive Design for Portfolio Page */
@media (max-width: 768px) {
    .portfolio-hero h1 {
        font-size: 2.5rem;
    }

    .portfolio-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .tier-comparison {
        grid-template-columns: 1fr;
    }

    .portfolio-final-cta {
        padding: 3rem 1.5rem;
    }

    .portfolio-final-cta h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}