/* Fusa Tech Center — Landing premium */

:root {
    --landing-bg: #060b18;
    --landing-bg-soft: #0c1222;
    --landing-surface: #ffffff;
    --landing-muted: #64748b;
    --landing-text: #0f172a;
    --landing-border: rgba(148, 163, 184, 0.18);
    --landing-primary: #2563eb;
    --landing-primary-dark: #1d4ed8;
    --landing-accent: #06b6d4;
    --landing-accent-soft: rgba(6, 182, 212, 0.12);
    --landing-success: #10b981;
    --landing-gradient: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
    --landing-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    --landing-shadow-lg: 0 32px 80px rgba(15, 23, 42, 0.18);
    --landing-radius: 20px;
    --landing-radius-sm: 14px;
    --landing-font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --landing-nav-height: 76px;
}

.landing-page {
    font-family: var(--landing-font);
    background: var(--landing-surface);
    color: var(--landing-text);
}

.landing-page-wrap {
    overflow-x: hidden;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page h4,
.landing-page h5,
.landing-page h6 {
    font-family: var(--landing-font);
    letter-spacing: -0.02em;
}

/* ── Navbar ── */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    height: var(--landing-nav-height);
    display: flex;
    align-items: center;
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border-bottom: 1px solid transparent;
}

.landing-nav.is-scrolled {
    background: rgba(6, 11, 24, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.landing-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
}

.landing-brand:hover {
    color: #fff;
}

.landing-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--landing-gradient);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.landing-brand-text strong {
    display: block;
    font-size: 1.05rem;
    line-height: 1.2;
}

.landing-brand-text small {
    display: block;
    font-size: 0.72rem;
    opacity: 0.65;
    font-weight: 500;
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.landing-nav-links .nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    transition: color 0.2s, background 0.2s;
}

.landing-nav-links .nav-link:hover,
.landing-nav-links .nav-link:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.landing-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    color: #fff;
    background: var(--landing-gradient);
    border: none;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.landing-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(37, 99, 235, 0.45);
}

.landing-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.landing-btn-outline:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.landing-nav-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.55rem;
}

.landing-nav-toggler .navbar-toggler-icon {
    filter: invert(1);
}

.landing-nav-collapse {
    background: rgba(6, 11, 24, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--landing-radius-sm);
    padding: 1rem;
    margin-top: 0.75rem;
}

@media (min-width: 992px) {
    .landing-nav-collapse {
        background: transparent;
        border: none;
        padding: 0;
        margin-top: 0;
    }
}

/* ── Hero ── */
.landing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--landing-nav-height) + 3rem) 0 5rem;
    background: var(--landing-bg);
    overflow: hidden;
}

.landing-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.landing-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 20%, transparent 75%);
}

.landing-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
}

.landing-hero-glow-1 {
    width: 520px;
    height: 520px;
    top: -120px;
    right: -80px;
    background: rgba(37, 99, 235, 0.35);
}

.landing-hero-glow-2 {
    width: 420px;
    height: 420px;
    bottom: -100px;
    left: -100px;
    background: rgba(6, 182, 212, 0.22);
}

.landing-hero-content {
    position: relative;
    z-index: 2;
}

.landing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #bfdbfe;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(147, 197, 253, 0.2);
    margin-bottom: 1.25rem;
}

.landing-eyebrow-highlight {
    color: #fef08a;
    background: rgba(234, 179, 8, 0.15);
    border-color: rgba(250, 204, 21, 0.35);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.landing-eyebrow .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--landing-success);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    animation: landingPulse 2s infinite;
}

@keyframes landingPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.landing-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 1.25rem;
}

.landing-hero h1 .gradient-text {
    background: var(--landing-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.landing-hero-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    max-width: 540px;
    margin-bottom: 2rem;
}

.landing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 2.25rem;
}

.landing-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.landing-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-trust-pill i {
    color: var(--landing-accent);
}

.landing-trust-pill-hot {
    color: #fff;
    background: rgba(16, 185, 129, 0.18);
    border-color: rgba(52, 211, 153, 0.35);
    font-weight: 600;
}

.landing-trust-pill-hot i {
    color: #6ee7b7;
}

/* Hero visual panel */
.landing-hero-panel {
    position: relative;
    z-index: 2;
}

.landing-hero-portada {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-hero-portada img {
    width: min(100%, 560px);
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.45));
}

.landing-showcase {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 1.75rem;
    backdrop-filter: blur(12px);
    box-shadow: var(--landing-shadow-lg);
}

.landing-showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-showcase-header span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    font-weight: 500;
}

.landing-showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.12);
}

