/* Prevent horizontal scroll on mobile */
html, body { overflow-x: hidden; }

/* ==================== TOP BAR ==================== */
.dl-topbar {
    background: #0a0a0a;
    color: #c4b5fd;
    font-size: 13px;
    line-height: 1;
    height: 36px;
    display: flex;
    align-items: center;
}
.dl-topbar-inner {
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.dl-topbar a {
    color: #c4b5fd;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.dl-topbar a:hover {
    color: #fff;
}
.dl-topbar-sep {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.2);
}
.dl-topbar-lang {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background 0.2s;
}
.dl-topbar-lang:hover {
    background: rgba(255,255,255,0.1);
}
.dl-topbar-lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 20px 40px -8px rgba(0,0,0,0.18);
    width: 320px;
    max-height: 380px;
    overflow-y: auto;
    padding: 8px;
    display: none;
    z-index: 2000;
}
.dl-topbar-lang-dropdown.dl-open {
    display: block;
}
.dl-topbar-lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: #374151;
    border-radius: 6px;
    font-size: 13px;
    transition: background 0.15s;
}
.dl-topbar-lang-dropdown a:hover {
    background: #f3f4f6;
    color: #111827;
}
.dl-topbar-lang-dropdown a.dl-active-lang {
    background: #eff6ff;
    color: #111;
    font-weight: 600;
}

/* ==================== NAVBAR ==================== */
.dl-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.dl-navbar.dl-scrolled {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.06);
    border-bottom-color: transparent;
}
.dl-navbar-inner {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 64px;
}

/* ==================== LOGO ==================== */
.dl-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.dl-logo-svg {
    height: 26px;
    width: auto;
    color: #111;
    transition: color 0.4s ease;
}
.dl-logo-dot {
    transition: fill 0.4s ease;
}
/* Navbar dark mode: logo blanco, punto naranja */
.dl-navbar.scrolled-dark .dl-logo-svg {
    color: #fff;
}
.dl-navbar.scrolled-dark .dl-logo-dot {
    fill: #f97316;
}

/* ==================== NAV CENTER ==================== */
.dl-nav-center {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 40px;
}
.dl-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    user-select: none;
}
.dl-nav-item:hover,
.dl-nav-item.dl-active {
    color: #111827;
    background: #f3f4f6;
}
.dl-nav-item svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
.dl-nav-item.dl-active svg {
    transform: rotate(180deg);
}

/* ==================== NAV ACTIONS ==================== */
.dl-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.dl-btn-login {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    border: 1.5px solid #d1d5db;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.dl-btn-login:hover {
    border-color: #111;
    color: #111;
    background: #eff6ff;
}
.dl-btn-trial {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #0a0a0a;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.dl-btn-trial:hover {
    background: #f97316;
    box-shadow: 0 4px 12px rgba(249,115,22,0.35);
    transform: translateY(-1px);
}
.dl-btn-ai-agent {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(37,99,235,0.25);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.dl-btn-ai-agent::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    opacity: 0;
    transition: opacity 0.3s;
}
.dl-btn-ai-agent:hover::before { opacity: 1; }
.dl-btn-ai-agent:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(124,58,237,0.4);
}
.dl-btn-ai-agent svg,
.dl-btn-ai-agent span { position: relative; z-index: 1; }
.dl-ai-pulse {
    width: 6px; height: 6px;
    background: #4ade80;
    border-radius: 50%;
    animation: aiPulse 1.5s ease-in-out infinite;
}
@keyframes aiPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
    50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(74,222,128,0); }
}

/* ==================== MEGA MENU OVERLAY ==================== */
.dl-mega-overlay {
    position: fixed;
    inset: 0;
    z-index: 998;
    display: none;
}
.dl-mega-overlay.dl-open {
    display: block;
}

