/* Base Reset & Typography */
:root {
    --brand-primary: #1B9E77;
    /* Teal Green - 75% usage */
    --brand-secondary: #EA7C65;
    /* Coral - 25% usage */
    --brand-dark: #0f172a;
    /* Dark Navy/Slate for text emphasis */
    --heading: #1B9E77;
    /* Teal for key headlines? Or Dark for readability. User said Teal for specific highlights. */
    --heading-main: #0f172a;
    --text: #334155;
    /* Slate Grey */
    --white: #ffffff;
    --light-bg: #f5fcf9;
    /* Very subtle teal tint */
    --card-bg: #ffffff;
    --border: #e2e8f0;
    --font-main: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--heading-main);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.section {
    padding: 80px 0;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-primary), #147e5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--brand-primary);
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
    border: none;
}

.btn-primary {
    background-color: var(--brand-primary);
    color: var(--white);
    box-shadow: 0 4px 14px 0 rgba(27, 158, 119, 0.3);
}

.btn-primary:hover {
    background-color: #147e5e;
    /* Darker teal */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(27, 158, 119, 0.4);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -0.5px;
}

.logo .dot {
    color: var(--brand-secondary);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--text);
}

.nav-links a:not(.btn):hover {
    color: var(--brand-primary);
}

/* Hero */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: radial-gradient(circle at top right, #f0fdf4, #ffffff);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content .badge {
    display: inline-block;
    padding: 8px 16px;
    background: #e6fffa;
    color: var(--brand-primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(27, 158, 119, 0.1);
}

.hero-content h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 90%;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.hero-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Problems Grid */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.problem-card {
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-primary);
}

.problem-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Benefits Section */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.align-center {
    align-items: center;
}

.col-half {
    flex: 1;
    min-width: 300px;
}

.benefit-list {
    margin-top: 30px;
}

.benefit-list li {
    display: flex;
    margin-bottom: 24px;
    gap: 16px;
}

.check {
    width: 24px;
    height: 24px;
    background: #e6fffa;
    color: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* Funnel Visualization */
.funnel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.funnel-layer {
    background: linear-gradient(135deg, var(--brand-primary), #147e5e);
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(27, 158, 119, 0.2);
}

.layer-1 {
    width: 100%;
    opacity: 0.6;
}

.layer-2 {
    width: 75%;
    opacity: 0.8;
}

.layer-3 {
    width: 50%;
    opacity: 1;
    font-size: 1.2rem;
}

/* Deliverables Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.deliverable-item {
    padding: 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: var(--transition);
}

.deliverable-item:hover {
    border-color: var(--brand-secondary);
}

/* Process Steps */
.process-section h2 {
    color: var(--white);
}

.process-section p {
    color: #f0fdf4;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.step-card h3 {
    color: var(--white);
}

.step-card p {
    color: #e2e8f0;
}

/* Case Studies */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.case-study-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cs-metrics {
    background: var(--brand-primary);
    padding: 30px;
    display: flex;
    justify-content: space-around;
    color: white;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric strong {
    font-size: 1.8rem;
}

.metric span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.cs-content {
    padding: 30px;
}

.cs-content h3 {
    color: var(--brand-dark);
}

.client-type {
    display: inline-block;
    margin-top: 15px;
    padding: 4px 12px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Final CTA */
.final-cta-section h2 {
    color: var(--brand-primary);
}

/* Footer */
footer {
    background: #f8fafc;
    padding: 80px 0 40px;
    border-top: 1px solid #e2e8f0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    font-size: 1.25rem;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--brand-primary);
}

.footer-col a {
    display: block;
    margin-bottom: 12px;
    color: #64748b;
}

.footer-col a:hover {
    color: var(--brand-secondary);
}

.social-links {
    display: flex;
    gap: 15px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero-visual {
        display: flex;
        height: auto;
        margin-top: 40px;
        animation: none;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        cursor: pointer;
    }

    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: #333;
        margin: 5px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}
/* Contact Form Section */
.contact-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

.contact-text {
    text-align: center;
    margin-bottom: 30px;
}

.contact-text h2 {
    color: var(--brand-dark);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--brand-dark);
    transition: var(--transition);
    background: #fdfdfd;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(27, 158, 119, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Mobile Responsive adjustment for form */
@media (max-width: 600px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        padding: 24px;
    }
}


/* Founder Section */
.founder-section {
    background: #fff;
    overflow: hidden;
}

.founder-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.founder-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.founder-image img {
    width: 350px;
    height: 350px;
    object-fit: contain; /* Using contain since background is removed */
    background: radial-gradient(circle at center, #f0fdf4 0%, #ffffff 70%);
    border-radius: 50%;
    position: relative;
    z-index: 2;
    border: 4px solid var(--white);
    box-shadow: 0 20px 40px rgba(27, 158, 119, 0.15);
}

.image-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blob-1 {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 150px;
    height: 150px;
    background: var(--brand-secondary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    animation: morph 8s ease-in-out infinite;
}

.blob-2 {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 200px;
    height: 200px;
    background: var(--brand-primary);
    border-radius: 64% 36% 27% 73% / 55% 58% 42% 45%;
    opacity: 0.1;
    animation: morph 6s ease-in-out infinite reverse;
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.founder-content {
    flex: 1.2;
}

.founder-badge {
    display: inline-block;
    color: var(--brand-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.founder-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.mission-text {
    font-size: 1.25rem;
    color: var(--brand-dark);
    font-weight: 500;
    margin-bottom: 24px;
}

.highlight {
    color: var(--brand-primary);
    font-weight: 700;
    background: #e6fffa;
    padding: 2px 6px;
    border-radius: 4px;
}

.founder-sig {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
}

.founder-sig .name {
    display: block;
    font-family: 'Outfit', serif; /* Use serif for signature feel if available, or just bold */
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.founder-sig .title {
    font-size: 0.9rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .founder-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .founder-image img {
        width: 250px;
        height: 250px;
    }
}

