:root {
    --navy: #2d2a6e;
    --navy-light: #3d3a8e;
    --navy-dark: #1e1b52;
    --orange: #f5941e;
    --orange-light: #f9a94a;
    --orange-dark: #e07d0a;
    --dark: #1a1a2e;
    --gray-50: #f8f9fc;
    --gray-100: #f1f3f8;
    --gray-200: #e2e5ef;
    --gray-300: #c9cdd9;
    --gray-400: #9399ab;
    --gray-500: #6b7186;
    --gray-600: #4a4f63;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(45,42,110,0.06);
    --shadow-md: 0 4px 16px rgba(45,42,110,0.08);
    --shadow-lg: 0 12px 40px rgba(45,42,110,0.1);
    --shadow-xl: 0 20px 60px rgba(45,42,110,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Inter', 'Nunito Sans', -apple-system, sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2.5px; color: var(--orange); margin-bottom: 12px;
}
.section-label::before,
.section-label::after {
    content: ''; width: 24px; height: 2px; background: var(--orange); border-radius: 2px;
}
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800; line-height: 1.2; color: var(--navy);
    margin-bottom: 16px; letter-spacing: -0.01em;
}
.section-desc {
    font-size: 1rem; color: var(--gray-500); max-width: 560px; line-height: 1.75; margin: 0 auto;
}
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 50px;
    font-weight: 600; font-size: 0.9rem;
    transition: all 0.3s ease;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,148,30,0.3); }
.btn-outline { border: 1.5px solid var(--gray-200); color: var(--navy); background: transparent; }
.btn-outline:hover { border-color: var(--navy); background: rgba(45,42,110,0.03); }
.btn-white { background: var(--white); color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-white:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.badge {
    display: inline-block; padding: 4px 14px;
    background: rgba(45,42,110,0.06); color: var(--navy);
    border-radius: 40px; font-size: 0.75rem; font-weight: 600;
}
.text-orange { color: var(--orange); }

/* NAVBAR */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226,229,239,0.6);
    transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.navbar .container {
    display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.nav-logo img { height: 38px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
    padding: 8px 16px; border-radius: 8px;
    font-size: 0.88rem; font-weight: 500; color: var(--gray-500);
    transition: all 0.2s; text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: rgba(45,42,110,0.04); }
.nav-actions { display: flex; align-items: center; gap: 10px; position: relative; z-index: 1100; }
.nav-actions .btn { padding: 9px 22px; font-size: 0.85rem; }
.lang-switcher { position: relative; }
.lang-switcher-toggle {
    min-width: 146px;
    height: 46px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-600);
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.lang-switcher-toggle i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}
.lang-switcher.open .lang-switcher-toggle i { transform: rotate(180deg); }
.lang-switcher-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 230px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid var(--gray-200);
    background: rgba(255,255,255,0.98);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1300;
}
.lang-switcher.open .lang-switcher-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.lang-switcher-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--gray-600);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
}
.lang-switcher-item:hover,
.lang-switcher-item.active {
    background: var(--gray-50);
    color: var(--navy);
}
.lang-switcher-check {
    width: 20px;
    color: transparent;
    text-align: center;
}
.lang-switcher-item.active .lang-switcher-check { color: var(--gray-700); }
.lang-flag {
    width: 24px;
    height: 16px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid rgba(148, 163, 184, 0.42);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.1);
    flex-shrink: 0;
}
.hamburger {
    display: none;
    align-items: center;
    gap: 10px;
    background: none;
    padding: 6px 4px;
    border: 0;
    color: var(--navy);
    font: inherit;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}
.hamburger-label {
    font-size: 0.74rem;
    line-height: 1;
}
.hamburger-bars {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
}
.hamburger-bars span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.hamburger.is-open .hamburger-bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger-bars span:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger-bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
    display: flex;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 20px;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.28s ease, opacity 0.2s ease, visibility 0.2s ease;
    will-change: transform;
}
.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}
@media (min-width: 901px) {
    .mobile-menu {
        display: none !important;
    }
}
.mobile-menu a {
    display: block; padding: 14px 16px; border-radius: var(--radius-md);
    font-size: 0.95rem; font-weight: 500; color: var(--navy); text-decoration: none;
}
.mobile-menu a:hover { background: var(--gray-50); }
.mobile-menu .btn-primary { color: var(--white) !important; }
.mobile-menu .btn-primary:hover { background: var(--navy-light); }
.mobile-menu .mobile-menu-support {
    margin-top: 10px;
    justify-content: center;
}
.mobile-lang-switcher {
    margin: 8px 0 6px;
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}
.mobile-lang-label {
    display: block;
    margin-bottom: 10px;
    color: var(--gray-400);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.mobile-lang-select-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.mobile-lang-select-icon {
    position: absolute;
    left: 18px;
    color: var(--gray-400);
    font-size: 1rem;
    pointer-events: none;
}
.mobile-lang-caret {
    position: absolute;
    right: 18px;
    color: var(--navy);
    font-size: 0.9rem;
    pointer-events: none;
}
.mobile-lang-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(45,42,110,0.14);
    background: rgba(255,255,255,0.94);
    color: var(--navy);
    border-radius: 18px;
    min-height: 60px;
    padding: 0 50px 0 50px;
    font-size: 1rem;
    font-weight: 700;
    outline: none;
    box-shadow: 0 10px 26px rgba(45,42,110,0.08);
}
.mobile-lang-select:focus {
    border-color: rgba(45,42,110,0.24);
    box-shadow: 0 0 0 4px rgba(45,42,110,0.08);
}
@media (max-width: 900px) {
    .nav-links, .nav-actions { display: none; }
    .hamburger { display: inline-flex; }
}

/* HERO */
/* === HERO === */
.hero { padding: 140px 0 90px; background: var(--navy-dark); position: relative; overflow: hidden; }
.hero-bg-img {
    position: absolute; inset: 0;
    background-image: url('/front/v2/assets/background/home.webp');
    background-size: cover; background-position: center 30%;
    opacity: 0.35;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(110deg, rgba(29,27,82,0.91) 0%, rgba(29,27,82,0.74) 45%, rgba(29,27,82,0.24) 100%);
}
.hero .container { display: grid; grid-template-columns: 1fr 0.7fr; gap: 32px; align-items: center; position: relative; z-index: 2; }
.hero-visual { display: flex; justify-content: flex-end; }

/* ── Proses Kerja Steps ── */
.hw-steps {
    display:flex;
    flex-direction:column;
    gap:0;
    position:relative;
    padding-left:4px;
}
.hw-step {
    display:grid;
    grid-template-columns:56px minmax(0,1fr);
    column-gap:18px;
    align-items:start;
    position:relative;
    padding:0 0 28px 0;
    opacity:0;
    transform:translateX(30px);
    transition:opacity 0.5s ease, transform 0.5s ease;
    z-index:2;
}
.hw-step.visible { opacity:1; transform:translateX(0); }
.hw-step:last-child { padding-bottom:0; }