.landing-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.landing-showcase-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.1rem;
    transition: transform 0.25s, border-color 0.25s, background 0.25s;
}

.landing-showcase-item:hover {
    transform: translateY(-3px);
    border-color: rgba(6, 182, 212, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.landing-showcase-item i {
    font-size: 1.5rem;
    color: var(--landing-accent);
    margin-bottom: 0.65rem;
    display: block;
}

.landing-showcase-item strong {
    display: block;
    color: #fff;
    font-size: 0.92rem;
    margin-bottom: 0.2rem;
}

.landing-showcase-item small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
}

.landing-showcase-float {
    position: absolute;
    left: -12px;
    right: auto;
    bottom: -18px;
    background: #fff;
    color: var(--landing-text);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    box-shadow: var(--landing-shadow);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 190px;
    max-width: calc(100% - 1rem);
    z-index: 1;
    animation: landingFloat 4s ease-in-out infinite;
}

@keyframes landingFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.landing-showcase-float-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--landing-success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.landing-showcase-float strong {
    display: block;
    font-size: 0.88rem;
}

.landing-showcase-float small {
    color: var(--landing-muted);
    font-size: 0.75rem;
}

.landing-showcase-float-promo {
    border: 2px solid rgba(16, 185, 129, 0.35);
    background: linear-gradient(135deg, #fff 0%, #ecfdf5 100%);
}

.landing-showcase-float-promo::before {
    content: 'Beneficio';
    position: absolute;
    top: -10px;
    left: 12px;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #047857;
    background: #d1fae5;
}

.landing-showcase-float-promo .landing-showcase-float-icon {
    background: rgba(16, 185, 129, 0.15);
    color: var(--landing-success);
}

/* ── Promo strip ── */
.landing-promo-strip {
    position: relative;
    z-index: 4;
    margin-top: -2.5rem;
    padding-bottom: 0.5rem;
}

.landing-promo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.landing-promo-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius);
    padding: 1.35rem 1.25rem;
    box-shadow: var(--landing-shadow);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.landing-promo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--landing-shadow-lg);
}

.landing-promo-card i {
    font-size: 1.75rem;
    color: var(--landing-primary);
    margin-bottom: 0.65rem;
    display: block;
}

.landing-promo-card strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--landing-text);
}

.landing-promo-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--landing-muted);
    line-height: 1.5;
}

.landing-promo-card-featured {
    background: linear-gradient(160deg, #eff6ff 0%, #ecfeff 100%);
    border-color: rgba(37, 99, 235, 0.2);
}

.landing-promo-card-featured i {
    color: var(--landing-primary-dark);
}

.landing-promo-tag {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
}

/* ── Stats strip ── */
.landing-stats {
    position: relative;
    z-index: 3;
    margin-top: 1.5rem;
    padding-bottom: 1rem;
}

.landing-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: #fff;
    border-radius: var(--landing-radius);
    padding: 1.5rem;
    box-shadow: var(--landing-shadow);
    border: 1px solid var(--landing-border);
}

.landing-stat {
    text-align: center;
    padding: 0.5rem 0.75rem;
    border-right: 1px solid var(--landing-border);
}

.landing-stat:last-child {
    border-right: none;
}

.landing-stat-value {
    display: block;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--landing-primary);
    line-height: 1.2;
}

.landing-stat-label {
    display: block;
    font-size: 0.82rem;
    color: var(--landing-muted);
    margin-top: 0.25rem;
}

/* ── Section common ── */
.landing-section {
    padding: 5.5rem 0;
}

.landing-section-alt {
    background: #f8fafc;
}

.landing-section-header {
    max-width: 640px;
    margin-bottom: 3rem;
}

.landing-section-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--landing-primary);
    margin-bottom: 0.75rem;
}

.landing-section-title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    margin-bottom: 0.85rem;
    color: var(--landing-text);
}

.landing-section-desc {
    color: var(--landing-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* ── About ── */
.landing-about-list {
    list-style: none;
    padding: 0;
    margin: 1.75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.landing-about-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #334155;
    font-size: 0.98rem;
}

.landing-about-list li i {
    color: var(--landing-success);
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

.landing-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.landing-bento-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--landing-radius);
    padding: 2rem 1.5rem;
    min-height: 160px;
    background: #fff;
    border: 1px solid var(--landing-border);
    transition: transform 0.25s, box-shadow 0.25s;
}

.landing-bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--landing-shadow);
}

.landing-bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--landing-gradient);
    opacity: 0;
    transition: opacity 0.25s;
}

.landing-bento-card:hover::before {
    opacity: 1;
}

