* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1E3A1E;
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero {
    text-align: center;
    padding: 80px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-glow-top {
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: #4CAF50;
    opacity: 0.035;
    filter: blur(140px);
}

.hero-glow-bottom {
    bottom: -250px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: #FFA726;
    opacity: 0.03;
    filter: blur(120px);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.logo-icon {
    width: 112px;
    height: 112px;
    margin-bottom: 20px;
    filter: drop-shadow(0 8px 32px rgba(76, 175, 80, 0.15));
}

.logo-text {
    font-size: 52px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
}

.logo-text .accent {
    color: #FFA726;
}

.logo-subtitle-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.logo-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.45em;
    color: rgba(76, 175, 80, 0.4);
}

.logo-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
}

.logo-dot.green {
    background: rgba(76, 175, 80, 0.6);
}

.logo-dot.gold {
    background: rgba(255, 167, 38, 0.6);
}

.hero h1 {
    font-size: clamp(36px, 9vw, 88px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.hero h1 .green {
    color: #4CAF50;
}

.hero h1 .gold {
    color: #FFA726;
}

.hero p {
    font-size: clamp(13px, 2.5vw, 17px);
    color: rgba(255, 255, 255, 0.22);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.65;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 50%, #FFA726 100%);
    color: #fff;
    box-shadow: 0 4px 24px rgba(76, 175, 80, 0.15);
}

.btn-primary:hover {
    box-shadow: 0 6px 32px rgba(76, 175, 80, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 56px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.12);
    position: relative;
    z-index: 1;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-stats span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-stats .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.section {
    padding: 60px 0;
}

.section-label {
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 10px;
    font-weight: 500;
}

.section-label.green {
    color: rgba(76, 175, 80, 0.5);
}

.section-label.gold {
    color: rgba(255, 167, 38, 0.5);
}

.section-title {
    text-align: center;
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.section-desc {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.18);
    max-width: 420px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.5;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.step-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    transition: border-color 0.3s, background 0.3s;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(255, 255, 255, 0.06);
}

.step-num {
    position: absolute;
    top: -12px;
    left: -12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 0 24px rgba(76, 175, 80, 0.25);
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(76, 175, 80, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-icon svg {
    color: #4CAF50;
    width: 20px;
    height: 20px;
}

.step-card h3 {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.step-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.22);
    line-height: 1.6;
    font-weight: 300;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 14px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 22px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: border-color 0.3s, background 0.3s;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(255, 255, 255, 0.06);
}

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon svg {
    width: 20px;
    height: 20px;
}

.service-card h3 {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}

.service-tag {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 3px 8px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.service-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.22);
    line-height: 1.6;
    font-weight: 300;
}

/* ─── Pricing ─── */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-top: 40px;
}

.price-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 20px 14px;
    text-align: center;
    transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.price-card:hover {
    background: rgba(255, 255, 255, 0.025);
    border-color: rgba(255, 255, 255, 0.08);
}

.price-card-pro {
    background: rgba(255, 167, 38, 0.03);
    border-color: rgba(255, 167, 38, 0.1);
}

.price-icon-svg {
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.price-card .name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.price-card .limit {
    font-size: 26px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.02em;
}

.price-card .limit-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.28);
    font-weight: 300;
}

.price-card .suffix {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.12);
    margin-top: 4px;
    font-weight: 300;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-top: 10px;
}

.star {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.star.filled {
    background: currentColor;
}

.star.empty {
    background: rgba(255, 255, 255, 0.08);
}

.pricing-contact {
    text-align: center;
    margin-top: 28px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.15);
    font-weight: 300;
}

.contact-link {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #66BB6A;
}

/* ─── CTA ─── */
.cta-section {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 56px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(76, 175, 80, 0.04) 0%, transparent 50%);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: #4CAF50;
    opacity: 0.03;
    filter: blur(100px);
    pointer-events: none;
}

.cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.2);
    max-width: 440px;
    margin: 0 auto 28px;
    line-height: 1.65;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* ─── Footer ─── */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 28px 0;
    margin-top: 60px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 300;
}

.footer-inner span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-inner div {
    display: flex;
    gap: 20px;
}

footer a {
    color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: rgba(255, 255, 255, 0.25);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .hero {
        padding: 56px 20px 44px;
    }
    .logo-icon {
        width: 84px;
        height: 84px;
    }
    .logo-text {
        font-size: 38px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 10px;
    }
    .hero-stats .dot {
        display: none;
    }
    .btn {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    .section {
        padding: 44px 0;
    }
    .steps,
    .services {
        grid-template-columns: 1fr;
    }
    .pricing {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    .price-card {
        padding: 16px 10px;
    }
    .price-card .limit {
        font-size: 22px;
    }
    .cta-section {
        border-radius: 20px;
        padding: 40px 20px;
    }
    footer .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .pricing {
        grid-template-columns: repeat(2, 1fr);
    }
}