/* ===== CSS VARIABLES ===== */
:root {
  --primary: #0B5CFF;
  --secondary: #001B5E;
  --accent: #FFD33D;
  --bg: #F7FAFF;
  --dark: #0F172A;
  --white: #FFFFFF;
  --border-light: #E2E8F0;
  --radius: 0.75rem;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 16px 48px rgba(11, 92, 255, 0.12);
  --shadow-blue: 0 8px 32px rgba(11, 92, 255, 0.2);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

::selection {
  background: rgba(11, 92, 255, 0.2);
  color: #001B5E;
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: rgba(15, 23, 42, 0.6);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

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

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
  border: none;
}

.btn svg { flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, #0B5CFF 0%, #2563EB 100%);
  color: #fff;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-blue);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid rgba(11, 92, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(11, 92, 255, 0.05);
}

/* ===== SCROLL REVEAL ===== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.logo-uprove {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-u { color: var(--primary); }
.logo-prove { color: var(--secondary); }

.logo-digital {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--secondary);
  margin-top: 0.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  position: relative;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.7);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #0B5CFF 0%, #2563EB 100%);
  border-radius: 9999px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-blue);
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 0.5rem;
  position: relative;
  z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
  left: 9px;
}

.hamburger { top: 19px; }
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; top: 7px; }

.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-link {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.7);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.mobile-link:hover,
.mobile-link.active {
  color: var(--primary);
  background: rgba(11, 92, 255, 0.05);
}

.mobile-cta {
  display: block;
  margin-top: 1rem;
  padding: 0.875rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #0B5CFF 0%, #2563EB 100%);
  border-radius: 9999px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #F7FAFF 0%, #EFF6FF 50%, #F7FAFF 100%);
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, #0B5CFF 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 120px);
}

/* Floating Icons */
.floating-icon {
  position: absolute;
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
  animation: float 3s ease-in-out infinite;
  animation-delay: var(--delay);
  z-index: 3;
}

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

/* Hero Content */
.hero-content {
  text-align: center;
  order: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: rgba(11, 92, 255, 0.05);
  border: 1px solid rgba(11, 92, 255, 0.1);
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-highlight {
  position: relative;
  display: inline-block;
  color: #FF6819;
  text-shadow: 0 2px 10px rgba(255, 211, 61, 0.3);
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 12px;
  background: rgba(255, 211, 61, 0.3);
  border-radius: 2px;
  z-index: -1;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(15, 23, 42, 0.6);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.7);
}

/* Hero Image - FULL WIDTH */
.hero-image-wrap {
  position: relative;
  order: 1;
  width: 100%;
  max-width: 100%;
}

.hero-image-full {
  position: relative;
  width: 100%;
  max-height: 50vh;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(11, 92, 255, 0.15);
}

.hero-image-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 92, 255, 0.08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: 100%;
  max-height: 50vh;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.hero-image-full:hover .hero-img {
  transform: scale(1.03);
}

/* Decorative Rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(11, 92, 255, 0.12);
  pointer-events: none;
}

.hero-ring-1 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin-slow 25s linear infinite;
}

.hero-ring-2 {
  width: 350px;
  height: 350px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin-slow-reverse 30s linear infinite;
}

@keyframes spin-slow {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spin-slow-reverse {
  0% { transform: translate(-50%, -50%) rotate(360deg); }
  100% { transform: translate(-50%, -50%) rotate(0deg); }
}

/* 3D Cylinder */
.hero-cylinder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  perspective: 1200px;
  pointer-events: none;
  z-index: 2;
}

.cylinder-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.cylinder-card {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 92, 255, 0.12);
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--primary);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  backface-visibility: hidden;
  transform: translate(-50%, -50%) rotateY(var(--angle)) translateZ(120px);
}

/* ===== KATEGORI SECTION ===== */
.kategori { background: var(--bg); }

.kategori-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.kategori-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.kategori-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(11, 92, 255, 0.2);
}

.kategori-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: var(--primary);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.kategori-card:hover::after {
  transform: scaleX(1);
}

