/* =========================================
   Anekaragam — Corporate Website
   style.css
   ========================================= */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
    --primary-blue: #08428C;
    --ocean-blue: #1560B3;
    --sky-blue: #4FA3D8;
    --soft-blue: #A7C5E6;
    --ice-blue: #DCEAF6;
    --deep-navy: #071B3D;
    --steel-blue: #5C6F8A;
    --metallic-silver: #C9D1D9;
    --pure-white: #F5F7FA;

    --gradient-hero: linear-gradient(135deg, #071B3D 0%, #08428C 35%, #1560B3 70%, #4FA3D8 100%);
    --gradient-glass: linear-gradient(180deg, #DCEAF6 0%, #A7C5E6 50%, #C9D1D9 100%);
    --gradient-card: linear-gradient(145deg, rgba(220, 234, 246, 0.6) 0%, rgba(167, 197, 230, 0.3) 100%);

    --font-primary: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(7, 27, 61, 0.06);
    --shadow-md: 0 4px 20px rgba(7, 27, 61, 0.1);
    --shadow-lg: 0 8px 40px rgba(7, 27, 61, 0.14);
    --shadow-xl: 0 16px 60px rgba(7, 27, 61, 0.18);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background-color: var(--pure-white);
    color: var(--deep-navy);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* --- Utility --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 4rem;
    }
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--deep-navy);
}

/* --- Focus State --- */
:focus-visible {
    outline: 2px solid var(--sky-blue);
    outline-offset: 3px;
    border-radius: 4px;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* DEFAULT: Transparan penuh — di atas hero biru */
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    padding: 0;
}

