/*
  Swevel Universal Media — Landing Page
  Custom styles on top of Bootstrap 5.3 grid/utilities.
*/

/* ─────────────────────────────────────────────────────────
   Base
───────────────────────────────────────────────────────── */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  color: var(--text);
  background: var(--bg);
  font-size: var(--fs-body);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: inherit;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}

p { margin: 0; }

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

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

.wrap {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 767.98px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
}

section { position: relative; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* ─────────────────────────────────────────────────────────
   Type helpers
───────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--secondary);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: var(--r-full);
}
.eyebrow.on-dark { color: var(--light-purple); }

.section-rule {
  width: 52px;
  height: 3px;
  background: var(--grad-primary);
  border-radius: var(--r-full);
  margin: 18px 0 22px;
}

.section-head { max-width: 640px; }
.section-head h2 { font-size: var(--fs-h2); letter-spacing: -.5px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-pad { padding: 96px 0; }
@media (max-width: 991.98px) { .section-pad { padding: 72px 0; } }
@media (max-width: 575.98px) { .section-pad { padding: 56px 0; } }

.bg-light-section { background: var(--bg); }
.bg-surface-section { background: var(--surface); }
.bg-dark-section {
  background: var(--grad-ink);
  color: var(--on-dark);
}
.bg-dark-section h2, .bg-dark-section h3, .bg-dark-section h4 { color: var(--on-dark); }

/* ─────────────────────────────────────────────────────────
   Buttons
───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14.5px;
  padding: 14px 26px;
  border-radius: var(--r-xs);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
  min-height: 44px;
}
.btn-warning {
  background: var(--grad-accent);
  color: var(--text);
  box-shadow: var(--sh-gold-sm);
}
.btn-warning:hover { transform: translateY(-2px); box-shadow: var(--sh-gold-md); color: var(--text); }

.btn-ghost-dark {
  background: transparent;
  border-color: var(--on-dark-line);
  color: var(--on-dark);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.32); color: var(--on-dark); transform: translateY(-2px); }

.btn-ghost-light {
  background: transparent;
  border-color: var(--border);
  color: var(--primary);
}
.btn-ghost-light:hover { background: var(--surface); border-color: var(--secondary); transform: translateY(-2px); }

.btn-nav-cta {
  padding: 10px 20px;
  font-size: 13.5px;
  min-height: auto;
}
.btn-nav-cta:hover { transform: translateY(-1px); }

/* ─────────────────────────────────────────────────────────
   Navigation
───────────────────────────────────────────────────────── */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 76px;
  display: flex;
  align-items: center;
  background: rgba(12,6,32,.20);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), backdrop-filter var(--dur) var(--ease), height var(--dur) var(--ease);
}
.main-nav.scrolled {
  background: rgba(12,6,32,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--on-dark-line);
  height: 68px;
}
.main-nav .nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 40px; width: auto; }

.nav-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--on-dark-muted);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--on-dark); }
.nav-links a.active { color: var(--on-dark); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
  border-radius: var(--r-full);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--on-dark-line);
  border-radius: var(--r-xs);
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--on-dark);
}

.nav-toggle { cursor: pointer; }

@media (max-width: 991.98px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: rgba(12,6,32,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--on-dark-line);
  padding: 8px 20px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--on-dark-muted);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 4px;
  border-bottom: 1px solid var(--on-dark-line);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--on-dark); }

/* ─────────────────────────────────────────────────────────
   Hero
───────────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 0;
  background: var(--grad-ink);
  color: var(--on-dark);
  overflow: hidden;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(168,120,255,.05) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(168,120,255,.05) 60px);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 85%);
}
.hero-diagonal {
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  height: 140%;
  background: linear-gradient(var(--diagonal), transparent 48%, rgba(245,166,35,.10) 48.4%, rgba(245,166,35,.10) 49.6%, transparent 50%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--on-dark-line);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .3px;
  color: var(--on-dark-muted);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(245,166,35,.6);
  animation: pulse-dot 2.1s infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(245,166,35,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(245,166,35,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,166,35,0); }
}

.hero-title {
  font-size: var(--fs-h1-hero);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.08;
  max-width: 820px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--light-purple), var(--accent) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin-top: 26px;
  max-width: 620px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--on-dark-muted);
}

.hero-actions { margin-top: 40px; }

.hero-body {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 991.98px) {
  .hero-body { grid-template-columns: 1fr; }
}

.hero-visual {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
}
.hv-glow {
  position: absolute;
  inset: -60px -20px;
  background: radial-gradient(ellipse 60% 55% at 60% 50%, rgba(139,107,255,.30) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Console panel frame */
