/* ==========================================================================
   RCD (RISE UP CREATIVE DIGITAL) - CORE DESIGN SYSTEM
   Theme: Luxury Pitch Black & Royal Gold (#D4AF37) with Rose Accents
   ========================================================================== */

:root {
  /* Colors */
  --bg-pitch: #050507;
  --bg-deep: #0a0b0e;
  --bg-surface: #101218;
  --bg-surface-elevated: #161922;
  --bg-glass: rgba(16, 18, 24, 0.75);
  --bg-glass-card: rgba(22, 25, 34, 0.6);
  --bg-glass-hover: rgba(28, 32, 44, 0.85);

  /* Gold Palette (from RCD Royal Emblem) */
  --gold-300: #fae8a4;
  --gold-400: #f5d470;
  --gold-500: #d4af37;
  --gold-600: #b58d20;
  --gold-700: #8c6a12;
  --gold-glow: rgba(212, 175, 55, 0.28);
  --gold-glow-soft: rgba(212, 175, 55, 0.12);
  --gold-gradient: linear-gradient(135deg, #fae8a4 0%, #d4af37 45%, #a67c1e 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(250, 232, 164, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);

  /* Rose Crimson Palette (from central RCD Rose) */
  --rose-400: #ff5466;
  --rose-500: #e63946;
  --rose-600: #c1121f;
  --rose-glow: rgba(230, 57, 70, 0.3);

  /* Typography Colors */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-faint: #64748b;
  --text-gold: #f5d470;

  /* Borders & Shadows */
  --border-subtle: rgba(212, 175, 55, 0.15);
  --border-highlight: rgba(212, 175, 55, 0.45);
  --border-card: rgba(255, 255, 255, 0.07);
  --shadow-gold: 0 10px 30px -10px rgba(212, 175, 55, 0.25);
  --shadow-card: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 50px -10px rgba(212, 175, 55, 0.2);

  /* Fonts */
  --font-serif: 'Cinzel', serif;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Fira Code', monospace;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.15s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-pitch);
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-pitch);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: #2a251a;
  border-radius: 999px;
  border: 2px solid var(--bg-deep);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-500);
}

/* Selection */
::selection {
  background: rgba(212, 175, 55, 0.3);
  color: #fff;
}

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

.container-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   CANVAS & AMBIENT BACKGROUND
   ========================================================================== */

#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.ambient-lights {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.light-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
}

.light-orb-1 {
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-500) 0%, transparent 70%);
}

.light-orb-2 {
  bottom: 25%;
  left: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--rose-600) 0%, transparent 70%);
  opacity: 0.12;
}

.light-orb-3 {
  top: 45%;
  right: 15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--gold-600) 0%, transparent 70%);
  opacity: 0.12;
}



/* ==========================================================================
   TYPOGRAPHY & UTILITIES
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-main);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
}

.serif-font {
  font-family: var(--font-serif);
}

.mono-font {
  font-family: var(--font-mono);
}

.text-gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-rose {
  color: var(--rose-400);
}

.text-gold {
  color: var(--gold-400);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-gold {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-300);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.badge-rose {
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.35);
  color: #ff8591;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 1rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* Gold Divider */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto;
  max-width: 280px;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.gold-divider-gem {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--gold-400);
  box-shadow: 0 0 10px var(--gold-500);
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #070709;
  box-shadow: 0 8px 24px -6px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -4px rgba(212, 175, 55, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: #000;
}

.btn-gold:active {
  transform: translateY(-1px);
}

.btn-outline-gold {
  background: rgba(16, 18, 24, 0.8);
  color: var(--gold-300);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-400);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.25);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px -4px rgba(37, 211, 102, 0.4);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -2px rgba(37, 211, 102, 0.55);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-lg {
  padding: 1.05rem 2.25rem;
  font-size: 1.05rem;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */

/* ==========================================================================
   NAVIGATION BAR (Fixed Full-Width: Transparent -> Frosted Glass on Scroll)
   ========================================================================== */

.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.15rem 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: padding 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease,
              backdrop-filter 0.35s ease,
              -webkit-backdrop-filter 0.35s ease;
  pointer-events: auto;
}