.landing-bento-card i {
    font-size: 2rem;
    background: var(--landing-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.85rem;
    display: block;
}

.landing-bento-card h6 {
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.landing-bento-card p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--landing-muted);
}

/* ── Products ── */
.landing-products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.landing-product-card {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: var(--landing-radius);
    border: 1px solid var(--landing-border);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.landing-product-card:hover {
    color: inherit;
    transform: translateY(-6px);
    box-shadow: var(--landing-shadow);
    border-color: rgba(37, 99, 235, 0.25);
}

.landing-product-card .product-card-media,
.landing-product-card .card-img-top,
.landing-product-card .product-store-img,
.landing-product-card .placeholder-img,
.landing-product-card .product-carousel .carousel-item {
    height: 210px;
}

.landing-product-card .card-body {
    padding: 1.15rem 1.25rem 1.35rem;
}

.landing-product-card .card-title {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.landing-product-card .product-price-final {
    color: var(--landing-primary);
}

.landing-product-card .landing-product-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--landing-border);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--landing-primary);
}

.landing-product-card:hover .landing-product-cta span {
    transform: translateX(4px);
}

.landing-product-cta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: transform 0.2s;
}

/* ── Benefits ── */
.landing-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.landing-benefit-highlight {
    background: linear-gradient(160deg, #eff6ff 0%, #f0fdf4 100%);
    border-color: rgba(37, 99, 235, 0.18);
}

.landing-benefit-highlight .landing-benefit-icon {
    background: rgba(37, 99, 235, 0.12);
    color: var(--landing-primary-dark);
}

.landing-benefit {
    background: #fff;
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius);
    padding: 2rem 1.75rem;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
}

.landing-benefit:hover {
    transform: translateY(-4px);
    box-shadow: var(--landing-shadow);
}

.landing-benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.15rem;
    background: var(--landing-accent-soft);
    color: var(--landing-primary);
}

.landing-benefit h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
}

.landing-benefit p {
    color: var(--landing-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

/* ── Microcrédito ── */
.landing-credit {
    padding: 1.5rem 0 2.5rem;
}

.landing-credit-box {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 2rem;
    align-items: center;
    border-radius: 28px;
    padding: 2.4rem 2.3rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #0e7490 100%);
    color: #fff;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.28);
}

.landing-credit-copy .landing-section-kicker {
    color: #93c5fd;
}

.landing-credit-box h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0.4rem 0 0.7rem;
}

.landing-credit-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.landing-credit-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.4rem;
}

.landing-credit-points li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
    font-weight: 600;
}

.landing-credit-points i {
    color: #86efac;
}

.landing-credit-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.landing-credit-actions .landing-btn-primary {
    background: #fff;
    color: #1e3a8a;
    box-shadow: none;
    justify-content: center;
}

.landing-credit-actions .landing-btn-primary:hover {
    color: #1e3a8a;
}

.landing-credit-actions .landing-btn-outline {
    justify-content: center;
}

@media (max-width: 767.98px) {
    .landing-credit-box {
        grid-template-columns: 1fr;
        padding: 1.8rem 1.3rem;
    }
}

/* ── CTA banner ── */
.landing-cta {
    padding: 4.5rem 0;
}

.landing-cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 3.5rem 2.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0e7490 100%);
    color: #fff;
    text-align: center;
}

.landing-cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.landing-cta-box h2 {
    position: relative;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 0.85rem;
}

.landing-cta-box p {
    position: relative;
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
    margin: 0 auto 1.75rem;
    font-size: 1.05rem;
}

.landing-cta-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}

.landing-cta-actions .landing-btn-primary {
    background: #fff;
    color: var(--landing-primary-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.landing-cta-actions .landing-btn-primary:hover {
    color: var(--landing-primary-dark);
}

/* ── Contact ── */
.landing-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    align-items: stretch;
}

.landing-contact-cards {
    display: grid;
    gap: 1rem;
}

.landing-contact-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.35rem;
    background: #fff;
    border: 1px solid var(--landing-border);
    border-radius: var(--landing-radius-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.landing-contact-card:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.landing-contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--landing-accent-soft);
    color: var(--landing-primary);
    font-size: 1.1rem;
}

.landing-contact-card strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 0.2rem;
}

.landing-contact-card p,
.landing-contact-card a {
    margin: 0;
    color: var(--landing-muted);
    font-size: 0.92rem;
    text-decoration: none;
}

.landing-contact-card a:hover {
    color: var(--landing-primary);
}