/* Timeline line + dot */
.hw-step-indicator {
    display:flex;
    align-items:flex-start;
    justify-content:center;
    position:relative;
    width:56px;
    min-height:56px;
}
.hw-step-dot {
    width:44px; height:44px; border-radius:14px; display:flex; align-items:center; justify-content:center;
    font-size:1rem; color:white; flex-shrink:0; position:relative;
    box-shadow:0 4px 20px rgba(245,148,30,0.3); transition:transform 0.3s, box-shadow 0.3s;
    z-index:3;
}
.hw-step-dot::after {
    content:'';
    position:absolute;
    inset:-6px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,0.08);
    pointer-events:none;
}
.hw-step:hover .hw-step-dot { transform:scale(1.1); box-shadow:0 6px 28px rgba(245,148,30,0.45); }
.hw-step-line { display:none; width:2px; flex:1; min-height:20px; background:rgba(255,255,255,0.12); margin-top:6px; }
.hw-step:last-child .hw-step-line { display:none; }

/* Step content */
.hw-step-content {
    flex:1;
    min-width:0;
    padding-top:0;
}
.hw-step-head {
    display:block;
    min-height:0;
    margin-bottom:8px;
}
.hw-step-num {
    font-size:0.7rem;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1.6px;
    color:var(--orange);
    display:inline-flex;
    align-items:center;
    align-self:center;
    flex-shrink:0;
    min-width:30px;
}
.hw-step-title {
    font-size:1rem;
    font-weight:700;
    color:white;
    line-height:1.2;
    display:block;
    min-height:0;
    margin-top:0;
}
.hw-step-desc { font-size:0.8rem; color:rgba(255,255,255,0.55); line-height:1.6; }

/* Active step glow pulse */
.hw-step-dot.active { animation:dotPulse 2s ease-in-out infinite; }
@keyframes dotPulse {
    0%,100% { box-shadow:0 4px 20px rgba(245,148,30,0.3); }
    50% { box-shadow:0 4px 30px rgba(245,148,30,0.6),0 0 0 8px rgba(245,148,30,0.1); }
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 16px 6px 8px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 40px; font-size: 0.8rem; font-weight: 500;
    color: rgba(255,255,255,0.85); margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.12; margin-bottom: 20px; color: var(--white); letter-spacing: -0.02em; }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.65); line-height: 1.8; margin-bottom: 32px; max-width: 480px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-buttons .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.35); }
.hero-buttons .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.hero-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    align-items: start;
    margin-top: 44px; padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat {
    display: flex; flex-direction: column; align-items: flex-start;
    padding: 12px 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    line-height: 1;
    transition: background 0.2s, transform 0.2s, border-color 0.2s;
    height: fit-content;
    backdrop-filter: blur(8px);
}
.hero-stat:hover { background: rgba(255,255,255,0.12); border-color: rgba(245,148,30,0.4); transform: translateY(-2px); }
.hs-icon {
    font-size: 0.8rem;
    width: 26px; height: 26px; border-radius: 6px; margin-bottom: 8px;
    background: rgba(245,148,30,0.18); color: var(--orange);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    line-height: 1;
}
.hs-text { display: flex; flex-direction: column; }
.hero-stat h3 {
    font-size: 1.1rem; font-weight: 800; color: var(--white);
    line-height: 1; display: flex; align-items: baseline; gap: 0; margin: 0 0 4px 0;
}
.hero-stat h3 .hs-suffix { color: var(--orange); font-size: 0.85rem; font-weight: 800; line-height: 1; }
.hero-stat h3 .hs-num { display: inline-block; line-height: 1; }
.hero-stat p { font-size: 0.68rem; color: rgba(255,255,255,0.5); margin: 0; font-weight: 500; white-space: nowrap; line-height: 1; }
.hs-divider { display: none; }
/* Stats on light background (about page) */
.stats-light .hero-stat {
    background: var(--white);
    border: 1px solid var(--gray-200);
    backdrop-filter: none;
}
.stats-light .hero-stat:hover { box-shadow: 0 4px 16px rgba(45,42,110,0.1); border-color: var(--gray-200); }
.stats-light .hero-stat h3 { color: var(--navy); }
.stats-light .hero-stat p { color: var(--gray-400); }
.hero-visual { position: relative; }
.hero-card {
    background: rgba(255,255,255,0.04); border-radius: var(--radius-xl); padding: 36px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.1);
    position: relative; overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.hero-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--orange); }