/* Scrolled State: Full-Width Translucent Frosted Glass Bar */
.site-navbar.scrolled {
  padding: 0.85rem 0;
  background: rgba(6, 8, 12, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-emblem-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  padding: 2px;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

.brand-logo:hover .brand-emblem-wrap {
  transform: scale(1.08) rotate(4deg);
}

.brand-emblem-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  line-height: 1.2;
  white-space: nowrap;
}

/* Nav Menu: Clean & Unboxed (Transparent) */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.nav-link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  letter-spacing: 0.01em;
}

.nav-link::after {
  display: none !important;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: var(--gold-200);
  font-weight: 600;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.12);
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  color: var(--gold-300);
  padding: 0.5rem;
  border-radius: 999px;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 7.5rem;
  padding-bottom: 5rem;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  position: relative;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-pill-sparkle {
  color: var(--gold-400);
  display: inline-block;
  animation: rotateCrest 8s linear infinite;
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
  margin-bottom: 1.4rem;
}

.hero-desc {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-desc strong {
  color: #ffffff;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Centerpiece Visual (RCD Emblem 3D Hologram Card) */
.hero-visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.emblem-3d-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 36px;
  background: radial-gradient(circle at 50% 50%, rgba(26, 29, 40, 0.7) 0%, rgba(10, 11, 15, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), 0 0 50px rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.emblem-ring-outer {
  position: absolute;
  inset: -12px;
  border-radius: 44px;
  border: 1px dashed rgba(212, 175, 55, 0.25);
  pointer-events: none;
  animation: rotateCrest 60s linear infinite;
}

.emblem-core-img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.35), 0 0 70px rgba(230, 57, 70, 0.25);
  border: 3px solid rgba(212, 175, 55, 0.5);
  transition: transform 0.4s ease;
}

.emblem-3d-card:hover .emblem-core-img {
  transform: scale(1.04);
}

.emblem-caption {
  margin-top: 1.25rem;
  text-align: center;
}

.emblem-caption-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-300);
}

.emblem-caption-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* Floating feature pills around emblem */
.floating-badge {
  position: absolute;
  background: rgba(16, 18, 25, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
  z-index: 2;
  font-size: 0.82rem;
  font-weight: 600;
}

.fb-1 {
  top: 8%;
  left: -8%;
  color: var(--gold-300);
}

.fb-2 {
  bottom: 12%;
  right: -8%;
  color: #ff8591;
}

.fb-3 {
  bottom: -4%;
  left: 12%;
  color: #4ade80;
}

.fb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   CLEAN & MODERN EDITORIAL HERO DUO SHOWCASE
   ========================================================================== */

.hero-clean-stage {
  position: relative;
  width: 100%;
  max-width: 530px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}

/* Central RCD Seal */
.hero-clean-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem 1.35rem 0.5rem 0.65rem;
  background: rgba(14, 16, 23, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.15);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.hero-clean-seal:hover {
  transform: translateY(-2px);
  border-color: var(--gold-400);
}

.clean-seal-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-400);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.clean-seal-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.clean-seal-title {
  font-family: var(--font-serif);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-300);
}

.clean-seal-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

/* Clean Portrait Cards Row */
.hero-clean-portraits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  width: 100%;
}

.clean-duo-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 3 / 4.3;
  background: #090a0d;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.9);
  transition: transform 0.4s var(--ease-smooth), border-color 0.35s ease, box-shadow 0.4s ease;
}

.card-pm-clean,
.card-dev-clean {
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.card-pm-clean:hover,
.card-dev-clean:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.75);
  box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.95), 0 0 35px rgba(212, 175, 55, 0.25);
}

.clean-duo-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.card-pm-clean .clean-duo-photo {
  transform: scale(1.65) translateY(-2%);
  transform-origin: 48% 78%;
}