/* SAAT SCROLL: Glassmorphism dengan warna gelap */
.navbar.nav-scrolled {
    background: rgba(245, 247, 250, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
    border-bottom-color: rgba(201, 209, 217, 0.5);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    transition: height 0.3s ease;
}

.navbar.nav-scrolled .navbar-inner {
    height: 60px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-logo img {
    height: 36px;
    width: auto;
    /* Default: filter putih saat di atas hero biru */
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

/* Saat scroll: logo kembali ke warna asli */
.navbar.nav-scrolled .navbar-logo img {
    filter: none;
}

/* Ketika menu mobile terbuka: logo tetap putih di atas overlay gelap */
.navbar.menu-open .navbar-logo img {
    filter: brightness(0) invert(1) !important;
}

/* Ketika menu mobile terbuka: background navbar transparan agar overlay gelap penuh ke atas */
.navbar.menu-open {
    background: transparent !important;
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
}

.navbar.menu-open .hamburger span {
    background: #fff !important;
}

.navbar-menu {
    display: none;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

@media (min-width: 1024px) {
    .navbar-menu {
        display: flex;
    }
}

.navbar-menu a {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.875rem;
    font-size: 0.9rem;
    font-weight: 500;
    /* Default: putih saat di atas hero biru */
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-sm);
    transition: color 0.3s ease, background 0.3s ease;
}

.navbar-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.navbar-menu a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

/* Saat scroll: warna gelap normal */
.navbar.nav-scrolled .navbar-menu a {
    color: var(--steel-blue);
}

.navbar.nav-scrolled .navbar-menu a:hover,
.navbar.nav-scrolled .navbar-menu a.active {
    color: var(--primary-blue);
    background: rgba(79, 163, 216, 0.1);
}

/* Blog Dropdown Override — agar link di dalam dropdown tetap terbaca */
.navbar-menu .group > div a {
    color: #1f2937 !important;
    background: transparent !important;
    font-weight: 500;
}
.navbar-menu .group > div a:hover {
    color: #2563eb !important;
    background: #eff6ff !important;
}
.navbar-menu .group > div a:first-child {
    font-weight: 600;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-right .btn-primary {
    display: none;
}

@media (min-width: 1024px) {
    .navbar-right .btn-primary {
        display: inline-flex;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    background: var(--primary-blue);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

/* Default (di atas hero biru): outline putih */
.navbar:not(.nav-scrolled) .navbar-right .btn-primary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    box-shadow: none;
}

.navbar:not(.nav-scrolled) .navbar-right .btn-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
    transform: scale(1.03);
    box-shadow: none;
}

/* btn-primary hover (global & saat scrolled di navbar) */
.btn-primary:hover {
    background: var(--ocean-blue);
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(8, 66, 140, 0.35);
    color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    background: transparent;
    color: var(--primary-blue);
    font-family: var(--font-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--primary-blue);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: rgba(8, 66, 140, 0.06);
    transform: scale(1.03);
    color: var(--primary-blue);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.03);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    gap: 5px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    padding: 4px;
}

/* Hover hamburger saat di atas hero: efek putih */
.hamburger:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Hover hamburger saat scrolled: efek biru */
.navbar.nav-scrolled .hamburger:hover {
    background: rgba(8, 66, 140, 0.08);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    /* Default: putih saat di atas hero biru */
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* Hover effect on bars */
.hamburger:not(.open):hover span:nth-child(1) {
    transform: translateY(-1px);
}
.hamburger:not(.open):hover span:nth-child(3) {
    transform: translateY(1px);
}

/* Saat scroll: bars kembali biru */
.navbar.nav-scrolled .hamburger span {
    background: var(--primary-blue);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hamburger.open span {
    background: #fff; /* Putih agar kontras di atas overlay gelap */
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

/* Mobile Menu — Fullscreen Overlay */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(7, 27, 61, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 40;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
}

.mobile-menu.open {
    transform: translateY(0);
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--sky-blue);
    transform: translateY(-2px);
}

/* Sequential fade-in-up animation when mobile menu is open */
.mobile-menu.open ul li {
    animation: slideInUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}
.mobile-menu.open ul li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu.open ul li:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu.open ul li:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu.open ul li:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu.open ul li:nth-child(5) { animation-delay: 0.3s; }

.mobile-menu.open .btn-primary {
    animation: slideInUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.35s;
    opacity: 0;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tombol di dalam mobile-menu: selalu biru solid */
.mobile-menu .btn-primary {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    background: var(--primary-blue) !important;
    color: #fff !important;
    border: none !important;
    backdrop-filter: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu .btn-primary:hover {
    background: var(--ocean-blue) !important;
    box-shadow: 0 4px 16px rgba(8, 66, 140, 0.35) !important;
    transform: scale(1.03) translateY(-2px);
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-32px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

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

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

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(79, 163, 216, 0);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(79, 163, 216, 0.15);
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* =========================================
   SECTION HERO
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    padding-top: 68px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(79, 163, 216, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(8, 66, 140, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@media (min-width: 1024px) {
    .hero::before {
        background: radial-gradient(ellipse at 70% 50%, rgba(79, 163, 216, 0.15) 0%, transparent 60%),
            radial-gradient(ellipse at 20% 80%, rgba(8, 66, 140, 0.2) 0%, transparent 50%);
    }
}

/* Grid overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0 2.5rem;
}

@media (min-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 4rem;
        padding: 6rem 0;
    }
}

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

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.875rem;
    background: rgba(79, 163, 216, 0.15);
    border: 1px solid rgba(79, 163, 216, 0.35);
    border-radius: 100px;
    color: #A7C5E6;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    animation: fadeIn 0.8s ease 0.2s both;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 1.25rem;
    animation: slideUp 0.8s ease 0.3s both;
}

@media (min-width: 480px) {
    .hero-title {
        font-size: 2.6rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
        margin-bottom: 1.5rem;
    }
}

.hero-title span {
    background: linear-gradient(90deg, #A7C5E6, #4FA3D8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 0.95rem;
    color: rgba(167, 197, 230, 0.9);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 0.8s ease 0.45s both;
}

@media (min-width: 1024px) {
    .hero-desc {
        font-size: 1.1rem;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 2.5rem;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    animation: slideUp 0.8s ease 0.55s both;
    align-items: center;
}

.hero-cta .btn-hero-primary,
.hero-cta .btn-outline-white {
    width: 100%;
    max-width: 320px;
    justify-content: center;
}

@media (min-width: 480px) {
    .hero-cta {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-cta .btn-hero-primary,
    .hero-cta .btn-outline-white {
        width: auto;
        max-width: none;
    }
}

@media (min-width: 1024px) {
    .hero-cta {
        justify-content: flex-start;
    }
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: #fff;
    color: var(--primary-blue);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: var(--ice-blue);
    transform: scale(1.03);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.25);
    color: var(--primary-blue);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.8s ease 0.65s both;
}

@media (min-width: 1024px) {
    .hero-stats {
        justify-content: flex-start;
        gap: 2rem;
        margin-top: 3rem;
    }
}

.hero-stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(167, 197, 230, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: slideUp 0.8s ease 0.5s both;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Di mobile: opacity lebih rendah agar tidak mendominasi */
    opacity: 0.75;
}

@media (min-width: 1024px) {
    .hero-visual {
        opacity: 1;
    }
}

.hero-dashboard {
    position: relative;
    background: rgba(7, 27, 61, 0.6);
    border: 1px solid rgba(79, 163, 216, 0.25);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-xl), 0 0 60px rgba(79, 163, 216, 0.1);
    animation: float 5s ease-in-out infinite;
    max-width: 480px;
    width: 100%;
}

.hero-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid rgba(79, 163, 216, 0.15);
}

.hero-dashboard-dots {
    display: flex;
    gap: 5px;
}

.hero-dashboard-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.hero-dashboard-dots span:nth-child(1) {
    background: #FF5F57;
}

.hero-dashboard-dots span:nth-child(2) {
    background: #FFBD2E;
}

.hero-dashboard-dots span:nth-child(3) {
    background: #28CA41;
}

.dashboard-title-bar {
    font-size: 0.75rem;
    color: rgba(167, 197, 230, 0.6);
    font-weight: 500;
}

/* Dashboard Metrics Grid */
.dashboard-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(79, 163, 216, 0.12);
    border-radius: var(--radius-md);
    padding: 0.875rem;
}

.metric-label {
    font-size: 0.65rem;
    color: rgba(167, 197, 230, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}

.metric-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.metric-change {
    font-size: 0.65rem;
    font-weight: 600;
    color: #28CA41;
}

.metric-change.down {
    color: #FF5F57;
}

/* Chart Bar */
.dashboard-chart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(79, 163, 216, 0.1);
    border-radius: var(--radius-md);
    padding: 0.875rem;
    margin-bottom: 0.75rem;
}

.chart-label {
    font-size: 0.65rem;
    color: rgba(167, 197, 230, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.chart-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, #4FA3D8, #1560B3);
    transition: var(--transition);
    position: relative;
}

.chart-bar.accent {
    background: linear-gradient(180deg, #A7C5E6, #4FA3D8);
}

/* Activity List */
.dashboard-activity {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
}

.activity-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.activity-text {
    font-size: 0.7rem;
    color: rgba(167, 197, 230, 0.65);
    flex: 1;
}

.activity-time {
    font-size: 0.65rem;
    color: rgba(167, 197, 230, 0.35);
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
    /* Sembunyikan di mobile agar tidak keluar container */
    display: none;
}

@media (min-width: 768px) {
    .float-card {
        display: flex;
    }
}

.float-card-1 {
    top: -1.5rem;
    right: -5rem;
    animation: float 4s ease-in-out 1s infinite;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.float-card-2 {
    bottom: -1.5rem;
    left: -1.5rem;
    animation: float 4.5s ease-in-out 0.5s infinite;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.float-card-icon {
    font-size: 1.25rem;
}

.float-card-label {
    font-size: 0.72rem;
    color: var(--steel-blue);
    font-weight: 500;
}

.float-card-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-blue);
}

@media (max-width: 640px) {
    .float-card {
        display: none;
    }
}

/* =========================================
   SECTION LAYANAN
   ========================================= */
.section-layanan {
    padding: 5rem 0;
    background: var(--pure-white);
}

@media (min-width: 768px) {
    .section-layanan {
        padding: 7rem 0;
    }
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    background: rgba(8, 66, 140, 0.07);
    border: 1px solid rgba(8, 66, 140, 0.15);
    border-radius: 100px;
    color: var(--primary-blue);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--deep-navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 2.75rem;
    }
}

.section-title span {
    color: var(--primary-blue);
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--steel-blue);
    line-height: 1.75;
    max-width: 580px;
}

@media (min-width: 1024px) {
    .section-subtitle {
        font-size: 1.05rem;
    }
}

.section-header {
    margin-bottom: 3.5rem;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--metallic-silver);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
    group: true;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: var(--transition);
    border-radius: inherit;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(79, 163, 216, 0.4);
}

.service-card:hover::before {
    opacity: 0.5;
}

.service-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--ice-blue), var(--soft-blue));
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: linear-gradient(135deg, var(--primary-blue), var(--ocean-blue));
}

.service-icon-wrap i {
    width: 28px;
    height: 28px;
    font-size: 28px;
    line-height: 1;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap i {
    color: #fff;
}

.service-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.75rem;
    position: relative;
}

.service-card-desc {
    font-size: 0.875rem;
    color: var(--steel-blue);
    line-height: 1.75;
    position: relative;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-blue);
    transition: var(--transition);
    position: relative;
}

.service-card-link i {
    width: 14px;
    height: 14px;
    font-size: 14px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-link i {
    transform: translateX(4px);
}

/* =========================================
   SECTION PORTOFOLIO
   ========================================= */
.section-portfolio {
    padding: 5rem 0;
    background: #F0F4FA;
}

@media (min-width: 768px) {
    .section-portfolio {
        padding: 7rem 0;
    }
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.45rem 1rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1.5px solid var(--metallic-silver);
    background: #fff;
    color: var(--steel-blue);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--metallic-silver);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(79, 163, 216, 0.4);
}

.portfolio-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-thumb img {
    transform: scale(1.06);
}

.portfolio-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 27, 61, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-card:hover .portfolio-thumb-overlay {
    opacity: 1;
}

.portfolio-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.25rem;
    background: #fff;
    color: var(--primary-blue);
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transform: translateY(8px);
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay-btn {
    transform: translateY(0);
}

.portfolio-body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-category {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    background: rgba(79, 163, 216, 0.1);
    color: var(--ocean-blue);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.6rem;
}

.portfolio-title {
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.portfolio-desc {
    font-size: 0.82rem;
    color: var(--steel-blue);
    line-height: 1.65;
    flex: 1;
}

/* =========================================
   SECTION ULASAN
   ========================================= */
.section-ulasan {
    padding: 5rem 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.section-ulasan::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

@media (min-width: 768px) {
    .section-ulasan {
        padding: 7rem 0;
    }
}

.section-ulasan .section-badge {
    background: rgba(79, 163, 216, 0.12);
    border-color: rgba(79, 163, 216, 0.3);
    color: var(--sky-blue);
}

.section-ulasan .section-title {
    color: #fff;
}

.section-ulasan .section-subtitle {
    color: rgba(167, 197, 230, 0.8);
}

/* Slider */
.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
    flex: 0 0 100%;
    padding: 0 0.25rem;
}

@media (min-width: 768px) {
    .review-card {
        flex: 0 0 50%;
    }
}

@media (min-width: 1024px) {
    .review-card {
        flex: 0 0 33.333%;
    }
}

.review-card-inner {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(167, 197, 230, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.review-card-inner:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.star {
    color: #FFB800;
    font-size: 1rem;
}

.review-text {
    font-size: 0.9rem;
    color: rgba(220, 234, 246, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(79, 163, 216, 0.3);
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.15rem;
}

.reviewer-title {
    font-size: 0.75rem;
    color: rgba(167, 197, 230, 0.65);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(79, 163, 216, 0.35);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(79, 163, 216, 0.7);
}

.slider-btn i {
    width: 16px;
    height: 16px;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slider-dots {
    display: flex;
    gap: 6px;
}

.slider-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--sky-blue);
    width: 20px;
    border-radius: 4px;
}

/* =========================================
   SECTION CTA
   ========================================= */
.section-cta {
    padding: 5rem 0;
    background: var(--pure-white);
}

@media (min-width: 768px) {
    .section-cta {
        padding: 7rem 0;
    }
}

.cta-box {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(79, 163, 216, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .cta-box {
        padding: 5rem 3rem;
    }
}

@media (min-width: 1024px) {
    .cta-box {
        padding: 6rem 5rem;
    }
}

.cta-box h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
}

@media (min-width: 768px) {
    .cta-box h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .cta-box h2 {
        font-size: 3rem;
    }
}

.cta-box p {
    font-size: 0.95rem;
    color: rgba(167, 197, 230, 0.85);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
    position: relative;
}

@media (min-width: 768px) {
    .cta-box p {
        font-size: 1.05rem;
    }
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    position: relative;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2.25rem;
    background: #fff;
    color: var(--primary-blue);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-cta-primary:hover {
    background: var(--ice-blue);
    transform: scale(1.03);
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.2);
    color: var(--primary-blue);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    background: var(--deep-navy);
    padding: 4rem 0 0;
    border-top: 1px solid rgba(79, 163, 216, 0.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
}

.footer-brand {}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1) opacity(0.85);
}

.footer-about {
    font-size: 0.85rem;
    color: rgba(167, 197, 230, 0.65);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(79, 163, 216, 0.2);
    background: rgba(79, 163, 216, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(167, 197, 230, 0.65);
    transition: var(--transition);
    cursor: pointer;
}

.social-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
}

.social-btn i {
    width: 15px;
    height: 15px;
    font-size: 15px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-col h3 {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(167, 197, 230, 0.65);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--sky-blue);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.875rem;
}

.footer-contact-item i {
    width: 15px;
    height: 15px;
    font-size: 15px;
    line-height: 1;
    color: var(--sky-blue);
    flex-shrink: 0;
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-item span {
    font-size: 0.85rem;
    color: rgba(167, 197, 230, 0.7);
    line-height: 1.5;
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(79, 163, 216, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(167, 197, 230, 0.4);
}

.footer-tagline {
    font-size: 0.78rem;
    color: rgba(167, 197, 230, 0.35);
}

/* =========================================
   PORTFOLIO DETAIL PAGE
   ========================================= */
.portfolio-detail-hero {
    background: var(--gradient-hero);
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.portfolio-detail-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.portfolio-detail-body {
    padding: 4rem 0;
    background: var(--pure-white);
}

.portfolio-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .portfolio-detail-grid {
        grid-template-columns: 2fr 1fr;
        gap: 4rem;
    }
}

.detail-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.detail-gallery img {
    width: 100%;
    border-radius: var(--radius-md);
    border: 1px solid var(--metallic-silver);
}

.gallery-sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.detail-section {
    margin-bottom: 2.5rem;
}

.detail-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    padding-bottom: 0.625rem;
    border-bottom: 2px solid var(--ice-blue);
}

.detail-section p {
    font-size: 0.9rem;
    color: var(--steel-blue);
    line-height: 1.8;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    padding: 0.35rem 0.875rem;
    background: var(--ice-blue);
    color: var(--primary-blue);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid rgba(8, 66, 140, 0.12);
}

.detail-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: #fff;
    border: 1px solid var(--metallic-silver);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}

.sidebar-card h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(7, 27, 61, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.sidebar-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ice-blue);
}

.sidebar-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-item-label {
    font-size: 0.8rem;
    color: var(--steel-blue);
    font-weight: 500;
}

.sidebar-item-value {
    font-size: 0.85rem;
    color: var(--deep-navy);
    font-weight: 600;
    text-align: right;
}

.result-metric {
    text-align: center;
    padding: 1rem;
    background: var(--ice-blue);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
}

.result-metric:last-child {
    margin-bottom: 0;
}

.result-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.75rem;
    color: var(--steel-blue);
    font-weight: 500;
}

/* =========================================
   SCROLLBAR
   ========================================= */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--ice-blue);
}

