/* Landing page konten tenant custom — dark soft (tidak terlalu pekat) */
.tenant-custom-landing {
    --cl-accent: #13737D;
    --cl-accent-light: #2aabb8;
    --cl-gold: #F5D657;
    --cl-bg: #1c1f26;
    --cl-bg-alt: #22262f;
    --cl-bg-card: #282d38;
    --cl-bg-card-hover: #323845;
    --cl-border: #3a4150;
    --cl-text: #f2f4f8;
    --cl-text-muted: #b8beca;
    --cl-text-dim: #9098a8;
    --cl-radius: 16px;
    --cl-radius-sm: 10px;
    --cl-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
    --cl-shadow-lg: 0 10px 36px rgba(0, 0, 0, 0.28);
}

.tenant-custom-landing section {
    padding: 80px 0;
}

.tenant-custom-landing .cl-section-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 50px;
}

.tenant-custom-landing .cl-section-tag {
    display: inline-block;
    background: rgba(245, 214, 87, 0.12);
    color: var(--cl-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.tenant-custom-landing .cl-section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--cl-text);
    margin-bottom: 16px;
}

.tenant-custom-landing .cl-section-header p {
    color: var(--cl-text-muted);
    font-size: 1.05rem;
}

/* Hero */
.tenant-custom-landing .cl-hero {
    padding: 60px 0 80px;
    background: linear-gradient(160deg, #252a35 0%, var(--cl-bg) 55%, #1a1e27 100%);
}

.tenant-custom-landing .cl-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.tenant-custom-landing .cl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(19, 115, 125, 0.15);
    color: var(--cl-accent-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.tenant-custom-landing .cl-hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--cl-gold);
    border-radius: 50%;
    animation: cl-pulse 2s infinite;
}

@keyframes cl-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.tenant-custom-landing .cl-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--cl-text);
    line-height: 1.15;
    margin-bottom: 20px;
}

.tenant-custom-landing .cl-hero h1 span {
    color: var(--cl-gold);
}

.tenant-custom-landing .cl-hero > .container > .cl-hero-text > p {
    font-size: 1.05rem;
    color: var(--cl-text-muted);
    margin-bottom: 28px;
    max-width: 480px;
}

.tenant-custom-landing .cl-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tenant-custom-landing .cl-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--cl-border);
    color: var(--cl-text);
    background: transparent;
    transition: all 0.25s ease;
}

.tenant-custom-landing .cl-btn-outline:hover {
    border-color: var(--cl-accent);
    color: var(--cl-accent-light);
}

.tenant-custom-landing .cl-hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--cl-border);
}

.tenant-custom-landing .cl-stat-item strong {
    display: block;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--cl-gold);
}

.tenant-custom-landing .cl-stat-item span {
    font-size: 0.85rem;
    color: var(--cl-text-dim);
}

.tenant-custom-landing .cl-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tenant-custom-landing .cl-hero-card {
    background: var(--cl-bg-card);
    border: 1px solid var(--cl-border);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--cl-shadow-lg);
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 380px;
}

.tenant-custom-landing .cl-connect-visual {
    width: 160px;
    height: 140px;
    margin: 0 auto 24px;
}

.tenant-custom-landing .cl-connect-visual svg {
    width: 100%;
    height: 100%;
}

.tenant-custom-landing .cl-connect-visual .wifi-arc {
    fill: none;
    stroke: var(--cl-accent);
    stroke-width: 8;
    stroke-linecap: round;
    opacity: 0;
    animation: cl-wifiFade 2s ease-in-out infinite;
}

.tenant-custom-landing .cl-connect-visual .wifi-arc-1 { animation-delay: 0s; }
.tenant-custom-landing .cl-connect-visual .wifi-arc-2 { animation-delay: 0.4s; }