.hv-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--r-xl);
  padding: 20px 22px 22px;
  backdrop-filter: blur(14px);
  box-shadow: var(--sh-lg);
}
.hv-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--on-dark-line);
}
.hv-dots { display: flex; gap: 6px; }
.hv-dots span { width: 8px; height: 8px; border-radius: 50%; opacity: .85; }
.hv-dots span:nth-child(1) { background: #FF5F57; }
.hv-dots span:nth-child(2) { background: #FEBC2E; }
.hv-dots span:nth-child(3) { background: #28C840; }
.hv-panel-label {
  flex: 1;
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--on-dark-faint);
}
.hv-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .3px;
  color: #4ADE80;
}
.hv-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.6);
  animation: pulse-dot-green 2.1s infinite;
}
@keyframes pulse-dot-green {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,.55); }
  70%  { box-shadow: 0 0 0 7px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* Step flow */
.hv-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 32px;
}
.hv-line {
  position: absolute;
  left: 13px;
  top: 6px;
  bottom: 6px;
  width: 0;
  border-left: 2px dashed rgba(255,255,255,.18);
}

.hv-card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--r-lg);
  padding: 13px 16px;
  backdrop-filter: blur(10px);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.hv-card:hover { transform: translateX(4px); border-color: rgba(255,255,255,.28); }
.hv-card-1 { margin-right: 34px; }
.hv-card-3 { margin-left: 34px; }
.hv-card-main {
  margin-left: 17px;
  background: rgba(139,107,255,.10);
  border-color: rgba(139,107,255,.32);
  box-shadow: var(--sh-purple-sm);
}

.hv-node {
  position: absolute;
  left: -33px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(245,166,35,.18);
}

.hv-card-icon {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.hv-card-tag {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--on-dark-faint);
}
.hv-card-title {
  margin-top: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--on-dark);
}
.hv-card-stat {
  margin-left: auto;
  padding-left: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-light);
  white-space: nowrap;
}
.hv-card-stat strong { font-weight: 700; }

/* Footer metrics strip */
.hv-panel-foot {
  display: flex;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--on-dark-line);
}
.hv-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.hv-stat + .hv-stat { border-left: 1px solid var(--on-dark-line); }
.hv-stat-n { font-size: 17px; font-weight: 700; letter-spacing: -.3px; color: var(--on-dark); }
.hv-stat-n.accent { color: var(--accent-light); }
.hv-stat-l { font-size: 9.5px; font-weight: 500; letter-spacing: .4px; text-transform: uppercase; color: var(--on-dark-faint); }

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

.hero-stats {
  margin-top: 72px;
  border-top: 1px solid var(--on-dark-line);
  padding: 32px 0 40px;
}
.stat-item { padding: 12px 20px 12px 0; }
.stat-n {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -1px;
  color: var(--on-dark);
}
.stat-n span { color: var(--accent); }
.stat-l {
  margin-top: 4px;
  font-size: 13px;
  color: var(--on-dark-faint);
}

/* ─────────────────────────────────────────────────────────
   Repositioning
───────────────────────────────────────────────────────── */
.repos-section {
  background: var(--grad-primary);
  color: var(--on-dark);
  padding: 80px 0;
}
.repos-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}
.repos-col-label {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--on-dark-faint);
  margin-bottom: 16px;
}
.repos-old .repos-col-label { color: rgba(255,255,255,.5); }
.repos-main {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -.5px;
  line-height: 1.2;
}
.repos-old .repos-main {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  opacity: .5;
}
.repos-new .repos-main .accent { color: var(--accent-light); }
.repos-desc {
  margin-top: 16px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--on-dark-muted);
}
.repos-new .repos-desc { color: rgba(255,255,255,.86); }
.repos-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.repos-arrow svg {
  width: 52px;
  height: 28px;
  filter: drop-shadow(0 2px 10px rgba(245,166,35,.35));
}
@media (prefers-reduced-motion: no-preference) {
  .repos-arrow svg {
    animation: repos-arrow-nudge 1.8s ease-in-out infinite;
  }
}
@keyframes repos-arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}
@media (max-width: 767.98px) {
  .repos-grid { grid-template-columns: 1fr; gap: 32px; }
  .repos-arrow { display: none; }
}

