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

:root {
    --primary-color: #032e25;
    --secondary-color: #e4ca7d;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(3, 46, 37, 0.08);
    --shadow-hover: 0 8px 30px rgba(3, 46, 37, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-color);
}

.logo-image {
    height: 45px;
    width: auto;
}

.logo-image-footer {
    height: 50px;
    width: auto;
}

.logo-icon {
    font-size: 2rem;
    color: var(--secondary-color);
}

.nav .logo-icon {
    color: var(--primary-color);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--text-light);
}

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

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

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

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #054438;
    transform: translateY(-2px);
}

.btn-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.btn-large:hover {
    background: #054438;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #054438 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(228, 202, 125, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
    font-weight: 700;
}

.title-main {
    color: var(--white);
}

.title-accent {
    display: block;
    color: var(--secondary-color);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.hero-description strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Hero Stats Container - Static Design */
.hero-stats-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-stat-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-stat-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    flex-shrink: 0;
}

.stat-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.stat-content {
    flex: 1;
}

.stat-title {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-cta {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-note {
    margin-top: 0.75rem;
    margin-left: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Problems Section */
.problems {
    padding: 100px 0 80px;
    background: var(--bg-light);
    position: relative;
    z-index: 10;
}

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

.problem-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

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

.problem-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.problem-card h3 {
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

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

.problem-solution {
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-light);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.problem-solution strong {
    color: var(--secondary-color);
}

/* Services Section */
.services {
    padding: 80px 0;
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--bg-light);
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    margin-bottom: 1.5rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-icon img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

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

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* How We Work */
.how-we-work {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.work-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.step-number {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.work-step h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.work-step h4 {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.work-step ul {
    list-style: none;
    padding: 0;
}

.work-step li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.work-step li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Target Audience */
.target-audience {
    padding: 80px 0;
}

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

.target-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.target-requirements {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

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

.target-requirements ul {
    list-style: none;
    padding: 0;
}

.target-requirements li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.target-note {
    padding: 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 12px;
    line-height: 1.7;
    margin-top: 2rem;
}

.target-note strong {
    color: var(--secondary-color);
}

.target-note em {
    color: var(--secondary-color);
    font-style: normal;
    font-weight: 600;
}

.data-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 20px;
}

.flow-item {
    text-align: center;
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    flex: 1;
    max-width: 150px;
}

.flow-item.highlight {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.flow-label {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin: 0 1rem;
}

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

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

.contact h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-method {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.method-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.method-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.method-value {
    font-size: 1.2rem;
    font-weight: 600;
}

.cta-box {
    background: var(--white);
    color: var(--text-dark);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-box h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.cta-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.cta-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

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

.footer-section a:hover {
    color: var(--secondary-color);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

    .nav-links a:not(.btn-primary) {
        display: none;
    }

    .hero-container,
    .target-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

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

    .hero-stats-container {
        padding: 2rem;
        gap: 1.25rem;
    }

    .hero-stat-card {
        padding: 1.25rem;
    }

    h2 {
        font-size: 2rem;
    }

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

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

    .data-flow {
        flex-direction: column;
        gap: 1.5rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .flow-item {
        max-width: 200px;
    }

    .flow-logo {
        height: 100px;
    }
}

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

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .hero-stats-container {
        padding: 1.5rem;
    }

    .hero-stat-card {
        padding: 1rem;
        gap: 1rem;
    }

    .stat-icon img {
        width: 45px;
        height: 45px;
    }

    .stat-title {
        font-size: 0.9rem;
    }

    .stat-value {
        font-size: 1.1rem;
    }

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

    h2 {
        font-size: 1.75rem;
    }

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

