:root {
    --primary-color: #79f779;
    --secondary-color: #28a745;
    --accent-color: #20c997;
    --text-dark: #ffffff;
    --text-light: rgba(255, 255, 255, 0.8);
    --bg-light: #1a1a1a;
    --bg-white: #0d0d0d;
    --shadow-xlight: 0 2px 12px rgba(0, 0, 0, 0.1);
    --shadow-light: 0 4px 20px rgba(0,0,0,0.5);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.7);
    --border-radius: 14px;
    --transition-smooth: all 300ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

/* Ensure icons render even if other CSS sets font-family */
.lni { font-family: "LineIcons" !important; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #000000;
}

.hero-section {
    background: #000000;
    padding: 140px 20px 40px;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M10 0 L0 0 0 10" fill="none" stroke="%23185320" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; text-align: center; }
.hero-title { font-size: 3.2rem; font-weight: 800; color: #28a745; margin-bottom: 1.25rem; letter-spacing: -0.02em; line-height: 1.2; }
.hero-subtitle { font-size: 1.2rem; color: var(--text-light); max-width: 900px; margin: 0 auto 1rem; line-height: 1.7; font-weight: 400; }

.content-section { 
    padding: 80px 20px; 
    background: #000000; 
    max-width: 1200px; 
    margin: 0 auto; 
}
.content-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #28a745;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.content-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.content-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.content-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}
.content-section ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}
.content-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Benefits Section */
.benefits-section {
    background: #000000;
    padding: 80px 20px;
}
.benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}
.benefit-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(40,167,69,0.3);
}
.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.benefit-card h3 i {
    color: var(--secondary-color);
    margin-right: 12px;
    font-size: 1.5rem;
}
.benefit-card h3 .benefit-icon-svg {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    margin-right: 12px;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.benefit-card h3 .benefit-icon-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}
.benefit-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Scrap Categories Section */
.categories-section {
    background: #000000;
    padding: 80px 20px;
}
.categories-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #28a745;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}
.category-item {
    background: linear-gradient(135deg, #0f2f1a 0%, #1a4a2a 100%);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    text-align: center;
}
.category-item:hover {
    transform: translateY(-4px);
    border-color: rgba(40, 167, 69, 0.8);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.25);
}
.category-item span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
    background: #000000;
    padding: 80px 20px;
    text-align: center;
}
.cta-content {
    max-width: 800px;
    margin: 0 auto;
}
.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #28a745;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.cta-section p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(34,197,94,.25);
    transition: all 0.3s ease;
}
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(34,197,94,.3);
    color: #fff;
}

.hero-subtitle.margin-top {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.benefits-section p.center-text {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 2.6rem; }
    .content-section h2 { font-size: 2.2rem; }
    .benefits-section h2 { font-size: 2.2rem; }
    .categories-section h2 { font-size: 2.2rem; }
    .cta-section h2 { font-size: 2.2rem; }
}
@media (max-width: 768px) {
    .hero-section { padding: 120px 20px 30px; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .content-section { padding: 60px 20px; }
    .content-section h2 { font-size: 2rem; }
    .content-section h3 { font-size: 1.5rem; }
    .content-section p { font-size: 1rem; }
    .benefits-section { padding: 60px 20px; }
    .benefits-section h2 { font-size: 2rem; }
    .benefit-card { padding: 25px; }
    .categories-section { padding: 60px 20px; }
    .categories-section h2 { font-size: 2rem; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-section { padding: 60px 20px; }
    .cta-section h2 { font-size: 2rem; }
    .cta-section p { font-size: 1.1rem; }
}
@media (max-width: 576px) {
    .hero-section { padding: 100px 20px 30px; }
    .hero-title { font-size: 1.9rem; }
    .content-section h2 { font-size: 1.75rem; }
    .content-section h3 { font-size: 1.3rem; }
    .benefits-section h2 { font-size: 1.75rem; }
    .categories-grid { grid-template-columns: 1fr; }
    .categories-section h2 { font-size: 1.75rem; }
    .cta-section h2 { font-size: 1.75rem; }
    .cta-button { padding: 14px 30px; font-size: 1rem; }
}