.card-pm-clean:hover .clean-duo-photo {
  transform: scale(1.76) translateY(-2%);
}

.card-dev-clean .clean-duo-photo {
  object-position: center 48%;
}

.card-dev-clean:hover .clean-duo-photo {
  transform: scale(1.08);
}

.clean-duo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(5, 5, 7, 0.55) 75%, rgba(5, 5, 7, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.15rem;
}

.clean-role-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  align-self: flex-start;
  margin-bottom: 0.4rem;
  backdrop-filter: blur(8px);
}

.badge-pm,
.badge-dev {
  background: rgba(212, 175, 55, 0.18);
  color: var(--gold-300);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.clean-name {
  font-size: 1.22rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.clean-desc {
  font-size: 0.74rem;
  color: #cbd5e1;
  margin-top: 0.2rem;
  line-height: 1.3;
}

.clean-trust-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
}

.clean-trust-tag .trust-sparkle {
  color: var(--gold-400);
}

/* ==========================================================================
   PARTNERSHIP & LEADERSHIP STORY SECTION
   Narrative: Indah Sari (Project Manager) & Rifaldy (Developer) since 2025
   ========================================================================== */

.story-section {
  position: relative;
  padding: 6.5rem 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 5, 7, 0.4) 0%, rgba(9, 11, 18, 0.9) 35%, rgba(12, 14, 22, 0.95) 65%, rgba(6, 7, 11, 0.5) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  overflow: hidden;
}

.story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 420px;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.story-hero-block {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 4.5rem;
}

.story-lead-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #cbd5e1;
  margin-top: 1.4rem;
}

.story-lead-text strong {
  color: #ffffff;
  font-weight: 600;
}

/* ==========================================================================
   EDITORIAL DUO BENTO (FOUNDER SHOWCASE)
   Clean, Unified Studio Layout for Indah & Rifaldy
   ========================================================================== */

.editorial-duo-bento {
  background: rgba(14, 16, 25, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.85), 0 0 40px rgba(212, 175, 55, 0.08);
  margin-bottom: 4rem;
  overflow: hidden;
  position: relative;
}

.editorial-duo-bento::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0.85;
}

.bento-duo-header {
  padding: 1.8rem 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.015);
}

.bento-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.bento-header-caption {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.bento-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.bento-duo-col {
  padding: 3rem 2.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background var(--transition-normal);
}

.bento-duo-col:hover {
  background: rgba(255, 255, 255, 0.015);
}

.bento-duo-col:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.bento-profile-top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.bento-avatar-frame {
  width: 92px;
  height: 92px;
  border-radius: 24px;
  padding: 3px;
  background: var(--gold-gradient);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.25);
  flex-shrink: 0;
  position: relative;
}

.bento-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 21px;
  overflow: hidden;
  position: relative;
  background: #050507;
}

.bento-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 21px;
  object-fit: cover;
  display: block;
}

.bento-avatar-indah {
  object-position: center 74%;
  transform: scale(1.65);
  transform-origin: 48% 78%;
}

.bento-profile-meta {
  flex: 1;
}

.bento-name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 0.3rem;
}

.bento-role-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-400);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.5rem;
}

.bento-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bento-status-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.bento-mission-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 1.8rem;
  font-style: italic;
}

.bento-deliverables {
  list-style: none;
  padding: 0;
  margin: 0 0 2.2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  flex-grow: 1;
}

.bento-deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #cbd5e1;
}

.bento-check-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--gold-400);
}

.bento-deliverable-item strong {
  color: #ffffff;
  font-weight: 600;
  display: block;
  margin-bottom: 0.15rem;
}

.bento-cta-row {
  margin-top: auto;
  display: flex;
  gap: 1rem;
}

.bento-cta-btn {
  width: 100%;
}