::-webkit-scrollbar-thumb {
    background: var(--soft-blue);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sky-blue);
}


/* =========================================
   TRUSTED BY SECTION
   ========================================= */
.section-trusted {
    padding: 3rem 0;
    background: var(--pure-white);
    border-bottom: 1px solid var(--ice-blue);
}

.trusted-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--steel-blue);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    margin-bottom: 1.75rem;
    opacity: 0.65;
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem 3.5rem;
}

.trusted-logo-item {
    font-size: 1rem;
    font-weight: 700;
    color: var(--metallic-silver);
    letter-spacing: -0.02em;
    transition: var(--transition);
    font-family: var(--font-primary);
}

.trusted-logo-item:hover {
    color: var(--steel-blue);
}

/* =========================================
   PROCESS SECTION
   ========================================= */
.section-process {
    padding: 5rem 0;
    background: #F0F4FA;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    background: #fff;
    border: 1px solid var(--metallic-silver);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79, 163, 216, 0.35);
}

.process-num {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--sky-blue);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.875rem;
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.83rem;
    color: var(--steel-blue);
    line-height: 1.7;
}

/* =========================================
   MISC UTILITIES
   ========================================= */
.text-gradient {
    background: linear-gradient(90deg, var(--primary-blue), var(--sky-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--sky-blue));
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================
   ADDITIONAL REFINEMENTS
   ========================================= */

/* Prevent horizontal scroll globally */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Hero visual on mobile — compact */
@media (max-width: 1023px) {
    .hero-dashboard {
        max-width: 100%;
    }

    .hero-inner {
        padding: 3rem 0;
    }
}

@media (max-width: 767px) {
    .hero-visual {
        display: none !important;
    }
}

/* Slider track smooth width */
.slider-track {
    will-change: transform;
    gap: 0;
}

/* Review card full height consistency */
.review-card-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
}

