body {
    background-color: #050505;
    color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.text-combo {
    color: #ffd83d;
}

.bg-combo {
    background-color: #050505;
}

.text-muted-80 {
    color: rgba(248, 249, 250, 0.8);
}

.btn-combo {
    background-color: #ffd83d;
    color: #000;
    border: none;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s;
    border-radius: 6px;
}

.btn-combo:hover {
    background-color: #ffe373;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 216, 61, 0.3);
}

.combo-nav {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #ffd83d;
    font-weight: 600;
}

/* Reconstructed Snippets */

.bg-combo-accent-soft {
    background: rgba(255, 216, 61, 0.9);
}

.feature-chip {
    border-radius: 999px;
    border: 1px solid rgba(255, 216, 61, 0.45);
    background: rgba(0, 0, 0, 0.8);
    padding: 0.35rem 0.9rem;
}

.chip-label {
    font-size: 0.82rem;
    color: rgba(248, 249, 250, 0.85);
}

.hero-card {
    position: relative;
    border-radius: 32px;
    background: radial-gradient(circle at 20% 0, rgba(255, 216, 61, 0.36), transparent 55%), radial-gradient(circle at 80% 100%, rgba(255, 216, 61, 0.24), transparent 60%), linear-gradient(145deg, #141414, #050505);
    padding: 60px 32px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 216, 61, 0.16), transparent 60%);
    opacity: 0.9;
}

.speaker-pill {
    position: relative;
    width: 210px;
    height: 420px;
    border-radius: 120px;
    background: radial-gradient(circle at 30% 0, rgba(255, 255, 255, 0.12), transparent 50%), linear-gradient(160deg, #101010, #050505);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.8), 0 36px 80px rgba(0, 0, 0, 0.9);
}

.speaker-pill::before,
.speaker-pill::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.speaker-pill::before {
    top: 18%;
    width: 62%;
    height: 26%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.7);
}

.speaker-pill::after {
    bottom: 16%;
    width: 78%;
    height: 30%;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.7);
}

.hero-floating-badge {
    position: absolute;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 216, 61, 0.6);
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffd83d;
    margin-right: 0.3rem;
}

.badge-sub {
    font-size: 0.75rem;
    color: rgba(248, 249, 250, 0.75);
}

.hero-floating-metric {
    position: absolute;
    padding: 0.55rem 0.9rem;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    right: 18%;
    top: 20%;
}

.link-combo {
    color: #ffd83d;
    text-decoration: none;
}

.link-combo:hover {
    color: #ffe373;
    text-decoration: underline;
}

.cta-panel {
    border-radius: 22px;
    padding: 1.8rem 1.9rem;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-strip-wrapper {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: radial-gradient(circle at top, rgba(255, 216, 61, 0.06), rgba(0, 0, 0, 0.96));
}

.brand-strip {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
    animation: brand-scroll 30s linear infinite;
    white-space: nowrap;
}

.brand-strip-logo {
    height: 70px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s;
    filter: grayscale(100%) brightness(1.5);
}

.brand-strip-logo:hover {
    opacity: 1;
    filter: none;
}

/* Placeholder for brand logo when image is missing */
.brand-logo-placeholder {
    height: 70px;
    min-width: 140px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    padding-inline: 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.brand-pill {
    display: none; /* Deprecated */
}

.brand-strip-label {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@keyframes brand-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.page-offset {
    padding-top: 90px;
}

.tech-diagram {
    position: relative;
    border-radius: 999px;
    aspect-ratio: 4 / 5;
    max-width: 360px;
    margin-inline: auto;
    background: radial-gradient(circle at top, rgba(255, 216, 61, 0.22), rgba(0, 0, 0, 0.98));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
}

.ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
}
@media (min-width: 992px) {
    .hero-section {
        min-height: 100vh;
        padding-bottom: 120px;
    }
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-float-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-float-btn:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.whatsapp-chat-box {
    display: none;
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.whatsapp-header {
    background: #075e54;
    color: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-header-info h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.whatsapp-header-info small {
    font-size: 12px;
    opacity: 0.8;
}

.whatsapp-body {
    padding: 20px;
    background: #e5ddd5;
    height: 200px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.whatsapp-message {
    background: #fff;
    padding: 10px;
    border-radius: 0 10px 10px 10px;
    max-width: 80%;
    font-size: 14px;
    color: #333;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: relative;
    margin-bottom: 10px;
}

.whatsapp-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid #fff;
    border-left: 10px solid transparent;
}

.whatsapp-input-area {
    padding: 10px;
    background: #f0f0f0;
    display: flex;
    gap: 10px;
}

.whatsapp-input {
    flex-grow: 1;
    border: none;
    padding: 10px;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
}

.whatsapp-send-btn {
    background: #075e54;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.whatsapp-send-btn:hover {
    background: #128c7e;
}