.bento-synergy-footer {
  padding: 1.25rem 2.5rem;
  background: rgba(10, 12, 18, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  font-size: 0.86rem;
  color: #94a3b8;
}

.bento-synergy-footer strong {
  color: var(--gold-400);
}

@media (max-width: 900px) {
  .bento-duo-grid {
    grid-template-columns: 1fr;
  }
  .bento-duo-col:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .bento-duo-col {
    padding: 2.2rem 1.8rem;
  }
  .bento-duo-header {
    padding: 1.5rem 1.8rem;
  }
  .bento-synergy-footer {
    padding: 1.2rem 1.5rem;
  }
}

/* Synergy Matrix Box */
.synergy-matrix-box {
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, rgba(14, 16, 22, 0.7) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 28px;
  padding: 2.8rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.synergy-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.synergy-item {
  display: flex;
  gap: 1.2rem;
}

.synergy-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  flex-shrink: 0;
}

.synergy-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.synergy-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SERVICES SECTION (5 MAIN SERVICES)
   ========================================================================== */

.services-section {
  position: relative;
  padding: 7rem 0;
  z-index: 1;
  background-color: #07080d;
  background-image: 
    radial-gradient(rgba(212, 175, 55, 0.09) 1.2px, transparent 1.2px),
    linear-gradient(180deg, rgba(5, 6, 9, 0.9) 0%, rgba(8, 10, 16, 0.96) 50%, rgba(5, 6, 9, 0.9) 100%);
  background-size: 28px 28px, 100% 100%;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.services-grid .service-card:nth-child(1),
.services-grid .service-card:nth-child(2) {
  grid-column: span 1.5;
}

/* Custom 5 layout: 2 big top, 3 balanced bottom */
.services-container-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.75rem;
}

.service-col-6 {
  grid-column: span 6;
}

.service-col-4 {
  grid-column: span 4;
}

.service-card {
  position: relative;
  background: var(--bg-glass-card);
  border: 1px solid var(--border-card);
  border-radius: 26px;
  padding: 2.2rem;
  backdrop-filter: blur(16px);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-highlight);
  background: var(--bg-glass-hover);
  box-shadow: 0 25px 45px -10px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.15);
}

.service-badge-number {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  transition: color var(--transition-normal);
}

.service-card:hover .service-badge-number {
  color: rgba(212, 175, 55, 0.2);
}

.service-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
  transition: transform var(--transition-normal);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(4deg);
  background: var(--gold-gradient);
  color: #050507;
}

.service-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: #ffffff;
  line-height: 1.3;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.service-features-list {
  list-style: none;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  color: #cbd5e1;
}

.service-features-list li svg {
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.service-card-action {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-action-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-400);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition-fast);
}

.service-action-link:hover {
  gap: 0.65rem;
  color: var(--gold-300);
}

/* ==========================================================================
   INTERACTIVE SIMULATOR (POS & LABA RUGI / PRESENSI / UNDANGAN)
   ========================================================================== */

.simulator-section {
  position: relative;
  padding: 6.5rem 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 20%, rgba(20, 23, 33, 0.8) 0%, var(--bg-pitch) 100%);
}