/* Portfolio card keyboard focus */
.portfolio-card:focus {
    outline: 2px solid var(--sky-blue);
    outline-offset: 2px;
}

/* Ensure images don't break layout */
.portfolio-thumb img,
.reviewer-avatar {
    display: block;
    max-width: 100%;
}

/* Section process connector line on desktop */
@media (min-width: 1024px) {
    .process-steps {
        position: relative;
    }

    .process-steps::before {
        content: '';
        position: absolute;
        top: 2.5rem;
        left: calc(12.5% + 1.5rem);
        right: calc(12.5% + 1.5rem);
        height: 1px;
        background: linear-gradient(90deg, var(--soft-blue), var(--sky-blue), var(--soft-blue));
        z-index: 0;
        opacity: 0.4;
    }
}

/* Float cards hide on very small screens */
@media (max-width: 480px) {
    .hero-stats {
        gap: 1.25rem;
    }

    .hero-stat-num {
        font-size: 1.4rem;
    }
}

/* Trusted logo marquee feel */
.trusted-logos {
    gap: 1.5rem 2.5rem;
}

/* CTA gradient orbs */
.cta-box {
    isolation: isolate;
}

.cta-box::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 163, 216, 0.12) 0%, transparent 70%);
    bottom: -80px;
    right: -80px;
    pointer-events: none;
}

