:root {
    --primary: #4361ee;
    --primary-light: #4895ef;
    --light: #f8f9fa;
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --border: #e2e8f0;
    --gradient: linear-gradient(135deg, #4361ee 0%, #4895ef 100%);
}

.apps-grid {
    max-width: 1140px;
    margin: 0 auto;
}

.app-card-v2 {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid rgba(67, 97, 238, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.app-card-v2:hover {
    transform: translateY(-4px);
    border-color: rgba(67, 97, 238, 0.22);
    box-shadow: 0 12px 32px rgba(67, 97, 238, 0.12);
}

.app-card-v2__header {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 0.875rem;
}

.app-card-v2__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.app-card-v2__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.app-card-v2__meta {
    min-width: 0;
    flex: 1;
}

.app-card-v2__category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(67, 97, 238, 0.08);
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    margin-bottom: 0.35rem;
}

.app-card-v2__title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
    margin: 0 0 0.35rem;
}

.app-card-v2__rating {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    font-size: 0.8rem;
    color: #f59e0b;
}

.app-card-v2__rating span {
    color: var(--text-secondary);
    font-weight: 500;
    margin-left: 0.25rem;
}

.app-card-v2__desc {
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0 0 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.app-card-v2__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
    min-height: 1.75rem;
}

.app-card-v2__tag {
    font-size: 0.72rem;
    color: var(--text-secondary);
    background: var(--light);
    border: 1px solid var(--border);
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    white-space: nowrap;
}

.app-card-v2__footer {
    margin-top: auto;
    padding-top: 0.875rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.app-card-v2__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: var(--gradient);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(67, 97, 238, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-card-v2__cta:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(67, 97, 238, 0.35);
}

.app-card-v2__links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.app-card-v2__links a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.app-card-v2__links a:hover {
    color: var(--primary);
}

.apps-see-all {
    margin-top: 2rem;
    text-align: center;
}

.apps-see-all .btn-see-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-weight: 600;
    color: var(--primary);
    background: #fff;
    border: 2px solid rgba(67, 97, 238, 0.2);
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.apps-see-all .btn-see-all:hover {
    color: #fff;
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.25);
}

.apps-page-hero {
    padding: 3.5rem 0 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border);
}

.apps-page-hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.apps-page-hero h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.apps-page-hero p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 1.25rem;
}

.apps-page-count {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(67, 97, 238, 0.08);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
}

.apps-page-section {
    padding: 3rem 0 4rem;
}

@media (max-width: 768px) {
    .app-card-v2__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .app-card-v2__cta {
        justify-content: center;
    }

    .app-card-v2__links {
        justify-content: center;
    }

    .apps-page-hero h1 {
        font-size: 1.75rem;
    }
}

/* Why Choose Us */
#why-choose {
    padding: 70px 0;
}

.why-section {
    width: 100%;
}

.why-section .title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.why-section__lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.why-grid {
    width: 100%;
}

.why-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    min-height: 220px;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(67, 97, 238, 0.12);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(67, 97, 238, 0.12);
}

.why-pill__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(67, 97, 238, 0.08);
    color: var(--primary);
    font-size: 1.75rem;
}

.why-pill h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.why-pill p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.55;
    max-width: 240px;
}

@media (max-width: 767px) {
    #why-choose {
        padding: 50px 0;
    }

    .why-section .title {
        font-size: 2rem;
    }

    .why-section__lead {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .why-pill {
        min-height: auto;
        padding: 1.75rem 1.25rem;
    }

    .why-pill p {
        max-width: none;
    }
}

/* About Section */
.about-content .title {
    font-size: 2rem;
    font-weight: 700;
}

.about-lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0.85rem;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.about-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(67, 97, 238, 0.08);
    border: 1px solid rgba(67, 97, 238, 0.15);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.about-contact-card {
    background: #fff;
    border: 1px solid rgba(67, 97, 238, 0.12);
    border-radius: 18px;
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(67, 97, 238, 0.08);
}

.about-contact-card__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--gradient);
    color: #fff;
    font-size: 1.5rem;
}

.about-contact-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.about-contact-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.about-contact-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.about-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-contact-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.about-contact-btn--whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.about-contact-btn--whatsapp:hover {
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.about-contact-btn--linkedin {
    background: #0a66c2;
    color: #fff;
    box-shadow: 0 4px 14px rgba(10, 102, 194, 0.3);
}

.about-contact-btn--linkedin:hover {
    box-shadow: 0 6px 18px rgba(10, 102, 194, 0.4);
}

/* Get Started contact */
.get-started-contact {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.get-started-contact__label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.85rem;
}

.get-started-contact__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.get-started-contact__btns .about-contact-btn {
    padding: 0.55rem 1.15rem;
    font-size: 0.85rem;
}

/* Site Footer */
.site-footer {
    background: #f8f9fc;
    border-top: 1px solid var(--border);
    padding: 3rem 0 0;
    margin-top: 2rem;
}

.site-footer__main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}