.sim-tabs-wrap {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.sim-tab-btn {
  background: rgba(16, 18, 25, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--text-muted);
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.sim-tab-btn:hover {
  color: #ffffff;
  border-color: var(--gold-400);
}

.sim-tab-btn.active {
  background: var(--gold-gradient);
  color: #070709;
  border-color: transparent;
  box-shadow: 0 8px 25px -4px rgba(212, 175, 55, 0.5);
}

.sim-view-panel {
  display: none;
  background: var(--bg-glass-card);
  border: 1px solid var(--border-highlight);
  border-radius: 32px;
  padding: 2.8rem;
  box-shadow: var(--shadow-card), 0 0 50px rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(20px);
  animation: fadeInScale 0.4s var(--ease-smooth);
}

.sim-view-panel.active {
  display: block;
}

/* POS & Laba Rugi Interactive Panel */
.pos-sim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.pos-input-group {
  margin-bottom: 1.4rem;
}

.pos-input-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}

.pos-input-field {
  width: 100%;
  background: rgba(8, 9, 13, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.pos-input-field:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.pos-result-box {
  background: rgba(9, 10, 14, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pos-metric-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.metric-highlight {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.metric-val {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.profit-progress-wrap {
  margin-top: 0.5rem;
}

.profit-bar-track {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin: 0.5rem 0;
}

.profit-bar-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 999px;
  transition: width 0.5s ease-out;
}

/* ==========================================================================
   PORTFOLIO & SHOWCASE SECTION
   ========================================================================== */

.portfolio-section {
  position: relative;
  padding: 6.5rem 0;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 0%, rgba(20, 25, 40, 0.6) 0%, rgba(6, 7, 10, 0.95) 60%, rgba(5, 5, 7, 0.98) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(16, 18, 25, 0.6);
  border: 1px solid var(--border-card);
  color: var(--text-muted);
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-500);
  color: #ffffff;
}

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

.portfolio-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-glass-card);
  border: 1px solid var(--border-card);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  border-color: var(--border-highlight);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.9), 0 0 35px var(--gold-glow-soft);
}

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

.portfolio-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.portfolio-item:hover .portfolio-thumb {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 5, 7, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.portfolio-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-400);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.portfolio-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.portfolio-summary {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.portfolio-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   PROJECT ESTIMATOR / KALKULATOR BIAYA
   Interactive Quotation Builder with WhatsApp prefill
   ========================================================================== */

.estimator-section {
  position: relative;
  padding: 6.5rem 0;
  z-index: 1;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-surface) 50%, var(--bg-deep) 100%);
}

.estimator-card {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-highlight);
  border-radius: 32px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), 0 0 50px rgba(212, 175, 55, 0.1);
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 3rem;
}

.step-group-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.step-num-pill {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #050507;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.options-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.option-tile {
  background: rgba(12, 14, 20, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.option-tile:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.05);
}

.option-tile.selected {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-400);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.option-tile-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.option-tile-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Feature Checkboxes */
.checkbox-addons-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.addon-checkbox-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  border-radius: 14px;
  background: rgba(12, 14, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.addon-checkbox-label:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.addon-checkbox-label.checked {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-500);
}

.addon-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.addon-left input[type="checkbox"] {
  accent-color: var(--gold-500);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Estimator Summary Card */
.est-summary-box {
  background: rgba(8, 9, 13, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 26px;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
}

.est-summary-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.est-price-tag {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-top: 0.5rem;
}

.est-timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.est-selection-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.est-selection-list li {
  font-size: 0.85rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.est-guarantee-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
}

/* ==========================================================================
   WORKFLOW / CARA KERJA (4 STEPS)
   ========================================================================== */

.workflow-section {
  position: relative;
  padding: 6.5rem 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 5, 7, 0.8) 0%, rgba(8, 10, 17, 0.95) 40%, rgba(10, 12, 20, 0.95) 60%, rgba(5, 5, 7, 0.8) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  overflow: hidden;
}

.workflow-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.workflow-step-card {
  position: relative;
  background: var(--bg-glass-card);
  border: 1px solid var(--border-card);
  border-radius: 22px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(14px);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.workflow-step-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-highlight);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px var(--gold-glow-soft);
}

.workflow-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 1.25rem;
  opacity: 0.6;
}

.workflow-role-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  display: inline-block;
  align-self: flex-start;
}

.role-pm {
  background: rgba(230, 57, 70, 0.15);
  color: #ff8591;
  border: 1px solid rgba(230, 57, 70, 0.3);
}

.role-dev {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-300);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.role-duo {
  background: linear-gradient(90deg, rgba(230, 57, 70, 0.15), rgba(212, 175, 55, 0.15));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.workflow-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  color: #ffffff;
}