@keyframes cl-wifiFade {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.tenant-custom-landing .cl-hero-card h3 {
    font-size: 1.15rem;
    color: var(--cl-text);
    margin-bottom: 8px;
}

.tenant-custom-landing .cl-hero-card > p {
    font-size: 0.9rem;
    color: var(--cl-text-dim);
    margin: 0 0 20px;
}

.tenant-custom-landing .cl-hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.tenant-custom-landing .cl-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    padding: 12px 16px;
    border-radius: var(--cl-radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cl-text-muted);
    border: 1px solid var(--cl-border);
}

.tenant-custom-landing .cl-highlight-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    background: rgba(19, 115, 125, 0.2);
}

.tenant-custom-landing .cl-float-badge {
    position: absolute;
    background: var(--cl-bg-card);
    border: 1px solid var(--cl-border);
    border-radius: var(--cl-radius-sm);
    padding: 10px 16px;
    box-shadow: var(--cl-shadow);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cl-gold);
    animation: cl-float 3s ease-in-out infinite;
}

.tenant-custom-landing .cl-float-badge.green { top: 20px; right: -16px; }
.tenant-custom-landing .cl-float-badge.orange { bottom: 28px; left: -20px; animation-delay: 1.5s; }

@keyframes cl-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Features */
.tenant-custom-landing .cl-features {
    background: var(--cl-bg-alt);
}

.tenant-custom-landing .cl-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tenant-custom-landing .cl-feature-card {
    background: var(--cl-bg-card);
    border: 1px solid var(--cl-border);
    border-radius: var(--cl-radius);
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.tenant-custom-landing .cl-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--cl-accent);
    box-shadow: var(--cl-shadow);
}

.tenant-custom-landing .cl-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.4rem;
    background: rgba(245, 214, 87, 0.1);
}

.tenant-custom-landing .cl-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cl-text);
    margin-bottom: 10px;
}

.tenant-custom-landing .cl-feature-card p {
    font-size: 0.92rem;
    color: var(--cl-text-dim);
    margin: 0;
}

/* Pricing */
.tenant-custom-landing .cl-pricing {
    background: var(--cl-bg);
}

.tenant-custom-landing .cl-server-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.tenant-custom-landing .cl-server-tab {
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid var(--cl-border);
    background: var(--cl-bg-card);
    color: var(--cl-text-muted);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tenant-custom-landing .cl-server-tab:hover {
    border-color: var(--cl-accent);
    color: var(--cl-text);
}

.tenant-custom-landing .cl-server-tab.active {
    background: var(--cl-gold);
    border-color: var(--cl-gold);
    color: #0e101b;
    box-shadow: var(--cl-shadow);
}

.tenant-custom-landing .cl-pricing-panel {
    animation: cl-fadeIn 0.25s ease;
}

.tenant-custom-landing .cl-pricing-panel[hidden] {
    display: none !important;
}

@keyframes cl-fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.tenant-custom-landing .cl-server-label {
    text-align: center;
    color: var(--cl-text-dim);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.tenant-custom-landing .cl-server-label strong {
    color: var(--cl-text-muted);
}

.tenant-custom-landing .cl-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    padding-top: 12px;
}

.tenant-custom-landing .cl-pricing-card {
    background: var(--cl-bg-card);
    border: 2px solid var(--cl-border);
    border-radius: var(--cl-radius);
    padding: 32px 20px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    min-height: 260px;
    width: 100%;
    max-width: 100%;
}

.tenant-custom-landing .cl-pricing-card:hover {
    border-color: var(--cl-accent);
    box-shadow: var(--cl-shadow);
}

.tenant-custom-landing .cl-pricing-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cl-text);
    margin-bottom: 8px;
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.tenant-custom-landing .cl-speed-label {
    font-size: 0.85rem;
    color: var(--cl-text-dim);
    margin-bottom: 18px;
    min-height: 2.5em;
}

.tenant-custom-landing .cl-package-keterangan {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cl-accent-light);
    margin: 0 0 16px;
    min-height: 1.5em;
    line-height: 1.4;
    width: 100%;
}