/* ==================== MEGA MENU ==================== */
.dl-mega {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    cursor: pointer;
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    pointer-events: none;
    padding-top: 12px;
    margin-top: -12px;
}
/* Triangulo/flecha tipo chat apuntando al nav-item */
.dl-mega::before {
    content: '';
    position: absolute;
    top: -11px;
    left: var(--arrow-left, 200px);
    width: 16px;
    height: 16px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
    transform: rotate(45deg);
    z-index: 1000;
}
.dl-mega.dl-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* --- TABS ROW --- */
.dl-mega-tabs {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    padding: 0 32px;
    border-bottom: 1px solid #e5e7eb;
}
.dl-mega-tab {
    padding: 14px 24px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    user-select: none;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    white-space: nowrap;
}
.dl-mega-tab:hover {
    color: #374151;
}
.dl-mega-tab.dl-tab-active {
    color: #111;
    border-bottom-color: #111;
}

/* --- TAB CONTENT PANELS --- */
.dl-mega-tab-panel {
    display: none;
}
.dl-mega-tab-panel.dl-tab-panel-active {
    display: block;
}

/* --- MAIN BODY (left + right) --- */
.dl-mega-body {
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
}
.dl-mega-left {
    flex: 1;
    min-width: 0;
    padding: 0 32px 24px;
}
.dl-mega-right {
    width: 280px;
    flex-shrink: 0;
    background: #f9fafb;
    border-left: 1px solid #e5e7eb;
    padding: 28px 24px 24px;
}

/* --- FEATURED CARDS ROW (Cloudflare pattern) --- */
.dl-mega-featured-row {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #e5e7eb;
    background: #fafbfc;
}
.dl-mega-featured-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    text-decoration: none;
    transition: background 0.2s;
    border-right: 1px solid #e5e7eb;
    min-width: 0;
}
.dl-mega-featured-card:last-child {
    border-right: none;
}
.dl-mega-featured-card:hover {
    background: #f0f5ff;
}
.dl-mega-featured-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dl-mega-featured-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}
.dl-mega-featured-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 7px;
}
.dl-mega-featured-desc {
    font-size: 12.5px;
    color: #6b7280;
    margin-top: 2px;
    line-height: 1.4;
}

/* --- SECTION TITLE (SOLUCIONES, PRODUCTOS, etc.) --- */
.dl-mega-section-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #111;
    margin-bottom: 16px;
    padding: 0;
}

/* --- COLUMNS GRID --- */
.dl-mega-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 28px;
}
.dl-mega-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 28px;
}

.dl-mega-col-title {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
    margin-bottom: 10px;
    padding: 0;
}

/* --- PLAIN TEXT LINKS (Cloudflare pattern - no icons) --- */
.dl-mega-text-link {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: color 0.15s;
    line-height: 1.4;
}
.dl-mega-text-link:hover {
    color: #111;
}

/* --- OLD ICON LINKS (kept for backwards compat) --- */
.dl-mega-link {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s;
    margin-bottom: 2px;
}
.dl-mega-link:hover {
    background: #f3f4f6;
}
.dl-mega-link-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 1px;
    color: #111;
}
.dl-mega-link-text {
    min-width: 0;
}
.dl-mega-link-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: 1.2;
}
.dl-mega-link-desc {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
    line-height: 1.35;
}
.dl-badge {
    display: inline-flex;
    align-items: center;
    padding: 1px 7px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    line-height: 18px;
}
.dl-badge-green {
    background: #f0f0f0;
    color: #111;
}
.dl-badge-purple {
    background: #111;
    color: #fff;
}

/* --- BOTTOM ROW (cards with circular icons) --- */
.dl-mega-bottom-row {
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
    margin-top: 20px;
}
.dl-mega-bottom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.dl-mega-bottom-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s;
}
.dl-mega-bottom-card:hover {
    background: #f3f4f6;
}
.dl-mega-bottom-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dl-mega-bottom-icon svg {
    width: 20px;
    height: 20px;
    color: #374151;
}
.dl-mega-bottom-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 7px;
    line-height: 1.2;
}
.dl-mega-bottom-desc {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
    line-height: 1.35;
}

