/* =========================================================
   LESTARI SOLUSI
   IT Support • Computer • Network Solutions
   Main Stylesheet
   ========================================================= */


/* =========================================================
   RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2937;
    background: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}


/* =========================================================
   VARIABLES
   ========================================================= */

:root {
    --primary: #0d6efd;
    --primary-dark: #084298;
    --secondary: #0f172a;
    --text: #1f2937;
    --muted: #64748b;
    --light: #f8fafc;
    --white: #ffffff;
    --border: #e2e8f0;
    --success: #16a34a;

    --shadow:
        0 10px 30px rgba(15, 23, 42, 0.08);

    --radius: 14px;
}


/* =========================================================
   GLOBAL
   ========================================================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: var(--muted);
    font-size: 16px;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);

    position: sticky;
    top: 0;

    z-index: 1000;
}

.navbar-container {
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 22px;
    font-weight: bold;

    color: var(--secondary);
}

.logo-icon {
    width: 42px;
    height: 42px;

    background: var(--primary);
    color: var(--white);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    font-weight: bold;
}

.logo span {
    color: var(--primary);
}


/* MENU */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 600;

    color: var(--text);

    transition: 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
}


/* BUTTON NAVBAR */

.nav-button {
    background: var(--primary);

    color: var(--white) !important;

    padding: 10px 18px;

    border-radius: 8px;
}

.nav-button:hover {
    background: var(--primary-dark);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    background:
        linear-gradient(
            135deg,
            #eff6ff 0%,
            #ffffff 55%,
            #f8fafc 100%
        );

    padding: 90px 0;
}

.hero-container {
    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    align-items: center;

    gap: 60px;
}


/* HERO CONTENT */

.hero-content h1 {
    font-size: 52px;

    line-height: 1.15;

    color: var(--secondary);

    margin-bottom: 20px;
}

.hero-content h1 span {
    display: block;

    color: var(--primary);
}

.hero-content p {
    font-size: 18px;

    color: var(--muted);

    max-width: 650px;

    margin-bottom: 30px;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 24px;

    border-radius: 9px;

    font-weight: bold;

    transition: 0.3s;

    border: none;

    cursor: pointer;
}


/* PRIMARY BUTTON */

.btn-primary {
    background: var(--primary);

    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);
}


/* OUTLINE BUTTON */

.btn-outline {
    border: 2px solid var(--primary);

    color: var(--primary);

    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);

    color: var(--white);
}


/* =========================================================
   HERO CARD
   ========================================================= */

.hero-card {
    background: var(--white);

    padding: 35px;

    border-radius: 20px;

    box-shadow: var(--shadow);

    border: 1px solid var(--border);
}

.hero-card-icon {
    width: 70px;
    height: 70px;

    background: #dbeafe;

    color: var(--primary);

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    font-size: 32px;

    margin-bottom: 20px;
}

.hero-card h3 {
    font-size: 24px;

    color: var(--secondary);

    margin-bottom: 12px;
}

.hero-card p {
    color: var(--muted);

    margin-bottom: 20px;
}


/* HERO LIST */

