/* CSS Reset & Variables */
:root {
    --primary-red: #ef4444;
    --primary-green: #00843d;
    --brand-yellow: #ffd200;
    --brand-black: #000000;
    --bg-color: #f8fafc;
    --text-main: #000000;
    --text-muted: #475569;
    --white: #ffffff;
    --font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--brand-black);
    color: var(--white);
    border-radius: 4px;
    /* Flatter premium look */
}

.btn-primary:hover {
    background-color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Header */
header {
    padding: 0.25rem 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-main);
    text-decoration: none;
}

.main-logo {
    height: 100px; /* Enlarged logo */
    mix-blend-mode: multiply; /* Removes white background */
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.tag-red {
    background-color: rgba(234, 67, 53, 0.1);
    color: var(--primary-red);
}

.tag-green {
    background-color: rgba(52, 168, 83, 0.1);
    color: var(--primary-green);
}

.tag-blue {
    background-color: rgba(255, 210, 0, 0.15);
    color: var(--brand-black);
}

.tag-hero {
    background-color: var(--brand-black);
    color: var(--brand-yellow);
}

/* Hero Section */
.hero {
    background-color: var(--brand-yellow);
    color: var(--primary-green);
    text-align: center;
    padding: 5rem 0 4rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--primary-green);
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.hero .btn-primary {
    background: linear-gradient(135deg, var(--brand-black) 0%, #333 100%);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.hero .btn-primary:hover {
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.trust-bar {
    margin-top: 3rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Problem Section */
.problem {
    background-color: var(--white);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-box {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--primary-red);
    margin-top: 1.5rem;
}

/* Images */
.img-featured {
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
}

/* Solution Path (New Design) */
.solution-path {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.solution-path::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    height: 100%;
    width: 2px;
    background-color: rgba(0, 132, 61, 0.2);
    z-index: 0;
}

.path-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    z-index: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.path-step:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-green);
}

.path-number {
    background: var(--primary-green);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 0 8px var(--white), 0 0 0 10px rgba(0,132,61,0.2);
    margin-left: -5px;
}

.path-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--brand-black);
}

.path-content p {
    margin: 0;
}

/* Proof Section */
.proof {
    background-color: var(--primary-green);
    color: var(--white);
}

.proof h2 {
    color: var(--white);
}

.proof p {
    color: #94a3b8;
}

.highlight-text {
    background-color: var(--brand-yellow);
    color: var(--brand-black);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.proof .section-tag {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Pricing Section */
.pricing {
    background-color: var(--white);
    text-align: center;
}

.pricing-card {
    background: var(--white);
    border: 3px solid var(--primary-green);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    max-width: 500px;
    margin: 3rem auto 0;
    box-shadow: 0 20px 40px rgba(0, 132, 61, 0.1);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--brand-black);
    color: var(--brand-yellow);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 1rem 0;
}

.price span {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: 800;
}

/* FAQ Section */
.faq {
    background-color: var(--white);
}

.faq-item {
    background: var(--bg-color);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.faq-question {
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--brand-yellow);
    background: var(--brand-black);
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--white);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Final CTA */
.cta-section {
    background: linear-gradient(135deg, var(--brand-black) 0%, #1e293b 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
}

.cta-section p {
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.lead-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    font-size: 0.875rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 132, 61, 0.2);
}

.lead-form .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: var(--brand-yellow);
    color: var(--primary-green);
    padding: 3rem 0 2rem;
}

footer a {
    color: var(--brand-black);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    text-decoration: underline;
    color: var(--primary-green);
}

.footer-copyright-link {
    color: var(--primary-green);
    text-decoration: underline;
}

.footer-copyright-link:hover {
    color: var(--brand-black) !important;
}

.new-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    border-bottom: 2px solid rgba(0, 132, 61, 0.2);
    padding-bottom: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--brand-black);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.brand-col .footer-logo {
    height: 120px;
    mix-blend-mode: multiply;
    margin-bottom: 1rem;
    margin-left: -5px;
}

.brand-col .tool-tagline {
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.brand-col .company-name {
    font-size: 0.875rem;
    opacity: 0.8;
}

.contact-list, .links-list {
    list-style: none;
}

.contact-list li, .links-list li {
    margin-bottom: 0.75rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-links a {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-path::before {
        left: 20px;
    }

    .path-step {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
    }

    .path-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-left: -20px;
    }
}