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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
.header {
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0 24px;
    border-bottom: 4px solid #16a34a;
    background-color: #000000;
    position: relative;
    z-index: 50;
}

.logo-container {
    text-decoration: none;
    color: inherit;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-box {
    width: 48px;
    height: 48px;
    background-color: #16a34a;
    border: 4px solid #ffffff;
    transform: rotate(3deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 0px 0px #ffffff;
}

.logo-text {
    color: #000000;
    font-weight: 900;
    font-size: 20px;
    transform: rotate(-3deg);
}

.logo-title {
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -0.025em;
    transform: skewX(-6deg);
}

.nav {
    margin-left: auto;
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
    color: #ffffff;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #16a34a;
    border-bottom-color: #16a34a;
}

/* Main Content */
.main {
    flex: 1;
}

/* Hero Section */
.hero {
    width: 100%;
    padding: 80px 0 160px;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 25%, rgba(240, 82, 36, 0.1) 25%, rgba(240, 82, 36, 0.1) 50%, transparent 50%, transparent 75%, rgba(240, 82, 36, 0.1) 75%);
    background-size: 20px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #16a34a;
    color: #000000;
    font-weight: 900;
    font-size: 18px;
    padding: 12px 24px;
    border: 4px solid #ffffff;
    box-shadow: 6px 6px 0px 0px #ffffff;
    transform: rotate(1deg);
    margin-bottom: 24px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1;
}

.title-line-1 {
    display: block;
    transform: skewY(-1deg);
}

.title-line-2 {
    display: block;
    color: #16a34a;
    transform: skewY(1deg);
    -webkit-text-stroke: 3px #16a34a;
    text-stroke: 3px #16a34a;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.hero-description {
    max-width: 800px;
    margin: 0 auto;
}

.hero-description p {
    font-size: 20px;
    font-weight: 700;
    color: #d1d5db;
    line-height: 1.4;
    border-left: 8px solid #16a34a;
    padding-left: 24px;
    text-align: left;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 20px;
    padding: 24px 48px;
    border: 4px solid;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
}

.btn-primary {
    background-color: #16a34a;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 8px 8px 0px 0px #ffffff;
}

.btn-primary:hover {
    background-color: #15803d;
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0px 0px #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #16a34a;
    border-color: #16a34a;
    box-shadow: 8px 8px 0px 0px #16a34a;
}

.btn-secondary:hover {
    background-color: #16a34a;
    color: #000000;
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0px 0px #16a34a;
}

.btn-black {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    box-shadow: 8px 8px 0px 0px #000000;
}

.btn-black:hover {
    background-color: #374151;
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0px 0px #000000;
}

.btn-outline {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
    box-shadow: 8px 8px 0px 0px #000000;
}

.btn-outline:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0px 0px #000000;
}

/* About Section */
.about {
    width: 100%;
    padding: 80px 0 128px;
    background-color: #16a34a;
    color: #000000;
}

/* Header Section - WHO WE ARE with Image */
.about-header-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.about-header-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Details Section - Expertise and Clients Side by Side */
.about-details-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.section-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1;
    transform: skewX(-3deg);
}

.section-divider {
    width: 128px;
    height: 8px;
    background-color: #000000;
    transform: skewX(12deg);
}

.section-description {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
}

/* Subsection Styles */
.expertise-section,
.clients-section {
    margin: 32px 0;
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.1);
    border: 3px solid #000000;
    box-shadow: 4px 4px 0px 0px #000000;
    transform: skewX(-1deg);
}

.subsection-title {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    transform: skewX(1deg);
    color: #000000;
}

.subsection-description {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #000000;
    transform: skewX(1deg);
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #000000;
    color: #ffffff;
    padding: 16px;
    border: 4px solid #000000;
    box-shadow: 4px 4px 0px 0px #000000;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translate(4px, 4px);
    box-shadow: 2px 2px 0px 0px #000000;
}

.feature-item i {
    width: 32px;
    height: 32px;
    color: #16a34a;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 900;
    font-size: 18px;
}

.about-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border: 4px solid #000000;
    box-shadow: 8px 8px 0px 0px #000000;
    transition: all 0.3s ease;
    transform: rotate(1deg);
}

.about-image:hover {
    transform: rotate(1deg) translate(4px, 4px);
    box-shadow: 4px 4px 0px 0px #000000;
}

/* Card Styles */
.card {
    padding: 24px;
    text-align: center;
    border: 4px solid;
    transition: all 0.3s ease;
}

.card.black {
    background-color: #000000;
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 6px 6px 0px 0px #ffffff;
}

.card.white {
    background-color: #ffffff;
    color: #000000;
    border-color: #000000;
    box-shadow: 6px 6px 0px 0px #000000;
}

.card.blue {
    background-color: #16a34a;
    color: #000000;
    border-color: #000000;
    box-shadow: 6px 6px 0px 0px #000000;
}

.card:hover {
    transform: translate(4px, 4px);
}

.card.black:hover {
    box-shadow: 3px 3px 0px 0px #ffffff;
}

.card.white:hover {
    box-shadow: 3px 3px 0px 0px #000000;
}

.card.blue:hover {
    box-shadow: 3px 3px 0px 0px #000000;
}

.card i {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
}

.card.black i {
    color: #16a34a;
}

.card.white i {
    color: #16a34a;
}

.card.blue i {
    color: #ffffff;
}

.card h3 {
    font-weight: 900;
    font-size: 18px;
    margin-bottom: 8px;
}

