/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; border-radius: 50px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; border: none; }
.btn-ghost { color: var(--dark); background: transparent; }
.btn-ghost:hover { background: var(--gray-100); }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 15px 30px rgba(99, 102, 241, 0.3); }

/* ── HERO ── */
.hero { padding-top: 180px; padding-bottom: 100px; background: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%), radial-gradient(circle at 10% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-tag { 
    display: inline-flex; 
    align-items: center; 
    gap: 0.5rem; 
    background: rgba(99, 102, 241, 0.08); 
    padding: 0.6rem 1.2rem; 
    border-radius: 50px; 
    font-size: 0.8rem; 
    font-weight: 800; 
    color: var(--primary); 
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(99, 102, 241, 0.1);
}
.hero-h1 { font-family: var(--font-heading); font-size: 3.5rem; line-height: 1.15; font-weight: 800; color: var(--dark); letter-spacing: -2px; margin-bottom: 1.5rem; }
.hero-p { font-size: 1.15rem; color: var(--gray-500); margin-bottom: 2.5rem; max-width: 500px; }
.hero-btns { display: flex; gap: 1.2rem; margin-bottom: 3.5rem; }
.hero-visual { position: relative; }
.dashboard-preview { background: white; border-radius: 24px; padding: 1.5rem; box-shadow: 0 50px 100px -20px rgba(15, 23, 42, 0.12), 0 30px 60px -30px rgba(0, 0, 0, 0.15); border: 1px solid rgba(0, 0, 0, 0.05); transform: perspective(1000px) rotateY(-15deg) rotateX(5deg); transition: transform 0.5s ease; }
.dashboard-preview:hover { transform: perspective(1000px) rotateY(-5deg) rotateX(0deg); }

/* ── TRUSTED BY ── */
.trusted-by { padding: 3rem 0; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.brand-logo { font-size: 1.5rem; font-weight: 800; color: var(--dark); font-family: var(--font-heading); }

/* ── FEATURES ── */
.features-header { 
    text-align: center; 
    max-width: 700px; 
    margin: 2rem auto 4rem; /* Added 2rem top margin */
}
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card { background: white; padding: 2.2rem; border-radius: 28px; border: 1px solid var(--gray-100); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.feature-card:hover { border-color: var(--primary-light); transform: translateY(-10px); box-shadow: 0 30px 60px -12px rgba(99, 102, 241, 0.08); }
.feature-icon { width: 64px; height: 64px; background: var(--gray-50); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin-bottom: 2rem; transition: all 0.3s; }
.feature-card:hover .feature-icon { background: var(--primary); color: white; transform: scale(1.1); }
.feature-h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }

/* ── SHOWCASE ── */
.showcase { background: var(--dark); color: white; border-radius: 40px; padding: 60px 50px; margin-top: 4rem; position: relative; overflow: hidden; }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.showcase-content h2 { font-family: var(--font-heading); font-size: 2.1rem; line-height: 1.25; margin-bottom: 1.2rem; }
.showcase-list { list-style: none; display: grid; gap: 1.5rem; }
.showcase-item { display: flex; gap: 1.2rem; padding: 1.2rem; background: rgba(255, 255, 255, 0.03); border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.3s; }
.showcase-item:hover { background: rgba(255, 255, 255, 0.06); transform: translateX(10px); border-color: var(--primary); }
.item-num { width: 32px; height: 32px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; flex-shrink: 0; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.price-card { background: white; padding: 1.8rem; border-radius: 24px; border: 1px solid var(--gray-100); display: flex; flex-direction: column; position: relative; transition: all 0.3s; }
.price-card.featured { background: var(--dark); color: white; border-color: var(--primary); transform: scale(1.02); z-index: 2; }
.price-badge { position: absolute; top: 1rem; right: 1rem; background: var(--grad-indigo); padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.65rem; font-weight: 800; }
.price-val { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; margin: 1rem 0; }
.price-val span { font-size: 1rem; color: var(--gray-400); font-weight: 500; }
.price-list { list-style: none; display: grid; gap: 0.85rem; margin-bottom: 2rem; flex-grow: 1; }
.price-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; }
.check-icon { color: var(--accent); }

/* ── FAQ ── */
.faq-item { background: white; border-radius: 20px; border: 1px solid var(--gray-200); margin-bottom: 1rem; overflow: hidden; }
.faq-trigger { padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; padding: 0 2rem; color: var(--gray-500); font-size: 0.95rem; }

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.5;
    z-index: -1;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(1); opacity: 0.5; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}