.workflow-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-section {
  position: relative;
  padding: 6.5rem 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 5, 7, 0.85) 0%, rgba(9, 11, 18, 0.95) 50%, rgba(5, 5, 7, 0.85) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.faq-accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-card);
  border-radius: 18px;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.faq-item.active {
  border-color: var(--border-highlight);
  background: var(--bg-glass-hover);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.faq-question-btn {
  width: 100%;
  padding: 1.4rem 1.8rem;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
}

.faq-icon-arrow {
  transition: transform var(--transition-normal);
  color: var(--gold-400);
  flex-shrink: 0;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth);
  padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
  max-height: 350px;
  padding-bottom: 1.5rem;
}

.faq-answer-inner {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   CONTACT & DIRECT CONSULTATION
   ========================================================================== */

.contact-section {
  position: relative;
  padding: 6.5rem 0;
  z-index: 1;
  background: radial-gradient(circle at 50% 95%, rgba(212, 175, 55, 0.15) 0%, rgba(10, 12, 18, 0.92) 55%, rgba(5, 5, 7, 0.98) 85%);
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  overflow: hidden;
}

.contact-box {
  background: var(--bg-glass-card);
  border: 1px solid var(--border-highlight);
  border-radius: 36px;
  padding: 3.5rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card), 0 0 60px rgba(212, 175, 55, 0.15);
  box-sizing: border-box;
  max-width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-col {
  min-width: 0;
}

.contact-title {
  font-size: 2.3rem;
  margin: 0.8rem 0 1rem;
  line-height: 1.25;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-desc {
  font-size: 1.02rem;
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: break-word;
}

.contact-direct-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  min-width: 0;
}

.direct-wa-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.2rem 1.5rem;
  border-radius: 18px;
  background: rgba(12, 14, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-normal);
  text-decoration: none;
  box-sizing: border-box;
  min-width: 0;
}

.direct-wa-card:hover {
  transform: translateX(6px);
  border-color: rgba(37, 211, 102, 0.5);
  background: rgba(37, 211, 102, 0.08);
}

.direct-wa-person {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  flex: 1;
}

.direct-wa-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.direct-wa-name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.direct-wa-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
}

.direct-wa-card .btn-whatsapp {
  flex-shrink: 0;
  white-space: nowrap;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(8, 9, 13, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* ==========================================================================
   FOOTER (Minimalist Luxury Bar: Logo on Left, Meta on Right)
   ========================================================================== */

.site-footer {
  position: relative;
  background: #040507;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.2rem 0;
  z-index: 1;
}

.footer-minimal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.footer-copy strong {
  color: var(--gold-300);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Floating Quick Action Button (Luxury Dark Glass) */
.floating-whatsapp-action {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  background: rgba(13, 15, 22, 0.88);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75), 0 0 20px rgba(37, 211, 102, 0.15);
  transition: all var(--transition-normal);
}

.floating-whatsapp-action svg {
  color: #25D366;
  filter: drop-shadow(0 0 6px rgba(37, 211, 102, 0.6));
}

.floating-whatsapp-action:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: #25D366;
  background: rgba(18, 22, 32, 0.95);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.85), 0 0 25px rgba(37, 211, 102, 0.35);
}

/* Modal Popup */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.open {
  display: flex;
}

