/* Hero */
.hero-section {
    background: linear-gradient(160deg, #FFF8E1 0%, #FFF3C4 40%, #FFFDE7 100%);
    border-radius: 0 0 2rem 2rem;
    padding: 2.2rem 1.2rem 2.8rem;
    margin-bottom: 0;
}

.hero-section h1 {
    color: var(--ink);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.6;
    margin: 0;
}

.hero-section .subtitle {
    color: #555;
    font-size: 0.88rem;
    line-height: 1.8;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 2rem;
    padding: 0.3rem 0.9rem;
    font-size: 0.78rem;
    color: #555;
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(4px);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.btn-outline-gold {
    background: transparent;
    color: #555;
    border: 1.5px solid #ddd;
    border-radius: 2rem;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.btn-outline-gold:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Features */
.feature-item--bg .f-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
}

.feature-item--bg small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

.feature-item--bg strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.section-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
}

.section-subtitle {
    color: var(--muted);
    font-size: 0.75rem;
}

.featured-banner {
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    height: 140px;
    background: linear-gradient(135deg, #0D1B4A 0%, #1a237e 50%, #0D1B4A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-banner .fb-fallback {
    text-align: center;
    color: #fff;
}

.featured-banner .fb-fallback .fb-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    margin: 0 auto 0.5rem;
}

/* Service cards */
.service-card {
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    min-width: 0;
}

@media (min-width: 561px) {
    .service-card {
        flex: 0 0 300px;
        width: 300px;
        max-width: 300px;
        scroll-snap-align: center;
    }
}

.service-card .sc-img {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #0D1B4A 0%, #1a237e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (min-width: 561px) {
    .service-card .sc-img {
        height: 180px;
    }
}

.service-card .sc-img img {
    width: 80px;
    height: 80px;
    max-width: 85%;
    object-fit: contain;
}

@media (min-width: 561px) {
    .service-card .sc-img img {
        width: 140px;
        height: 140px;
    }
}

.service-card .sc-img .sc-fallback {
    text-align: center;
}

.service-card .sc-img .sc-fallback img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    opacity: 0.9;
}

.service-card .sc-body {
    padding: 0.75rem;
    text-align: center;
}

.service-card .sc-body h3 {
    font-weight: 700;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
    line-height: 1.4;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 2rem;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
}

.price-badge.flexible {
    background: #fff3e0;
    color: #e65100;
}

.sc-price {
    font-weight: 700;
    font-size: 0.85rem;
    margin-right: 0.25rem;
}

.sc-desc {
    color: var(--muted);
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
}

.btn-buy {
    background: var(--grad-blue);
    color: #fff;
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-weight: 700;
    width: 100%;
    font-size: 0.85rem;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    cursor: pointer;
}

.btn-buy:hover {
    background: linear-gradient(135deg, #0D47A1, #1565C0);
    color: #fff;
}

.btn-settle {
    background: linear-gradient(135deg, #004D40, #00695C);
    color: #fff;
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    font-weight: 700;
    width: 100%;
    font-size: 0.85rem;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.btn-settle:hover {
    background: linear-gradient(135deg, #00352C, #004D40);
    color: #fff;
}

.settle-title {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.carousel-nav button {
    background: #fff;
    border: 1.5px solid #ddd;
    border-radius: 2rem;
    padding: 0.45rem 1.5rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: inherit;
    font-size: 0.85rem;
}

.carousel-nav button:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* Testimonials */
.review-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    min-width: 280px;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.review-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.review-stars {
    color: var(--gold);
    font-size: 0.75rem;
}

.review-text {
    color: var(--muted);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.6;
}

/* Path cards */
.path-card--bg {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    margin-bottom: 0.6rem;
    aspect-ratio: 1;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.path-card--bg picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.path-card__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.path-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.path-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem;
}

.path-card--bg .p-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.path-card--bg strong {
    color: #fff;
}

.path-card--bg small {
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-item {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid var(--line);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1rem 1.1rem;
    font-weight: 700;
    font-size: 0.9rem;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    margin-right: auto;
    margin-left: 0.5rem;
    font-size: 1.2rem;
    color: var(--blue);
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-body {
    padding: 1rem 1.1rem 1.25rem;
    font-size: 0.875rem;
    line-height: 1.7;
}

.faq-body p {
    margin: 0 0 0.75rem;
}

.faq-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.faq-body li {
    margin-bottom: 0.5rem;
}

/* Contact */
.contact-card {
    background: #fff;
    border-radius: 1rem;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 0.6rem;
    min-width: 0;
}

.contact-card .phone {
    font-weight: 700;
    font-size: 1rem;
    direction: ltr;
}

.contact-card .wa-btn {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    color: #0d7a3e;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
}

.badge-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 0.6rem;
    min-width: 0;
}

.badge-card .bc-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 8px;
    flex-shrink: 0;
}

@media (max-width: 400px) {
    .hero-section h1 {
        font-size: 1.45rem;
    }

    .hero-section .subtitle {
        font-size: 0.82rem;
    }
}

@media (min-width: 768px) {
    .hero-section {
        padding: 3rem 2rem 3.5rem;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }
}
