/* ============================================
   VARDANA SOLUSI — style.css
   Theme: Light, Professional, Ocean Deep
   ============================================ */

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

:root {
  --deep-blue: #01579B;
  --mid-blue: #0277BD;
  --teal: #0097A7;
  --cyan: #00BCD4;
  --light-cyan: #E0F7FA;
  --pale-cyan: #F0FDFF;
  --white: #FFFFFF;
  --gray-50: #F8FAFB;
  --gray-100: #F1F5F8;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --success: #10B981;
  --warning: #F59E0B;
  --section-pad: 100px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(1, 87, 155, 0.06);
  --shadow-md: 0 4px 20px rgba(1, 87, 155, 0.08);
  --shadow-lg: 0 12px 40px rgba(1, 87, 155, 0.12);
  --shadow-xl: 0 20px 60px rgba(1, 87, 155, 0.15);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--gray-900);
  line-height: 1.2;
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s var(--ease);
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--mid-blue), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent {
  color: var(--teal);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--mid-blue), var(--teal));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 151, 167, 0.3);
}

.btn--primary:hover {
  box-shadow: 0 6px 24px rgba(0, 151, 167, 0.45);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--deep-blue);
  border: 2px solid var(--gray-200);
}

.btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn--white {
  background: var(--white);
  color: var(--deep-blue);
  box-shadow: var(--shadow-md);
}

.btn--white:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 16px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
  background: transparent;
}

.navbar--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(1, 87, 155, 0.08);
  padding: 10px 0;
}

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

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

.navbar__logo-icon {
  width: 36px;
  height: 36px;
}

.navbar__logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s var(--ease);
}

.navbar__links a:hover {
  color: var(--deep-blue);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cta {
  padding: 10px 24px;
  font-size: 14px;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 120px 0 140px;
  background: linear-gradient(175deg, var(--white) 0%, var(--pale-cyan) 40%, var(--light-cyan) 100%);
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease-in-out;
  pointer-events: none;
  will-change: opacity;
  contain: layout style;
}

.hero-slide .hero__inner {
  transition: transform 1.2s ease-in-out, opacity 0.6s ease;
  transform: scale(0.97);
}

.hero-slide--active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.hero-slide--active .hero__inner {
  transform: scale(1);
}

.hero-slide--exit {
  opacity: 0;
  z-index: 1;
}

.hero-slide--exit .hero__inner {
  transform: scale(1.02);
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 151, 167, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 151, 167, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 70%);
}

.hero__bg-grid--alt {
  mask-image: radial-gradient(ellipse at 40% 60%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 40% 60%, black 30%, transparent 70%);
}

.hero__bg-grid--alt2 {
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.pulse-dot--blue {
  background: var(--mid-blue);
}

.pulse-dot--cyan {
  background: var(--cyan);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
}

.hero__title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: 17.5px;
  color: var(--gray-500);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero__mockup {
  position: relative;
}

/* Slider Controls — layout: [prev] [dots] [next] */
.slider-controls {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-dots {
  display: flex;
  gap: 10px;
  order: 2;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
  padding: 0;
}

.slider-dot--active {
  background: var(--teal);
  border-color: var(--teal);
  transform: scale(1.2);
}

.slider-dot:hover {
  border-color: var(--teal);
}

.slider-arrows {
  display: contents;
}

.slider-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--gray-200);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.slider-arrow:hover {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: var(--shadow-md);
}

.slider-arrow--prev {
  order: 1;
}

.slider-arrow--next {
  order: 3;
}

/* Stats Bar */
.hero-stats-bar {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 20;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.hero__stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--deep-blue);
}

.hero__stat-label {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* Slider Progress */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gray-200);
  z-index: 20;
}

.slider-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--mid-blue), var(--cyan));
}

/* Animate in */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

.delay-3 {
  transition-delay: 0.35s;
}