.hero-card-header { display:flex; align-items:center; gap:10px; margin-bottom:28px; }
.hero-card-dots { display:flex; gap:5px; }
.hero-card-dots span { width:9px; height:9px; border-radius:50%; }
.hero-card-dots span:nth-child(1){background:#ff5f57} .hero-card-dots span:nth-child(2){background:#febc2e} .hero-card-dots span:nth-child(3){background:#28c840}
.hero-card-title { color:var(--gray-400); font-size:0.78rem; margin-left:auto; }
.hero-code { font-family:'Courier New',monospace; font-size:0.85rem; line-height:2; }
.hero-code .kw{color:#c4b5fd} .hero-code .fn{color:#93c5fd} .hero-code .str{color:var(--orange-light)} .hero-code .cm{color:var(--gray-400)} .hero-code .wh{color:var(--gray-300)}
.hero-float {
    position: absolute;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
    overflow: hidden;
}
.hero-float.f1 {
    top: 10px; right: -16px;
    border: 1px solid rgba(245, 148, 30, 0.45);
    box-shadow: 0 0 24px rgba(245,148,30,0.14), 0 8px 32px rgba(0,0,0,0.28);
    animation: floatA 6s ease-in-out infinite;
}
.hero-float.f2 {
    bottom: 30px; left: -16px;
    border: 1px solid rgba(160, 155, 255, 0.4);
    box-shadow: 0 0 24px rgba(139,135,255,0.14), 0 8px 32px rgba(0,0,0,0.28);
    animation: floatA 6s ease-in-out infinite 2s;
}
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.hero-float .fi {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; flex-shrink: 0;
}
.hero-float .fi.orange {
    background: rgba(245, 148, 30, 0.2);
    color: #f5941e;
}
.hero-float .fi.navy {
    background: rgba(160, 155, 255, 0.15);
    color: #a09bff;
}
.hero-float .fc-text { display: flex; flex-direction: column; gap: 2px; }
.hero-float h4 { font-size: 0.85rem; font-weight: 700; color: #fff; line-height: 1.2; }
.hero-float p { font-size: 0.72rem; color: rgba(255,255,255,0.5); line-height: 1.3; }
.hero-float .fc-badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.7px; margin-top: 4px;
}
.hero-float.f1 .fc-badge { color: #f5941e; }
.hero-float.f2 .fc-badge { color: #a09bff; }
.hero-float .fc-badge .live-dot {
    width: 6px; height: 6px; border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}
.hero-float.f1 .fc-badge .live-dot { background: #f5941e; }
.hero-float.f2 .fc-badge .live-dot { background: #a09bff; animation-delay: 0.5s; }
@keyframes pulseDot {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(1.6); }
}
@media (max-width:900px) {
    .hero .container{grid-template-columns:1fr;text-align:center;}
    .hero p{margin-left:auto;margin-right:auto;}
    .hero-buttons{justify-content:center;}
    .hero-stats{justify-content:center; grid-template-columns:repeat(3,1fr); }
    .hero-visual{justify-content:center;}
    .hw-steps{max-width:420px;}
    .hw-step-content{text-align:left;}
    .hw-step-head{justify-content:flex-start;}
    .hero-card{ padding:24px; }
    .hero-float{display:none;}
    .hero-overlay { background: linear-gradient(180deg, rgba(29,27,82,0.90) 0%, rgba(29,27,82,0.84) 100%); }
}
@media (max-width:600px) {
    .hw-step-dot{width:38px;height:38px;font-size:0.85rem;border-radius:12px;}
    .hw-step{grid-template-columns:46px minmax(0,1fr);column-gap:12px;padding-bottom:24px;}
    .hw-step-indicator{width:46px;min-height:46px;}
    .hw-step-head{min-height:0;margin-bottom:8px;}
    .hw-step-num{min-width:26px;font-size:0.64rem;letter-spacing:1.2px;}
    .hw-step-title{min-height:0;}
    .hw-step-title{font-size:0.9rem;}
    .hw-step-desc{font-size:0.75rem;}
}
@media (max-width:480px) {
    .hero-stats{ grid-template-columns:repeat(2,1fr); }
    .hero-code{ font-size:0.72rem; }
}

/* CLIENTS */
.clients { padding:56px 0 60px; border-bottom:1px solid rgba(45,42,110,0.08); background: linear-gradient(135deg, #eef0ff 0%, #f5f0ff 100%); }
.clients-heading { text-align:center; margin-bottom:40px; }
.clients-heading h2 { font-size:clamp(1.6rem,3vw,2.2rem); font-weight:800; color:var(--navy); margin-bottom:10px; }
.clients-heading h2 span { color:var(--orange); }
.clients-heading .clients-divider { width:56px; height:3px; background:var(--orange); border-radius:4px; margin:0 auto 14px; }
.clients-heading p { font-size:0.95rem; color:var(--gray-400); }
.clients-marquee { display:flex; flex-direction:column; gap:18px; }
.clients-overflow { overflow:hidden; }
.clients-track { display:flex; gap:20px; animation:marquee-left 120s linear infinite; width:max-content; }
.clients-track-reverse { animation-name:marquee-right; }
.clients-track:hover { animation-play-state:paused; }
@keyframes marquee-left { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes marquee-right { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }
.client-logo-card {
    flex-shrink:0; background:var(--white); border:1px solid var(--gray-200);
    border-radius:14px; padding:18px 28px; width:168px; height:88px;
    display:flex; align-items:center; justify-content:center;
    transition:box-shadow 0.25s, transform 0.25s;
}
.client-logo-card:hover { box-shadow:0 6px 20px rgba(45,42,110,0.1); transform:translateY(-3px); }
.client-logo-card img { max-width:120px; max-height:52px; object-fit:contain; filter:grayscale(30%) opacity(0.85); transition:filter 0.25s; }
.client-logo-card:hover img { filter:grayscale(0%) opacity(1); }
.client-logo-text { font-size:0.85rem; font-weight:700; color:var(--gray-400); letter-spacing:0.5px; }
@media (max-width:768px) {
    .clients-marquee { gap:14px; }
    .clients-track { gap:14px; animation-duration:90s; }
    .client-logo-card { width:144px; height:78px; padding:14px 18px; }
    .client-logo-card img { max-width:104px; max-height:44px; }
}

/* SERVICES */
.services { padding:90px 0; }
.services-header { text-align:center; margin-bottom:56px; }
.services-header .section-desc { margin:0 auto; }
.services-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(260px,1fr)); gap:20px; }
.service-card {
    padding:32px; border-radius:var(--radius-lg); border:1px solid var(--gray-200);
    transition:all 0.35s ease; cursor:pointer; background:var(--white);
}
.service-card:hover { border-color:var(--navy); transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.service-icon {
    width:52px; height:52px; border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    font-size:1.4rem; margin-bottom:20px;
}
.service-icon.si-navy { background:rgba(45,42,110,0.07); }
.service-icon.si-orange { background:rgba(245,148,30,0.08); }
.service-card h3 { font-size:1.1rem; font-weight:700; color:var(--navy); margin-bottom:10px; }
.service-card p { font-size:0.88rem; color:var(--gray-500); line-height:1.7; }
.service-tags { display:flex; flex-wrap:wrap; gap:6px; margin-top:16px; }
.service-tag {
    padding:3px 10px; border-radius:20px; font-size:0.72rem;
    font-weight:500; background:var(--gray-50); color:var(--gray-600); border:1px solid var(--gray-200);
}

/* SYSTEMS */
.systems { padding:90px 0; background:var(--gray-50); }
.systems-tech { background: var(--navy-dark); position: relative; overflow: hidden; }
.systems-bg {
    position: absolute; inset: 0;
    background-image: url('/front/v2/assets/background/home_platform.webp');
    background-size: cover; background-position: center 40%;
    opacity: 0.45;
}
.systems-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(22,20,68,0.88) 0%, rgba(22,20,68,0.72) 50%, rgba(22,20,68,0.88) 100%);
}
.systems-tech .system-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}
.systems-tech .system-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--orange);
    box-shadow: 0 8px 32px rgba(245,148,30,0.15);
    transform: translateY(-4px);
}
.systems-tech .system-card .sys-icon {
    background: rgba(245,148,30,0.12);
    color: var(--orange);
}
.systems-tech .system-card h3 { color: var(--white); }
.systems-tech .system-card p { color: rgba(255,255,255,0.55); }
.systems-header { text-align:center; margin-bottom:56px; }
.systems-header .section-desc { margin:0 auto; }
/* Dark background section override */
.section-on-dark .section-title { color: var(--white) !important; }
.section-on-dark .section-desc { color: rgba(255,255,255,0.65) !important; }
.section-on-dark .section-label { color: var(--orange) !important; }
.systems-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:20px; }
.system-card {
    background:var(--white); border-radius:var(--radius-lg); padding:28px;
    border:1px solid var(--gray-200); text-align:center; transition:all 0.3s;
}
.system-card:hover { border-color:var(--orange); box-shadow:var(--shadow-md); transform:translateY(-2px); }
.system-card .sys-icon {
    width:60px; height:60px; border-radius:14px; margin:0 auto 16px;
    background:var(--navy); color:var(--white);
    display:flex; align-items:center; justify-content:center;
    font-size:1.5rem; font-weight:700;
}
.system-card h3 { font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:6px; }
.system-card p { font-size:0.82rem; color:var(--gray-500); line-height:1.6; }

/* REVIEWS SLIDER */
.reviews { padding:90px 0; background:var(--gray-50); }
.reviews-header { text-align:center; margin-bottom:56px; }
.reviews-header .section-desc { margin:0 auto; }

/* Slider wrapper */
.reviews-slider { position:relative; overflow:hidden; }
.reviews-track {
    display:flex; gap:24px;
    transition:transform 0.5s cubic-bezier(0.4,0,0.2,1);
    will-change:transform;
}
.review-card {
    background:var(--white); border-radius:var(--radius-lg); padding:32px;
    border:1px solid var(--gray-200); position:relative;
    flex:0 0 calc((100% - 48px) / 3);
    min-width:0;
}
.review-card::before {
    content:'\201C'; position:absolute; top:16px; right:24px;
    font-size:4rem; color:var(--gray-100); font-family:Georgia,serif; line-height:1;
}
.review-stars { color:var(--orange); font-size:0.9rem; letter-spacing:2px; margin-bottom:16px; }
.review-card p { font-size:0.92rem; color:var(--gray-600); line-height:1.75; margin-bottom:20px; font-style:italic; }
.review-author { display:flex; align-items:center; gap:12px; }
.review-avatar {
    width:48px; height:48px; border-radius:50%; background:var(--navy);
    color:var(--white); display:flex; align-items:center; justify-content:center;
    font-weight:700; font-size:0.85rem; flex-shrink:0; overflow:hidden;
}
.review-avatar img { width:100%; height:100%; object-fit:cover; }
.review-author h4 { font-size:0.88rem; font-weight:600; color:var(--navy); }
.review-author span { font-size:0.78rem; color:var(--gray-400); }

/* Slider nav */
.reviews-nav { display:flex; align-items:center; justify-content:center; gap:16px; margin-top:36px; }
.reviews-btn {
    width:40px; height:40px; border-radius:50%; border:2px solid var(--navy);
    background:transparent; color:var(--navy); cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    font-size:1rem; transition:all 0.2s; flex-shrink:0;
}
.reviews-btn:hover { background:var(--navy); color:var(--white); }
.reviews-dots { display:flex; gap:8px; }
.reviews-dot {
    width:8px; height:8px; border-radius:50%;
    background:var(--gray-300); border:none; cursor:pointer;
    padding:0; transition:all 0.3s;
}
.reviews-dot.active { background:var(--orange); width:24px; border-radius:4px; }

@media(max-width:900px) {
    .review-card { flex:0 0 calc((100% - 24px) / 2); }
}
@media(max-width:600px) {
    .review-card { flex:0 0 100%; }
}

/* GALLERY */
.gallery { padding:90px 0; }
.gallery-header { text-align:center; margin-bottom:48px; }
.gallery-header .section-desc { margin:0 auto; }
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.gallery-item {
    border-radius:var(--radius-md); overflow:hidden; position:relative;
    cursor:pointer; aspect-ratio:1;
}
.gallery-item .gal-bg {
    width:100%; height:100%; display:flex; align-items:center; justify-content:center;
    font-size:2.5rem; transition:transform 0.4s;
}
.gallery-item:hover .gal-bg { transform:scale(1.05); }
.gallery-item .gal-overlay {
    position:absolute; bottom:0; left:0; right:0; padding:16px;
    background:rgba(26,26,46,0.75);
    color:var(--white); font-size:0.82rem; font-weight:500;
    opacity:0; transition:opacity 0.3s;
}
.gallery-item:hover .gal-overlay { opacity:1; }
@media (max-width:768px) {
    .gallery-grid { grid-template-columns:repeat(2,1fr); }
}

/* COVERAGE MAP */
.coverage-map { padding:90px 0; background:var(--gray-50); }
.coverage-map-header { text-align:center; margin-bottom:48px; }
.coverage-map-header .section-desc { margin:0 auto; }

/* Two-column layout */
.coverage-layout { display:grid; grid-template-columns:320px 1fr; gap:20px; margin-top:32px; align-items:start; }

/* Left panel */
.coverage-panel {
    background:var(--white); border-radius:var(--radius-xl);
    border:1px solid var(--gray-200); display:flex; flex-direction:column;
    height:500px; overflow:hidden; box-shadow:0 4px 24px rgba(45,42,110,0.07);
}
.cov-panel-top {
    padding:16px; border-bottom:1px solid var(--gray-100); flex-shrink:0;
}
.cov-search-wrap { position:relative; }
.cov-search-wrap i {
    position:absolute; left:12px; top:50%; transform:translateY(-50%);
    color:var(--gray-400); font-size:0.8rem; pointer-events:none;
}
.cov-search-wrap input {
    width:100%; padding:9px 60px 9px 34px; border-radius:10px;
    border:1.5px solid var(--gray-200); font-size:0.85rem;
    background:var(--gray-50); outline:none; transition:border-color 0.2s,background 0.2s;
    font-family:inherit; color:var(--navy); box-sizing:border-box;
}
.cov-search-wrap input:focus { border-color:var(--orange); background:var(--white); }
.cov-count-badge {
    position:absolute; right:10px; top:50%; transform:translateY(-50%);
    font-size:0.7rem; font-weight:700; color:var(--white);
    background:var(--navy); padding:2px 8px; border-radius:20px; pointer-events:none;
}
.cov-list { overflow-y:auto; flex:1; }
.cov-list::-webkit-scrollbar { width:3px; }
.cov-list::-webkit-scrollbar-track { background:transparent; }
.cov-list::-webkit-scrollbar-thumb { background:var(--gray-200); border-radius:4px; }

/* Province groups */
.province-group { border-bottom:1px solid var(--gray-100); }
.province-header {
    display:flex; align-items:center; justify-content:space-between;
    padding:9px 14px; cursor:pointer; user-select:none;
    position:sticky; top:0; background:var(--white); z-index:1;
    transition:background 0.15s;
}
.province-header:hover { background:var(--gray-50); }
.prov-left { display:flex; align-items:center; gap:8px; }
.prov-icon { font-size:0.75rem; color:var(--orange); }
.prov-name { font-size:0.78rem; font-weight:700; color:var(--navy); text-transform:uppercase; letter-spacing:0.4px; }
.prov-badge {
    font-size:0.68rem; font-weight:700; color:var(--white);
    background:var(--orange); padding:1px 6px; border-radius:20px;
}
.prov-chevron { font-size:0.65rem; color:var(--gray-300); transition:transform 0.2s; }
.province-group.open .prov-chevron { transform:rotate(90deg); }
.city-list-inner { display:none; }
.province-group.open .city-list-inner { display:block; }

.city-item {
    display:flex; align-items:center; gap:10px;
    padding:7px 14px 7px 22px; cursor:pointer; transition:background 0.15s;
}
.city-item:hover { background:rgba(245,148,30,0.05); }
.city-item:hover .city-name { color:var(--navy); }
.city-item.active { background:rgba(245,148,30,0.1); }
.city-dot {
    width:7px; height:7px; border-radius:50%; background:var(--gray-300);
    flex-shrink:0; transition:background 0.2s;
}
.city-item:hover .city-dot, .city-item.active .city-dot { background:var(--orange); }
.city-name { font-size:0.83rem; color:var(--gray-500); transition:color 0.15s; }
.city-item.active .city-name { color:var(--navy); font-weight:600; }

.cov-no-result { text-align:center; padding:48px 20px; color:var(--gray-400); font-size:0.85rem; }
.cov-no-result i { font-size:2rem; display:block; margin-bottom:8px; color:var(--gray-300); }

/* Right: map */
.coverage-map-wrap { display:flex; flex-direction:column; gap:14px; }
#indonesiaMap {
    height:500px; border-radius:var(--radius-xl); overflow:hidden;
    box-shadow:0 4px 24px rgba(45,42,110,0.08); border:1px solid var(--gray-200);
}
.map-legend { display:flex; justify-content:center; gap:24px; flex-wrap:wrap; }
.map-legend-item { display:flex; align-items:center; gap:7px; font-size:0.82rem; color:var(--gray-500); }
.map-legend-dot { width:11px; height:11px; border-radius:50%; }
.map-legend-dot.navy { background:var(--navy); }
.map-legend-dot.orange { background:var(--orange); }

