:root {
    --primary: #0e9f6e;
    --secondary: #3f83f8;
    --text: #1e293b;
    --light-bg: #f0fdf4;
    --muted: #64748b;
    --spacing: clamp(0.75rem, 3vw, 1.5rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing);
}

/* ===== Header & Navigation ===== */


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: calc(var(--spacing) * 2);
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: calc(var(--spacing) * 1.5);
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontally */
    text-align: center;
    /* Center text */
    max-width: 800px;
    gap: calc(var(--spacing) * 1.5);
    padding: calc(var(--spacing) * 2) 0;
    margin: 0 auto var(--spacing) auto;
    /* Center the block itself */
}

.hero h1 {
    margin-bottom: calc(var(--spacing) * 0.5);
}

.hero p {
    margin-bottom: calc(var(--spacing) * 1);
}

.hero-buttons {
    margin-top: var(--spacing);
    display: flex;
    gap: 1rem;
}

/* ===== Typography ===== */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: var(--spacing);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin: 0 0 calc(var(--spacing) * 2);
    text-align: center;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.75rem);
    margin: 0 0 var(--spacing);
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 0.5rem;
}

p {
    max-width: 65ch;
    margin-bottom: var(--spacing);
}

.highlight {
    color: var(--primary);
}

/* ===== Buttons ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    width: fit-content;
    max-width: 100%;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(14, 159, 110, 0.15);
}

.cta-button:hover {
    background-color: #047857;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(14, 159, 110, 0.2);
}

.justify-content-center {
    display: flex;
    justify-content: center;
}

/* ===== Section Layout ===== */
section {
    padding: calc(var(--spacing) * 4) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

section:last-of-type {
    border-bottom: none;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ===== Card Components ===== */
.card-base {
    background-color: var(--light-bg);
    padding: calc(var(--spacing) * 1.5);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.card-base:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(14, 159, 110, 0.1);
}

/* ===== Services Section ===== */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(var(--spacing) * 2);
    margin: calc(var(--spacing) * 2) 0;
}

.service-card {
    background-color: var(--light-bg);
    padding: calc(var(--spacing) * 1.5);
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(14, 159, 110, 0.1);
}

.service-details {
    margin-top: 1rem;
}

.service-details ul {
    padding-left: 1.2rem;
    margin-bottom: var(--spacing);
}

.service-details li {
    margin-bottom: 0.5rem;
}

.service-result {
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.service-cta {
    margin-top: calc(var(--spacing) * 3);
    text-align: center;
}

/* ===== Proof Section ===== */
.proof-section {
    margin-top: calc(var(--spacing) * 3);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--spacing) * 2);
    margin: calc(var(--spacing) * 2) 0;
}

.quote-card {
    background-color: var(--light-bg);
    padding: calc(var(--spacing) * 1.5);
    border-radius: 8px;
    position: relative;
    transition: all 0.2s ease;
}

.quote-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(14, 159, 110, 0.1);
}

.quote-card:before {
    content: '"';
    position: absolute;
    top: -0.5rem;
    left: 1rem;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
}

.quote-content {
    position: relative;
    z-index: 1;
}

/* ===== Metrics Grid ===== */
.metrics-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: calc(var(--spacing) * 2);
    margin: calc(var(--spacing) * 2) 0;
}

.metric-item {
    text-align: center;
    min-width: 150px;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-text {
    font-size: 0.9rem;
    color: var(--muted);
}

/* ===== Industries Section ===== */
.industries-section {
    margin-top: calc(var(--spacing) * 3);
    text-align: center;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: calc(var(--spacing) * 1.5);
    margin: calc(var(--spacing) * 2) 0;
}

.industry-item {
    text-align: center;
    background-color: var(--light-bg);
    padding: calc(var(--spacing) * 1.5);
    border-radius: 8px;
    min-width: 140px;
    transition: all 0.2s ease;
}

.industry-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(14, 159, 110, 0.1);
}

.industry-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.industry-name {
    font-weight: 600;
    color: var(--text);
}

/* ===== Tools Section ===== */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: calc(var(--spacing) * 2);
    margin: calc(var(--spacing) * 2) 0;
    justify-items: center;
    align-items: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    transition: all 0.2s ease;
}

.logo-item:hover {
    transform: translateY(-3px);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ===== Approach Section ===== */
.approach-wrapper {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.approach-wrapper h3 {
    margin: calc(var(--spacing) * 2) 0 var(--spacing);
    text-align: center;
    display: block;
}

.approach-list {
    margin: calc(var(--spacing) * 1.5) 0;
    padding-left: 1.5rem;
    display: inline-block;
    text-align: left;
}

.approach-list li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

/* ===== Footer ===== */
footer {
    padding: calc(var(--spacing) * 2) 0;
    font-size: 0.875rem;
    color: var(--muted);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: var(--spacing);
}

.footer-legal {
    font-size: 0.75rem;
    line-height: 1.5;
}

.footer-legal p {
    margin-bottom: calc(var(--spacing) * 0.5);
}

/* ===== Utility Classes ===== */
.centered-heading {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.centered-content {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

/* ===== Responsive Design ===== */
@media (max-width: 900px) {
    .services {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        width: calc(100% - (var(--spacing) * 2));
        margin: 0 var(--spacing);
        padding: var(--spacing);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 100;
        border-radius: 8px;
    }

    .nav-links.active a {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links.active a:last-child {
        border-bottom: none;
    }

    .footer-main {
        flex-direction: column;
        gap: var(--spacing);
        text-align: center;
        align-items: center;
    }

    .hero {
        align-items: center;
        text-align: center;
    }
}