:root {
    /* Brand Colors - Deep Luxurious Green & Gold */
    --color-primary: #0D1F13;
    /* Midnight Green */
    --color-primary-light: #14291A;
    /* Forest Green */
    --color-accent: #E5C158;
    /* Luminous Amber/Gold */
    --color-accent-hover: #D0AF4E;

    /* Editorial Backgrounds */
    --color-bg-light: #FDFCF9;
    /* Antique White */
    --color-bg-dark: #0A140D;
    /* Deepest Green */

    /* Text Colors */
    --color-text-base: #1C2822;
    /* Very Dark Green/Grey for contrast on light */
    --color-text-light: #F5F7F6;
    --color-text-muted: #8E9993;

    /* Typography */
    --font-heading: 'Fraunces', serif;
    --font-body: 'Manrope', sans-serif;

    /* Spacing & Layout */
    --container-max: 1100px;
    --container-sm: 800px;
    --section-py: 120px;
    --radius-md: 0px;
    /* Sharp editorial edges */
    --radius-lg: 0px;
    --border-accent: 1px solid rgba(229, 193, 88, 0.2);
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-base);
    background-color: var(--color-bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-primary);
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
}

a {
    text-decoration: none;
    color: inherit;
}

img,
svg {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
}

.container-sm {
    max-width: var(--container-sm);
}

.section {
    padding: var(--section-py) 0;
}

.text-center {
    text-align: center;
}

/* Typography Helpers */
.highlight {
    color: var(--color-accent);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    /* Body font for buttons, uppercase */
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
    /* Dark green text on gold */
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(229, 193, 88, 0.15);
    /* Soft gold glow */
}

.btn-outline {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    padding: 24px 0;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 20, 13, 0.95);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: var(--border-accent);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-accent);
    /* Logo color replacement text */
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 220px 0 160px;
    background-color: var(--color-bg-dark);
    background-image:
        linear-gradient(to bottom, rgba(10, 20, 13, 0.88), rgba(10, 20, 13, 0.96)),
        url('logo.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-text-light);
    overflow: hidden;
    border-bottom: var(--border-accent);
}

.hero h1 {
    color: var(--color-text-light);
    margin: 24px 0 40px;
}

.hero h1 span.highlight {
    color: var(--color-accent);
    font-style: italic;
    font-weight: 300;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-radius: 0;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.subtitle {
    font-size: 1.35rem;
    color: var(--color-text-muted);
    margin-bottom: 50px;
    max-width: 750px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
}

/* Decorative Elements */
.hero-bg-accent {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
    border-radius: 0;
    z-index: 1;
}

.geometric-shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 0;
    bottom: -150px;
    left: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    border-radius: 0;
    top: 50px;
    right: -200px;
    transform: rotate(45deg);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.pulse-btn {
    animation: pulse 2s infinite;
}

/* Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Problem Section */
.problem-section {
    background-color: var(--color-bg-light);
    border-bottom: var(--border-accent);
}

.section-tag {
    display: inline-block;
    text-transform: uppercase;
    font-family: var(--font-body);
    /* Changed to body font */
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.light-tag {
    color: var(--color-accent);
}

.problem-text h2 {
    margin-bottom: 30px;
}

.problem-text p {
    font-size: 1.15rem;
    margin-bottom: 24px;
    color: var(--color-text-base);
    font-weight: 300;
}

.card {
    background: transparent;
    padding: 60px 40px;
    border-radius: 0;
    border: none;
    border-left: var(--border-accent);
}

.icon-warning {
    font-size: 2.5rem;
    margin-bottom: 24px;
    opacity: 0.8;
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    /* Added explicitly for card titles */
}

.card p {
    margin-bottom: 20px;
    color: var(--color-text-base);
    font-weight: 300;
}

/* Solution Section */
.solution-section {
    background-color: var(--color-primary-light);
    /* Slightly lighter green for contrast */
    color: var(--color-text-light);
    position: relative;
    border-bottom: var(--border-accent);
}

.solution-section h2 {
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.solution-desc {
    color: rgba(245, 247, 246, 0.8);
    font-size: 1.25rem;
    margin-bottom: 80px;
    font-weight: 300;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-m {
    max-width: 800px;
}

.feature-card {
    background: transparent;
    border: none;
    padding: 60px 40px;
    border-radius: 0;
    border-bottom: var(--border-accent);
    text-align: left;
    transition: var(--transition);
}

.feature-card:last-child {
    border-bottom: none;
}

.feature-card:hover {
    background: rgba(229, 193, 88, 0.05);
    /* Very subtle gold hover */
    transform: none;
    /* Removed the bounce for editorial feel */
}

.feature-number {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

.feature-card h3 {
    color: var(--color-text-light);
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.feature-card p {
    color: rgba(245, 247, 246, 0.7);
    font-size: 1.05rem;
    font-weight: 300;
}

/* Target Section */
.target-section {
    background-color: var(--color-bg-light);
    border-bottom: var(--border-accent);
}

.target-box {
    display: flex;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(13, 31, 19, 0.05);
    /* Softer, slightly green shadow */
    background: transparent;
    border: var(--border-accent);
}

.target-half {
    flex: 1;
    padding: 60px 50px;
}

.target-half h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.pro {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.pro h3 {
    color: var(--color-accent);
}

.pro ul li::before {
    content: "—";
    /* Elegant em dash instead of checkmark */
    color: var(--color-accent);
    font-weight: 300;
    position: absolute;
    left: 0;
}

.anti {
    background-color: var(--color-bg-light);
    border-left: var(--border-accent);
}

.anti ul li::before {
    content: "—";
    color: var(--color-text-muted);
    font-weight: 300;
    position: absolute;
    left: 0;
}

.target-half ul {
    list-style: none;
}

.target-half ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 24px;
    font-size: 1.1rem;
    font-weight: 300;
}

.pro ul li {
    color: rgba(245, 247, 246, 0.8);
}

/* CTA Section */
.cta-section {
    background-color: var(--color-bg-dark);
    /* Dark rich background */
    color: var(--color-text-light);
    border-top: var(--border-accent);
    padding: 160px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: var(--color-accent);
}

.cta-section h2 {
    font-size: clamp(3rem, 5vw, 4rem);
    margin-bottom: 30px;
    color: var(--color-text-light);
}

.cta-section p {
    font-size: 1.25rem;
    color: rgba(245, 247, 246, 0.8);
    margin-bottom: 50px;
    font-weight: 300;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
}

.whatsapp-btn:hover {
    background-color: var(--color-accent-hover);
    box-shadow: 0 10px 30px rgba(229, 193, 88, 0.15);
}

.w-icon {
    width: 24px;
    height: 24px;
}

.cta-trust {
    margin-top: 30px;
    font-size: 0.95rem;
    color: rgba(245, 247, 246, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    /* Slightly lighter than base dark */
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .brand {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer p {
    color: rgba(245, 247, 246, 0.5);
    font-size: 0.9rem;
}

/* Responsive constraints */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .target-box {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 80px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

    .btn-large {
        width: 100%;
        padding: 16px 20px;
    }
}