/* ===== GLOBAL ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #11001c;
    color: white;
}

/* ===== TOP NAV ===== */
.top-nav {
    display: flex;
    justify-content: center;
    padding: 15px;
    border-bottom: 1px solid #3a015c;
}

main {
    max-width: 760px;
    margin: 0 auto;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.pill {
    padding: 8px 18px;
    background-color: #3a015c;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
}

/* ===== HERO ===== */
.hero-wire {
    width: 600px;
    height: 220px;
    margin: 30px auto;
    border: 1px solid #3a015c;
    position: relative;
}

.hero-image {
    width: 240px;
    height: 140px;
    border-radius: 20px;
    position: absolute;
    left: 80px;
    top: 40px;
    object-fit: contain;
    background-color: #220135;
    padding: 10px;
}

.hero-card {
    width: 120px;
    height: 70px;
    background-color: #3a015c;
    border-radius: 20px;
    position: absolute;
    right: 110px;
    top: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    color: white;
}

.small-btn {
    background-color: #190028;
    padding: 4px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
}

/* ===== TITLE ===== */
.title-section {
    text-align: center;
    margin: 30px 0 30px;
}

.title-section h1 {
    margin: 0;
    font-size: 1.2rem;
}

/* ===== CARDS ===== */
.cards-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.card-box {
    width: 120px;
    min-height: 150px;
    background-color: #190028;
    border-radius: 20px;
    padding: 14px 10px;
    color: white;
    text-align: center;
}

.card-box h2 {
    font-size: 0.95rem;
    margin: 0 0 10px;
}

.card-box p {
    font-size: 0.8rem;
    line-height: 1.25;
    margin: 0;
}

/* ===== TESTIMONIAL ===== */
.testimonial-section {
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

.testimonial-card {
    width: 500px;
    background-color: #190028;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #3a015c;
}

.testimonial-text {
    color: white;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* ===== FOOTER ===== */
.bottom-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    border-top: 1px solid #3a015c;
}

.footer-pill {
    padding: 8px 15px;
    background-color: #3a015c;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
}

.long-pill {
    width: 100px;
    text-align: center;
}

.pill,
.footer-pill,
.card-box,
.hero-card,
.small-btn {
    transition: 0.2s ease;
}

.pill:hover,
.footer-pill:hover,
.small-btn:hover {
    background-color: #220135;
}

.card-box:hover,
.hero-card:hover {
    transform: translateY(-3px);
}