.card p {
    font-weight: 700;
    font-size: 14px;
}

/* Services Section */
.services {
    width: 100%;
    padding: 80px 0 128px;
    background-color: #000000;
}

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

.section-header-center {
    text-align: center;
    margin-bottom: 64px;
}

.section-header-center .section-title {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    transform: skewX(-2deg);
}

.section-divider-center {
    width: 192px;
    height: 12px;
    background-color: #16a34a;
    margin: 0 auto;
    transform: skewX(12deg);
    margin-bottom: 24px;
}

.section-divider-center-black {
    width: 128px;
    height: 12px;
    background-color: #000000;
    margin: 0 auto;
    transform: skewX(-12deg);
    margin-bottom: 24px;
}

.section-header-center .section-description {
    font-size: 20px;
    font-weight: 700;
    color: #d1d5db;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background-color: #16a34a;
    color: #000000;
    padding: 32px;
    border: 4px solid #ffffff;
    box-shadow: 8px 8px 0px 0px #ffffff;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translate(8px, 8px);
    box-shadow: 4px 4px 0px 0px #ffffff;
}

.service-card i {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: #000000;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 16px;
    transform: skewX(-1deg);
}

.service-card p {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 24px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bullet {
    width: 8px;
    height: 8px;
    background-color: #000000;
    transform: rotate(45deg);
}

.service-feature span {
    font-weight: 900;
    font-size: 14px;
}

/* Business Model Section */
.business-model {
    width: 100%;
    padding: 80px 0 128px;
    background-color: #ffffff;
    color: #000000;
}

.business-model-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.business-model-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.business-model-icon {
    width: 96px;
    height: 96px;
    background-color: #16a34a;
    border: 4px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(3deg);
    box-shadow: 6px 6px 0px 0px #000000;
}

.business-model-icon i {
    width: 48px;
    height: 48px;
    color: #000000;
    transform: rotate(-3deg);
}

.business-model-title {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1;
    transform: skewX(2deg);
}

.business-model-divider {
    width: 128px;
    height: 12px;
    background-color: #16a34a;
    transform: skewX(-12deg);
}

.business-model-description {
    font-size: 20px;
    font-weight: 700;
    color: #374151;
    line-height: 1.4;
}

.business-model-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* Team Section */
.team {
    width: 100%;
    padding: 80px 0 128px;
    background-color: #000000;
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background-color: #16a34a;
    color: #000000;
    padding: 32px;
    text-align: center;
    border: 4px solid #ffffff;
    box-shadow: 8px 8px 0px 0px #ffffff;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translate(8px, 8px);
    box-shadow: 4px 4px 0px 0px #ffffff;
}

.team-avatar {
    width: 128px;
    height: 128px;
    background-color: #000000;
    border: 4px solid #ffffff;
    margin: 0 auto 24px;
    transform: rotate(3deg);
    box-shadow: 6px 6px 0px 0px #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar span {
    color: #16a34a;
    font-weight: 900;
    font-size: 32px;
    transform: rotate(-3deg);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: rotate(-3deg);
    border-radius: 4px;
}

.team-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
    transform: skewX(-1deg);
}

.team-role {
    background-color: #000000;
    color: #ffffff;
    padding: 8px 16px;
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 16px;
    display: inline-block;
    transform: skewX(3deg);
}

.team-description {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 16px;
}

.team-credentials {
    background-color: #000000;
    color: #ffffff;
    padding: 12px;
    font-weight: 900;
    font-size: 14px;
    transform: skewX(-2deg);
}

/* Contact Section */
.contact {
    width: 100%;
    padding: 80px 0 128px;
    background-color: #16a34a;
    color: #000000;
}

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

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.contact-card {
    background-color: #000000;
    color: #ffffff;
    padding: 32px;
    text-align: center;
    border: 4px solid #000000;
    box-shadow: 8px 8px 0px 0px #000000;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translate(8px, 8px);
    box-shadow: 4px 4px 0px 0px #000000;
}

.contact-card i {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: #16a34a;
}

.contact-card h3 {
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 16px;
    transform: skewX(-1deg);
}

.contact-card a {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #16a34a;
}

.contact-card span {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
}

.contact-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.contact-cta-text h3 {
    font-size: 32px;
    font-weight: 900;
    transform: skewX(-2deg);
}

.contact-cta-text p {
    font-size: 20px;
    font-weight: 700;
    max-width: 600px;
    margin: 0 auto;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

/* Footer */
.footer {
    background-color: #000000;
    border-top: 4px solid #16a34a;
    padding: 32px 0;
}

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

.footer-copyright {
    font-weight: 900;
    color: #ffffff;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-link {
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: #16a34a;
}

.footer-link i {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-header-section,
    .about-details-section,
    .business-model-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        height: auto;
        padding: 16px;
        gap: 16px;
    }
    
    .nav {
        margin-left: 0;
        gap: 16px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        font-size: 16px;
        padding: 16px 32px;
    }
    
    .about-image {
        max-width: 300px;
    }
    
    .about-header-section {
        margin-bottom: 40px;
    }
    
    .business-model-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 40px 0 80px;
    }
    
    .about,
    .services,
    .business-model,
    .team,
    .contact {
        padding: 40px 0 64px;
    }
    
    .about-header-section {
        margin-bottom: 32px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-description p {
        font-size: 18px;
    }
    
    .section-description {
        font-size: 16px;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #16a34a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #15803d;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}