* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: #333; line-height: 1.6; }

/* Header */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
}
.header-inner {
    max-width: 1100px; margin: 0 auto; padding: 16px 24px;
    display: flex; align-items: center; justify-content: space-between;
}
.logo { font-size: 22px; font-weight: 800; color: #1b5e20; text-decoration: none; }
.logo span { color: #4caf50; }
nav { display: flex; gap: 24px; align-items: center; }
nav a { text-decoration: none; color: #555; font-size: 14px; font-weight: 600; transition: color 0.2s; }
nav a:hover, nav a.active { color: #2e7d32; }
.nav-cta {
    background: linear-gradient(135deg, #43a047, #2e7d32); color: white !important;
    padding: 10px 22px; border-radius: 10px; font-weight: 700;
}
.nav-cta:hover { box-shadow: 0 4px 15px rgba(46,125,50,0.3); }
.nav-partner {
    background: linear-gradient(135deg, #f57c00, #e65100); color: white !important;
    padding: 10px 22px; border-radius: 10px; font-weight: 700;
}
.nav-partner:hover { box-shadow: 0 4px 15px rgba(230,81,0,0.3); color: white !important; }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: #333; }

/* Breadcrumb */
.breadcrumb {
    max-width: 1100px; margin: 0 auto; padding: 0 24px 16px;
    font-size: 13px; color: #888; text-align: left;
}
.hero .breadcrumb { padding-top: 0; margin-bottom: 10px; }
.breadcrumb a { color: #2e7d32; text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; color: #ccc; }

/* Hero */
.hero {
    padding: 140px 24px 80px; text-align: center;
    background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e9 50%, #c8e6c9 100%);
    position: relative; overflow: hidden;
}
.hero-split {
    display: flex; align-items: center; gap: 60px;
    max-width: 1100px; margin: 0 auto; text-align: left;
}
.hero-split .hero-text { flex: 1; }
.hero-split .hero-visual { flex: 0 0 420px; }
.hero-split .hero-visual img { width: 100%; height: auto; border-radius: 20px; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1)); }
.hero-split .hero-stats { justify-content: flex-start; }

/* Split sections */
.split { display: flex; align-items: center; gap: 60px; }
.split.reverse { flex-direction: row-reverse; }
.split-text { flex: 1; }
.split-visual { flex: 0 0 400px; }
.split-visual img { width: 100%; height: auto; border-radius: 20px; filter: drop-shadow(0 8px 25px rgba(0,0,0,0.08)); }
.split-text h2 { font-size: 32px; font-weight: 800; color: #1b5e20; margin-bottom: 16px; }
.split-text p { font-size: 16px; color: #666; line-height: 1.7; margin-bottom: 16px; }
.split-text .split-cta {
    display: inline-block; padding: 14px 30px; border-radius: 12px;
    background: linear-gradient(135deg, #43a047, #2e7d32); color: white;
    font-weight: 700; text-decoration: none; transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(46,125,50,0.3); margin-top: 8px;
}
.split-text .split-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,125,50,0.4); }

.section-img {
    width: 100%; max-height: 400px; object-fit: contain; border-radius: 16px;
    margin: 30px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(46,125,50,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.hero h1 {
    font-size: 48px; font-weight: 800; color: #1b5e20; line-height: 1.2;
    max-width: 700px; margin: 0 auto 20px; position: relative;
}
.hero h1 span { color: #4caf50; }
.hero .subtitle {
    font-size: 20px; color: #555; max-width: 600px; margin: 0 auto 12px;
    line-height: 1.6; position: relative;
}
.hero .highlight {
    display: inline-block; background: #2e7d32; color: white;
    padding: 6px 18px; border-radius: 8px; font-weight: 700; font-size: 18px;
    margin: 16px 0 30px;
}
.hero-cta {
    display: inline-block; padding: 18px 40px; border-radius: 14px;
    background: linear-gradient(135deg, #43a047, #2e7d32); color: white;
    font-size: 18px; font-weight: 700; text-decoration: none;
    box-shadow: 0 6px 25px rgba(46,125,50,0.3); transition: all 0.3s;
    position: relative;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(46,125,50,0.4); }
.hero-stats {
    display: flex; justify-content: center; gap: 40px; margin-top: 50px;
    position: relative;
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 32px; font-weight: 800; color: #2e7d32; }
.hero-stat .label { font-size: 14px; color: #666; margin-top: 4px; }

/* Sections */
section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title {
    text-align: center; font-size: 36px; font-weight: 800; color: #1b5e20; margin-bottom: 12px;
}
.section-subtitle {
    text-align: center; font-size: 18px; color: #666; max-width: 600px;
    margin: 0 auto 50px; line-height: 1.6;
}
.bg-light { background: #f8faf8; }
.bg-green { background: linear-gradient(135deg, #1b5e20, #2e7d32); color: white; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-card {
    text-align: center; padding: 40px 24px; background: white;
    border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}
.step-card:hover { transform: translateY(-5px); }
.step-num {
    width: 50px; height: 50px; border-radius: 50%; background: #e8f5e9;
    color: #2e7d32; font-size: 22px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.step-card h3 { font-size: 20px; color: #1b5e20; margin-bottom: 12px; }
.step-card p { font-size: 15px; color: #666; line-height: 1.7; }
.step-icon { font-size: 36px; color: #4caf50; margin-bottom: 16px; }

/* Products */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
    background: white; border-radius: 20px; padding: 30px; text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.3s;
}
.product-card:hover { transform: translateY(-5px); }
.product-card i { font-size: 48px; color: #4caf50; margin-bottom: 16px; }
.product-card h3 { font-size: 20px; color: #1b5e20; margin-bottom: 10px; }
.product-card p { font-size: 14px; color: #666; line-height: 1.7; }
.product-card .price { font-size: 18px; font-weight: 800; color: #2e7d32; margin-top: 12px; }
.product-badge {
    display: inline-block; background: #e8f5e9; color: #2e7d32; padding: 4px 12px;
    border-radius: 20px; font-size: 12px; font-weight: 700; margin-bottom: 12px;
}

/* Commissions */
.commission-table {
    width: 100%; border-collapse: collapse; background: white;
    border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.commission-table th {
    background: #2e7d32; color: white; padding: 16px 20px;
    font-size: 14px; text-transform: uppercase; letter-spacing: 0.5px;
}
.commission-table td {
    padding: 16px 20px; border-bottom: 1px solid #f0f0f0;
    font-size: 15px; text-align: center;
}
.commission-table tr:last-child td { border-bottom: none; }
.commission-table .highlight-row { background: #e8f5e9; font-weight: 700; }
.commission-note {
    text-align: center; margin-top: 24px; font-size: 15px; color: #555;
}

/* Advantages */
.advantages { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.adv-card {
    display: flex; gap: 16px; padding: 24px; background: white;
    border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s;
}
.adv-card:hover { transform: translateY(-3px); }
.adv-icon {
    width: 56px; height: 56px; border-radius: 14px; background: #e8f5e9;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #2e7d32; flex-shrink: 0;
}
.adv-card h3 { font-size: 17px; color: #1b5e20; margin-bottom: 6px; }
.adv-card p { font-size: 14px; color: #666; line-height: 1.6; }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
    background: white; border-radius: 20px; padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06); position: relative;
}
.testimonial .stars { color: #f9a825; font-size: 14px; margin-bottom: 12px; }
.testimonial p { font-size: 15px; color: #555; line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testimonial .author { font-weight: 700; color: #1b5e20; font-size: 14px; }
.testimonial .role { font-size: 13px; color: #888; }

/* FAQ */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
    background: white; border-radius: 14px; margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04); overflow: hidden;
}
.faq-q {
    padding: 20px 24px; cursor: pointer; font-weight: 700; font-size: 16px;
    color: #1b5e20; display: flex; justify-content: space-between; align-items: center;
    transition: background 0.2s;
}
.faq-q:hover { background: #f8faf8; }
.faq-q i { font-size: 14px; color: #4caf50; transition: transform 0.3s; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s;
    padding: 0 24px; font-size: 15px; color: #555; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* CTA */
.cta-section { text-align: center; }
.bg-green .section-title { color: white; }
.bg-green .section-subtitle { color: rgba(255,255,255,0.85); }
.cta-btn {
    display: inline-block; padding: 18px 50px; border-radius: 14px;
    background: white; color: #2e7d32; font-size: 18px; font-weight: 700;
    text-decoration: none; transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.cta-or { color: rgba(255,255,255,0.7); margin: 16px 0; font-size: 14px; }
.cta-email { color: white; font-size: 16px; }
.cta-email a { color: #a5d6a7; }

/* Trust badges */
.trust-badges { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin: 50px 0; }
.trust-badge { text-align: center; }
.trust-badge i { font-size: 32px; color: #2e7d32; display: block; margin-bottom: 8px; }
.trust-badge span { font-size: 14px; font-weight: 600; color: #555; }

/* Category section */
.category-section { margin-bottom: 60px; }
.category-section h3 {
    font-size: 28px; color: #1b5e20; margin-bottom: 8px; text-align: center;
}
.category-section .cat-desc {
    text-align: center; font-size: 16px; color: #666; margin-bottom: 30px;
}
.product-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 20px; }
.product-tag {
    background: white; border: 2px solid #e8f5e9; padding: 10px 20px; border-radius: 12px;
    font-size: 14px; font-weight: 600; color: #2e7d32; transition: all 0.3s;
}
.product-tag:hover { background: #e8f5e9; border-color: #4caf50; }
.product-tag i { margin-right: 6px; }

/* Simulator */
.simulator {
    background: white; border-radius: 20px; padding: 40px; max-width: 600px; margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.simulator label { display: block; font-weight: 700; color: #1b5e20; margin-bottom: 8px; font-size: 15px; }
.simulator input[type="number"],
.simulator input[type="range"] { width: 100%; margin-bottom: 20px; }
.simulator input[type="number"] {
    padding: 12px 16px; border: 2px solid #e8f5e9; border-radius: 10px;
    font-size: 16px; outline: none; transition: border-color 0.2s;
}
.simulator input[type="number"]:focus { border-color: #4caf50; }
.simulator input[type="range"] { accent-color: #2e7d32; height: 8px; cursor: pointer; }
.simulator-result {
    text-align: center; padding: 24px; background: linear-gradient(135deg, #e8f5e9, #f0f7f0);
    border-radius: 14px; margin-top: 10px;
}
.simulator-result .amount { font-size: 42px; font-weight: 800; color: #2e7d32; }
.simulator-result .per-month { font-size: 16px; color: #666; }
.range-value { display: inline-block; background: #2e7d32; color: white; padding: 2px 10px; border-radius: 6px; font-size: 14px; font-weight: 700; margin-left: 8px; }

/* Contact form */
.contact-form {
    max-width: 600px; margin: 0 auto; background: white; padding: 40px;
    border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; color: #1b5e20; margin-bottom: 8px; font-size: 15px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; padding: 12px 16px; border: 2px solid #e8f5e9; border-radius: 10px;
    font-size: 15px; font-family: inherit; outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #4caf50; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
    display: inline-block; padding: 16px 40px; border-radius: 12px; border: none;
    background: linear-gradient(135deg, #43a047, #2e7d32); color: white;
    font-size: 16px; font-weight: 700; cursor: pointer; transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(46,125,50,0.3); width: 100%;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(46,125,50,0.4); }
.contact-info { text-align: center; margin-top: 30px; }
.contact-info p { font-size: 15px; color: #666; }
.contact-info a { color: #2e7d32; font-weight: 700; }

/* Widget preview */
.widget-preview {
    background: white; border-radius: 20px; padding: 30px; max-width: 500px; margin: 30px auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); border: 2px dashed #c8e6c9;
    text-align: center;
}
.widget-preview .widget-header {
    background: linear-gradient(135deg, #43a047, #2e7d32); color: white;
    padding: 16px; border-radius: 12px; margin-bottom: 16px; font-weight: 700;
}
.widget-preview .widget-item {
    display: flex; align-items: center; gap: 12px; padding: 12px;
    border-bottom: 1px solid #f0f0f0; text-align: left;
}
.widget-preview .widget-item:last-child { border-bottom: none; }
.widget-preview .widget-item i { font-size: 24px; color: #4caf50; }
.widget-preview .widget-item .item-name { font-weight: 600; color: #333; font-size: 14px; }
.widget-preview .widget-item .item-price { margin-left: auto; font-weight: 700; color: #2e7d32; }

/* Payment info */
.payment-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.payment-card {
    text-align: center; padding: 30px 20px; background: white;
    border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.payment-card i { font-size: 32px; color: #4caf50; margin-bottom: 12px; }
.payment-card h4 { font-size: 16px; color: #1b5e20; margin-bottom: 8px; }
.payment-card p { font-size: 14px; color: #666; }

/* Detail steps */
.detail-step {
    display: flex; gap: 30px; align-items: flex-start; margin-bottom: 50px;
    padding: 30px; background: white; border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.detail-step:nth-child(even) { flex-direction: row-reverse; }
.detail-step-icon {
    width: 80px; height: 80px; border-radius: 20px; background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: #2e7d32; flex-shrink: 0;
}
.detail-step-content h3 { font-size: 22px; color: #1b5e20; margin-bottom: 8px; }
.detail-step-content .step-label {
    display: inline-block; background: #2e7d32; color: white; padding: 2px 12px;
    border-radius: 6px; font-size: 12px; font-weight: 700; margin-bottom: 12px;
}
.detail-step-content p { font-size: 15px; color: #666; line-height: 1.7; }
.detail-step-content ul { margin-top: 10px; padding-left: 20px; }
.detail-step-content ul li { font-size: 14px; color: #666; margin-bottom: 6px; }

/* Footer */
.footer { background: #1a1a1a; color: #999; padding: 50px 24px; }
.footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
}
.footer h4 { color: white; font-size: 16px; margin-bottom: 16px; }
.footer p, .footer a { font-size: 14px; line-height: 1.8; }
.footer a { color: #4caf50; text-decoration: none; }
.footer a:hover { color: #a5d6a7; }
.footer-bottom {
    max-width: 1100px; margin: 30px auto 0; padding-top: 24px;
    border-top: 1px solid #333; text-align: center; font-size: 13px;
}

/* Animations */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Mobile */
@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .hero .subtitle { font-size: 17px; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-split { flex-direction: column; gap: 30px; text-align: center; }
    .hero-split .hero-visual { flex: 0 0 auto; max-width: 300px; }
    .hero-split .hero-stats { justify-content: center; }
    .split, .split.reverse { flex-direction: column; gap: 30px; }
    .split-visual { flex: 0 0 auto; max-width: 300px; margin: 0 auto; }
    .split-text { text-align: center; }
    .steps, .products-grid, .testimonials { grid-template-columns: 1fr; }
    .advantages { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); gap: 16px; }
    nav.open { display: flex; }
    .nav-toggle { display: block; }
    .commission-table { font-size: 13px; }
    .commission-table th, .commission-table td { padding: 12px 10px; }
    .detail-step, .detail-step:nth-child(even) { flex-direction: column; }
    .payment-info { grid-template-columns: 1fr; }
    .trust-badges { gap: 20px; }
    .category-section h3 { font-size: 22px; }
}