/* --- PRODUCTOS TAB: product cards --- */
.dl-mega-product-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s;
}
.dl-mega-product-card:hover {
    background: #f3f4f6;
}
.dl-mega-product-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dl-mega-product-icon svg {
    width: 20px;
    height: 20px;
    color: #111;
}
.dl-mega-product-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #111827;
    line-height: 1.2;
}
.dl-mega-product-desc {
    font-size: 12px;
    color: #6b7280;
    margin-top: 3px;
    line-height: 1.35;
}

/* --- PRICING CARDS ROW --- */
.dl-mega-pricing-row {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
    margin-top: 8px;
}
.dl-mega-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.dl-mega-pricing-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.dl-mega-pricing-card:hover {
    border-color: #111;
    box-shadow: 0 4px 12px rgba(37,99,235,0.1);
}
.dl-mega-pricing-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dl-mega-pricing-icon svg {
    width: 20px;
    height: 20px;
    color: #111;
}
.dl-mega-pricing-name {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    line-height: 1.2;
}
.dl-mega-pricing-desc {
    font-size: 11.5px;
    color: #6b7280;
    margin-top: 3px;
    line-height: 1.35;
}

/* --- CHANNELS ROW --- */
.dl-mega-channels-row {
    background: #eff6ff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
}
.dl-mega-channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.dl-mega-channel-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: rgba(255,255,255,0.8);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.15s, box-shadow 0.15s;
}
.dl-mega-channel-card:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(37,99,235,0.1);
}
.dl-mega-channel-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dl-mega-channel-icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
}
.dl-mega-channel-name {
    font-size: 12.5px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
}
.dl-mega-channel-desc {
    font-size: 11px;
    color: #6b7280;
    margin-top: 2px;
    line-height: 1.3;
}

/* Right panel sections */
.dl-mega-right-title {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
    margin-bottom: 10px;
}
.dl-mega-right-title:not(:first-child) {
    margin-top: 20px;
}
.dl-sector-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 4px;
}
.dl-sector-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border: 1.5px solid #e5e7eb;
    border-radius: 99px;
    font-size: 12.5px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.dl-sector-tag:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}
.dl-mega-right-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 13.5px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color 0.15s;
}
.dl-mega-right-link:hover {
    color: #111;
}
.dl-mega-right-link svg {
    width: 16px;
    height: 16px;
    color: #9ca3af;
    flex-shrink: 0;
}
.dl-mega-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: #111;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
    cursor: pointer;
}
.dl-mega-cta:hover {
    background: #1d4ed8;
}

/* Bottom feature row */
.dl-mega-bottom {
    background: #eff6ff;
    border-top: 1px solid #e9e3fb;
}
.dl-mega-bottom-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    gap: 20px;
}
.dl-feature-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.7);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    min-width: 0;
}
.dl-feature-card:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(124,58,237,0.1);
}
.dl-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dl-feature-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}
.dl-feature-text {
    min-width: 0;
}
.dl-feature-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 7px;
}
.dl-feature-desc {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
    line-height: 1.35;
}

/* ==================== DROPDOWN (legacy - kept for compat) ==================== */
.dl-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: 1px solid #e5e7eb;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 20px 40px -8px rgba(0,0,0,0.15);
    padding: 8px;
    width: 320px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 999;
    pointer-events: none;
}
/* Triangulo del dropdown */
.dl-dropdown::before {
    content: '';
    position: absolute;
    top: -11px;
    left: 50%;
    margin-left: -8px;
    width: 16px;
    height: 16px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-left: 1px solid #e5e7eb;
    transform: rotate(45deg);
    z-index: 1000;
}
.dl-dropdown.dl-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.dl-dropdown-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s;
}
.dl-dropdown-link:hover {
    background: #f3f4f6;
}
.dl-dropdown-link-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #111;
}
.dl-dropdown-link-name {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}
.dl-dropdown-link-desc {
    font-size: 12.5px;
    color: #6b7280;
    margin-top: 2px;
    line-height: 1.35;
}