/* --- Browser Mockup (Slide 1) --- */
.mockup-browser {
  width: 480px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.mockup-browser__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot--red {
  background: #FF5F57;
}

.dot--yellow {
  background: #FFBD2E;
}

.dot--green {
  background: #28CA42;
}

.mockup-browser__url {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  padding: 5px 14px;
  background: var(--white);
  border-radius: 6px;
  font-size: 12px;
  color: var(--gray-400);
  border: 1px solid var(--gray-100);
  flex: 1;
  max-width: 260px;
}

.mockup-browser__body {
  padding: 20px;
  min-height: 280px;
}

.mockup-ui__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mockup-ui__logo-placeholder {
  width: 60px;
  height: 10px;
  background: linear-gradient(90deg, var(--mid-blue), var(--cyan));
  border-radius: 4px;
}

.mockup-ui__nav-lines {
  display: flex;
  gap: 8px;
}

.mockup-ui__nav-lines span {
  width: 32px;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
}

.mockup-ui__hero-block {
  width: 100%;
  height: 70px;
  background: linear-gradient(135deg, var(--light-cyan), rgba(0, 188, 212, 0.15));
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.mockup-ui__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.mockup-ui__card {
  height: 50px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}

.mockup-ui__content-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-ui__content-lines span {
  height: 7px;
  background: var(--gray-100);
  border-radius: 4px;
}

/* --- ERP Mockup (Slide 2) --- */
.mockup-erp {
  width: 500px;
  display: flex;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.mockup-erp__sidebar {
  width: 60px;
  background: var(--gray-900);
  padding: 16px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.me-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--mid-blue), var(--cyan));
  margin-bottom: 8px;
}

.me-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.me-nav span {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.me-nav--active {
  background: rgba(0, 188, 212, 0.2) !important;
  border: 1px solid rgba(0, 188, 212, 0.3);
}

.mockup-erp__main {
  flex: 1;
  background: var(--white);
  padding: 16px;
}

.me-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.me-search {
  width: 160px;
  height: 28px;
  background: var(--gray-100);
  border-radius: 6px;
}

.me-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-200);
}

.me-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.me-stat-card {
  padding: 12px;
  background: var(--gray-50);
  border-radius: 8px;
  border: 1px solid var(--gray-100);
}

.me-stat-card--accent {
  background: linear-gradient(135deg, var(--light-cyan), rgba(0, 188, 212, 0.1));
  border-color: rgba(0, 151, 167, 0.15);
}

.me-stat-val {
  width: 50%;
  height: 14px;
  background: var(--gray-200);
  border-radius: 3px;
  margin-bottom: 6px;
}

.me-stat-card--accent .me-stat-val {
  background: var(--teal);
  opacity: 0.5;
}

.me-stat-lbl {
  width: 70%;
  height: 8px;
  background: var(--gray-100);
  border-radius: 3px;
}

.me-table {
  background: var(--gray-50);
  border-radius: 8px;
  overflow: hidden;
}

.me-table-head {
  height: 28px;
  background: var(--gray-200);
}

.me-table-row {
  height: 24px;
  border-bottom: 1px solid var(--gray-100);
}

/* --- Corp Preview Mockup (Slide 3) --- */
.mockup-corp-preview {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: -40px;
}

.mcp-phone {
  width: 160px;
  background: var(--gray-900);
  border-radius: 24px;
  padding: 12px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-xl);
  margin-right: -30px;
  margin-bottom: 20px;
}

.mcp-phone__notch {
  width: 60px;
  height: 6px;
  background: var(--gray-700);
  border-radius: 10px;
  margin: 0 auto 12px;
}

.mcp-phone__hero {
  height: 60px;
  background: linear-gradient(135deg, var(--mid-blue), var(--teal));
  border-radius: 8px;
  margin-bottom: 8px;
}

