*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #0d6e3f;
    --primary-dark: #094d2c;
    --primary-light: #e8f5ee;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --text: #1a1a2e;
    --text-light: #64748b;
    --white: #ffffff;
    --bg: #f8fafc;
    --border: #e2e8f0;
    --card-shadow: 0 4px 24px rgba(0,0,0,0.08);
    --card-hover-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* HEADER */
header {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.95);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo svg { width: 36px; height: 36px; }
.logo span { color: var(--accent); }
nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}
nav a:hover,
nav a.active { background: var(--primary-light); color: var(--primary); }

/* PAGE HERO */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #10b981 100%);
    color: var(--white);
    padding: 60px 24px 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.page-hero-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.page-hero .tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto;
}

/* SECTION TAG */
.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

/* INTRO */
.intro-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 24px;
}
.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.intro-content h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}
.intro-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
}
.stat-card:hover {
    border-color: var(--primary);
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-4px);
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* VALUES */
.values-section {
    background: var(--white);
    padding: 70px 24px;
}
.values-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-top: 4px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.value-card {
    padding: 32px;
    border-radius: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.value-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(13,110,63,0.1);
}
.value-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.value-icon svg { width: 26px; height: 26px; color: var(--primary); }
.value-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { color: var(--text-light); font-size: 0.93rem; line-height: 1.7; }

/* BRANDS */
.brands-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 24px;
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.brand-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s;
}
.brand-card:hover {
    border-color: var(--primary);
    box-shadow: var(--card-hover-shadow);
}
.brand-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.brand-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}
.brand-since {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
}
.brand-card p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.brand-products {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.brand-products a {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid var(--primary);
    border-radius: 10px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s;
}
.brand-products a:hover {
    background: var(--primary);
    color: var(--white);
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 70px 24px;
    text-align: center;
}
.cta-inner {
    max-width: 600px;
    margin: 0 auto;
}
.cta-inner h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    margin-bottom: 16px;
}
.cta-inner p {
    font-size: 1.05rem;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 32px;
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--text);
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(245,158,11,0.4);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245,158,11,0.5);
}
.btn-primary svg { width: 20px; height: 20px; }
.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

/* FOOTER */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 24px 32px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand .logo { color: var(--white); font-size: 1.3rem; margin-bottom: 16px; }
.footer-brand p { opacity: 0.8; font-size: 0.9rem; line-height: 1.7; max-width: 360px; }
footer h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: var(--white);
    opacity: 0.75;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; }
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.85;
}
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.7; }
.footer-contact a { color: inherit; text-decoration: none; opacity: 0.85; transition: opacity 0.2s; }
.footer-contact a:hover { opacity: 1; text-decoration: underline; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .header-inner { height: 60px; }
    nav { display: none; }
    .page-hero { padding: 40px 24px 60px; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