/* Comparison checklist supporting the before/after narrative */
.repos-points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.repos-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: var(--r-md);
  font-size: 13.5px;
  line-height: 1.5;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.repos-points li {
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.03);
  border: 1px dashed rgba(255,255,255,.14);
}
.repos-points-new li {
  color: rgba(255,255,255,.94);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--sh-purple-sm);
}
.repos-points-new li:hover { transform: translateX(4px); border-color: rgba(255,255,255,.3); }

.rp-icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.repos-points li .rp-icon {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.5);
}
.repos-points-new li .rp-icon {
  background: linear-gradient(135deg, var(--light-purple), var(--accent-light));
  color: var(--ink-950);
  box-shadow: 0 0 0 4px rgba(245,166,35,.14);
}

/* ─────────────────────────────────────────────────────────
   About
───────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 767.98px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
.about-body {
  margin-top: 18px;
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--gray);
  max-width: 520px;
}
.feature-list { list-style: none; margin: 32px 0 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.feature-list li { display: flex; align-items: flex-start; gap: 14px; }
.feature-icon {
  flex: none;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.feature-text { font-size: 14.5px; color: var(--text); line-height: 1.6; padding-top: 8px; }

.about-card {
  position: relative;
  overflow: hidden;
  background: var(--grad-ink);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--sh-lg);
}
.about-card-year {
  position: absolute;
  top: 8px; right: 20px;
  font-size: 168px;
  font-weight: 700;
  color: rgba(255,255,255,.05);
  line-height: 1;
  z-index: 0;
  letter-spacing: -6px;
}
.about-card-label {
  position: relative; z-index: 1;
  font-size: 11px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--light-purple);
  margin-bottom: 14px;
}
.about-card-text {
  position: relative; z-index: 1;
  font-size: 15px;
  line-height: 1.75;
  color: var(--on-dark-muted);
}
.about-card-loc {
  position: relative; z-index: 1;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--on-dark-line);
  font-size: 13.5px;
  color: var(--on-dark);
  font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}

/* ─────────────────────────────────────────────────────────
   Cards (generic) + hover pattern
───────────────────────────────────────────────────────── */
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  box-shadow: var(--sh-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: rgba(107,33,168,.20);
}
.card:hover::after { opacity: 1; }

/* ─────────────────────────────────────────────────────────
   Layanan Utama
───────────────────────────────────────────────────────── */
.layanan-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}
@media (max-width: 767.98px) {
  .layanan-lead { grid-template-columns: 1fr; gap: 32px; }
}
.layanan-body {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--gray);
}
.vp-strip {
  background: var(--grad-ink);
  color: var(--on-dark);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--sh-lg);
}
.vp-label { font-size: 11px; letter-spacing: 2.4px; text-transform: uppercase; font-weight: 600; color: var(--light-purple); margin-bottom: 14px; }
.vp-headline { font-size: 21px; font-weight: 700; line-height: 1.35; letter-spacing: -.3px; }
.vp-body { margin-top: 14px; font-size: 14px; line-height: 1.7; color: var(--on-dark-muted); }
.vp-tags { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }
.tag-pill {
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.08);
  border: 1px solid var(--on-dark-line);
  color: var(--on-dark-muted);
}

.sc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 767.98px) { .sc-grid { grid-template-columns: 1fr; } }

.sc-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.sc-title { font-size: 17px; font-weight: 700; letter-spacing: -.2px; }
.sc-desc { margin-top: 10px; font-size: 14px; line-height: 1.7; color: var(--gray); }
.sc-outcome {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--secondary);
  background: var(--surface);
  padding: 8px 12px;
  border-radius: var(--r-xs);
}
.sc-outcome::before { content: '↗'; }

.revenue-bar {
  margin-top: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.revenue-bar-label { font-size: 11px; letter-spacing: 2.2px; text-transform: uppercase; font-weight: 600; color: var(--gray); }
.revenue-bar-text { font-size: 14.5px; color: var(--text); font-weight: 500; margin-top: 4px; }
.revenue-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.rpill {
  font-size: 12.5px; font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-full);
  background: #fff;
  border: 1px solid var(--border);
  color: var(--gray);
}
.rpill.hl {
  background: var(--grad-primary);
  color: #fff;
  border-color: transparent;
}