.mcp-phone__cards {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.mcp-phone__card {
  flex: 1;
  height: 40px;
  background: var(--gray-800);
  border-radius: 6px;
}

.mcp-phone__cta {
  height: 24px;
  background: var(--teal);
  border-radius: 6px;
  opacity: 0.7;
}

.mcp-desktop {
  width: 380px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}

.mcp-desktop__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.mcp-desktop__body {
  padding: 14px;
}

.mcp-desktop__nav {
  height: 10px;
  background: var(--gray-100);
  border-radius: 4px;
  margin-bottom: 12px;
}

.mcp-desktop__hero-img {
  height: 80px;
  background: linear-gradient(135deg, var(--light-cyan), rgba(0, 188, 212, 0.2));
  border-radius: 8px;
  margin-bottom: 12px;
}

.mcp-desktop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mcp-desktop__grid div {
  height: 50px;
  background: var(--gray-100);
  border-radius: 6px;
}

/* Floating cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  border: 1px solid var(--gray-100);
  animation: float 6s ease-in-out infinite;
}

.floating-card--1 {
  top: 30px;
  right: -30px;
  animation-delay: 0s;
}

.floating-card--2 {
  bottom: 60px;
  left: -40px;
  animation-delay: 2s;
}

.floating-card--3 {
  bottom: -10px;
  right: 20px;
  animation-delay: 4s;
}

@keyframes float {

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

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

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
}

.trust-bar__label {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  margin-bottom: 24px;
}

.trust-bar__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: var(--section-pad) 0;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section__tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--light-cyan);
  color: var(--teal);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section__title {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}

.section__desc {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   LAYANAN
   ============================================ */
.layanan {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  opacity: 0;
  transform: translateY(30px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-6px);
}

.service-card--featured {
  border-color: var(--teal);
  background: linear-gradient(180deg, var(--white), var(--pale-cyan));
}

.service-card--featured:hover {
  box-shadow: 0 16px 48px rgba(0, 151, 167, 0.2);
}

.service-card__badge {
  position: absolute;
  top: -12px;
  left: 32px;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--mid-blue), var(--teal));
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-cyan);
  border-radius: var(--radius-md);
  color: var(--teal);
  margin-bottom: 24px;
}