@media(max-width:960px) {
    .coverage-layout { grid-template-columns:1fr; }
    .coverage-panel { height:340px; }
    #indonesiaMap { height:380px; }
}

/* NEWS */
.news { padding:90px 0; background:var(--gray-50); }
.news-header { display:flex; justify-content:space-between; align-items:end; margin-bottom:48px; flex-wrap:wrap; gap:16px; }
.news-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(320px,1fr)); gap:24px; }
.news-card {
    border-radius:var(--radius-lg); overflow:hidden; background:var(--white);
    border:1px solid var(--gray-200); transition:border-color 0.3s;
}
.news-card-image { height:200px; overflow:hidden; }
.news-card-image .img-bg { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:2.5rem; }
.news-card-body { padding:24px; }
.news-meta { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.news-meta span { font-size:0.78rem; color:var(--gray-400); }
.news-card h3 { font-size:1.05rem; font-weight:700; color:var(--navy); line-height:1.4; margin-bottom:10px; }
.news-card p { font-size:0.88rem; color:var(--gray-500); line-height:1.7; }
.read-more {
    display:inline-flex; align-items:center; gap:6px; margin-top:14px;
    font-size:0.85rem; font-weight:600; color:var(--orange); transition:gap 0.3s, color 0.2s;
}
.read-more:hover { gap:10px; color:var(--orange-dark); }

/* ABOUT */
.about { padding:90px 0; }
.about .container { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
.about-img-wrap { position:relative; padding-bottom:32px; }
.about-img-main {
    width:100%; height:380px; border-radius:var(--radius-xl);
    background:var(--navy); display:flex; align-items:center; justify-content:center;
    position:relative; overflow:hidden;
}
.about-img-main .pattern {
    position:absolute; width:100%; height:100%;
    background:repeating-linear-gradient(45deg,transparent,transparent 20px,rgba(255,255,255,0.015) 20px,rgba(255,255,255,0.015) 40px);
}
.about-img-main img { height:60px; position:relative; z-index:2; }
.about-exp-badge {
    position:absolute; bottom:-16px; right:16px;
    background:var(--white); padding:18px 24px; border-radius:var(--radius-md);
    box-shadow:var(--shadow-lg); display:flex; align-items:center; gap:14px;
}
.about-exp-badge h3 { font-size:1.4rem; font-weight:800; color:var(--orange); }
.about-exp-badge p { font-size:0.78rem; color:var(--gray-400); }
.about-text p { color:var(--gray-500); line-height:1.8; margin-bottom:24px; }
.smile-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:32px; }
.smile-item {
    display:flex; align-items:center; gap:10px;
    padding:10px 14px; border-radius:var(--radius-sm); background:var(--gray-50);
    border:1px solid var(--gray-200);
}
.smile-item .ck {
    width:26px; height:26px; border-radius:6px; background:rgba(245,148,30,0.1);
    color:var(--orange); display:flex; align-items:center; justify-content:center;
    font-size:0.75rem; font-weight:800; flex-shrink:0;
}
.smile-item span { font-size:0.85rem; font-weight:600; color:var(--navy); }

/* SMILE Values Section */
.smile-values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.sv-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: all 0.35s ease;
    backdrop-filter: blur(4px);
}
.sv-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--orange);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(245,148,30,0.15);
}
.sv-letter {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}
.sv-card:hover .sv-letter {
    text-shadow: 0 0 24px rgba(245,148,30,0.4);
}
.sv-line {
    width: 32px;
    height: 3px;
    background: var(--orange);
    margin: 16px auto 0;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s, width 0.3s;
}
.sv-card:hover .sv-line {
    opacity: 1;
    width: 48px;
}
.sv-content h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.sv-content p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin: 0;
}
@media (max-width:900px) {
    .smile-values-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width:480px) {
    .smile-values-grid { grid-template-columns: repeat(2, 1fr); }
    .sv-letter { font-size: 2.2rem; }
    .sv-card { padding: 20px 14px; }
}

