/* =========================================
   1. CSS Variables & Modern Reset
   ========================================= */
:root {
    --primary: #1A3C34;           /* Deep Emerald Green */
    --primary-light: #2C5E55;
    --accent: #B87333;            /* Warm Copper/Bronze */
    --accent-hover: #9A5F2A;
    --text-main: #2D3748;
    --text-muted: #718096;
    --bg-body: #F7FAFC;
    --bg-card: #FFFFFF;
    --bg-soft: #E8F3E8;           /* Soft Sage */
    --border: #E2E8F0;
    --shadow-sm: 0 1px 3px rgba(26, 60, 52, 0.08);
    --shadow-md: 0 4px 6px -1px rgba(26, 60, 52, 0.1), 0 2px 4px -1px rgba(26, 60, 52, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(26, 60, 52, 0.1), 0 10px 10px -5px rgba(26, 60, 52, 0.04);
    --shadow-glow: 0 0 25px rgba(184, 115, 51, 0.2);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.8;
    color: var(--text-main);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: var(--accent);
    font-weight: 600;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
    text-underline-offset: 4px;
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================================
   2. Typography & UI Elements
   ========================================= */
h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-top: 3.5rem; margin-bottom: 1.5rem; position: relative; display: inline-block; }
h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--accent);
    border-radius: 4px;
}
h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--primary-light); }

p { margin-bottom: 1.5rem; color: var(--text-main); font-size: 1.05rem; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(184, 115, 51, 0.3);
    color: white;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.15rem;
    width: 100%;
    max-width: 400px;
}

/* =========================================
   3. Header & Navigation
   ========================================= */
.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    text-decoration: none !important;
}

.logo-accent { color: var(--accent); }

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-menu a:hover { color: var(--primary); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
}

.nav-cta::after { display: none; }
.nav-cta:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    color: white !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* =========================================
   4. Hero Section (Pure CSS Geometric Design)
   ========================================= */
.hero {
    position: relative;
    background: var(--primary);
    color: white;
    padding: 7rem 0 10rem;
    text-align: center;
    overflow: hidden;
}

/* Abstract CSS-only background pattern */
.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 50%, rgba(184, 115, 51, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(15deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-badge {
    display: inline-block;
    background: rgba(184, 115, 51, 0.15);
    border: 1px solid rgba(184, 115, 51, 0.3);
    color: #E6C29C;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
}

.hero h1 { color: white; }

.hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-weight: 400;
}

/* =========================================
   5. Main Content & Cards
   ========================================= */
.main-content {
    padding: 4rem 24px;
    margin-top: -5rem; /* Elegant overlap effect */
    position: relative;
    z-index: 10;
}

.seo-article {
    background: var(--bg-card);
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.card {
    background: var(--bg-body);
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
    background: white;
}

.card:hover::before { transform: scaleX(1); }

.card-icon {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(184, 115, 51, 0.12);
    margin-bottom: 1rem;
    line-height: 1;
}

.card h3 { color: var(--primary); }
.card p { margin-bottom: 0; font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

.benefit-list {
    margin: 2.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-list li {
    position: relative;
    padding: 1.5rem;
    padding-left: 3rem;
    background: var(--bg-soft);
    border-radius: var(--radius);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--primary);
    border: 1px solid rgba(26, 60, 52, 0.05);
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 1.25rem;
    top: 1.5rem;
    color: var(--accent);
    font-weight: 800;
    font-size: 1.2rem;
}

/* =========================================
   6. FAQ Accordion
   ========================================= */
.faq-container {
    margin-top: 2.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.75rem 2rem;
    background: transparent;
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(184, 115, 51, 0.04);
    color: var(--accent);
}

.faq-question::after {
    content: '+';
    font-size: 1.75rem;
    font-weight: 300;
    transition: var(--transition);
    color: var(--accent);
    line-height: 0;
}

.faq-question.active {
    background: rgba(184, 115, 51, 0.06);
}

.faq-question.active::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
    padding: 0 2rem 1.75rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.8;
    font-size: 1rem;
}

/* =========================================
   7. Contact Section
   ========================================= */
.contact-section {
    padding: 4rem 24px 6rem;
}

.contact-card {
    background: linear-gradient(145deg, var(--primary) 0%, #142E28 100%);
    color: white;
    padding: 4.5rem 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.contact-card h2 { color: white; margin-top: 0; }
.contact-card h2::after { background: var(--accent); left: 50%; transform: translateX(-50%); }
.contact-card > p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 3rem; font-size: 1.1rem; }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 500px;
    text-align: left;
}

.contact-item {
    display: flex;
    flex-direction: column;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-item:last-child { border-bottom: none; padding-bottom: 0; }

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: white;
    text-decoration: none !important;
}

.contact-value:hover { color: var(--accent); }

/* =========================================
   8. Footer
   ========================================= */
.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .logo { color: white; display: block; margin-bottom: 1.25rem; }
.footer-brand p { max-width: 350px; font-size: 0.95rem; color: rgba(255,255,255,0.6); margin-bottom: 0; line-height: 1.7; }

.footer-links {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-links a:hover { color: var(--accent); text-decoration: none; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
}

/* =========================================
   9. Responsive Design
   ========================================= */
@media (max-width: 900px) {
    .main-content { margin-top: -3rem; }
    .seo-article { padding: 2.5rem; }
    .benefit-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 85px;
        left: 0;
        width: 100%;
        height: calc(100vh - 85px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }
    
    .nav-menu.active { transform: translateX(0); }
    
    .nav-menu a {
        font-size: 1.25rem;
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-radius: var(--radius);
    }
    
    .nav-menu a:hover { background: var(--bg-soft); }
    
    .nav-cta {
        background: var(--accent);
        color: white !important;
        margin-top: 1.5rem;
    }
    
    .hero { padding: 5rem 0 8rem; }
    .contact-card { padding: 3rem 1.5rem; }
    .footer-content { flex-direction: column; gap: 2.5rem; text-align: center; }
    .footer-links { justify-content: center; }
}