:root {
    --tl-orange: #F07E13;
    --azul-profundo: #002749;
    --naranja-acento: #FF6B35;
    --blanco-puro: #FFFFFF;
    --gris-fondo: #F4F7FA;
    --texto-oscuro: #1C2A38;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #1a1a1a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 4%; }

.badge {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--tl-orange);
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--tl-orange);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.badge-dark {
    border-color: var(--tl-orange);
    color: var(--tl-orange);
    background-color: rgba(255, 107, 0, 0.1);
}

/* TOP BAR */
.top-bar {
    background-color: #1a2c48;
    color: #fff;
    font-size: 13px;
    position: relative;
    z-index: 200;
}

.top-bar .tb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.top-bar-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    padding: 9px 0;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 9px 24px;
}

.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-left a { text-decoration: none; color: #fff; transition: color .2s; }
.top-bar-left a:hover { color: var(--tl-orange); }
.top-bar-right a { color: #fff; font-size: 16px; text-decoration: none; transition: color .2s, transform .2s; display: inline-flex; }
.top-bar-right a:hover { color: var(--tl-orange); transform: translateY(-2px); }

/* NAVBAR */
.navbar-container {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 4%;
}

.navbar {
    margin: 24px auto;
    background: none;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    box-shadow: 0 4px 20px rgba(0, 39, 73, 0.08);
}

.logo { font-size: 1.4rem; font-weight: 700; color: #002749; display: flex; align-items: center; gap: 8px; }
.logo img { width: 150px; height: auto; }

.nav-links { display: flex; gap: 24px; }
.nav-links a { text-decoration: none; color: #4b5563; font-size: 0.85rem; font-weight: 600; transition: color 0.2s; }
.nav-links a.active, .nav-links a:hover { color: var(--tl-orange); border-bottom: 2px solid var(--tl-orange); padding-bottom: 4px; }

.btn-explore-top {
    background: var(--tl-orange);
    color: #fff !important;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-explore-top:hover { background: #e05e00; }

/* ABOUT STATS */
.about-stats { padding: 100px 0; background-color: #ffffff; text-align: center; }

.main-statement {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 500;
    line-height: 1.3;
    color: #002749;
    max-width: 1000px;
    margin: 0 auto 60px auto;
    letter-spacing: -0.5px;
}
.main-statement span { color: #71717a; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 80px; }

.stat-card {
    background: rgba(0, 39, 73, 0.03);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s;
}
.stat-card:hover { border-color: var(--tl-orange); }
.stat-card h3 { font-size: 2.3rem; font-weight: 700; color: #002749; margin-bottom: 8px; }
.stat-card p { color: #4b5563; font-size: 0.9rem; font-weight: 500; }

/* PARTNERS */
.partners-carousel { border-top: 1px solid #e4e4e7; padding-top: 40px; margin-top: 40px; }

.partners-title {
    font-size: 1rem;
    font-weight: 500;
    color: #a1a1aa;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.logos-row { display: flex; justify-content: center; align-items: center; gap: 60px; flex-wrap: wrap; }

.partner-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(11%) sepia(34%) saturate(4754%) hue-rotate(192deg) brightness(96%) contrast(101%);
    opacity: 0.55;
    transition: opacity 0.3s ease;
}
.partner-logo:hover { opacity: 0.9; }

/* SOLUTIONS INTERACTIVE */
.solutions-interactive {
    background: linear-gradient(190deg, #002749 0%, #F07E13 100%);
    color: #ffffff;
    padding: 100px 0 200px 0;
    text-align: center;
}

.container-solutions { width: 80%; min-width: 1100px; margin: 0 auto; padding: 0 4%; }

.solutions-title {
    font-size: clamp(1.4rem, 2.8vw, 2.5rem);
    font-weight: 500;
    line-height: 1.4;
    margin: 0 auto 80px auto;
}

.cards-stack-container { position: relative; margin: 0 auto; display: flex; flex-direction: column; gap: 200px; }

.card-sticky {
    position: sticky;
    top: 140px;
    height: 600px;
    background: #ffffff;
    color: #111;
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 20, 40, 0.4);
    transform-origin: center top;
    will-change: transform;
    transition: transform 0.1s linear;
}

.card-sticky::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(rgba(0,39,73,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,39,73,0.05) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.tab-left-content, .tab-right-ui { position: relative; z-index: 1; }

.tab-left-content { padding: 80px; display: flex; flex-direction: column; justify-content: center; }
.tab-left-content h3 { font-size: 2rem; margin-bottom: 16px; font-weight: 600; color: #002749; letter-spacing: -0.5px; }
.tab-left-content p { color: #4b5563; line-height: 1.6; margin-bottom: 32px; }

.card-num { font-size: 1rem; color: var(--tl-orange); margin-bottom: 12px; display: block; font-weight: 600; }

.btn-learn-more {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--tl-orange);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    width: fit-content;
    transition: background 0.2s, color 0.2s;
    margin-top: 40px;
}
.btn-learn-more:hover { background: var(--tl-orange); color: #fff; }

.tab-right-ui {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.ui-mockup-bg {
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 24px;
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ui-list-item {
    display: flex;
    gap: 16px;
    align-items: center;
    background: #f4f4f5;
    padding: 12px;
    border-radius: 6px;
}

.check-icon {
    background: var(--tl-orange);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.ui-list-item h4 { font-size: 0.85rem; font-weight: 600; color: #002749; }
.ui-list-item p { font-size: 0.75rem; color: #71717a; margin: 0; }

/* BENTO GRID */

.reach-title {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 500;
    color: #002749;
    max-width: 800px;
    margin: 0 auto 50px auto;
    letter-spacing: -0.5px;
}

/* ── ANIMACIONES DE ENTRADA ── */
.reveal-left, .reveal-right, .reveal-up {
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-left  { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-up    { transform: translateY(32px); }
.reveal-left.visible, .reveal-right.visible, .reveal-up.visible {
    opacity: 1;
    transform: translate(0);
}

/* ── BLOQUE 1 ── */
.perfil-bloque1 { background: #ffffff; padding: 90px 0; }
.pb1-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.pb1-title {
    font-size: clamp(1.5rem, 2.8vw, 2.3rem);
    font-weight: 800; color: #002749;
    line-height: 1.12; letter-spacing: -0.5px;
    margin-bottom: 36px;
}
.pb1-puntos { display: flex; flex-direction: column; gap: 22px; }
.pb1-punto { display: flex; gap: 14px; align-items: flex-start; }
.pb1-dot {
    width: 32px; height: 32px; flex-shrink: 0;
    background: rgba(0,39,73,0.07);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; color: #002749;
    margin-top: 2px;
}
.pb1-punto h4 { font-size: 13px; font-weight: 700; color: #002749; margin-bottom: 4px; }
.pb1-punto p  { font-size: 13px; color: #4b5563; line-height: 1.65; margin: 0; }
.pb1-img {
    width: 100%; height: 340px;
    object-fit: cover; object-position: center 20%;
    border-radius: 10px;
}

/* ── BLOQUE 2 ── */
.perfil-bloque2 { background: #f4f7fa; padding: 90px 0; }
.pb2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.pb2-img {
    width: 100%; height: 380px;
    object-fit: cover; object-position: center 25%;
    border-radius: 10px;
}
.pb2-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 800; color: #002749;
    line-height: 1.15; letter-spacing: -0.3px;
    margin-bottom: 12px;
}
.pb2-sub { font-size: 13px; color: #4b5563; line-height: 1.7; margin-bottom: 22px; }
.pb2-checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pb2-checklist li {
    display: flex; gap: 11px; align-items: flex-start;
    font-size: 13px; color: #1c2a38; line-height: 1.6;
}
.pb2-chk {
    width: 19px; height: 19px; flex-shrink: 0;
    background: #F07E13; color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 700; margin-top: 2px;
}

/* ── CTA COMPACTO ── */
/* ── MODAL FINAL ── */
.tlm-overlay {
    position: fixed; inset: 0;
    background: rgba(0,5,18,0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease;
}
.tlm-overlay.open { opacity: 1; visibility: visible; }

.tlm-box {
    width: 100%; max-width: 780px;
    border-radius: 6px; overflow: hidden;
    transform: translateY(30px) scale(0.96);
    transition: transform .48s cubic-bezier(0.16,1,0.3,1);
    box-shadow: 0 48px 120px rgba(0,0,0,0.55);
}
.tlm-overlay.open .tlm-box { transform: translateY(0) scale(1); }

.tlm-hero {
    position: relative; min-height: 460px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 80px 64px 72px; overflow: hidden;
}
.tlm-bg {
    position: absolute; inset: 0;
}
.tlm-ov {
    position: absolute; inset: 0;
    background: rgba(0,20,50,0.78);
}
.tlm-content { position: relative; z-index: 2; max-width: 560px; }

.tlm-label {
    font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: rgba(255,255,255,0.38);
    margin-bottom: 28px; display: block;
}
.tlm-h1 {
    font-size: clamp(28px, 4.5vw, 46px);
    font-weight: 800; color: #fff;
    line-height: 1.07; letter-spacing: -1.5px; margin-bottom: 16px;
}
.tlm-h1 em { font-style: normal; color: #F07E13; }
.tlm-p {
    font-size: 14px; color: rgba(255,255,255,0.5);
    line-height: 1.75; margin-bottom: 40px;
}
.tlm-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.tlm-btn-a {
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff; color: #002749;
    font-family: 'Poppins', sans-serif;
    font-size: 14px; font-weight: 700;
    padding: 15px 36px; border-radius: 5px;
    text-decoration: none; border: none; cursor: pointer;
    transition: background .2s, transform .15s; white-space: nowrap;
}
.tlm-btn-a:hover { background: #f0f0f0; transform: translateY(-2px); }

.tlm-btn-b {
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.55); color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px; font-weight: 600;
    padding: 14px 34px; border-radius: 5px;
    text-decoration: none; cursor: pointer;
    transition: background .2s, border-color .2s; white-space: nowrap;
}
.tlm-btn-b:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.tlm-contacts {
    position: relative; z-index: 2;
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,10,30,0.82);
}
.tlm-contact {
    flex: 1;
    display: flex; align-items: center; gap: 11px;
    padding: 18px 24px;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-decoration: none; transition: background .2s;
}
.tlm-contact:last-child { border-right: none; }
.tlm-contact:hover { background: rgba(255,255,255,0.06); }

.tlm-c-icon {
    width: 32px; height: 32px; flex-shrink: 0;
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.tlm-c-icon.wa    { background: rgba(37,211,102,0.15); color: #25D366; }
.tlm-c-icon.mail  { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65); }
.tlm-c-icon.phone { background: rgba(240,126,19,0.18); color: #F07E13; }
.tlm-c-label { font-size: 9px; color: rgba(255,255,255,0.28); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.tlm-c-val   { font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 600; }

@media (max-width: 600px) {
    .tlm-hero { padding: 52px 28px 48px; min-height: 380px; }
    .tlm-contacts { flex-direction: column; }
    .tlm-contact { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .tlm-contact:last-child { border-bottom: none; }
}
/* responsive */
@media (max-width: 900px) {
    .pb1-grid, .pb2-grid { grid-template-columns: 1fr; gap: 32px; }
    .pb1-img { height: 240px; }
    .pb2-img { height: 220px; }
    .pb2-grid img { order: -1; }
    .perfil-bloque1, .perfil-bloque2 { padding: 60px 0; }
    .cta-compacto-inner { flex-direction: column; align-items: flex-start; }
}

/* BLOG */
.blog-section { padding: 100px 0; background-color: #ffffff; }

.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.blog-main-title { font-size: 2.2rem; font-weight: 500; color: #002749; }

.btn-read-all {
    background: #002749;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s;
}
.btn-read-all:hover { background: var(--tl-orange); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.blog-card { background: #ffffff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,39,73,0.03); border: 1px solid #f4f4f5; }
.blog-img-wrapper { width: 100%; height: 220px; overflow: hidden; }
.blog-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-img-wrapper img { transform: scale(1.04); }
.blog-info { padding: 24px; }
.blog-tag { display: inline-block; background: rgba(0,39,73,0.05); padding: 4px 8px; font-size: 0.7rem; font-weight: 600; color: #002749; margin-bottom: 16px; border-radius: 4px; }
.blog-info h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.4; margin-bottom: 24px; color: #002749; }
.read-more { text-decoration: none; font-size: 0.8rem; font-weight: 700; color: var(--tl-orange); transition: opacity 0.2s; }
.blog-card:hover .read-more { text-decoration: underline; }

/* WHATSAPP WIDGET */
.wa-widget { position: fixed; right: 30px; bottom: 30px; z-index: 9999; font-family: 'Poppins', sans-serif; }

.wa-button-wrapper { display: flex; flex-direction: row-reverse; align-items: center; gap: 12px; position: relative; }

.wa-trigger-btn {
    width: 60px; height: 60px;
    background-color: #25D366;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    position: relative;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.wa-trigger-btn:hover { transform: scale(1.08); background-color: #20ba5a; }

.wa-trigger-btn .icon-close { position: absolute; opacity: 0; transform: rotate(-180deg); transition: transform 0.3s ease, opacity 0.3s ease; font-size: 24px; }
.wa-trigger-btn .icon-wa { transition: transform 0.3s ease, opacity 0.3s ease; }

.wa-tooltip {
    background-color: #fff;
    color: #1f2937;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    white-space: nowrap;
    pointer-events: none;
    animation: wa-bounce 2s infinite alternate;
}

.wa-chat-box {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.wa-chat-header { background-color: #09183a; padding: 16px; display: flex; align-items: center; gap: 12px; color: #fff; }
.wa-chat-avatar { width: 40px; height: 40px; background-color: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.wa-chat-title h4 { margin: 0; font-size: 14px; font-weight: 600; }
.wa-chat-title span { font-size: 11px; opacity: 0.8; display: block; }
.wa-chat-body { padding: 20px; background-color: #f4f7f6; }
.wa-chat-msg { background-color: #fff; padding: 12px 14px; border-radius: 12px 0 12px 12px; margin: 0; font-size: 13px; color: #333; line-height: 1.5; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.wa-chat-msg strong { color: #09183a; font-size: 14px; }
.wa-chat-footer { padding: 14px; background-color: #fff; text-align: center; }
.wa-chat-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background-color: #25D366; color: #fff; text-decoration: none; padding: 10px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: background-color 0.2s; }
.wa-chat-btn:hover { background-color: #20ba5a; }

.wa-widget.is-active .wa-chat-box { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.wa-widget.is-active .icon-wa { transform: rotate(180deg); opacity: 0; }
.wa-widget.is-active .icon-close { opacity: 1; transform: rotate(0deg); }
.wa-widget.is-active .wa-tooltip { opacity: 0; visibility: hidden; }

@keyframes wa-bounce {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-4px); }
}

/* SK HERO */
.sk-hero-section {
    width: 100%;
    min-height: 100vh;
    background-color: #eef1f4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 4% 60px 4%;
    box-sizing: border-box;
}

.sk-hero-container {
    width: 100%;
    max-width: 1300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sk-hero-left {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
    box-sizing: border-box;
}

.sk-hero-title {
    font-size: clamp(3.5rem, 5vw, 5.2rem);
    font-weight: 800;
    line-height: 0.95;
    color: #1c2a38;
    letter-spacing: -3px;
    margin: 0;
}

.sk-editorial-divider {
    width: 80px;
    height: 2px;
    background-color: var(--naranja-acento);
    margin: 30px 0;
}

.sk-editorial-body { display: flex; flex-direction: column; gap: 20px; margin-bottom: 35px; }

.sk-editorial-paragraph {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0;
}

.sk-search-wrapper { width: 100%; max-width: 400px; }

.sk-btn-go {
    background-color: #002749;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}
.sk-btn-go:hover { background-color: var(--tl-orange); }

.sk-hero-right { flex: 1; display: flex; gap: 20px; height: 520px; }

.sk-card {
    position: relative;
    flex: 1;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}
.sk-card:hover { flex: 3; }

.sk-card-img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.85; transition: transform 0.6s, opacity 0.3s; }

.sk-vertical-title {
    position: absolute;
    bottom: 150px;
    left: 20%;
    transform: translateX(-50%) rotate(-90deg);
    transform-origin: center;
    white-space: nowrap;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.sk-card:hover .sk-vertical-title { opacity: 0; }

.sk-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.sk-card:hover .sk-card-overlay { opacity: 1; }

.sk-card-info { width: 100%; display: flex; justify-content: space-between; align-items: flex-end; color: #ffffff; }
.sk-card-name { font-size: 2.2rem; font-weight: 700; line-height: 1.1; margin: 0; }
.sk-card-stats { text-align: right; display: flex; flex-direction: column; line-height: 1; }
.sk-stat-num { font-size: 2.2rem; font-weight: 700; }
.sk-stat-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 1px; opacity: 0.7; }

/* ── RESPONSIVE GLOBAL ── */
@media (max-width: 1100px) {
    .container-solutions { width: 95%; min-width: unset; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .item-img-2 { grid-column: span 1; }
}

@media (max-width: 992px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .sk-hero-container { flex-direction: column; padding-top: 40px; }
    .sk-hero-left { width: 100%; padding-right: 0; align-items: center; text-align: center; }
    .sk-hero-right { width: 100%; height: 400px; }
    .card-sticky { grid-template-columns: 1fr; height: auto; position: relative !important; top: 0 !important; transform: none !important; }
    .tab-left-content { padding: 30px; }
    .tab-right-ui { height: 250px; }
}

@media (max-width: 768px) {
    .top-bar .tb-container { padding: 0 20px; }
    .top-bar-right { width: 100%; justify-content: center; padding: 9px 0; }
    .blog-grid { grid-template-columns: 1fr; }
    .logos-row { gap: 30px; }
    .partner-logo { height: 35px; }
    .blog-header { flex-direction: column; gap: 16px; align-items: flex-start; }
    .sk-hero-right { height: 320px; gap: 10px; }
    .sk-vertical-title { font-size: 1.2rem; }
    .sk-card-name { font-size: 1.5rem; }
    .sk-stat-num { font-size: 1.5rem; }
}

@media (max-width: 576px) {
    .stats-grid { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
    .about-stats { padding: 60px 0; }
    .global-reach { padding: 60px 0; }
    .blog-section { padding: 60px 0; }
    .solutions-interactive { padding: 60px 0 100px 0; }
    .cards-stack-container { gap: 80px; }
    .wa-widget { right: 15px; bottom: 15px; }
    .wa-chat-box { width: 290px; }
    .wa-tooltip { display: none; }
}