.site-footer__logo img {
    height: 48px;
    width: auto;
    margin-bottom: 0.85rem;
}

.site-footer__tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    max-width: 300px;
}

.site-footer__nav h6,
.site-footer__contact h6 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.site-footer__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__nav li {
    margin-bottom: 0.5rem;
}

.site-footer__nav a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__nav a:hover {
    color: var(--primary);
}

.site-footer__contact p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.site-footer__contact-btns {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-footer__btn:hover {
    transform: translateY(-1px);
    color: #fff;
}

.site-footer__btn--whatsapp {
    background: #25d366;
    color: #fff;
}

.site-footer__btn--linkedin {
    background: #0a66c2;
    color: #fff;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.25rem 0;
    border-top: 1px solid var(--border);
}

.site-footer__copy {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

.site-footer__social {
    display: flex;
    gap: 0.65rem;
}

.site-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.site-footer__social a:hover {
    color: var(--primary);
    border-color: rgba(67, 97, 238, 0.3);
    background: rgba(67, 97, 238, 0.05);
}

/* App legal bar (per-app pages) */
.app-legal-bar {
    background: #f1f3f9;
    border-top: 1px solid var(--border);
    padding: 1rem 0;
}

.app-legal-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.app-legal-bar__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.app-legal-bar__links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.app-legal-bar__links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
}

.app-legal-bar__links a:hover {
    text-decoration: underline;
}

.app-legal-bar__sep {
    color: var(--border);
}

@media (max-width: 768px) {
    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .site-footer__tagline {
        max-width: none;
        margin: 0 auto;
    }

    .site-footer__contact-btns {
        max-width: 260px;
        margin: 0 auto;
    }

    .site-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .app-legal-bar__inner {
        flex-direction: column;
        text-align: center;
    }
}

/* SEO: breadcrumbs + app detail pages */
.seo-breadcrumbs {
    margin-bottom: 1rem;
}

.seo-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-muted, #6b7280);
}

.seo-breadcrumbs__item:not(:last-child)::after {
    content: "/";
    margin-left: 0.5rem;
    color: var(--border, #e5e7eb);
}

.seo-breadcrumbs__item a {
    color: inherit;
    text-decoration: none;
}

.seo-breadcrumbs__item a:hover {
    color: var(--primary, #6576ff);
}

.app-detail-hero {
    padding: 3rem 0 2rem;
    background: var(--lighter, #f8f9fc);
}

.app-detail-hero__grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem 2rem;
    align-items: start;
    margin-top: 1rem;
}

.app-detail-hero__icon img {
    border-radius: 1.25rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.app-detail-hero__intro {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0.75rem 0 1.25rem;
}

.app-detail-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.app-detail-hero__meta {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted, #6b7280);
}

.app-detail-section {
    padding: 3rem 0;
}

.app-detail-section h2 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.app-detail-section h2:first-child {
    margin-top: 0;
}

.app-detail-list {
    padding-left: 1.25rem;
    line-height: 1.7;
}

.app-detail-list li + li {
    margin-top: 0.35rem;
}

.app-detail-screenshots {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0 1.5rem;
}

.app-detail-screenshots img {
    max-width: 100%;
    width: 280px;
    border-radius: 0.75rem;
    border: 1px solid var(--border, #e5e7eb);
}

.app-detail-faq__item {
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    background: #fff;
}

.app-detail-faq__item summary {
    cursor: pointer;
    font-weight: 600;
}

.app-detail-sidebar {
    background: var(--lighter, #f8f9fc);
    border: 1px solid var(--border, #e5e7eb);
    border-radius: 1rem;
    padding: 1.25rem;
}

.app-detail-sidebar dl {
    margin: 0 0 1rem;
}

.app-detail-sidebar dt {
    font-weight: 600;
    margin-top: 0.75rem;
}

.app-detail-sidebar dd {
    margin: 0.15rem 0 0;
}

.apps-category-links__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.app-card-v2__cta--outline {
    background: transparent !important;
    color: var(--primary, #6576ff) !important;
    border: 1px solid var(--primary, #6576ff) !important;
}

.app-card-v2__title a {
    color: inherit;
    text-decoration: none;
}

.app-card-v2__title a:hover {
    color: var(--primary, #6576ff);
}

.app-card-v2__footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .app-detail-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-detail-hero__icon {
        justify-self: center;
    }

    .app-detail-hero__actions {
        justify-content: center;
    }
}