* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: Calibri, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #f7f7f8; color: #1f2937; }

.et-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.et-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(134,188,37,0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.et-glow-bottom {
    position: absolute;
    bottom: -80px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(134,188,37,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.et-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 750px;
    width: 100%;
}

.et-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1.5px solid rgba(134,188,37,0.5);
    color: #86BC25;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    background: rgba(134,188,37,0.06);
}

.et-badge-dot {
    width: 7px;
    height: 7px;
    background: #86BC25;
    border-radius: 50%;
    animation: et-pulse 1.8s ease-in-out infinite;
}

@keyframes et-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.75); }
}

.et-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(134,188,37,0.1);
    border: 1.5px solid rgba(134,188,37,0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
}

.et-icon-wrap i {
    font-size: 2.2rem;
    color: #86BC25;
}

.et-cs-label {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0.75rem;
}

.et-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #111111;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.et-title span { color: #86BC25; }

.et-divider {
    width: 48px;
    height: 3px;
    background: #86BC25;
    border-radius: 2px;
    margin: 0 auto 1.5rem;
}

.et-desc {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.85;
    max-width: 580px;
    margin: 0 auto 2.5rem;
}

.et-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.btn-primary-product {
    background: #86BC25;
    color: #000;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s, transform 0.2s;
    display: inline-block;
}

.btn-primary-product:hover { background: #6fa01e; color: #000; transform: translateY(-2px); }

.btn-outline-product {
    border: 2px solid rgba(134,188,37,0.6);
    color: #86BC25;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline-product:hover { background: #86BC25; color: #000; transform: translateY(-2px); }

.et-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.et-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    transition: border-color 0.3s, color 0.3s;
}

.et-pill i:first-child { color: #86BC25; font-size: 0.9rem; }
.et-pill .et-lock { color: #9ca3af; font-size: 0.7rem; }
.et-pill:hover { border-color: rgba(134,188,37,0.5); color: #86BC25; }

.et-cards-section {
    padding: 4rem 2rem 5rem;
    background: #f7f7f8;
    position: relative;
}

.et-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(134,188,37,0.4), transparent);
}

.et-cards-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.et-cards-title h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: #111111;
}

.et-cards-title h2 span { color: #86BC25; }
.et-cards-title p { color: #6b7280; font-size: 0.95rem; margin-top: 0.5rem; }

.et-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.et-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.et-card:hover {
    transform: translateY(-6px);
    border-color: rgba(134,188,37,0.35);
    box-shadow: 0 12px 30px rgba(134,188,37,0.1);
}

.et-card-icon {
    width: 54px;
    height: 54px;
    background: rgba(134,188,37,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.et-card-icon i { font-size: 1.4rem; color: #86BC25; }

.et-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.5rem;
}

.et-card p {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.7;
}

.et-card-lock {
    margin-top: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.et-card-lock i { font-size: 0.7rem; }

@media (max-width: 1024px) {
    .et-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .et-hero { padding: 2rem 1.5rem 2rem; min-height: auto; }
    .et-cards-section { padding: 3rem 1.5rem 4rem; }
    .et-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .et-hero { padding: 1.5rem 1.25rem 1.5rem; min-height: auto; }
    .et-cards-grid { grid-template-columns: 1fr; }
}

/* Coming Soon Modal */
.et-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.et-modal-overlay.active { display: flex; }
.et-modal-box {
    background: #fff;
    border-radius: 16px;
    padding: 3rem 2.5rem 2.5rem;
    max-width: 420px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: etModalIn 0.25s ease;
}
@keyframes etModalIn {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.et-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #6b7280;
    cursor: pointer;
    line-height: 1;
}
.et-modal-close:hover { color: #111; }
.et-modal-icon-wrap {
    width: 64px;
    height: 64px;
    background: rgba(134,188,37,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.et-modal-icon-wrap i { font-size: 1.8rem; color: #86BC25; }
.et-modal-box h2 { font-size: 1.6rem; font-weight: 800; color: #111; margin-bottom: 0.75rem; }
.et-modal-box p { font-size: 0.98rem; color: #6b7280; line-height: 1.7; margin-bottom: 1.75rem; }

body.dark-mode { background: #0b0d10; color: #e5e7eb; }
body.dark-mode .et-hero { background: #0b0d10; }
body.dark-mode .et-title { color: #f3f4f6; }
body.dark-mode .et-cs-label { color: #6b7280; }
body.dark-mode .et-desc { color: #9ca3af; }
body.dark-mode .et-pill { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); color: #d1d5db; }
body.dark-mode .et-pill .et-lock { color: #4b5563; }
body.dark-mode .et-cards-section { background: #0f1117; }
body.dark-mode .et-cards-title h2 { color: #f3f4f6; }
body.dark-mode .et-cards-title p { color: #6b7280; }
body.dark-mode .et-card { background: #1a1d23; border-color: rgba(255,255,255,0.07); box-shadow: none; }
body.dark-mode .et-card h3 { color: #f3f4f6; }
body.dark-mode .et-card p { color: #6b7280; }
body.dark-mode .et-card-lock { color: #4b5563; }
body.dark-mode .et-card:hover { border-color: rgba(134,188,37,0.35); box-shadow: 0 12px 30px rgba(134,188,37,0.1); }

body.dark-mode .et-modal-box { background: #1a1d23; }
body.dark-mode .et-modal-box h2 { color: #f3f4f6; }
body.dark-mode .et-modal-box p { color: #9ca3af; }
body.dark-mode .et-modal-close { color: #9ca3af; }
body.dark-mode .et-modal-close:hover { color: #f3f4f6; }
body.dark-mode .et-modal-icon-wrap { background: #2a2e35; }