@media (max-width:900px) { .about .container{grid-template-columns:1fr;} }

/* CONTACT */
.contact { padding:90px 0; background:var(--gray-50); }
.contact-header { text-align:center; margin-bottom:56px; }
.contact-header .section-desc { margin:0 auto; }
/* Manpower sub-cards grid — 4 col → 3 col → 2 col → 1 col */
.mp-grid { display:flex; flex-wrap:wrap; gap:20px; justify-content:center; }
.mp-grid > * { width:calc(25% - 15px); min-width:0; }
@media (max-width:1100px) { .mp-grid > * { width:calc(33.333% - 14px); } }
@media (max-width:768px)  { .mp-grid > * { width:calc(50% - 10px); } }
@media (max-width:480px)  { .mp-grid > * { width:100%; } }

.mp-card {
    background:var(--white); border-radius:var(--radius-xl); overflow:hidden;
    border:1px solid var(--gray-100); box-shadow:var(--shadow-sm);
    transition:transform 0.3s, box-shadow 0.3s; display:flex; flex-direction:column;
}
.mp-card:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(45,42,110,0.10); }
.mp-img { height:170px; overflow:hidden; flex-shrink:0; }
.mp-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s; }
.mp-card:hover .mp-img img { transform:scale(1.04); }
.mp-body { padding:18px 20px; flex:1; }
.mp-body h3 { font-size:0.95rem; font-weight:700; color:var(--navy); margin-bottom:8px; }
.mp-body p { font-size:0.82rem; color:var(--gray-500); line-height:1.7; }