.landing-contact-panel {
    background: linear-gradient(160deg, #eff6ff 0%, #ecfeff 100%);
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: var(--landing-radius);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.landing-contact-panel h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.65rem;
}

.landing-contact-panel p {
    color: var(--landing-muted);
    margin-bottom: 1.75rem;
}

.landing-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.25rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    background: #25d366;
    border: none;
    margin-bottom: 0.85rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.landing-btn-whatsapp:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.landing-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.25rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: var(--landing-primary);
    background: #fff;
    border: 1px solid rgba(37, 99, 235, 0.2);
    transition: background 0.2s, transform 0.2s;
}

.landing-btn-secondary:hover {
    color: var(--landing-primary-dark);
    background: #fff;
    transform: translateY(-2px);
}

.landing-social {
    margin-top: 1.5rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(37, 99, 235, 0.12);
}

.landing-social-header h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.45rem;
    color: #0f172a;
}

.landing-social-header p,
.landing-social-note,
.landing-social-footnote {
    color: var(--landing-muted);
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 0.85rem;
}

.landing-social-footnote {
    margin-bottom: 0;
    margin-top: 0.75rem;
}

.landing-social-links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.landing-social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.72rem 0.85rem;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s;
}

.landing-social-link i {
    font-size: 1.15rem;
    flex-shrink: 0;
}

.landing-social-link span {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
    line-height: 1.2;
}

.landing-social-link strong {
    font-size: 0.88rem;
}

.landing-social-link small {
    font-size: 0.78rem;
    opacity: 0.85;
}

.landing-social-link:hover {
    transform: translateY(-1px);
}

.landing-social-link--tiktok {
    background: linear-gradient(135deg, #111827 0%, #6d28d9 55%, #db2777 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(109, 40, 217, 0.28);
}

.landing-social-link--tiktok:hover {
    color: #fff;
    box-shadow: 0 14px 28px rgba(109, 40, 217, 0.34);
}

.landing-social-link--instagram {
    background: #fdf2f8;
    color: #be185d;
    border-color: #fbcfe8;
}

.landing-social-link--facebook {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #bfdbfe;
}

.landing-social--footer .landing-social-links {
    gap: 0.45rem;
}

.landing-social--footer .landing-social-link {
    padding: 0.55rem 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.82);
    box-shadow: none;
}

.landing-social--footer .landing-social-link:hover {
    color: #fff;
    transform: none;
}

.landing-social--footer .landing-social-link span {
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.88rem;
}

.landing-social--footer h6 {
    margin-bottom: 0.55rem;
}

/* ── Footer ── */
.landing-footer {
    background: var(--landing-bg);
    color: rgba(255, 255, 255, 0.72);
    padding: 4rem 0 0;
}

.landing-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-footer-brand strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
}

.landing-footer-brand p {
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 320px;
}

.landing-footer h6 {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.landing-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-footer-links li {
    margin-bottom: 0.55rem;
}

.landing-footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.landing-footer-links a:hover {
    color: #fff;
}

.landing-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.35rem 0;
    font-size: 0.85rem;
}

.landing-footer-bottom a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
}

.landing-footer-bottom a:hover {
    color: rgba(255, 255, 255, 0.75);
}

/* ── Reveal animation ── */
.landing-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.landing-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .landing-promo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-stat:nth-child(2) {
        border-right: none;
    }

    .landing-stat:nth-child(1),
    .landing-stat:nth-child(2) {
        border-bottom: 1px solid var(--landing-border);
        padding-bottom: 1rem;
    }

    .landing-benefits-grid {
        grid-template-columns: 1fr;
    }

    .landing-contact-grid {
        grid-template-columns: 1fr;
    }

    .landing-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .landing-showcase-float {
        right: 0;
        bottom: -24px;
    }
}

@media (max-width: 767px) {
    .landing-section {
        padding: 4rem 0;
    }

    .landing-promo-grid {
        grid-template-columns: 1fr;
    }

    .landing-promo-strip {
        margin-top: -1.5rem;
    }

    .landing-stats {
        margin-top: 1rem;
    }

    .landing-stats-grid {
        grid-template-columns: 1fr 1fr;
        padding: 1rem;
    }

    .landing-stat {
        border-right: none;
        border-bottom: none;
        padding: 0.75rem;
    }

    .landing-stat:nth-child(1),
    .landing-stat:nth-child(2) {
        border-bottom: 1px solid var(--landing-border);
    }

    .landing-bento {
        grid-template-columns: 1fr;
    }

    .landing-footer-grid {
        grid-template-columns: 1fr;
    }

    .landing-cta-box {
        padding: 2.5rem 1.5rem;
    }
}