.kategori-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 92, 255, 0.05);
  border-radius: 0.75rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.kategori-card:hover .kategori-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.kategori-card h3 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark);
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.about-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.5;
}

.about-glow-1 {
  width: 300px;
  height: 300px;
  background: rgba(11, 92, 255, 0.06);
  top: -50px;
  right: -100px;
}

.about-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 211, 61, 0.05);
  bottom: -100px;
  left: -150px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-text {
  color: rgba(15, 23, 42, 0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-text p {
  margin-bottom: 0.75rem;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(15, 23, 42, 0.6);
  margin-top: 0.25rem;
}

/* About Image */
.about-image {
  position: relative;
}

.about-img-wrap {
  position: relative;
  display: inline-block;
}

.about-deco {
  position: absolute;
  border-radius: 0.75rem;
  pointer-events: none;
}

.about-deco-1 {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(11, 92, 255, 0.15);
  top: -12px;
  right: -12px;
}

.about-deco-2 {
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255, 211, 61, 0.3);
  bottom: -12px;
  left: -12px;
}

.about-img-box {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-img-box img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 92, 255, 0.15), transparent);
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.625rem 1rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.625rem;
  animation: float 3s ease-in-out infinite;
}

.about-badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(11, 92, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--primary);
}

.about-badge-title {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--dark);
}

.about-badge-sub {
  font-size: 0.625rem;
  color: rgba(15, 23, 42, 0.5);
}

/* ===== LAYANAN SECTION ===== */
.layanan {
  background: linear-gradient(180deg, #F7FAFF 0%, #EFF6FF 50%, #F7FAFF 100%);
}

.layanan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.layanan-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.layanan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(11, 92, 255, 0.15);
}

.layanan-accent-bar {
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 3px;
  background: transparent;
  border-radius: 0 0 3px 3px;
  transition: background 0.3s ease;
}

.layanan-card:hover .layanan-accent-bar {
  background: var(--primary);
}

.layanan-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 92, 255, 0.05);
  border-radius: 0.75rem;
  color: var(--primary);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.layanan-card:hover .layanan-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.layanan-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.layanan-card p {
  font-size: 0.8125rem;
  color: rgba(15, 23, 42, 0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.layanan-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
}

.layanan-link svg {
  transition: transform 0.3s ease;
}

.layanan-link:hover svg {
  transform: translateX(4px);
}

/* ===== PRODUK SECTION ===== */
.produk { background: var(--bg); }

.produk-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 1px solid var(--border-light);
  background: #fff;
  color: rgba(15, 23, 42, 0.6);
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: rgba(11, 92, 255, 0.3);
  color: var(--primary);
}

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

/* Produk Carousel */
.produk-carousel-wrap {
  position: relative;
  margin-bottom: 2rem;
}

.produk-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.produk-carousel::-webkit-scrollbar { display: none; }

.produk-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.produk-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(11, 92, 255, 0.15);
}

.produk-card.hidden { display: none; }

.produk-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.produk-card:hover .produk-img img {
  transform: scale(1.08);
}

.produk-info {
  padding: 1rem 1.25rem 1.25rem;
}

.produk-tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--primary);
  background: rgba(11, 92, 255, 0.05);
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

.produk-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}

.carousel-btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.6);
  z-index: 5;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(11, 92, 255, 0.15);
}

.carousel-prev { left: -10px; }
.carousel-next { right: -10px; }