.modal-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-highlight);
  border-radius: 28px;
  max-width: 680px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 50px var(--gold-glow);
  animation: fadeInScale 0.3s var(--ease-smooth);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal-close-btn:hover {
  background: rgba(230, 57, 70, 0.25);
  color: var(--rose-400);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3.5rem;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats-row {
    justify-content: center;
  }

  .team-dual-grid {
    grid-template-columns: 1fr;
  }

  .services-container-grid {
    grid-template-columns: 1fr;
  }

  .service-col-6,
  .service-col-4 {
    grid-column: span 12;
  }

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

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

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

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

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

  .contact-box {
    padding: 2.5rem 2rem;
    border-radius: 28px;
  }

  .estimator-card {
    padding: 2.5rem 2rem;
    border-radius: 28px;
  }



  .hero-duo-stage,
  .hero-clean-stage {
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 1120px) and (min-width: 881px) {
  .site-navbar {
    padding: 1rem 0;
  }

  .site-navbar.scrolled {
    padding: 0.75rem 0;
  }

  .nav-container {
    padding: 0 1.5rem;
    gap: 1rem;
  }

  .brand-logo {
    gap: 0.6rem;
  }

  .brand-emblem-wrap {
    width: 34px;
    height: 34px;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .brand-sub {
    font-size: 0.52rem;
    letter-spacing: 0.08em;
  }

  .nav-menu {
    gap: 0.2rem;
  }

  .nav-link {
    font-size: 0.82rem;
    padding: 0.4rem 0.65rem;
  }
}

@media (max-width: 880px) {
  .site-navbar {
    padding: 0.9rem 0;
  }

  .site-navbar.scrolled {
    padding: 0.75rem 0;
  }

  .nav-container {
    width: 100%;
    max-width: 100%;
    padding: 0 1.25rem;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    gap: 0.75rem;
    position: relative;
  }

  .brand-logo {
    gap: 0.55rem;
    min-width: 0;
  }

  .brand-emblem-wrap {
    width: 36px;
    height: 36px;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .brand-sub {
    font-size: 0.54rem;
    letter-spacing: 0.08em;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--gold-400);
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
    z-index: 1001;
    transition: all 0.25s ease;
  }

  .mobile-toggle:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-300);
    color: #ffffff;
    transform: scale(1.05);
  }

  /* Full-width Dropdown Menu attached below navbar */
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(8, 10, 15, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.95);
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease,
                transform 0.25s ease,
                visibility 0.25s;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    border-radius: 10px;
  }
}