/* Footer brand col wider on md */
@media (min-width: 768px) and (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Section title line highlight */
.section-title span {
    position: relative;
    display: inline;
}

/* Smooth card transitions */
.service-card,
.portfolio-card,
.process-step {
    will-change: transform, box-shadow;
}

/* Mobile menu animation timing */
.mobile-menu {
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
}

/* Better mobile hero spacing */
@media (max-width: 767px) {
    .hero {
        padding-top: 68px;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .cta-box h2 {
        font-size: 1.65rem;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }
}

/* Process step number indicator dot */
.process-step::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 1.75rem;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--sky-blue);
    display: none;
}

/* Sidebar sticky refinement */
@media (max-width: 1023px) {
    .detail-sidebar {
        position: static;
    }
}

/* Portfolio detail hero padding mobile */
@media (max-width: 767px) {
    .portfolio-detail-hero {
        padding: 6rem 0 3rem;
    }
}

/* Glassmorphism navbar on dark background (when hero in view) */
.navbar.on-hero {
    border-bottom-color: rgba(79, 163, 216, 0.15);
}


/* Scroll lock ketika menu burger sedang terbuka */
body.menu-open {
    overflow: hidden !important;
}

/* Print styles */
@media print {

    .navbar,
    .hamburger,
    .mobile-menu {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}

/* Penyesuaian ketebalan dan ketajaman ikon Bootstrap */
.bi {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-stroke: 0.35px currentColor;
}