/* ===== WHY US SECTION ===== */
.whyus {
  background: linear-gradient(135deg, #001B5E 0%, #0F172A 100%);
  position: relative;
  overflow: hidden;
}

.whyus-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 24px 24px;
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.whyus-card {
  text-align: center;
}

.whyus-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.whyus-card:hover .whyus-icon {
  background: rgba(11, 92, 255, 0.2);
  border-color: rgba(11, 92, 255, 0.3);
  transform: scale(1.1);
}

.whyus-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.whyus-card p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ===== CTA SECTION ===== */
.cta {
  background: linear-gradient(180deg, #F7FAFF 0%, #EFF6FF 100%);
  position: relative;
  overflow: hidden;
}

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

.cta-glow-1 {
  width: 250px;
  height: 250px;
  background: rgba(11, 92, 255, 0.06);
  top: -50px;
  left: 25%;
}

.cta-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 211, 61, 0.06);
  bottom: -50px;
  right: 25%;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.cta-desc {
  color: rgba(15, 23, 42, 0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.cta-trust {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.cta-avatars {
  display: flex;
}

.cta-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
  margin-left: -6px;
}

.cta-avatar:first-child { margin-left: 0; }
.cta-avatar:nth-child(1) { background: linear-gradient(135deg, #0B5CFF, #2563EB); }
.cta-avatar:nth-child(2) { background: linear-gradient(135deg, #7C3AED, #A855F7); }
.cta-avatar:nth-child(3) { background: linear-gradient(135deg, #EC4899, #F472B6); }
.cta-avatar:nth-child(4) { background: linear-gradient(135deg, #F59E0B, #FBBF24); }

.cta-trust p {
  font-size: 0.8125rem;
  color: rgba(15, 23, 42, 0.6);
}

.cta-trust p strong {
  font-weight: 700;
  color: var(--dark);
}

/* CTA Image */
.cta-image {
  display: flex;
  justify-content: center;
}

.cta-img-wrap {
  position: relative;
  max-width: 400px;
}

.cta-img-wrap img {
  width: 100%;
  height: auto;
}

.cta-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border-radius: 0.75rem;
  padding: 0.5rem 0.75rem;
  box-shadow: var(--shadow-card);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--dark);
  animation: float 3s ease-in-out infinite;
}

.cta-float-1 {
  top: 15%;
  left: -10px;
  animation-delay: 0s;
}

.cta-float-2 {
  bottom: 20%;
  right: -10px;
  animation-delay: 0.5s;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, #001B5E 0%, #0F172A 100%);
  position: relative;
  padding-top: 2rem;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  height: 100%;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: var(--primary);
  background: rgba(11, 92, 255, 0.1);
  border-color: rgba(11, 92, 255, 0.3);
}

.footer-col h4 {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.625rem;
}

.footer-col ul li a {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.footer-form {
  position: relative;
  margin-top: 0.75rem;
}

.footer-form input {
  width: 100%;
  padding: 0.625rem 2.5rem 0.625rem 0.875rem;
  font-size: 0.8125rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer-form input:focus {
  border-color: rgba(11, 92, 255, 0.5);
}

.footer-form button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--primary);
  border: none;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.3s ease;
}

.footer-form button:hover {
  background: #2563EB;
}

.footer-subscribed {
  font-size: 0.75rem;
  color: var(--primary);
  margin-top: 0.5rem;
  display: none;
}

.footer-subscribed.show {
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    gap: 0.75rem;
  }

  .cta-buttons {
    flex-direction: row;
    gap: 0.75rem;
  }

  .kategori-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .whyus-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }

  .floating-icon { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .hero-content {
    text-align: left;
    order: 1;
  }

  .hero-image-wrap {
    order: 2;
  }

  .hero-image-full {
    max-height: none;
  }

  .hero-img {
    max-height: none;
  }

  .hero-desc {
    margin: 0 0 2rem;
  }

  .hero-buttons {
    justify-content: flex-start;
  }

  .hero-features {
    justify-content: flex-start;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .cta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 2rem;
  }

  .carousel-btn { display: flex; }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .produk-card {
    flex: 0 0 320px;
  }
}
 
@media (min-width: 1024px) {
  .nav-container { height: 80px; }
  .nav-link { padding: 0.5rem 1rem; font-size: 0.875rem; }

  .section { padding: 6rem 0; }

  .hero-grid { gap: 4rem; }

  .kategori-grid { grid-template-columns: repeat(6, 1fr); }

  .layanan-grid { grid-template-columns: repeat(3, 1fr); }

  .whyus-grid { grid-template-columns: repeat(5, 1fr); }

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

  .about-grid { gap: 4rem; }

  .carousel-prev { left: -20px; }
  .carousel-next { right: -20px; }
}

/* ===== REDUCED MOTION ===== */
@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; }
}