/* ==================== HAMBURGER ==================== */
.dl-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    border-radius: 8px;
    transition: background 0.2s;
    position: relative;
}
.dl-hamburger:hover {
    background: #f3f4f6;
}
.dl-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: absolute;
}
.dl-hamburger span:nth-child(1) { transform: translateY(-6px); }
.dl-hamburger span:nth-child(2) { transform: translateY(0); }
.dl-hamburger span:nth-child(3) { transform: translateY(6px); }
.dl-hamburger.dl-open span:nth-child(1) { transform: rotate(45deg); }
.dl-hamburger.dl-open span:nth-child(2) { opacity: 0; }
.dl-hamburger.dl-open span:nth-child(3) { transform: rotate(-45deg); }

/* ==================== MOBILE MENU ==================== */
.dl-mobile-menu {
    display: none;
    position: fixed;
    top: 100px; /* 36px topbar + 64px navbar */
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 997;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 120px;
}
.dl-mobile-menu.dl-open {
    display: block;
}
.dl-mobile-section {
    border-bottom: 1px solid #f3f4f6;
}
.dl-mobile-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    user-select: none;
    transition: background 0.15s;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}
.dl-mobile-section-header:hover {
    background: #f9fafb;
}
.dl-mobile-section-toggle {
    font-size: 20px;
    font-weight: 300;
    color: #9ca3af;
    transition: transform 0.25s ease;
    width: 24px;
    text-align: center;
    line-height: 1;
}
.dl-mobile-section.dl-expanded .dl-mobile-section-toggle {
    transform: rotate(45deg);
}
.dl-mobile-section-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.dl-mobile-section.dl-expanded .dl-mobile-section-body {
    max-height: 1200px;
}
.dl-mobile-group-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9ca3af;
    padding: 12px 32px 6px;
}
.dl-mobile-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 32px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: background 0.15s;
    cursor: pointer;
}
.dl-mobile-link:hover {
    background: #f9fafb;
}
.dl-mobile-link .dl-badge {
    font-size: 9px;
}
.dl-mobile-direct-link {
    display: block;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.15s;
    cursor: pointer;
}
.dl-mobile-direct-link:hover {
    background: #f9fafb;
}
.dl-mobile-bottom {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}
.dl-mobile-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    cursor: pointer;
    touch-action: manipulation;
}
.dl-mobile-bottom .dl-btn-login,
.dl-mobile-bottom .dl-btn-trial {
    justify-content: center;
    padding: 12px 20px;
    font-size: 15px;
    width: 100%;
    text-align: center;
}
.dl-mobile-lang {
    padding: 10px 0 0;
    width: 100%;
}
.dl-mobile-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s;
    width: 100%;
    touch-action: manipulation;
}
.dl-mobile-lang-btn:hover {
    border-color: #111;
}
.dl-mobile-lang-list {
    display: none;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
}
.dl-mobile-lang-list.dl-open {
    display: flex;
}
.dl-mobile-lang-list a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 13px;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.15s;
}
.dl-mobile-lang-list a:hover {
    background: #f3f4f6;
}

/* ==================== TOUCH FIX (iPhone 300ms delay) ==================== */
.dl-hamburger,
.dl-mobile-section-header,
.dl-mobile-direct-link,
.dl-mobile-link,
.dl-mobile-bottom a {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .dl-topbar { display: none; }
    .dl-nav-center { display: none; }
    .dl-nav-actions { display: none; }
    .dl-hamburger { display: flex; }
    .dl-mobile-menu { top: 64px; }
}
@media (min-width: 1025px) {
    .dl-mobile-menu { display: none !important; }
}