.contact-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.contact-card {
    background:var(--white); border-radius:var(--radius-lg); padding:32px;
    border:1px solid var(--gray-200); text-align:center; transition:all 0.3s;
}
.contact-card:hover { box-shadow:var(--shadow-md); border-color:var(--navy); }
.contact-card .cc-badge {
    display:inline-block; padding:4px 14px; border-radius:20px;
    font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:1px;
    margin-bottom:16px;
}
.contact-card .cc-badge.ho { background:rgba(245,148,30,0.1); color:var(--orange); }
.contact-card .cc-badge.branch { background:rgba(45,42,110,0.06); color:var(--navy); }
.contact-card h3 { font-size:1.1rem; font-weight:700; color:var(--navy); margin-bottom:16px; }
.contact-card .cc-info { display:flex; flex-direction:column; gap:10px; }
.contact-card .cc-info div {
    display:flex; align-items:flex-start; gap:10px; text-align:left;
    font-size:0.85rem; color:var(--gray-500); line-height:1.6;
    overflow-wrap: break-word; word-break: break-word; min-width: 0;
}
.contact-card .cc-info div span:last-child { min-width: 0; }
.contact-card .cc-info .ic {
    width:28px; height:28px; border-radius:6px; background:var(--gray-50);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
    font-size:0.85rem;
}
@media (max-width:768px) { .contact-grid{grid-template-columns:1fr;} }

/* CTA */
.cta { padding:100px 0; background:var(--navy-dark); position:relative; overflow:hidden; }
.cta-bg-img {
    position: absolute; inset: 0;
    background-image: url('/front/v2/assets/background/home_contact.webp');
    background-size: cover; background-position: center 30%;
    opacity: 0.25;
}
.cta .container { text-align:center; position:relative; z-index:2; }
.cta .section-title { color:var(--white); font-size:clamp(1.8rem,3.5vw,2.6rem); }
.cta .section-desc { color:rgba(255,255,255,0.6); margin:0 auto 36px; }
.cta-buttons { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.cta-glow {
    position: absolute; border-radius: 50%;
    filter: blur(80px); pointer-events: none;
}
.cta-glow-1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(245,148,30,0.2) 0%, transparent 70%);
    top: -120px; left: -80px;
}
.cta-glow-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(100,90,220,0.25) 0%, transparent 70%);
    bottom: -100px; right: -60px;
}
.cta-grid-lines {
    position: absolute; inset: 0; pointer-events: none; z-index: 1;
    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: 60px 60px;
}