/* ─────────────────────────────────────────────────────────
   Mengapa Swevel (Differentiators)
───────────────────────────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 1023.98px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .diff-grid { grid-template-columns: 1fr; } }

.diff-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  overflow: hidden;
}
.diff-num {
  position: absolute;
  top: -6px; right: 14px;
  font-size: 74px;
  font-weight: 700;
  color: rgba(50,37,111,.05);
  z-index: 0;
  line-height: 1;
}
.diff-icon { position: relative; z-index: 1; font-size: 27px; margin-bottom: 18px; }
.diff-title { position: relative; z-index: 1; font-size: 17px; font-weight: 700; letter-spacing: -.2px; }
.diff-desc { position: relative; z-index: 1; margin-top: 12px; font-size: 14px; line-height: 1.72; color: var(--gray); }

/* ─────────────────────────────────────────────────────────
   Portfolio
───────────────────────────────────────────────────────── */
.port-section { background: var(--grad-ink); color: var(--on-dark); }
.port-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
@media (max-width: 767.98px) { .port-lead { grid-template-columns: 1fr; gap: 24px; } }
.port-lead-body { font-size: 15px; line-height: 1.8; color: var(--on-dark-muted); }

.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 767.98px) { .port-grid { grid-template-columns: 1fr; } }

.port-card {
  position: relative;
  display: block;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  color: inherit;
  text-decoration: none;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.port-card:hover { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.06); color: inherit; }
a.port-card:hover { transform: translateY(-4px); }
.port-dot { width: 10px; height: 10px; border-radius: 50%; margin-bottom: 18px; }
.port-dot.dot-purple { background: var(--secondary); }
.port-dot.dot-gold { background: var(--accent); }
.port-dot.dot-light { background: var(--light-purple); }
.port-name { font-size: 18px; font-weight: 700; }
.port-link-arrow { display: inline-block; margin-left: 2px; color: var(--light-purple); opacity: 0; transform: translate(-3px, 1px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
a.port-card:hover .port-link-arrow { opacity: 1; transform: translate(0, 1px); }
.port-cat { margin-top: 6px; font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--on-dark-faint); font-weight: 500; }
.port-desc { margin-top: 14px; font-size: 13.5px; line-height: 1.7; color: var(--on-dark-muted); }

.port-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--r-full);
  background: rgba(245,166,35,.16);
  color: var(--accent-light);
  border: 1px solid rgba(245,166,35,.32);
}
.port-card-soon { border-style: dashed; }
.port-card-soon:hover { border-color: var(--on-dark-line); background: rgba(255,255,255,.035); }

/* ─────────────────────────────────────────────────────────
   Contact CTA
───────────────────────────────────────────────────────── */
.cta-section {
  background: var(--grad-ink);
  color: var(--on-dark);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta-diagonal {
  position: absolute;
  left: -10%; bottom: -30%;
  width: 55%; height: 130%;
  background: linear-gradient(calc(var(--diagonal) * -1), transparent 48%, rgba(139,107,255,.10) 48.4%, rgba(139,107,255,.10) 49.6%, transparent 50%);
  pointer-events: none;
}
.cta-inner { max-width: 660px; margin: 0 auto; position: relative; z-index: 1; }
.cta-inner .eyebrow { justify-content: center; }
.cta-title { margin-top: 18px; font-size: var(--fs-h2); letter-spacing: -.6px; }
.cta-body { margin-top: 18px; font-size: 15.5px; line-height: 1.8; color: var(--on-dark-muted); }
.cta-actions { margin-top: 36px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.contact-chips {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--on-dark-line);
}
.chip-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--on-dark-muted);
}
a.chip-item:hover { color: var(--on-dark); }

@media (max-width: 575.98px) {
  .contact-chips { flex-direction: column; align-items: center; gap: 16px; }
}

/* ─────────────────────────────────────────────────────────
   Floating WhatsApp button
───────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0,0,0,.34);
  color: #fff;
}
@media (max-width: 575.98px) {
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* ─────────────────────────────────────────────────────────
   Footer
───────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink-950);
  border-top: 1px solid var(--on-dark-line);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-logo img { height: 40px; }
.footer-copy { font-size: 12.5px; color: var(--on-dark-faint); text-align: right; }
@media (max-width: 575.98px) {
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-copy { text-align: center; }
}

/* ─────────────────────────────────────────────────────────
   Scroll fade-in animation
───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
  }
  .fade.on { opacity: 1; transform: none; }
}

/* ─────────────────────────────────────────────────────────
   Misc
───────────────────────────────────────────────────────── */
::selection { background: var(--secondary); color: #fff; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 10px 16px;
  z-index: 2000;
  border-radius: 0 0 var(--r-xs) 0;
}
.skip-link:focus { left: 0; }