.tenant-custom-landing .cl-price {
    margin-bottom: 20px;
    min-height: 3.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tenant-custom-landing .cl-price strong {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--cl-gold);
}

.tenant-custom-landing .cl-price span {
    font-size: 0.9rem;
    color: var(--cl-text-dim);
}

.tenant-custom-landing .cl-pricing-features {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
    width: 100%;
    padding: 0;
}

.tenant-custom-landing .cl-pricing-features li {
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--cl-text-muted);
    border-bottom: 1px solid var(--cl-border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tenant-custom-landing .cl-pricing-features li::before {
    content: '✓';
    color: var(--cl-accent-light);
    font-weight: 700;
}

.tenant-custom-landing .cl-pricing-card .btn,
.tenant-custom-landing .cl-pricing-card .cl-btn-outline {
    width: 100%;
    margin-top: auto;
    justify-content: center;
}

.tenant-custom-landing .cl-pricing-empty {
    text-align: center;
    padding: 48px 24px;
    background: var(--cl-bg-card);
    border: 1px solid var(--cl-border);
    border-radius: var(--cl-radius);
    color: var(--cl-text-dim);
}

/* CTA / Kontak */
.tenant-custom-landing .cl-cta {
    background: var(--cl-bg-alt);
    padding: 80px 0;
}

.tenant-custom-landing .cl-cta-box {
    background: var(--cl-bg-card);
    border: 1px solid var(--cl-border);
    border-radius: 24px;
    padding: 56px 40px;
    text-align: center;
    box-shadow: var(--cl-shadow);
}

.tenant-custom-landing .cl-cta-box h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--cl-text);
    margin-bottom: 16px;
}

.tenant-custom-landing .cl-cta-box > p {
    color: var(--cl-text-muted);
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.tenant-custom-landing .cl-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.tenant-custom-landing .cl-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    background: #25D366;
    color: #fff;
    border: none;
    transition: all 0.25s ease;
}

.tenant-custom-landing .cl-btn-wa:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
}

.tenant-custom-landing .cl-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
    text-align: left;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.tenant-custom-landing .cl-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--cl-text-muted);
}

.tenant-custom-landing .cl-contact-info-item a {
    color: var(--cl-text-muted);
}

.tenant-custom-landing .cl-contact-info-item a:hover {
    color: var(--cl-gold);
}

.tenant-custom-landing .cl-contact-info-item .icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .tenant-custom-landing .cl-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tenant-custom-landing .cl-hero > .container > .cl-hero-text > p {
        margin-left: auto;
        margin-right: auto;
    }

    .tenant-custom-landing .cl-hero-actions { justify-content: center; }
    .tenant-custom-landing .cl-hero-stats { justify-content: center; }
    .tenant-custom-landing .cl-hero-visual { margin-top: 16px; }

    .tenant-custom-landing .cl-features-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }
}

@media (max-width: 1100px) {
    .tenant-custom-landing .cl-pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .tenant-custom-landing section { padding: 60px 0; }
    .tenant-custom-landing .cl-hero { padding: 40px 0 60px; }
    .tenant-custom-landing .cl-hero-stats { flex-direction: column; gap: 16px; align-items: center; }
    .tenant-custom-landing .cl-float-badge { display: none; }
    .tenant-custom-landing .cl-cta-box { padding: 40px 24px; }

    .tenant-custom-landing .cl-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .tenant-custom-landing .cl-pricing-grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
}

html {
    scroll-behavior: smooth;
}

/* Body & area konten — dark soft, bukan hitam pekat */
.theme-dark body.tenant-custom-brand {
    background-color: #1c1f26 !important;
}

.theme-dark body.tenant-custom-brand .top-header {
    background-color: #22262f;
}

.theme-dark body.tenant-custom-brand .navbar-area,
.theme-dark body.tenant-custom-brand .bahama-nav {
    background-color: #282d38;
}