/* CAREER */
.career-filters { display:flex; justify-content:center; gap:8px; margin-bottom:36px; flex-wrap:wrap; }
.career-filter {
    padding:9px 20px; border-radius:40px; font-size:0.85rem; font-weight:500;
    background:var(--white); border:1px solid var(--gray-200); color:var(--gray-500);
    transition:all 0.2s; cursor:pointer;
}
.career-filter.active, .career-filter:hover { background:var(--navy); color:var(--white); border-color:var(--navy); }
.career-list { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.career-card {
    background:var(--white); border-radius:var(--radius-lg); padding:24px 28px;
    border:1px solid var(--gray-200); display:flex; align-items:center;
    justify-content:space-between; gap:16px; transition:all 0.3s; cursor:pointer;
    text-decoration:none;
}
.career-card:hover { border-color:var(--navy); box-shadow:var(--shadow-md); }
.career-card-info h3 { font-size:1.05rem; font-weight:700; color:var(--navy); margin-bottom:6px; }
.career-card-meta { display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.career-card-meta span { display:flex; align-items:center; gap:5px; font-size:0.8rem; color:var(--gray-400); }
.career-card .btn { flex-shrink:0; padding:9px 22px; font-size:0.82rem; }
@media (max-width:900px) { .career-list { grid-template-columns:1fr; } }
@media (max-width:640px) { .career-card{flex-direction:column;align-items:flex-start;} }

/* JOB DETAIL */
.job-detail { padding:130px 0 80px; }
.job-detail .container { max-width:800px; }
.job-detail h1 { font-size:1.8rem; font-weight:800; color:var(--navy); margin-bottom:8px; }
.job-detail .job-meta { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:24px; }
.job-detail .job-meta span { display:flex; align-items:center; gap:6px; font-size:0.88rem; color:var(--gray-400); }
.job-detail h3 { font-size:1.1rem; font-weight:700; color:var(--navy); margin:28px 0 12px; }
.job-detail ul { padding-left:20px; color:var(--gray-500); font-size:0.92rem; line-height:2.2; }
.job-detail p { color:var(--gray-500); line-height:1.8; }

/* AUTH */
.auth-page { min-height:100vh; padding:90px 24px 80px; display:flex; align-items:center; justify-content:center; }
.auth-container {
    display:grid; grid-template-columns:1fr 1fr; max-width:960px; width:100%;
    min-height:580px; border-radius:var(--radius-xl); overflow:hidden;
    box-shadow:var(--shadow-lg); border:1px solid var(--gray-200);
}
.auth-visual {
    background:var(--navy); padding:52px; display:flex; flex-direction:column;
    justify-content:center; align-items:flex-start; color:var(--white); position:relative; overflow:hidden;
}
.auth-visual img { height:52px; margin-bottom:28px; position:relative; z-index:1; display:block; }
.auth-visual h2 { font-size:1.6rem; font-weight:800; margin-bottom:12px; position:relative; z-index:1; }
.auth-visual p { color:rgba(255,255,255,0.65); line-height:1.7; font-size:0.92rem; position:relative; z-index:1; }
.auth-visual .auth-features { margin-top:32px; display:flex; flex-direction:column; gap:14px; position:relative; z-index:1; }
.auth-visual .af-item { display:flex; align-items:center; gap:10px; font-size:0.88rem; }
.auth-visual .af-icon {
    width:32px; height:32px; border-radius:8px; background:rgba(255,255,255,0.08);
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.auth-form-container {
    padding:44px; display:flex; flex-direction:column; justify-content:center; background:var(--white);
}
.auth-form-container h2 { font-size:1.4rem; font-weight:800; color:var(--navy); margin-bottom:6px; }
.auth-form-container > p { color:var(--gray-400); font-size:0.88rem; margin-bottom:28px; }
.form-group { margin-bottom:18px; }
.form-group label { display:block; font-size:0.82rem; font-weight:600; margin-bottom:6px; color:var(--gray-600); }
.form-group input, .form-group select, .form-group textarea {
    width:100%; padding:11px 14px; border-radius:var(--radius-sm);
    border:1.5px solid var(--gray-200); font-size:0.9rem; outline:none;
    transition:border-color 0.2s, box-shadow 0.2s; background:var(--white);
}
.form-group input:focus, .form-group select:focus {
    border-color:var(--navy); box-shadow:0 0 0 3px rgba(45,42,110,0.06);
}
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-check { display:flex; align-items:center; gap:8px; margin-bottom:20px; }
.form-check input[type="checkbox"] { width:16px; height:16px; accent-color:var(--navy); }
.form-check label { font-size:0.82rem; color:var(--gray-400); margin-bottom:0; }
.auth-form-container .btn { width:100%; justify-content:center; margin-top:4px; }
.auth-switch { text-align:center; margin-top:20px; font-size:0.85rem; color:var(--gray-400); }
.auth-switch a { color:var(--orange); font-weight:600; }
@media (max-width:768px) {
    .auth-container{grid-template-columns:1fr;}
    .auth-visual{padding:36px;min-height:auto;}
}

/* FOOTER */
.footer { background:var(--navy-dark); color:rgba(255,255,255,0.65); padding:72px 0 36px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:36px; margin-bottom:48px; }
.footer-brand img { height:52px; margin-bottom:16px; }
.footer-brand p { font-size:0.88rem; line-height:1.7; max-width:280px; }
.footer h4 { color:var(--white); font-size:0.82rem; font-weight:700; text-transform:uppercase; letter-spacing:1px; margin-bottom:18px; }
.footer ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer ul li a { font-size:0.88rem; transition:color 0.2s; }
.footer ul li a:hover { color:var(--white); }
.footer-bottom {
    border-top:1px solid rgba(255,255,255,0.06); padding-top:24px;
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
    font-size:0.8rem;
}
.footer-social { display:flex; gap:8px; }
.footer-social a {
    width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,0.07);
    display:flex; align-items:center; justify-content:center;
    font-size:1rem; color:rgba(255,255,255,0.7);
    transition:background 0.2s, color 0.2s, transform 0.15s;
    text-decoration:none;
}
.footer-social a:hover { color:#fff; transform:scale(1.1); }
.footer-social a.fs-wa:hover  { background:#25D366; }
.footer-social a.fs-ig:hover  { background:radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.footer-social a.fs-tt:hover  { background:#010101; }
.footer-social a.fs-yt:hover  { background:#FF0000; }
.footer-social a.fs-li:hover  { background:#0A66C2; }
.footer-social a.fs-em:hover  { background:var(--orange); }
@media (max-width:768px) { .footer-grid{grid-template-columns:1fr 1fr;} }
@media (max-width:480px) { .footer-grid{grid-template-columns:1fr;} }

/* UTILS */
.reveal { opacity:0; transform:translateY(30px); transition:all 0.7s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity:1; transform:translateY(0); }
.toast {
    position:fixed; bottom:24px; right:24px; background:var(--navy); color:var(--white);
    padding:14px 22px; border-radius:var(--radius-md); box-shadow:var(--shadow-lg);
    font-size:0.88rem; display:flex; align-items:center; gap:8px;
    transform:translateY(80px); opacity:0; transition:all 0.35s ease; z-index:3000;
}
.toast.show { transform:translateY(0); opacity:1; }
.back-to-top {
    position:fixed; bottom:24px; left:24px; width:42px; height:42px; border-radius:50%;
    background:var(--navy); color:var(--white); display:flex; align-items:center; justify-content:center;
    box-shadow:var(--shadow-md); opacity:0; transform:translateY(16px); transition:all 0.3s; z-index:1500;
}
.back-to-top.show { opacity:1; transform:translateY(0); }
.back-to-top:hover { background:var(--orange); }
.arr-icon { display:inline-flex; }
@media (max-width:900px) {
    .back-to-top {
        left: auto;
        right: 24px;
    }
}

/* Page header for inner pages */
.page-header { padding:130px 0 50px; text-align:center; background:var(--gray-50); }
.page-header .section-desc { margin:0 auto; }

/* Service detail blocks */
.service-detail { display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; margin-bottom:72px; }
.service-detail-visual {
    position:relative;
    border-radius:28px;
    min-height:360px;
    display:flex; align-items:flex-end; justify-content:flex-start;
    text-align:left; color:var(--white);
    overflow:hidden; background:var(--navy);
    box-shadow:0 24px 60px rgba(45,42,110,0.18);
    border:1px solid rgba(45,42,110,0.08);
    isolation:isolate;
}
.service-detail-visual img {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center center;
    display:block;
    transform:scale(1.03);
}
.service-visual-manpower img { object-position:center 34%; }
.service-visual-it img { object-position:center 42%; }
.service-visual-cs img { object-position:center 38%; }
.service-visual-overlay {
    position:absolute;
    inset:0;
    background:
        linear-gradient(180deg, rgba(15,14,44,0.06) 0%, rgba(15,14,44,0.22) 34%, rgba(15,14,44,0.76) 100%),
        linear-gradient(135deg, rgba(45,42,110,0.16) 0%, rgba(245,148,30,0.12) 100%);
    z-index:1;
}
.service-visual-ring {
    position:absolute;
    inset:18px;
    border-radius:22px;
    border:1px solid rgba(255,255,255,0.12);
    z-index:2;
    pointer-events:none;
}
.service-visual-chip {
    position:absolute;
    top:22px;
    left:22px;
    z-index:3;
    padding:10px 14px;
    border-radius:999px;
    background:rgba(255,255,255,0.09);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    color:rgba(255,255,255,0.95);
    font-size:0.76rem;
    font-weight:700;
    letter-spacing:0.3px;
}
.service-visual-card {
    position:relative;
    z-index:3;
    margin:0 22px 22px;
    width:calc(100% - 44px);
    padding:20px 22px;
    border-radius:22px;
    background:linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.006) 100%);
    border:1px solid rgba(255,255,255,0.06);
    backdrop-filter:blur(11px);
}
.service-visual-digimar .service-visual-card {
    background:linear-gradient(180deg, rgba(255,255,255,0.024) 0%, rgba(255,255,255,0.005) 100%);
    border-color:rgba(255,255,255,0.05);
}
.service-visual-card span {
    display:block;
    margin-bottom:8px;
    color:#ffd8ad;
    font-size:0.76rem;
    font-weight:800;
    letter-spacing:1.1px;
    text-transform:uppercase;
}
.service-visual-card strong {
    display:block;
    margin-bottom:8px;
    color:var(--white);
    font-size:1.28rem;
    line-height:1.2;
    font-weight:800;
}
.service-visual-card small {
    display:block;
    color:rgba(255,255,255,0.8);
    font-size:0.88rem;
    line-height:1.6;
}
.service-detail-visual .sd-icon { font-size:3.5rem; margin-bottom:10px; }
.service-detail-visual .sd-title { font-size:2.2rem; font-weight:800; }
.service-detail-visual .sd-sub { opacity:0.6; font-size:0.88rem; }
.service-detail-visual .sd-title-sm { font-size:1.3rem; font-weight:700; }
.service-detail-visual .sd-sub-sm { opacity:0.8; font-size:0.88rem; }
.service-detail .check-list { display:flex; flex-direction:column; gap:10px; }
.service-detail .check-item { display:flex; align-items:center; gap:10px; }
.service-detail .check-item .check-icon { color:var(--orange); font-weight:700; }
.service-detail .check-item span { font-size:0.9rem; }

/* Stats bar */
.stats-bar { padding:72px 0; background:var(--gray-50); }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.stat-card {
    padding:28px; background:var(--white); border-radius:var(--radius-lg);
    border:1px solid var(--gray-200);
}
.stat-card h3 { font-size:2.2rem; font-weight:800; color:var(--navy); }
.stat-card p { color:var(--gray-400); font-size:0.85rem; margin-top:6px; }

/* Subsidiaries */
.subsidiaries-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; max-width:780px; margin:0 auto; }
.subsidiary-card {
    padding:32px; border-radius:var(--radius-lg); border:1px solid var(--gray-200);
    text-align:center;
}
.subsidiary-card .sub-icon {
    width:48px; height:48px; border-radius:12px;
    display:flex; align-items:center; justify-content:center;
    font-size:1.3rem; margin:0 auto 14px;
}
.subsidiary-card h3 { font-size:1rem; font-weight:700; color:var(--navy); margin-bottom:4px; }
.subsidiary-card p { font-size:0.78rem; color:var(--gray-400); }

/* Responsive overrides */
@media(max-width:900px){
    .service-detail{ grid-template-columns:1fr; }
    /* Force text before visual on alternating service blocks */
    .service-detail.reverse { direction: ltr; }
    .service-detail.reverse > *:first-child { order: 2; }
    .service-detail.reverse > *:last-child  { order: 1; }
    .service-detail-visual { min-height:320px; }
}
@media(max-width:768px){
    .stats-grid{ grid-template-columns:repeat(2,1fr); }
    .subsidiaries-grid{ grid-template-columns:1fr; }
    .service-detail-visual { min-height:280px; border-radius:24px; }
    .service-visual-ring { inset:14px; border-radius:18px; }
    .service-visual-chip { top:16px; left:16px; font-size:0.68rem; padding:8px 12px; }
    .service-visual-card { margin:0 16px 16px; width:calc(100% - 32px); padding:16px 18px; border-radius:18px; }
    .service-visual-card strong { font-size:1.05rem; }
    .service-visual-card small { font-size:0.78rem; }
    /* Auth page adjustments */
    .auth-page { padding: 90px 16px 60px; align-items: flex-start; }
    .auth-container { border-radius: var(--radius-lg); }
    .auth-form-container { padding: 32px 24px; }
    /* About badge reposition */
    .about-exp-badge { position: static; margin-top: 16px; justify-content: center; width: fit-content; }
    .about-img-main { height: 260px; }
    .about-img-wrap { padding-bottom: 0; }
    /* Contact grid */
    .contact-card { padding: 24px; }
    /* Footer bottom column */
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
    /* Page header smaller on mobile */
    .page-header { padding: 100px 0 36px; }
    /* Hero stats wrap */
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    /* Services grid responsive */
    .services-grid { grid-template-columns: 1fr !important; }
    /* CTA buttons */
    .cta-buttons .btn { width: 100%; justify-content: center; }
    /* News grid min-width override */
    .news-grid { grid-template-columns: 1fr; }
}
@media(max-width:480px){
    .stats-grid{ grid-template-columns:1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr) !important; }
    .hero-stat {
        text-align: left;
        align-items: flex-start;
    }
    .hero-stat h3,
    .hero-stat p,
    .hs-text {
        text-align: left;
        align-items: flex-start;
    }
    .hero-stat p {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .hero-stats > .hero-stat:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: calc(50% - 5px);
        width: 100%;
        justify-self: center;
    }
    /* Form row stacks to single column */
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    /* Hero card font smaller, prevent overflow */
    .hero-code { font-size: 0.75rem; }
    .hero-card { padding: 24px 20px; }
    /* Buttons full-width on small screens */
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    /* Career filters scroll */
    .career-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
    .career-filter { flex-shrink: 0; }
    /* Job detail meta wrap tighter */
    .career-card-meta { gap: 8px; }
    /* Mobile menu buttons full width */
    .mobile-menu .btn { width: 100%; }
    /* Auth container padding */
    .auth-form-container { padding: 24px 20px; }
    .auth-visual { padding: 28px 24px; }
    /* Section padding reduce */
    .services, .systems, .reviews, .gallery, .news, .about, .contact, .career-section { padding: 64px 0; }
    .cta { padding: 64px 0; }
    /* Footer grid single col already handled */
    .footer-brand p { max-width: 100%; }
    /* Navbar logo smaller */
    .nav-logo img { height: 30px; }
    /* Hero heading */
    .hero { padding: 110px 0 60px; }
    /* Section title smaller */
    .section-title { letter-spacing: -0.01em; }
    /* Smile grid single col on very small screens */
    .smile-grid { grid-template-columns: 1fr; }
    .smile-item[style*="grid-column:span 2"] { grid-column: span 1 !important; }
}

/* 8-card systems grid - 4 columns always even */
.systems-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media(max-width:900px){ .systems-grid-8{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:480px){ .systems-grid-8{ grid-template-columns:1fr; } }

/* Coverage Map Stats */
.coverage-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.coverage-stat {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.coverage-stat .cov-icon {
    width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; flex-shrink: 0;
}
.coverage-stat h3 { font-size: 1.6rem; font-weight: 800; color: var(--navy); line-height: 1; }
.coverage-stat p  { font-size: 0.78rem; color: var(--gray-400); margin-top: 4px; }
@media(max-width:768px){ .coverage-stats{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:480px){ .coverage-stats{ grid-template-columns:1fr; } }
