*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
}

/* Cards – matches all BinQle pages */
.hp-card {
    background: #ffffff;
    border: 1px solid #e8ecf1;
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.hp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.hp-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.hp-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
}

.hp-card__text {
    font-size: 0.92rem;
    color: #777;
    line-height: 1.65;
    margin: 0;
}

/* Eyebrow & headings – site standard */
.eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    color: #49C7ED;
    display: block;
    margin-bottom: 14px;
}

.section-h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 16px;
    line-height: 1.15;
}

.section-lead {
    font-size: 1.1rem;
    color: #777;
    line-height: 1.6;
    margin: 0 0 56px;
}

/* Buttons */
.btn-cyan {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #49C7ED;
    color: #032842;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
}

.btn-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(73, 199, 237, 0.4);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
}

/* Stats pill */
.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(73, 199, 237, 0.08);
    border: 1px solid rgba(73, 199, 237, 0.2);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-pill i {
    color: #49C7ED;
}

/* FAQ accordion */
.faq-item {
    border-bottom: 1px solid #e8ecf1;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: #032842;
    font-family: system-ui, -apple-system, sans-serif;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #49C7ED;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.7;
    padding-bottom: 20px;
    margin: 0;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-icon {
    transition: transform 0.3s;
    color: #49C7ED;
    flex-shrink: 0;
}

/* Step badge */
.step-badge {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: #032842;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Chip */
.chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e8ecf1;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.9rem;
    color: #032842;
    font-weight: 600;
    transition: all 0.2s;
}

.chip:hover {
    border-color: #49C7ED;
    background: #f0faff;
}

.chip i {
    color: #3b64f6;
    font-size: 16px;
}

/* Typing effect */
#typing-text::after {
    content: '|';
    animation: blink 0.7s infinite;
    margin-left: 3px;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-right {
        display: none !important;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .two-col-article {
        grid-template-columns: 1fr !important;
    }

    .section-h2 {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr !important;
    }

    .hero-stats {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}