.hero-list {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.hero-list li {
    color: var(--text);

    font-size: 15px;
}

.hero-list li::before {
    content: "✓";

    color: var(--success);

    font-weight: bold;

    margin-right: 10px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services {
    background: var(--white);
}

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.service-card {
    background: var(--white);

    border: 1px solid var(--border);

    padding: 30px;

    border-radius: var(--radius);

    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow);

    border-color: #bfdbfe;
}


/* SERVICE ICON */

.service-icon {
    width: 60px;
    height: 60px;

    background: #eff6ff;

    color: var(--primary);

    border-radius: 12px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 28px;

    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;

    color: var(--secondary);

    margin-bottom: 10px;
}

.service-card p {
    color: var(--muted);

    font-size: 15px;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about {
    background: var(--light);
}

.about-container {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 60px;

    align-items: center;
}

.about-content h2 {
    font-size: 36px;

    color: var(--secondary);

    margin-bottom: 20px;
}

.about-content p {
    color: var(--muted);

    margin-bottom: 18px;
}


/* ABOUT LIST */

.about-list {
    margin-top: 25px;
}

.about-list li {
    margin-bottom: 12px;

    color: var(--text);
}

.about-list li::before {
    content: "✓";

    color: var(--success);

    font-weight: bold;

    margin-right: 10px;
}


/* ABOUT BOX */

.about-box {
    background: var(--white);

    padding: 40px;

    border-radius: 20px;

    box-shadow: var(--shadow);
}

.about-box h3 {
    color: var(--secondary);

    font-size: 24px;

    margin-bottom: 20px;
}


/* ABOUT STAT */

.about-stat {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.stat-item {
    padding: 20px;

    background: var(--light);

    border-radius: 12px;

    text-align: center;
}

.stat-item h4 {
    color: var(--primary);

    font-size: 28px;
}

.stat-item p {
    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   WHY US
   ========================================================= */

.why-us {
    background: var(--white);
}

.why-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.why-card {
    text-align: center;

    padding: 30px 20px;
}


/* WHY ICON */

.why-icon {
    width: 65px;
    height: 65px;

    margin:
        auto
        auto
        20px;

    border-radius: 50%;

    background: #eff6ff;

    color: var(--primary);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 28px;
}

.why-card h3 {
    color: var(--secondary);

    margin-bottom: 10px;
}

.why-card p {
    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   CTA
   ========================================================= */

.cta {
    background: var(--secondary);

    color: var(--white);

    padding: 70px 0;
}

.cta-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.cta h2 {
    font-size: 34px;

    margin-bottom: 10px;
}

.cta p {
    color: #cbd5e1;
}

.cta .btn-primary {
    background: var(--primary);

    white-space: nowrap;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact {
    background: var(--light);
}

.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.contact-card {
    background: var(--white);

    padding: 30px;

    text-align: center;

    border-radius: var(--radius);

    border: 1px solid var(--border);
}


/* CONTACT ICON */

.contact-icon {
    width: 60px;
    height: 60px;

    margin:
        auto
        auto
        18px;

    background: #eff6ff;

    color: var(--primary);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 25px;
}

.contact-card h3 {
    margin-bottom: 8px;

    color: var(--secondary);
}

.contact-card p {
    color: var(--muted);

    font-size: 15px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    background: #020617;

    color: var(--white);

    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr;

    gap: 50px;

    margin-bottom: 40px;
}

.footer h3 {
    margin-bottom: 18px;
}

.footer p {
    color: #94a3b8;

    font-size: 14px;
}


/* FOOTER LINKS */

.footer-links {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-links a {
    color: #94a3b8;

    font-size: 14px;

    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}


/* FOOTER BOTTOM */

.footer-bottom {
    border-top: 1px solid #1e293b;

    padding-top: 20px;

    text-align: center;

    color: #64748b;

    font-size: 13px;
}


/* =========================================================
   WHATSAPP FLOATING BUTTON
   ========================================================= */

.whatsapp-float {
    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 58px;

    height: 58px;

    background: #25d366;

    color: var(--white);

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 27px;

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.2);

    z-index: 999;

    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}


/* =========================================================
   RESPONSIVE TABLET
   ========================================================= */

@media (max-width: 992px) {

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;

        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-container {
        flex-direction: column;

        text-align: center;
    }

    .footer-grid {
        grid-template-columns:
            1fr
            1fr;
    }
}


/* =========================================================
   RESPONSIVE MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .container {
        width: 92%;
    }

    .section {
        padding: 60px 0;
    }

    .navbar-container {
        height: 65px;
    }

    /*
       Untuk sementara menu desktop disembunyikan
       pada layar mobile.
    */

    .nav-menu {
        display: none;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-card {
        padding: 25px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        font-size: 30px;
    }

    .about-stat {
        grid-template-columns:
            1fr
            1fr;
    }

    .cta h2 {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .about-stat {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 52px;

        height: 52px;

        right: 18px;

        bottom: 18px;
    }
}

/* =========================================================
   LESTARI SOLUSI - PREMIUM HERO
   ========================================================= */

.hero-premium {
    position: relative;
    overflow: hidden;
    min-height: 650px;
    padding: 90px 0 100px;

    background:
        radial-gradient(
            circle at 75% 35%,
            rgba(13, 110, 253, 0.12),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #f8fbff 0%,
            #ffffff 50%,
            #eef6ff 100%
        );
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 250px;
    height: 250px;
    background: rgba(13, 110, 253, 0.08);
    top: 50px;
    left: -100px;
}

.hero-glow-2 {
    width: 300px;
    height: 300px;
    background: rgba(37, 211, 102, 0.05);
    bottom: -100px;
    right: -100px;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.hero-premium-container {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    align-items: center;

    gap: 70px;
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.hero-premium-content {
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 8px 15px;

    background: rgba(13, 110, 253, 0.08);

    border: 1px solid rgba(13, 110, 253, 0.15);

    border-radius: 50px;

    color: #0d6efd;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 25px;
}

.badge-dot {
    width: 8px;
    height: 8px;

    background: #16a34a;

    border-radius: 50%;

    box-shadow:
        0 0 0 5px
        rgba(22, 163, 74, 0.12);
}


/* =========================================================
   TITLE
   ========================================================= */

.hero-premium-content h1 {
    font-size: 62px;

    line-height: 1.08;

    letter-spacing: -2px;

    color: #0f172a;

    margin-bottom: 25px;

    font-weight: 800;
}

.hero-premium-content h1 span {
    display: block;
    color: #0d6efd;
}

.hero-premium-content h1 strong {
    display: block;

    font-weight: 800;

    color: #0f172a;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.hero-premium-description {
    max-width: 650px;

    font-size: 17px;

    line-height: 1.8;

    color: #64748b;

    margin-bottom: 32px;
}

.hero-premium-description strong {
    color: #334155;

    font-weight: 600;
}


/* =========================================================
   BUTTON
   ========================================================= */

.hero-premium-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 40px;
}

.btn-premium-primary {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 15px 24px;

    background:
        linear-gradient(
            135deg,
            #0d6efd,
            #0755d6
        );

    color: #ffffff;

    border-radius: 10px;

    font-weight: 700;

    box-shadow:
        0 12px 25px
        rgba(13, 110, 253, 0.25);

    transition: all 0.3s ease;
}

.btn-premium-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 18px 35px
        rgba(13, 110, 253, 0.3);
}

.btn-premium-primary span {
    font-size: 20px;

    transition: 0.3s;
}

.btn-premium-primary:hover span {
    transform: translateX(5px);
}

.btn-premium-secondary {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 24px;

    border: 1.5px solid #cbd5e1;

    background: rgba(255,255,255,0.7);

    color: #0f172a;

    border-radius: 10px;

    font-weight: 700;

    transition: 0.3s;
}

.btn-premium-secondary:hover {
    border-color: #0d6efd;

    color: #0d6efd;

    background: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   TRUST
   ========================================================= */

.hero-trust {
    display: flex;

    align-items: center;

    gap: 20px;

    color: #475569;
}

.trust-item {
    display: flex;

    align-items: center;

    gap: 10px;
}

.trust-icon {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #dcfce7;

    color: #16a34a;

    font-size: 13px;

    font-weight: bold;
}

.trust-item strong {
    display: block;

    font-size: 12px;

    color: #334155;
}

.trust-item small {
    display: block;

    font-size: 10px;

    color: #94a3b8;
}

.trust-divider {
    width: 1px;

    height: 30px;

    background: #e2e8f0;
}


/* =========================================================
   RIGHT VISUAL
   ========================================================= */

.hero-premium-visual {
    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.visual-circle {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(13, 110, 253, 0.14),
            rgba(13, 110, 253, 0.03),
            transparent 70%
        );
}


/* =========================================================
   MAIN IT CARD
   ========================================================= */

.it-main-card {
    position: relative;

    width: 430px;

    min-height: 390px;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.98),
            rgba(248,250,252,0.95)
        );

    border:
        1px solid
        rgba(203,213,225,0.8);

    border-radius: 24px;

    box-shadow:
        0 30px 70px
        rgba(15,23,42,0.14),

        0 10px 25px
        rgba(13,110,253,0.08);

    z-index: 3;
}


/* CARD HEADER */

.it-card-top {
    display: flex;

    align-items: center;

    gap: 15px;

    padding-bottom: 25px;

    border-bottom:
        1px solid
        #e2e8f0;
}

.it-card-icon {
    width: 58px;
    height: 58px;

    background: #dbeafe;

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 27px;
}

.it-card-top span {
    font-size: 10px;

    color: #94a3b8;

    letter-spacing: 1px;

    font-weight: 700;
}

.it-card-top h3 {
    font-size: 19px;

    color: #0f172a;

    margin-top: 3px;
}


/* =========================================================
   NETWORK
   ========================================================= */

.network-graphic {
    position: relative;

    height: 220px;

    margin-top: 15px;
}

.network-line {
    position: absolute;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #bfdbfe,
            #60a5fa
        );

    transform-origin: left center;

    opacity: 0.7;
}

.line-1 {
    width: 120px;

    left: 50%;
    top: 50%;

    transform: rotate(-145deg);
}

.line-2 {
    width: 120px;

    left: 50%;
    top: 50%;

    transform: rotate(-35deg);
}

.line-3 {
    width: 120px;

    left: 50%;
    top: 50%;

    transform: rotate(35deg);
}

.line-4 {
    width: 120px;

    left: 50%;
    top: 50%;

    transform: rotate(145deg);
}

.network-node {
    position: absolute;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ffffff;

    border:
        1px solid
        #dbeafe;

    border-radius: 15px;

    font-size: 22px;

    box-shadow:
        0 10px 25px
        rgba(15,23,42,0.08);

    z-index: 3;
}

.node-main {
    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    width: 70px;
    height: 70px;

    background:
        linear-gradient(
            135deg,
            #0d6efd,
            #0755d6
        );

    border: none;

    font-size: 28px;

    box-shadow:
        0 15px 30px
        rgba(13,110,253,0.3);
}

.node-1 {
    left: 10%;
    top: 15%;
}

.node-2 {
    right: 10%;
    top: 15%;
}

.node-3 {
    left: 10%;
    bottom: 10%;
}

.node-4 {
    right: 10%;
    bottom: 10%;
}


/* =========================================================
   STATUS
   ========================================================= */

.it-status {
    display: flex;

    align-items: center;

    gap: 12px;

    padding-top: 15px;

    border-top:
        1px solid
        #e2e8f0;
}

.status-indicator {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #16a34a;

    box-shadow:
        0 0 0 5px
        rgba(22,163,74,0.12);
}

.it-status strong {
    display: block;

    font-size: 12px;

    color: #334155;
}

.it-status small {
    display: block;

    font-size: 10px;

    color: #94a3b8;
}

.status-online {
    margin-left: auto;

    padding: 5px 10px;

    background: #dcfce7;

    color: #15803d;

    border-radius: 20px;

    font-size: 9px;

    font-weight: 800;
}


/* =========================================================
   FLOATING CARD
   ========================================================= */

.floating-card {
    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 17px;

    background:
        rgba(255,255,255,0.96);

    border:
        1px solid
        #e2e8f0;

    border-radius: 13px;

    box-shadow:
        0 15px 35px
        rgba(15,23,42,0.12);

    backdrop-filter:
        blur(10px);

    animation:
        floatingAnimation
        4s ease-in-out infinite;
}

.floating-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #eff6ff;

    font-size: 18px;
}

.floating-icon.green {
    background: #dcfce7;
}

.floating-card strong {
    display: block;

    color: #0f172a;

    font-size: 12px;
}

.floating-card small {
    display: block;

    color: #94a3b8;

    font-size: 10px;
}

.floating-card-top {
    top: 65px;

    right: -20px;
}

.floating-card-bottom {
    bottom: 65px;

    left: -20px;

    animation-delay: 1.5s;
}


/* =========================================================
   ANIMATION
   ========================================================= */

@keyframes floatingAnimation {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 992px) {

    .hero-premium-container {
        grid-template-columns: 1fr;

        text-align: center;

        gap: 40px;
    }

    .hero-premium-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-premium-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;

        flex-wrap: wrap;
    }

    .hero-premium-visual {
        min-height: 500px;
    }

    .floating-card-top {
        right: 5%;
    }

    .floating-card-bottom {
        left: 5%;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .hero-premium {
        padding: 60px 0 70px;
    }

    .hero-premium-content h1 {
        font-size: 44px;

        letter-spacing: -1.5px;
    }

    .hero-premium-description {
        font-size: 15px;
    }

    .hero-trust {
        gap: 12px;
    }

    .trust-divider {
        display: none;
    }

    .hero-premium-visual {
        min-height: 430px;
    }

    .it-main-card {
        width: 100%;

        max-width: 400px;

        min-height: 360px;

        padding: 22px;
    }

    .visual-circle {
        width: 350px;
        height: 350px;
    }

    .floating-card-top {
        right: 0;
        top: 30px;
    }

    .floating-card-bottom {
        left: 0;
        bottom: 30px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .hero-premium-content h1 {
        font-size: 36px;
    }

    .hero-premium-buttons {
        flex-direction: column;
    }

    .btn-premium-primary,
    .btn-premium-secondary {
        width: 100%;
    }

    .hero-premium-visual {
        min-height: 390px;
    }

    .it-main-card {
        min-height: 330px;

        padding: 18px;
    }

    .it-card-top h3 {
        font-size: 16px;
    }

    .network-graphic {
        height: 180px;
    }

    .network-node {
        width: 42px;
        height: 42px;

        font-size: 17px;
    }

    .node-main {
        width: 58px;
        height: 58px;
    }

    .floating-card {
        padding: 9px 12px;
    }

    .floating-card-top {
        right: -5px;
    }

    .floating-card-bottom {
        left: -5px;
    }

    .floating-icon {
        width: 32px;
        height: 32px;

        font-size: 15px;
    }
}
/* =====================================================
   LOGO LESTARI SOLUSI
   ===================================================== */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 55px;
}

.logo-image {
    width: 180px;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.03);
}
/* =====================================================
   SERVICE DESCRIPTION
   ===================================================== */

.service-description {
    margin-top: 15px;
    text-align: left;
}

.job-heading {
    font-size: 15px;
    font-weight: 700;
    color: #172033;
    margin-bottom: 14px;
}

.job-item {
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #edf0f5;
}

.job-title {
    font-size: 14px;
    font-weight: 700;
    color: #0878ff;
    line-height: 1.5;
}

.job-description {
    margin-top: 3px;
    font-size: 13px;
    line-height: 1.6;
    color: #667085;
}

.description-space {
    height: 8px;
}
