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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header Styles */
.header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo-img {
    height: 3.5rem;
    width: auto;
}

.nav {
    display: flex;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-size: 0.875rem;
    transition: color 0.2s;
}

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

.cta-btn {
    background-color: #e38324;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cta-btn:hover {
    background-color: #d97706;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background-color: #374151;
    margin: 2px 0;
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}

.mobile-nav-link {
    text-decoration: none;
    color: #6b7280;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
}

.mobile-cta {
    margin: 1rem 1rem 0;
    width: fit-content;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #111827;
    max-width: 100%;
    word-wrap: break-word;
    hyphens: auto;
    min-height: 240px;
    display: flex;
    align-items: flex-start;
}

.text-gray {
    color: #6b7280;
}

.hero-subtitle h2 {
    font-size: 1.5rem;
    color: #374151;
    margin-bottom: 1rem;
}

.hero-subtitle p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 32rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

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

.btn-primary {
    background-color: #e38324;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.btn-primary.large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-secondary {
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background-color: #f9fafb;
}

.arrow-icon {
    width: 1rem;
    height: 1rem;
}

.hero-image {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orange-circle {
    position: absolute;
    top: -5rem;
    right: -5rem;
    width: 24rem;
    height: 24rem;
    background-color: #e38324;
    border-radius: 50%;
    opacity: 0.9;
}

.hero-img {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
.what-we-do-section {
    padding: 6rem 0;
    background-color: #f9fafb;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 64rem;
    margin: 0 auto;
}

.specialization-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #111827;
}

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

.card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.5rem;
    background-color: rgba(227, 131, 36, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e38324;
}

.card-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.card h4 {
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 0.75rem;
}

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

/* Who We Serve Section */
.who-we-serve-section {
    padding: 6rem 0;
}

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

.serve-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.serve-card h4 {
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

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

/* Secret Weapon Section */
.secret-weapon-section {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.section-content-center {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.section-content-center h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1.5rem;
}

.section-content-center p {
    font-size: 1.125rem;
    color: #6b7280;
}

/* Difference Section */
.difference-section {
    padding: 6rem 0;
}

.difference-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

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

.difference-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.difference-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.difference-icon.positive {
    background-color: rgba(227, 131, 36, 0.1);
    color: #e38324;
}

.difference-icon.negative {
    background-color: #fee2e2;
    color: #dc2626;
}

.difference-icon svg {
    width: 1rem;
    height: 1rem;
}

/* Products Section */
.products-section {
    padding: 6rem 0;
    background-color: #f9fafb;
}

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

.result-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.result-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background-color: rgba(227, 131, 36, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e38324;
}

.result-icon svg {
    width: 2rem;
    height: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
}

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

.contact-tagline h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

.tagline {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 4rem 0 2rem;
}

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

.footer-main {
    max-width: 28rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: #9ca3af;
    font-style: italic;
}

.footer-nav h4 {
    color: #111827;
    margin-bottom: 1.5rem;
}

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

.footer-nav li {
    margin-bottom: 1rem;
}

.footer-nav a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #111827;
}

.footer-cta h4 {
    color: #111827;
    margin-bottom: 1.5rem;
}

.footer-cta p {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-cta-link {
    color: #e38324;
    text-decoration: none;
    font-size: 0.875rem;
    transition: text-decoration 0.2s;
}

.footer-cta-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #6b7280;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.75rem;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 4xl;
    margin: 0 auto;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background-color: #e38324;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.process-step p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.step-quote {
    font-size: 0.875rem;
    color: #9ca3af;
    font-style: italic;
}

/* News/Blog Styles */
.featured-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.section-title {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 2rem;
    text-align: center;
}

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

.featured-article {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.article-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #e38324;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.article-category {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-article h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-article p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.articles-section {
    padding: 4rem 0;
}

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

.article-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.article-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.article-card h3 {
    font-size: 1.125rem;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.btn-outline {
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    width: 100%;
}

.btn-outline:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

.newsletter-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

/* Projects/Portfolio Styles */
.tech-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.tech-badge {
    background-color: rgba(227, 131, 36, 0.1);
    color: #e38324;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.portfolio-section {
    padding: 2rem 0 4rem 0;
}

.portfolio-section .section-header {
    margin-bottom: 3rem;
}

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

.project-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.project-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-header h3 {
    font-size: 1.25rem;
    color: #111827;
    margin: 0;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-badge.active {
    background-color: #d1fae5;
    color: #065f46;
}

.status-badge.beta {
    background-color: #dbeafe;
    color: #1e40af;
}

.status-badge.development {
    background-color: #fef3c7;
    color: #92400e;
}

.project-category {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-features {
    margin-bottom: 1.5rem;
}

.project-features h4 {
    font-size: 0.875rem;
    color: #111827;
    margin-bottom: 0.5rem;
}

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

.feature-tag {
    background-color: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.project-results {
    background-color: rgba(227, 131, 36, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.project-results h4 {
    color: #e38324;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.project-results p {
    color: #374151;
    font-size: 0.875rem;
    margin: 0;
}

.project-actions {
    display: flex;
    gap: 0.75rem;
}

.project-actions .btn-outline {
    flex: 1;
    width: auto;
}

.project-actions .btn-primary {
    flex: 1;
}

.tech-stack-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

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

.tech-item {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    color: #374151;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Project Showcase Cards */
.projects-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.project-showcase-card {
    position: relative;
    background: linear-gradient(135deg, rgba(227, 131, 36, 0.15), rgba(227, 131, 36, 0.08));
    border: 2px solid rgba(227, 131, 36, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(227, 131, 36, 0.2);
}

.project-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-top: 2rem;
}

.project-icon {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e38324;
    border: 2px solid rgba(227, 131, 36, 0.2);
}

.project-icon svg {
    width: 2rem;
    height: 2rem;
    stroke-width: 1.5;
}

.project-info h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.project-info p {
    color: #374151;
    line-height: 1.6;
    font-size: 0.95rem;
}

.project-info strong {
    color: #e38324;
    font-weight: 600;
}

@media (max-width: 768px) {
    .project-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .project-showcase-card {
        padding: 1.5rem;
    }
    
    .project-badge {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Legal Pages */
.legal-section {
    padding: 4rem 0;
}

.legal-content {
    max-width: 4xl;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.25rem;
    color: #111827;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: #374151;
    margin-bottom: 1rem;
}

.legal-content ul {
    color: #374151;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 2rem;
}

.contact-info {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.cookie-settings {
    margin: 1.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav,
    .cta-btn:not(.mobile-cta) {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

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

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

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

    .orange-circle {
        width: 16rem;
        height: 16rem;
        top: -2rem;
        right: -2rem;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-content-center h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        min-height: 120px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

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

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

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

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

    .project-actions {
        flex-direction: column;
    }

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

    .process-steps {
        gap: 2rem;
    }
}