.service-card__title {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card__desc {
  font-size: 14.5px;
  color: var(--gray-500);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card__features {
  margin-bottom: 24px;
}

.service-card__features li {
  position: relative;
  padding-left: 20px;
  font-size: 13.5px;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.service-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.5;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
}

.service-card__link:hover {
  gap: 10px;
  color: var(--deep-blue);
}

/* ============================================
   KEUNGGULAN
   ============================================ */
.keunggulan {
  background: var(--white);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advantage-card {
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  opacity: 0;
  transform: translateY(30px);
}

.advantage-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.advantage-card:hover {
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.advantage-card__number {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), rgba(0, 188, 212, 0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  line-height: 1;
}

.advantage-card__title {
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 700;
}

.advantage-card__desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   PORTOFOLIO
   ============================================ */
.portofolio {
  background: var(--gray-50);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  opacity: 0;
  transform: translateY(30px);
}

.portfolio-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.portfolio-card__preview {
  position: relative;
  padding: 28px 24px 0;
  height: 220px;
  background: linear-gradient(135deg, #01579B, #0097A7);
  overflow: hidden;
}

.portfolio-card__preview--corp {
  background: linear-gradient(135deg, #0277BD, #00BCD4);
}

.portfolio-card__preview--bot {
  background: linear-gradient(135deg, #0F172A, #1E293B);
}

.portfolio-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
}

.portfolio-mockup {
  display: flex;
  height: 100%;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.pm-sidebar {
  width: 48px;
  background: rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.pm-main {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px;
}

.pm-topbar {
  height: 12px;
  background: var(--gray-100);
  border-radius: 3px;
  margin-bottom: 10px;
}

.pm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.pm-widget {
  height: 40px;
  background: var(--gray-100);
  border-radius: 4px;
  border: 1px solid var(--gray-200);
}

.pm-widget--lg {
  grid-column: span 2;
  height: 50px;
  background: linear-gradient(135deg, var(--light-cyan), var(--gray-100));
}

.pm-widget--chart {
  grid-column: span 2;
  height: 40px;
  background: var(--pale-cyan);
  border-color: rgba(0, 151, 167, 0.15);
}

.portfolio-mockup-corp {
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  padding: 10px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.pmc-hero {
  height: 60px;
  background: linear-gradient(135deg, var(--light-cyan), rgba(0, 188, 212, 0.2));
  border-radius: 4px;
  margin-bottom: 10px;
}

.pmc-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.pmc-box {
  height: 50px;
  background: var(--gray-100);
  border-radius: 4px;
}

.pmc-banner {
  height: 30px;
  background: var(--gray-100);
  border-radius: 4px;
}

.portfolio-mockup-bot {
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  padding: 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.pmb-chart {
  height: 80px;
  margin-bottom: 16px;
}

.pmb-chart svg {
  width: 100%;
  height: 100%;
}

.pmb-stats {
  display: flex;
  gap: 8px;
}

.pmb-stat-item {
  flex: 1;
  height: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.portfolio-card__info {
  padding: 24px;
}

.portfolio-card__info h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.portfolio-card__info p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 16px;
}

.portfolio-card__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.portfolio-card__tech span {
  padding: 4px 10px;
  background: var(--light-cyan);
  color: var(--teal);
  font-size: 11.5px;
  font-weight: 600;
  border-radius: 4px;
}

/* ============================================
   PROSES — HORIZONTAL TIMELINE
   ============================================ */
.proses {
  background: var(--white);
}

.process-horizontal {
  position: relative;
  padding-top: 40px;
}

.process-h-line {
  position: absolute;
  top: 64px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: var(--gray-200);
  border-radius: 2px;
}

.process-h-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--mid-blue), var(--cyan));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease);
}

.process-horizontal.line-animated .process-h-line::after {
  transform: scaleX(1);
}

.process-h-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}

.process-h-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.process-h-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-h-step:nth-child(1).visible {
  transition-delay: 0.1s;
}

.process-h-step:nth-child(2).visible {
  transition-delay: 0.25s;
}

.process-h-step:nth-child(3).visible {
  transition-delay: 0.4s;
}

.process-h-step:nth-child(4).visible {
  transition-delay: 0.55s;
}

.process-h-step:nth-child(5).visible {
  transition-delay: 0.7s;
}

.process-h-step__marker {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--mid-blue), var(--teal));
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 151, 167, 0.3);
  border: 4px solid var(--white);
}

.process-h-step__marker span {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.process-h-step__content {
  max-width: 200px;
}

.process-h-step__content h4 {
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 700;
}

.process-h-step__content p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================
   TESTIMONI
   ============================================ */
.testimoni {
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  opacity: 0;
  transform: translateY(30px);
}

.testimonial-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--mid-blue), var(--cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 14.5px;
  color: var(--gray-800);
}

.testimonial-card__author span {
  font-size: 12.5px;
  color: var(--gray-400);
}

/* ============================================
   CTA
   ============================================ */
.cta-section {
  background: var(--white);
  padding: 80px 0 100px;
}

.cta-box {
  position: relative;
  background: linear-gradient(135deg, var(--deep-blue), var(--teal));
  border-radius: var(--radius-xl);
  padding: 72px 64px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.cta-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-box__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.cta-box__title {
  font-size: clamp(26px, 3vw, 36px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-box__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-box__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-box__decoration {
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
}

.cta-ring {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.cta-ring--2 {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 200px;
  height: 200px;
  border-color: rgba(255, 255, 255, 0.06);
}

/* ============================================
   BLOG — Homepage Section
   ============================================ */
.blog-home {
  background: var(--gray-50);
  padding: var(--section-pad) 0;
}

.blog-home__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  margin-bottom: 44px;
}

/* ── Featured (Large Left Card) ── */
.blog-home__featured {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.blog-home__featured.visible {
  opacity: 1;
  transform: translateY(0);
}

.blog-home__featured:hover {
  box-shadow: var(--shadow-lg);
}

.blog-home__featured-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.blog-home__featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.blog-home__featured:hover .blog-home__featured-img img {
  transform: scale(1.04);
}

.blog-home__featured-img-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-home__cat {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
}

.blog-home__featured-body {
  padding: 28px 30px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-home__featured-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-home__featured-body h3 a {
  color: inherit;
  transition: color 0.2s;
}

.blog-home__featured-body h3 a:hover {
  color: var(--teal);
}

.blog-home__excerpt {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
  flex: 1;
}

.blog-home__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--gray-400);
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.blog-home__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-home__read {
  margin-left: auto;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.25s;
}

.blog-home__read:hover {
  gap: 10px;
}

/* ── Small Cards Stack (Right) ── */
.blog-home__stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.blog-home__card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: 200px 1fr;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}

.blog-home__card.visible {
  opacity: 1;
  transform: translateY(0);
}

.blog-home__card:hover {
  box-shadow: var(--shadow-md);
}

.blog-home__card-img {
  position: relative;
  overflow: hidden;
}

.blog-home__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.blog-home__card:hover .blog-home__card-img img {
  transform: scale(1.05);
}

.blog-home__card-img-ph {
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-home__card-body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-home__card-body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-home__card-body h4 a {
  color: inherit;
  transition: color 0.2s;
}

.blog-home__card-body h4 a:hover {
  color: var(--teal);
}

.blog-home__card-excerpt {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.blog-home__card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: var(--gray-400);
}

.blog-home__card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── CTA Link ── */
.blog-home__cta {
  text-align: center;
}

.blog-home__cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  padding: 12px 32px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.blog-home__cta a:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 151, 167, 0.3);
  transform: translateY(-2px);
}

.blog-home__cta a:hover svg {
  stroke: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__tagline {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 300px;
}

.footer .navbar__logo-text {
  color: var(--white);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.footer__col a:hover {
  color: var(--cyan);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--gray-500);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--white);
  color: var(--deep-blue);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: linear-gradient(135deg, var(--mid-blue), var(--teal));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0, 151, 167, 0.4);
  transform: translateY(-3px);
}

/* ============================================
   SOCIAL FAB (Bottom Left)
   ============================================ */
.social-fab {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 900;
}

.social-fab__trigger {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--mid-blue), var(--teal));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0, 151, 167, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
}

.social-fab__trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(0, 151, 167, 0.5);
}