@media (max-width: 440px) {
  .nav-container {
    padding: 0 1rem;
    gap: 0.5rem;
  }

  .brand-logo {
    gap: 0.45rem;
  }

  .brand-emblem-wrap {
    width: 32px;
    height: 32px;
  }

  .brand-title {
    font-size: 0.98rem;
  }

  .brand-sub {
    font-size: 0.48rem;
    letter-spacing: 0.05em;
  }

  .mobile-toggle {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 440px) {
  .nav-container {
    width: calc(100% - 1rem);
    padding: 0.4rem 0.65rem 0.4rem 0.75rem;
    gap: 0.5rem;
  }

  .brand-logo {
    gap: 0.45rem;
  }

  .brand-emblem-wrap {
    width: 32px;
    height: 32px;
  }

  .brand-title {
    font-size: 0.96rem;
  }

  .brand-sub {
    font-size: 0.48rem;
    letter-spacing: 0.05em;
  }

  .mobile-toggle {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 768px) {
  .pos-sim-grid {
    grid-template-columns: 1fr;
  }

  .workflow-steps-grid {
    grid-template-columns: 1fr;
  }

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

  .options-tile-grid {
    grid-template-columns: 1fr;
  }

  .footer-minimal-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-copy {
    text-align: center;
    font-size: 0.82rem;
  }

  .floating-whatsapp-action span {
    display: none;
  }

  .floating-whatsapp-action {
    padding: 0.9rem;
    border-radius: 50%;
  }

  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-duo-stage {
    padding: 1.6rem 1rem 1.25rem;
    max-width: 100%;
  }

  .hero-duo-cards-grid {
    gap: 0.75rem;
  }

  .fb-hero-1,
  .fb-hero-2 {
    display: none;
  }

  .contact-section {
    padding: 4.5rem 0;
  }

  .contact-box {
    padding: 2rem 1.4rem;
    border-radius: 24px;
  }

  .contact-grid {
    gap: 2rem;
  }

  .contact-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .estimator-card {
    padding: 2rem 1.4rem;
    border-radius: 24px;
  }
}

@media (max-width: 560px) {
  .hero-clean-portraits {
    grid-template-columns: 1fr;
    max-width: 310px;
    margin: 0 auto;
  }

  .clean-duo-card {
    aspect-ratio: 3 / 3.8;
  }

  .contact-section {
    padding: 3.5rem 0;
  }

  .contact-box {
    padding: 1.5rem 1.15rem;
    border-radius: 20px;
  }

  .contact-title {
    font-size: 1.48rem;
    line-height: 1.32;
  }

  .contact-desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .direct-wa-card {
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
    padding: 1.15rem 1rem;
  }

  .direct-wa-person {
    width: 100%;
  }

  .direct-wa-card .btn-whatsapp {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
  }

  .direct-wa-avatar {
    width: 44px;
    height: 44px;
  }

  .btn-lg {
    padding: 0.85rem 1.25rem;
    font-size: 0.92rem;
  }

  .estimator-card {
    padding: 1.5rem 1.15rem;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .container,
  .container-narrow {
    padding: 0 1rem;
  }

  .contact-box {
    padding: 1.35rem 0.95rem;
    border-radius: 18px;
  }

  .contact-title {
    font-size: 1.35rem;
    line-height: 1.32;
  }

  .contact-direct-cards {
    margin-top: 1.4rem;
    gap: 0.85rem;
  }

  .direct-wa-card {
    padding: 1rem 0.85rem;
  }

  .direct-wa-avatar {
    width: 42px;
    height: 42px;
  }

  .direct-wa-name {
    font-size: 0.95rem;
  }

  .direct-wa-role {
    font-size: 0.76rem;
  }

  .estimator-card {
    padding: 1.35rem 0.95rem;
    border-radius: 18px;
  }
}

/* ==========================================================================
   RCD CLEAN & REFINED INTRO SCREEN (TASTEFUL ANIMATIONS)
   ========================================================================== */
.clean-intro-screen {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #06070a;
  cursor: pointer;
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1),
              opacity 0.75s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform, opacity;
  user-select: none;
}

/* Upward Panel Glide on Exit */
.clean-intro-screen.clean-intro-exit {
  transform: translateY(-100%);
  opacity: 0.95;
  pointer-events: none;
}

.clean-intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
}

/* Logo Box with SVG Outline Ring */
.clean-intro-logo-box {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* SVG Ring that traces around logo */
.clean-logo-ring-svg {
  position: absolute;
  inset: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  pointer-events: none;
  transform: rotate(-90deg);
}

.clean-ring-bg {
  fill: none;
  stroke: rgba(212, 175, 55, 0.12);
  stroke-width: 1.5;
}

.clean-ring-stroke {
  fill: none;
  stroke: #d4af37;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 290;
  stroke-dashoffset: 290;
  animation: cleanRingDraw 1.1s cubic-bezier(0.65, 0, 0.35, 1) 0.1s forwards;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.5));
}

/* Logo Container */
.clean-logo-media {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.15);
  opacity: 0;
  animation: cleanLogoIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.clean-intro-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* Soft Single Glint / Sheen */
.clean-logo-glint {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.32) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: cleanGlintPass 0.85s ease 0.65s forwards;
  pointer-events: none;
}

/* Masked Title Slide Reveal */
.clean-intro-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clean-title-mask {
  overflow: hidden;
  padding: 0.15rem 0.5rem;
}

.clean-intro-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.36em;
  color: #f8fafc;
  text-transform: uppercase;
  margin: 0;
  text-indent: 0.36em;
  transform: translateY(115%);
  opacity: 0;
  animation: cleanTitleSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

/* Minimal Hairline Expanding */
.clean-intro-line {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4af37 50%, transparent);
  margin-top: 0.85rem;
  transform: scaleX(0);
  transform-origin: center;
  animation: cleanLineScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

@media (max-width: 600px) {
  .clean-intro-logo-box {
    width: 82px;
    height: 82px;
    margin-bottom: 1.25rem;
  }

  .clean-logo-media {
    width: 72px;
    height: 72px;
  }

  .clean-intro-title {
    font-size: 0.88rem;
    letter-spacing: 0.25em;
    text-indent: 0.25em;
  }
}