.social-fab__icon-close {
  display: none;
}

.social-fab.open .social-fab__icon-open {
  display: none;
}

.social-fab.open .social-fab__icon-close {
  display: block;
}

.social-fab.open .social-fab__trigger {
  background: var(--gray-700);
  box-shadow: var(--shadow-lg);
}

.social-fab__items {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  pointer-events: none;
}

.social-fab__item {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px) scale(0.5);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.social-fab__item--wa {
  background: #25D366;
}

.social-fab__item--li {
  background: #0A66C2;
}

.social-fab__item--ig {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
}

.social-fab__item--email {
  background: var(--deep-blue);
}

.social-fab__item:hover {
  transform: translateY(0) scale(1.15) !important;
  box-shadow: var(--shadow-lg);
}

.social-fab.open .social-fab__items {
  pointer-events: auto;
}

.social-fab.open .social-fab__item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.social-fab.open .social-fab__item:nth-child(1) {
  transition-delay: 0.2s;
}

.social-fab.open .social-fab__item:nth-child(2) {
  transition-delay: 0.15s;
}

.social-fab.open .social-fab__item:nth-child(3) {
  transition-delay: 0.1s;
}

.social-fab.open .social-fab__item:nth-child(4) {
  transition-delay: 0.05s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

  .services-grid,
  .portfolio-grid,
  .testimonials-grid,
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-home__grid {
    grid-template-columns: 1fr;
  }

  .blog-home__featured-img {
    height: 220px;
  }

  .blog-home__card {
    grid-template-columns: 180px 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-box__decoration {
    display: none;
  }

  .process-h-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }

  .process-h-step__content {
    max-width: 160px;
  }

  .process-h-step__content h4 {
    font-size: 13px;
  }

  .process-h-step__content p {
    font-size: 12px;
  }

  .slider-controls {
    bottom: 100px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  /* Note: .navbar__links.active transitions handled by mega-menu.css */
  .services-grid,
  .portfolio-grid,
  .testimonials-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .blog-home__card {
    grid-template-columns: 1fr;
  }

  .blog-home__card-img-ph {
    min-height: 180px;
  }

  .blog-home__featured-body h3 {
    font-size: 19px;
  }

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

  .cta-box {
    padding: 48px 28px;
  }

  .hero__title {
    font-size: 32px;
  }

  /* Timeline → vertical on mobile */
  .process-h-line {
    display: none;
  }

  .process-h-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .process-h-step {
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }

  .process-h-step__marker {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .process-h-step__content {
    max-width: 100%;
  }

  .process-h-step__content h4 {
    font-size: 16px;
  }

  .process-h-step__content p {
    font-size: 14px;
  }

  .hero__stats {
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__stat {
    text-align: center;
  }

  .hero__stat-num {
    font-size: 22px;
  }

  .hero__stat-label {
    font-size: 11px;
  }

  .hero__stat-divider {
    width: 1px;
    height: 28px;
    display: block;
  }

  .slider-controls {
    bottom: 80px;
  }

  .hero-stats-bar {
    bottom: 20px;
  }

  /* Prevent overlap: reduce hero padding */
  .hero-slide {
    padding: 100px 0 120px;
  }

  .scroll-top {
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
  }

  .social-fab {
    bottom: 24px;
    left: 24px;
  }

  .social-fab__trigger {
    width: 48px;
    height: 48px;
  }

  .social-fab__item {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .footer__links {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-box__actions {
    flex-direction: column;
  }

  .btn--lg {
    justify-content: center;
  }

  .hero__stat-num {
    font-size: 20px;
  }

  .hero__stat-label {
    font-size: 10px;
  }

  .hero__stats {
    gap: 14px;
  }

  .hero-stats-bar {
    bottom: 16px;
  }

  .slider-controls {
    bottom: 70px;
  }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */

/* Content-visibility: skip rendering below-fold sections until scrolled near */
.keunggulan,
.portofolio,
.proses,
.testimoni,
.cta-section,
.blog-home {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* GPU-composited animations: only animate transform & opacity on GPU layer */
.service-card,
.advantage-card,
.portfolio-card,
.testimonial-card,
.process-h-step,
.cta-box,
.blog-home__featured,
.blog-home__card {
  will-change: transform, opacity;
  contain: layout style;
}

/* Remove will-change after animation completes to free GPU memory */
.service-card.visible,
.advantage-card.visible,
.portfolio-card.visible,
.testimonial-card.visible,
.process-h-step.visible,
.cta-box.visible,
.blog-home__featured.visible,
.blog-home__card.visible {
  will-change: auto;
}

/* Reduce CLS: explicit dimensions for common media */
.portfolio-card__thumb {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-home__featured-img img,
.blog-home__card-img img {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Prefers reduced motion: disable non-essential animations */
@media (prefers-reduced-motion: reduce) {

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

  html {
    scroll-behavior: auto;
  }

  .hero-slide {
    transition: none;
  }

  .hero-slide .hero__inner {
    transition: none;
    transform: none;
  }
}