/* =========================================================
   RESET & VARIABLE
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #f1f5f9;
  --bg-soft: #e5f0ff;
  --card: #ffffff;
  --card-soft: #f8fafc;
  --border-subtle: rgba(148, 163, 184, 0.5);
  --accent: #0ea5e9;
  --accent-soft: rgba(14, 165, 233, 0.12);
  --accent-2: #6366f1;
  --text: #020617;
  --text-soft: #4b5563;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 24px 80px rgba(15, 23, 42, 0.16);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  min-height: 100vh;
  background: radial-gradient(circle at 0% 0%, #e0f2fe 0, #f9fafb 40%, #f9fafb 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* background global halus */
body::before {
  content: '';
  position: fixed;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 10%, rgba(59, 130, 246, 0.10), transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.10), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 90px 0;
}

.section-soft {
  padding: 90px 0;
  background: #f1f5f9;
}

.section-head {
  margin-bottom: 32px;
}

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

.section-title {
  font-size: 28px;
  font-weight: 600;
  margin: 0 0 6px;
}

.section-subtitle {
  font-size: 14px;
  color: var(--text-soft);
  max-width: 520px;
}

.section-head.center .section-subtitle {
  margin: 0 auto;
}

/* =========================================================
   NAVBAR
========================================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e0f2fe, #7dd3ff, #c4b5fd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #020617;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.3);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-text-main {
  font-size: 16px;
  font-weight: 600;
  color: #020617;
}

.logo-text-sub {
  font-size: 11px;
  color: #6b7280;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  font-size: 13px;
  color: #6b7280;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.18s ease-out;
}

.nav-link:hover {
  color: #111827;
}

.nav-link:hover::after {
  width: 100%;
}

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

.btn-primary,
.btn-ghost,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.12s ease-out,
    box-shadow 0.12s ease-out,
    background 0.12s ease-out,
    border-color 0.12s ease-out,
    color 0.12s ease-out;
}

/* tombol utama (hero, nav) */
.btn-primary {
  background: #0f172a;
  color: #f9fafb;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.45);
}

/* variant putih */
.btn-ghost,
.btn-outline {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.7);
  color: #111827;
}

.btn-ghost:hover,
.btn-outline:hover {
  background: #e5f0ff;
}

.nav-cta {
  background: #0f172a;
  color: #f9fafb;
  padding-inline: 16px;
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.35);
}

/* nav toggle mobile */
.nav-toggle {
  display: none;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: transparent;
  padding: 6px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  height: 2px;
  border-radius: 999px;
  background: #111827;
}

/* WA icon khusus di tombol */
.icon-wa {
  width: 16px;
  height: 16px;
  display: block;
}

.btn-primary .icon-wa {
  margin-right: 6px;
}

/* =========================================================
   HERO – ORBIT TECH VISUAL
   (support .hero-section & .hero)
========================================================= */

.hero,
.hero-section {
  padding: 76px 0 64px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  background:
    radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.12), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(56, 189, 248, 0.14), transparent 55%),
    #f3f4f6;
  border-radius: 32px;
  padding: 36px 40px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(148, 163, 184, 0.6);
  position: relative;
  overflow: hidden;
}

/* glow lembut bergerak di dalam hero */
.hero-inner::before {
  content: '';
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.12), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(56, 189, 248, 0.12), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(168, 85, 247, 0.16), transparent 55%);
  opacity: 0.75;
  z-index: -1;
  animation: heroBgMove 22s ease-in-out infinite alternate;
}

@keyframes heroBgMove {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-16px, 10px, 0) scale(1.03); }
  100% { transform: translate3d(18px, -10px, 0) scale(1.05); }
}

/* kiri: teks hero */
.hero-copy .eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #020617;
}

.hero-gradient-text {
  background: linear-gradient(90deg, #0ea5e9, #6366f1);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-desc {
  font-size: 14px;
  color: #4b5563;
  max-width: 440px;
  margin-bottom: 14px;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  font-size: 13px;
  color: #4b5563;
}

.hero-bullets li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0ea5e9, #6366f1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-wa-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: url('assets/img/wa-icon.png') center/contain no-repeat;
}

/* kanan: orb tech */

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-orbit {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #38bdf8, #0f172a 60%);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.6),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  overflow: hidden;
}

.hero-orbit-core {
  position: absolute;
  inset: 22px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #93c5fd, #0b1120 70%);
  box-shadow: inset 0 0 40px rgba(15, 23, 42, 0.9);
  animation: heroPulse 6s ease-in-out infinite;
}

.hero-orbit-glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 0, rgba(129, 230, 217, 0.16), transparent 60%),
    radial-gradient(circle at 80% 100%, rgba(56, 189, 248, 0.18), transparent 55%);
  mix-blend-mode: screen;
}

.hero-orbit-ring {
  position: absolute;
  inset: 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-orbit-ring-2 {
  inset: 26px;
  border-color: rgba(148, 163, 184, 0.25);
}

/* chips di sekitar orb */
.hero-orbit-pill {
  position: absolute;
  min-width: 150px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.98);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
  font-size: 11px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-orbit-pill .pill-title {
  font-weight: 600;
  color: #0f172a;
}

.hero-orbit-pill .pill-sub {
  color: #6b7280;
}

.pill-top {
  top: 8px;
  left: 10%;
  animation: pillFloat1 8s ease-in-out infinite;
}

.pill-right {
  right: -10px;
  top: 46%;
  transform: translateY(-50%);
  animation: pillFloat2 9s ease-in-out infinite;
}

.pill-bottom {
  bottom: 6px;
  left: 4%;
  animation: pillFloat3 7.5s ease-in-out infinite;
}

.hero-visual-caption {
  font-size: 11px;
  color: #6b7280;
  max-width: 240px;
  text-align: center;
}

/* animasi kecil */
@keyframes heroPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

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

@keyframes pillFloat2 {
  0%,100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-54%) translateX(-5px); }
}

@keyframes pillFloat3 {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* =========================================================
   LAYANAN – HIGHLIGHT WEB APPS & AUTOMATION
========================================================= */

.services-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

/* base card */
.service-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 20px 18px 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  border-color: rgba(59, 130, 246, 0.7);
}

.service-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
}

.service-lead {
  margin: 0 0 8px;
  font-size: 13px;
  color: #4b5563;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: #6b7280;
}

.service-list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 5px;
}

.service-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #38bdf8;
}

.service-tagline {
  font-size: 11px;
  color: #4b5563;
}

/* kartu utama: Web Apps & Automation */
.service-card-main {
  border-color: rgba(59, 130, 246, 0.75);
  box-shadow:
    0 22px 60px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(191, 219, 254, 0.7);
  transform: translateY(-4px);
}

/* garis halus di atas kartu utama */
.service-card-main::before {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  top: 10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, #a855f7);
  opacity: 0.5;
}

.service-badge {
  position: absolute;
  top: 12px;
  right: 14px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #fefce8;
  color: #854d0e;
  font-size: 10px;
  font-weight: 600;
}

.service-card-main h3 {
  margin-top: 14px;
}

/* =========================================================
   ABOUT
========================================================= */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: center;
}

.about-text p {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.about-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.meta-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
}

.meta-value {
  font-size: 12px;
  color: #111827;
}

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

.avatar-shell {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 10px;
}

.avatar-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
}

.avatar-img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f9fafb;
}

.avatar-caption {
  font-size: 12px;
  color: var(--text-soft);
}

/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.contact-light {
  background: #f9fafb;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.contact-btn {
  margin-top: 10px;
  margin-bottom: 14px;
}

.contact-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.meta-link {
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
}

.meta-link:hover {
  text-decoration: underline;
}

.contact-form {
  padding: 16px 16px 14px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.form-row {
  margin-bottom: 10px;
}

.form-row label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  color: #4b5563;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: #f9fafb;
  color: #111827;
  padding: 8px 10px;
  font-size: 12px;
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.4);
}

.form-note {
  font-size: 11px;
  color: #6b7280;
  margin: 4px 0 0;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  padding: 18px 0 20px;
  background: #f8fafc;
  border-top: 1px solid rgba(148, 163, 184, 0.6);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: linear-gradient(135deg, #0ea5e9, #a855f7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9fafb;
  font-size: 13px;
  font-weight: 700;
}

.footer-text {
  font-size: 13px;
  color: #111827;
}

.footer-copy {
  font-size: 11px;
  color: #6b7280;
  margin: 4px 0 0;
}

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

.footer-right a {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
  text-decoration: none;
  font-size: 13px;
}

.footer-right a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* =========================================================
   PORTFOLIO + MODAL
========================================================= */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* card dengan mockup */
.portfolio-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition:
    transform 0.16s ease-out,
    box-shadow 0.16s ease-out,
    border-color 0.16s ease-out;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);
  border-color: rgba(59, 130, 246, 0.6);
}

.portfolio-card:focus-visible {
  outline: 2px solid #38bdf8;
  outline-offset: 3px;
}

.portfolio-thumb {
  position: relative;
  background: #020617;
  overflow: hidden;
}

.portfolio-thumb img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 190px;
}

/* overlay glow */
.portfolio-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.23), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(56, 189, 248, 0.16), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.portfolio-body {
  padding: 14px 16px 12px;
}

.portfolio-card h3 {
  margin: 0 0 6px;
  font-size: 15px;
  color: #0f172a;
}

.portfolio-card p {
  margin: 0 0 8px;
  font-size: 13px;
  color: #4b5563;
}

.portfolio-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  font-size: 12px;
  color: #6b7280;
}

.portfolio-meta li {
  margin-bottom: 3px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
}

.portfolio-tags span {
  padding: 3px 8px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1e3a8a;
}

/* card tanpa mockup (plain script) */
.portfolio-card-plain {
  padding-top: 4px;
}

.portfolio-card-plain .portfolio-body {
  padding-top: 16px;
}

.portfolio-card-plain .portfolio-body::before {
  content: '</>';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: #0f172a;
  color: #e5e7eb;
}

/* detail hidden untuk modal */
.portfolio-detail {
  display: none;
}

/* MODAL */
.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease-out;
}

.portfolio-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.portfolio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
}

.portfolio-modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  max-width: 720px;
  width: calc(100% - 32px);
  background: rgba(248, 250, 252, 0.96);
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.4);
  padding: 20px 22px 18px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  overflow-y: auto;
  max-height: min(520px, 90vh);
  transition: transform 0.18s ease-out;
}

.portfolio-modal.is-open .portfolio-modal-dialog {
  transform: translate(-50%, -50%) scale(1);
}

.portfolio-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(248, 250, 252, 0.95);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
}

.portfolio-modal-close:hover {
  background: #e5e7eb;
}

.portfolio-modal-content h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
}

.portfolio-modal-content p {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 8px;
}

.portfolio-modal-content ul {
  margin: 8px 0 0;
  padding-left: 18px;
  font-size: 13px;
  color: #4b5563;
}

.portfolio-modal-content li {
  margin-bottom: 4px;
}

/* gambar full di modal */
.portfolio-modal-image {
  margin-bottom: 12px;
  border-radius: 18px;
  overflow: hidden;
  background: #020617;
}

.portfolio-modal-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    right: 16px;
    top: 56px;
    flex-direction: column;
    gap: 8px;
    background: #f9fafb;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    padding: 10px 12px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    padding: 24px 18px 26px;
    margin: 0 6px;
    border-radius: 26px;
  }
  .hero-copy {
    order: 1;
  }
  .hero-visual {
    order: 2;
    margin-top: 18px;
  }

  .services-grid,
  .service-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
  .service-card-main {
    transform: translateY(0);
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-light {
    margin: 0 4px;
    border-radius: 24px;
  }

  .section {
    padding: 70px 0;
  }
  .hero,
  .hero-section {
    padding: 64px 0 50px;
  }

  .portfolio-modal-dialog {
    max-width: 560px;
  }
}

@media (max-width: 720px) {
  .hero-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding: 20px 16px 22px;
  }
  .hero-title {
    font-size: 24px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================================
   1) Highlight Web Apps & Automation (card kiri)
   ========================================= */

/* bikin card utama lebih glowing & rapi */
.service-card-main {
  position: relative;
  z-index: 0;
  background:
    radial-gradient(circle at 0 0, rgba(56,189,248,0.12), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(129,140,248,0.10), transparent 60%),
    #ffffff;
  box-shadow:
    0 24px 70px rgba(15,23,42,0.22),
    0 0 0 1px rgba(191,219,254,0.8);
  transform: translateY(-2px);
}

/* akar neon lembut di luar kartu */
.service-card-main::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 0 0, rgba(56,189,248,0.45), transparent 65%),
    radial-gradient(circle at 100% 100%, rgba(129,140,248,0.45), transparent 65%);
  opacity: 0.7;
  z-index: -1;
  pointer-events: none;
}

/* sembunyikan label "Fokus utama" tapi tetap simpan HTML-nya */
.service-badge {
  display: none;
}

/* sedikit jarak atas judul biar seimbang */
.service-card-main h3 {
  margin-top: 6px;
}

/* =========================================
   2) Paragraf rata kanan–kiri (justify)
   ========================================= */

body p {
  text-align: justify;
}
/* === BACKGROUND GLOBAL LEBIH TENANG === */
body {
  background: #f3f4f6; /* flat soft grey */
}

/* matikan glow besar yang dulu di body::before kalau masih ada */
body::before {
  background: none;
  content: none;
}

/* section lembut di belakang "Apa yang Firstgency kerjakan?" */
.section-soft {
  background: #f8fafc;
}

/* === TWEAK HIGHLIGHT WEB APPS & AUTOMATION === */

/* buat glow lebih tipis dan rapih */
.service-card-main {
  background:
    radial-gradient(circle at 0 0, rgba(56,189,248,0.10), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(129,140,248,0.08), transparent 60%),
    #ffffff;
  box-shadow:
    0 20px 55px rgba(15,23,42,0.18),
    0 0 0 1px rgba(191,219,254,0.9);
  transform: translateY(-2px);
}

/* glow luar lebih tipis */
.service-card-main::after {
  inset: -6px;
  opacity: 0.55;
}

/* tinggi & padding konsisten dengan card lain */
.service-card,
.service-card-main {
  padding-top: 18px;
  padding-bottom: 16px;
}

.service-card-main h3 {
  margin-top: 8px;
}

/* sembunyikan badge "Fokus utama" tetapi HTML tetap */
.service-badge {
  display: none;
}

/* === ALIGN TEKS: LEFT UNTUK KARTU & HERO, JUSTIFY UNTUK BAGIAN PANJANG === */

/* default balik ke left */
body p {
  text-align: left;
  line-height: 1.6;
}

/* justify hanya untuk paragraf panjang */
.about-text p,
.section-subtitle,
.portfolio-modal-content p {
  text-align: justify;
}

/* card layanan & porto tetap left agar bersih */
.service-lead,
.service-list,
.portfolio-card p,
.hero-desc {
  text-align: left;
}
/* =====================================================
   1) Hero: tombol "Konsultasi via WhatsApp" benar-benar center
   ===================================================== */
.hero-actions .btn-primary.hero-wa,
.hero-actions .hero-wa.btn-primary {
  padding: 10px 22px;          /* atas–bawah sama */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* =====================================================
   2) Web Apps & Automation: hilangkan garis aneh di atas
   ===================================================== */
.service-card-main::before {
  content: none;               /* garis gradient di atas card dimatikan */
}

/* =====================================================
   3) "Siapa di balik Firstgency?" – teks dirapikan
   ===================================================== */
.about-text {
  max-width: 620px;            /* jangan terlalu panjang biar enak dibaca */
}

.about-text p {
  text-align: left;            /* jauh lebih rapi daripada justify di kolom segini */
  line-height: 1.7;
  margin-bottom: 10px;
}

/* label FOKUS & CARA KERJA tetap kecil & rapi */
.about-meta {
  margin-top: 16px;
}

/* =====================================================
   4 & 5) Samakan warna background antar section
   ===================================================== */

/* satu background halus untuk seluruh halaman */
body {
  background: radial-gradient(circle at 0% 0%, #e0f2fe 0, #f9fafb 40%, #eef2ff 100%);
}

/* section tidak lagi ganti warna sendiri, jadi tidak ada "garis putus" */
.section,
.section-soft {
  background: transparent;
}

/* =====================================================
   6) Sentuhan glassmorphism di card-card utama
   ===================================================== */

/* kartu-kartu utama: layanan, contact card, form, dll */
.service-card,
.contact-light,
.contact-form,
.portfolio-card {
  background: rgba(248, 250, 252, 0.92); /* sedikit transparan */
  backdrop-filter: blur(16px);
}

/* Web Apps & Automation tetap kartu highlight dengan glow */
.service-card-main {
  background:
    radial-gradient(circle at 0 0, rgba(56,189,248,0.10), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(129,140,248,0.08), transparent 60%),
    #ffffff;
  box-shadow:
    0 20px 55px rgba(15,23,42,0.18),
    0 0 0 1px rgba(191,219,254,0.9);
  transform: translateY(-2px);
}
/* FIX FINAL: vertikal center tombol Konsultasi via WhatsApp */
.hero .hero-actions .btn-primary.hero-wa {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;

  /* tinggi & posisi teks (lebih berat di atas supaya terlihat center) */
  padding-top: 11px !important;
  padding-bottom: 9px !important;
}

/* jaga icon WA-nya tidak ngaco tinggi */
.hero .hero-actions .btn-primary.hero-wa .hero-wa-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
/* FINAL FIX: tombol "Konsultasi via WhatsApp" benar-benar center */
.hero-actions .btn-primary.hero-wa {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  /* tinggi fix, jadi gampang centering */
  height: 44px !important;
  padding: 0 24px !important;

  line-height: 1 !important;
}

/* pastikan isi di dalamnya tidak punya line-height aneh */
.hero-actions .btn-primary.hero-wa span,
.hero-actions .btn-primary.hero-wa b,
.hero-actions .btn-primary.hero-wa strong {
  line-height: 1 !important;
}
/* Hilangkan ruang icon WA di tombol hero */
.hero-wa-icon {
  display: none;
}

/* Atur ulang tombol supaya center */
.hero-actions .btn-primary.hero-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  line-height: 1.2;
}
/* FILTER BUTTON */
.portfolio-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.pf-btn {
  padding: 7px 16px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s;
}

.pf-btn:hover {
  background: #e2e8f0;
}

.pf-btn.active {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}

/* sembunyikan porto */
.portfolio-card.hide {
  display: none !important;
}

/* Animasi filter portfolio */
.portfolio-card {
  transition: opacity 0.22s ease-out, transform 0.22s ease-out;
}

.portfolio-card.is-hidden {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

.portfolio-card.is-gone {
  display: none !important;
}
/* ================================
   PORTFOLIO FILTER – PREMIUM GLASS
   ================================ */

/* wrapper filter */
.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 22px;
  padding: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, rgba(148, 163, 184, 0.16), transparent 55%);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

/* tombol dasar */
.pf-btn {
  position: relative;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(248, 250, 252, 0.92);
  color: #111827;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition:
    background 0.18s ease-out,
    color 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    transform 0.12s ease-out;
}

/* hover */
.pf-btn:hover {
  background: #e5f0ff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
  transform: translateY(-1px);
}

/* state aktif */
.pf-btn.active {
  background: radial-gradient(circle at 0 0, #0ea5e9, #6366f1);
  color: #f9fafb;
  border-color: transparent;
  box-shadow:
    0 14px 34px rgba(15, 23, 42, 0.35),
    0 0 0 1px rgba(191, 219, 254, 0.8);
}

/* indikator kecil di kiri tombol aktif */
.pf-btn.active::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: rgba(248, 250, 252, 0.9);
}

/* geser teks sedikit karena dot */
.pf-btn.active {
  padding-left: 22px;
}

/* mobile: filter full width & scroll horizontal kalau kepanjangan */
@media (max-width: 720px) {
  .portfolio-filter {
    border-radius: 18px;
    padding: 8px 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pf-btn {
    white-space: nowrap;
    flex: 0 0 auto;
  }
}
.section-head,
.about-text,
.contact-light {
  max-width: 720px;
}

.section-head p,
.about-text p,
.contact-light p {
  line-height: 1.7;
}

/* Label kecil (FOKUS, CARA KERJA, TIPE, STACK) */
.meta-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9ca3af;
}
.hero-section {
  position: relative;
  padding-bottom: 80px;
}

.hero-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  height: 80px;
  background: radial-gradient(circle at 50% 0, rgba(148, 163, 184, 0.25), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}



/* Base untuk semua card utama */
.card-shell,
.service-card,
.service-card-main,
.portfolio-card,
.contact-light,
.contact-form {
  border-radius: 24px;
  background: rgba(248, 250, 252, 0.96);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

/* Hero project bisa pakai class 'portfolio-card--featured' */
.portfolio-card--featured {
  box-shadow: 0 22px 65px rgba(15, 23, 42, 0.20);
  border-color: rgba(96, 165, 250, 0.8);
}
.portfolio-card,
.service-card {
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out;
}

.portfolio-card:hover,
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.22);
  border-color: rgba(129, 140, 248, 0.8);
}
.hero-orb {
  position: relative;
  animation: orbFloat 8s ease-in-out infinite;
}

@keyframes orbFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}
.hero-orb::after {
  content: '';
  position: absolute;
  inset: 18%;
  border-radius: 999px;
  border: 1px solid rgba(191, 219, 254, 0.35);
  box-shadow: 0 0 35px rgba(56, 189, 248, 0.35);
  animation: orbPulse 4.5s ease-out infinite;
}

@keyframes orbPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 0.7; transform: scale(1.03); }
}
.section-about {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.12), transparent 65%),
    radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.10), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
  z-index: -1;
}
/* =========================================
   CARD SYSTEM – FINAL PATCH
   ========================================= */

/* Base untuk semua kartu utama */
.service-card,
.service-card-main,
.portfolio-card,
.contact-light,
.contact-form {
  border-radius: 24px;
  background: rgba(248, 250, 252, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  transition:
    transform 0.18s ease-out,
    box-shadow 0.18s ease-out,
    border-color 0.18s ease-out,
    background 0.18s ease-out,
    opacity 0.22s ease-out;
}

/* ====== PORTFOLIO CARD LAYOUT ====== */

.portfolio-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
}

/* thumbnail mockup */
.portfolio-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.portfolio-thumb img {
  display: block;
  width: 100%;
  height: 190px;              /* tinggi mockup, boleh disesuaikan */
  object-fit: cover;
}

/* isi kartu */
.portfolio-body,
.service-card-content,
.contact-light-inner,
.contact-form-inner {
  padding: 18px 22px 20px;
}

/* kartu porto tanpa mockup (plain) */
.portfolio-card-plain .portfolio-body {
  padding-top: 18px;
}

/* badge/tag di bawah kartu porto */
.portfolio-tags span {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  font-size: 11px;
  color: #374151;
  margin-right: 6px;
}

/* ====== HOVER STATE – semua kartu ====== */

.service-card:hover,
.service-card-main:hover,
.portfolio-card:hover,
.contact-light:hover,
.contact-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.22);
  border-color: rgba(129, 140, 248, 0.88);
}

/* ====== FEATURED PROJECT (opsional) ====== */
/* pakai class ini untuk project andalan */
.portfolio-card--featured {
  border-color: rgba(59, 130, 246, 0.9);
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.28),
    0 0 0 1px rgba(191, 219, 254, 0.9);
}

/* ====== HIGHLIGHT KHUSUS: Web Apps & Automation ====== */

.service-card-main {
  position: relative;
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.12), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.10), transparent 60%),
    rgba(248, 250, 252, 0.98);
  box-shadow:
    0 20px 55px rgba(15, 23, 42, 0.20),
    0 0 0 1px rgba(191, 219, 254, 0.9);
}

/* glow lembut di luar kartu utama */
.service-card-main::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 0 0, rgba(56,189,248,0.4), transparent 65%),
    radial-gradient(circle at 100% 100%, rgba(129,140,248,0.4), transparent 65%);
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}

/* hilangkan garis lama kalau masih ada */
.service-card-main::before {
  content: none;
}

/* ====== ANIMASI FILTER (sinkron dengan JS) ====== */

.portfolio-card.is-hidden {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}

.portfolio-card.is-gone {
  display: none !important;
}

/* ====== RESPONSIVE TUNING ====== */

@media (max-width: 768px) {
  .portfolio-body,
  .service-card-content,
  .contact-light-inner,
  .contact-form-inner {
    padding: 16px 16px 18px;
  }

  .portfolio-thumb img {
    height: 170px;
  }
}
/* ===== ABOUT SECTION – CLEAN TECH REVISION ===== */

/* panel utama about */
.about-grid {
  padding: 32px 40px 30px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, #f9fafb, #eef2ff);
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  gap: 36px;
}

/* matikan hologram grid & vignette lama */
.about-grid::before,
.about-grid::after {
  content: none;
}

/* teks utama lebih rapi & readable */
.about-grid h2,
.about-grid .section-title {
  margin-bottom: 10px;
}

.about-text p {
  max-width: 620px;
  font-size: 13px;
  line-height: 1.7;
  color: #111827;
}

/* meta FOKUS / CARA KERJA dirapikan */
.about-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}

.about-meta-block {
  min-width: 160px;
}

.about-meta-label,
.meta-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 3px;
  display: inline-block;
}

.about-meta-value {
  font-size: 12px;
  color: #111827;
}

/* avatar: glow tetap ada, tapi lebih clean & tidak terlalu biru pekat */
.about-visual {
  text-align: center;
}

.avatar-shell {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 0 auto 10px;
  border-radius: 50%;
  padding: 5px;
  background:
    radial-gradient(circle at 20% 0, #3b82f6, #0ea5e9);
  box-shadow:
    0 18px 40px rgba(15, 23, 42, 0.55),
    0 0 40px rgba(59, 130, 246, 0.55);
  overflow: hidden;
  animation: avatarFloatSoft 10s ease-in-out infinite;
}

/* ring dalam tipis */
.avatar-shell::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 1px solid rgba(248, 250, 252, 0.8);
  box-shadow: 0 0 20px rgba(191, 219, 254, 0.85);
}

/* matikan ring dashed yang muter (biar nggak norak) */
.avatar-shell::after {
  content: none;
}

/* foto */
.avatar-img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #020617;
}

/* caption */
.avatar-caption {
  font-size: 12px;
  color: #4b5563;
}

/* animasi float yang lebih lembut */
@keyframes avatarFloatSoft {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-6px); }
}

/* ===== RESPONSIVE TUNING ABOUT ===== */
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
    padding: 24px 20px 22px;
    border-radius: 22px;
    gap: 24px;
  }

  .about-text p {
    max-width: none;
  }
}
/* ===== AVATAR – SIMPLE CLEAN STYLE ===== */

.avatar-shell {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  padding: 0;                     /* hilangkan padding lingkaran */
  border-radius: 50%;
  background: transparent;        /* tidak ada lingkaran biru */
  box-shadow: none;               /* hilangkan bayangan biru */
}

/* matikan ring / efek tambahan sebelumnya */
.avatar-shell::before,
.avatar-shell::after {
  content: none !important;
}

/* foto bulat simple */
.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e5e7eb;      /* garis tipis light grey */
}

/* caption di bawah foto – 2 baris, bold, center */
.avatar-caption {
  text-align: center;
  margin-top: 10px;
}

.avatar-name {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: #111827;
}

.avatar-role {
  display: block;
  font-weight: 600;
  font-size: 12px;
  color: #4b5563;
}
/* =========================================
   HERO – CREATIVE TECH BUILDER FINAL
   ========================================= */

.hero-section {
  padding: 72px 0 52px;
  background:
    radial-gradient(circle at 0 0, #e0f2fe, transparent 55%),
    radial-gradient(circle at 100% 0, #ede9fe, transparent 55%),
    #f3f4f6;
}

.hero-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-card {
  border-radius: 32px;
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.16), transparent 60%),
    rgba(248, 250, 252, 0.98);
  border: 1px solid rgba(209, 213, 219, 0.9);
box-shadow:
  0 14px 26px rgba(15, 23, 42, 0.10),
  0 0 0 1px rgba(148, 163, 184, 0.18);

  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: center;
  padding: 32px 40px;
}

/* ---- kiri ---- */

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #020617;
}

.hero-title-gradient {
  background: linear-gradient(120deg, #0ea5e9, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtext {
  font-size: 13px;
  line-height: 1.7;
  color: #111827;
  max-width: 520px;
  margin-bottom: 12px;
}

.hero-bullets {
  margin: 0 0 18px;
  padding-left: 18px;
  font-size: 13px;
  color: #111827;
}

.hero-bullets li + li {
  margin-top: 4px;
}

/* actions */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}

.hero-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-wa-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: cover;
  background-position: center;
}

/* status mini */

.hero-status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 11px;
  color: #4b5563;
}

.hero-status-pill strong {
  font-weight: 600;
}

.hero-status-pill-soft {
  background: rgba(248, 250, 252, 0.92);
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
}

.dot-online {
  background: radial-gradient(circle at 30% 30%, #bbf7d0, #22c55e);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
}

.dot-sync {
  background: radial-gradient(circle at 30% 30%, #bfdbfe, #2563eb);
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.7);
}

.dot-brand {
  background: radial-gradient(circle at 30% 30%, #e9d5ff, #8b5cf6);
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.7);
}

/* ---- kanan: orb ---- */

.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.hero-orb-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
}

.hero-orb {
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 20% 0, #0ea5e9, #0b1120 60%);
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.7),
    0 0 60px rgba(59, 130, 246, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroOrbFloat 10s ease-in-out infinite;
}

.hero-orb-core {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #e0f2fe, #1d4ed8);
  box-shadow:
    inset 0 0 24px rgba(15, 23, 42, 0.6),
    0 0 30px rgba(59, 130, 246, 0.7);
}

/* rings */

.hero-orb-ring {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(191, 219, 254, 0.6);
}

.hero-orb-ring-1 {
  animation: heroRingSpin 26s linear infinite;
}

.hero-orb-ring-2 {
  inset: 22px;
  border-color: rgba(129, 140, 248, 0.7);
  animation: heroRingSpinReverse 36s linear infinite;
}

.hero-orb-ring-3 {
  inset: 36px;
  border-color: rgba(59, 130, 246, 0.5);
}

/* chips */

.hero-chip {
  position: absolute;
  min-width: 140px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.98);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(209, 213, 219, 0.9);
  font-size: 11px;
}

.hero-chip-label {
  display: block;
  font-weight: 600;
  color: #020617;
}

.hero-chip-desc {
  display: block;
  color: #4b5563;
  font-size: 11px;
}

.hero-chip-top {
  left: 50%;
  transform: translateX(-50%);
  top: -6px;
}

.hero-chip-left {
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-chip-right {
  right: -6px;
  bottom: 36px;
}

/* bar bawah orb */

.hero-orb-foot {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.94);
  color: #e5e7eb;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.85);
}

/* animasi */

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

@keyframes heroRingSpin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes heroRingSpinReverse {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    padding: 26px 22px 24px;
    gap: 30px;
  }

  .hero-right {
    order: -1;
  }

  .hero-orb-wrapper {
    margin: 0 auto 4px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 56px;
  }

  .hero-grid {
    padding: 22px 18px 22px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-status-strip {
    flex-direction: column;
  }

  .hero-orb-wrapper {
    width: 220px;
    height: 220px;
  }
}
/* Hilangkan ruang icon WA di tombol hero */
.hero-wa-icon {
  display: none;
}

/* Atur ulang tombol supaya center */
.hero-actions .btn-primary.hero-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  line-height: 1.2;
}
/* Bikin kolom kiri jadi flex supaya bisa dorong tombol ke area bawah */
.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;  /* title di atas, tombol & note di bawah */
}

/* Biar copy di atas tetap rapi */
.contact-left-text {
  margin-bottom: 16px;
}

/* Wrapper tombol: center horizontal di area yang kamu lingkari merah */
.contact-cta-wrapper {
  display: flex;
  justify-content: center;
  margin: 24px 0 12px;
}

/* Tombolnya sedikit lebih lebar & tengah */
.contact-btn {
  min-width: 230px;
  text-align: center;
}

/* Di HP tetap enak dilihat */
@media (max-width: 768px) {
  .contact-left {
    gap: 16px;
  }

  .contact-cta-wrapper {
    justify-content: flex-start; /* kalau mau tetap tengah di HP, ganti ke center */
  }

  .contact-btn {
    width: 100%;
  }
}
/* Wrapper tombol tetap center */
.contact-cta-wrapper {
  display: flex;
  justify-content: center;
  margin: 32px 0 12px;
}

/* Tombol diperbesar */
.contact-btn {
  padding: 14px 28px;        /* ukuran tombol lebih besar */
  font-size: 16px;           /* teks lebih besar */
  font-weight: 600;
  border-radius: 14px;       /* lebih smooth, premium */
  min-width: 260px;          /* lebar minimum lebih besar */
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);  /* shadow halus */
  transform: translateY(0);
  transition: 0.25s ease;
}

/* Effect hover premium */
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
}

/* Mobile */
@media (max-width: 768px) {
  .contact-btn {
    width: 100%;
    min-width: unset;
    font-size: 15px;
    padding: 14px 20px;
  }
}
.hero-section {
  background: none !important;
  box-shadow: none !important;
  position: relative;
}

.hero-section::after {
  display: none !important;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

/* Canvas animasi jaringan */
#hero-bg-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  opacity: 0.6; /* bisa kamu kecil/besarkan sesuai selera */
}

/* Pastikan isi hero ada di atas canvas */
.hero-container {
  position: relative;
  z-index: 1;
}


.hero-container {
  background: none !important;
  box-shadow: none !important;
}
/* dasar semua tombol filter */
.pf-btn {
  position: relative;
  border-radius: 999px;          /* pastikan super bulat */
  overflow: hidden;              /* gradient / glow gak boleh keluar */
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: #f9fafb;
  padding: 10px 22px;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

/* state aktif – pakai semua kemungkinan class biar aman */
.pf-btn.active,
.pf-btn.is-active,
.pf-btn[data-active="true"] {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, #2F7BFF, #6A5BFA);
  box-shadow: 0 8px 22px rgba(46, 119, 255, 0.35);
  border-radius: 999px;
  overflow: hidden;
  background-clip: padding-box;  /* biar warna nggak “numplek” aneh di sisi */
}

/* kalau kamu pakai pseudo-element glow untuk aktif, pastikan ikut ke-clip */
.pf-btn.active::before,
.pf-btn.is-active::before,
.pf-btn[data-active="true"]::before {
  border-radius: inherit;
  overflow: hidden;
}
.hero-actions .btn-primary,
.hero-actions .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}
.hero-actions .btn-primary {
  background: #020617;
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.45);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-actions .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.55);
}
.hero-actions .btn-outline {
  background: #ffffff;
  color: #020617;
  border: 1px solid rgba(148, 163, 184, 0.8);
  box-shadow: 0 6px 16px rgba(148, 163, 184, 0.25);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-actions .btn-outline:hover {
  transform: translateY(-1px);
  border-color: rgba(99, 102, 241, 0.85);
  box-shadow: 0 10px 24px rgba(148, 163, 184, 0.35);
}
.hero-wa-icon {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #22c55e, #16a34a);
}
/* MOBILE NAVBAR */
@media (max-width: 768px) {
  .navbar {
    padding: 10px 16px;
  }

  .nav-inner {
    align-items: center;
  }

  .navbar .logo img,
  .logo img {
    height: 15px;          /* kecilin logo */
    width: auto;
  }

  .navbar .logo {
    display: flex;
    align-items: center;
    padding-left: 2px;     /* biar gak nempel banget ke kiri */
  }
}
/* Default (desktop) boleh tetap seperti sekarang */

@media (max-width: 768px) {
  .pf-filter-row {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 4px 8px;
    margin-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .pf-filter-row::-webkit-scrollbar {
    height: 0; /* sembunyikan scrollbar di mobile */
  }

  .pf-btn {
    flex: 0 0 auto;              /* jangan melar full width */
    white-space: nowrap;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 13px;
  }

  .pf-btn.is-active {
    font-weight: 600;
  }
}
/* ===== MOBILE NAV FIX FINAL ===== */
@media (max-width: 768px) {

  /* Kecilkan logo & kasih napas dari kiri */
  .navbar {
    padding: 8px 14px;
  }

  .navbar-brand img,
  .logo img {
    height: 16px !important;   /* lebih kecil lagi */
    width: auto;
  }

  .logo,
  .navbar-brand {
    display: flex;
    align-items: center;
  }

  .logo {
    margin-left: 2px;
  }

  /* Tombol hamburger – reset semua dulu */
  .nav-toggle,
  .menu-toggle,
  .navbar-toggle,
  .mobile-menu-toggle {
    position: relative;
    width: 32px;
    height: 32px;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(148, 163, 184, 0.5);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
  }

  /* Kalau di dalam tombol ada icon <i> atau <span>, sembunyikan saja */
  .nav-toggle i,
  .menu-toggle i,
  .navbar-toggle i,
  .mobile-menu-toggle i,
  .nav-toggle span,
  .menu-toggle span,
  .navbar-toggle span,
  .mobile-menu-toggle span {
    display: none !important;
  }

  /* Bikin 3 garis hamburger pakai satu elemen (::before) */
  .nav-toggle::before,
  .menu-toggle::before,
  .navbar-toggle::before,
  .mobile-menu-toggle::before {
    content: "";
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow:
      0 -5px 0 #ffffff,   /* garis atas */
      0  5px 0 #ffffff;   /* garis bawah */
  }
}
/* === SPASI CARD ABOUT & CONTACT DI MOBILE === */
@media (max-width: 768px) {
  /* Siapa di balik Firstgency? */
  #about .container > * {
    margin-left: 16px;
    margin-right: 16px;
  }

  /* Biar isi card tetap lega tapi nggak terlalu mepet */
  #about .container > *,
  #contact .contact-grid {
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 24px;
  }
}
@media (max-width: 768px) {

  /* Ubah 2 kolom → 1 kolom */
  .contact-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
  }

  /* Card kiri & kanan jadi full width */
  .contact-grid > div {
    width: 100% !important;
  }

  /* Tambahkan spasi kiri–kanan biar nggak nempel */
  #contact .contact-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Pastikan card dalamnya juga tidak mepet */
  #contact .contact-grid > div {
    padding: 20px;
    border-radius: 24px;
  }
}
/* === FIX SPASI SECTION KONTAK DI MOBILE (FINAL) === */
@media (max-width: 768px) {

  /* 1. Pastikan container punya padding kiri–kanan yang sama */
  #contact .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* 2. Grid jangan ditambah margin lagi, biar nggak keluar ke kanan */
  #contact .contact-grid {
    margin: 0 auto !important;
    width: 100% !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* 3. Card-card di dalam grid full width + ada radius & padding */
  #contact .contact-grid > div {
    width: 100% !important;
    border-radius: 24px;
    padding: 20px;
  }
}
.hero-section {
  position: relative;
  overflow: hidden;
}

#hero-bg-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  opacity: 0.55;           /* bisa kamu kecilkan nanti */
}

/* Hero content di atas canvas */
.hero-container {
  position: relative;
  z-index: 1;
}
/* Global page layer */
body {
  position: relative;
  background: #0f172a; /* atau background kamu sekarang */
}

/* Canvas network: 1 layer di belakang semua konten */
#bg-network {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;     /* supaya tidak mengganggu klik */
  opacity: 0.45;            /* bisa kamu turunkan jika terlalu terang */
}

/* Pastikan konten di atas canvas */
header,
main,
footer {
  position: relative;
  z-index: 1;
}
/* Global page layer */
body {
  position: relative;
  background: radial-gradient(circle at top, #e5f0ff 0, #f5f7fb 45%, #edf2ff 100%);
}


/* Canvas network: 1 layer di belakang semua konten */
#bg-network {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
  opacity: 0.60;  /* dari 0.45 → lebih soft */
}
/* Pastikan konten di atas canvas */
header,
main,
footer {
  position: relative;
  z-index: 1;
}
/* global */
#bg-network {
  opacity: 0.65; /* desktop */
}

/* mobile – sedikit lebih tebal */
@media (max-width: 768px) {
  #bg-network {
    opacity: 0.9;
  }
}
/* === FORCE UNIFORM HERO BUTTONS === */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Tombol base – dipaksa sama */
.hero-actions .btn-primary,
.hero-actions .btn-outline {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 14px 30px !important;   /* ukuran sama */
  height: 48px !important;         /* tinggi dipaksa sama */
  line-height: 1 !important;

  border-radius: 999px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  white-space: nowrap;
}

/* PRIMARY */
.hero-actions .btn-primary {
  background: #0f172a !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.35) !important;
}

/* OUTLINE */
.hero-actions .btn-outline {
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid rgba(148, 163, 184, 0.5) !important;
  box-shadow: 0 8px 20px rgba(148, 163, 184, 0.25) !important;
}

/* ICON WA – Biar tidak nambah tinggi */
.hero-wa-icon { display: none; }
  width: 16px !important;
  height: 16px !important;
  display: inline-block !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  flex-shrink: 0 !important;
}
/* ========== ABOUT CARD ========== */

.about-card {
  border-radius: 32px;
  padding: 32px 36px;
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.10), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.08), transparent 60%),
    rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow:
    0 22px 60px rgba(15, 23, 42, 0.16),
    0 0 0 1px rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.about-copy .section-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 8px;
}

.about-copy .section-title {
  margin-bottom: 12px;
}

.about-text {
  font-size: 14px;
  line-height: 1.7;
  color: #0f172a;
  margin-bottom: 10px;
}

.about-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.about-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-meta-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
}

.about-meta-value {
  font-size: 13px;
  color: #0f172a;
  font-weight: 500;
}

/* Avatar */

.about-profile {
  display: flex;
  justify-content: flex-end;
}

.about-avatar-card {
  text-align: center;
  padding: 18px 18px 14px;
  border-radius: 24px;
  background: radial-gradient(circle at top, rgba(148, 163, 184, 0.22), rgba(15, 23, 42, 0.96));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
  color: #f9fafb;
}

.about-avatar-ring {
  width: 112px;
  height: 112px;
  margin: 0 auto 10px;
  border-radius: 50%;
  padding: 3px;
  background: radial-gradient(circle at 0 0, #38bdf8, #6366f1);
}

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

.about-avatar-name {
  font-weight: 600;
  font-size: 15px;
}

.about-avatar-role {
  font-size: 12px;
  opacity: 0.85;
}

/* Responsive about */
@media (max-width: 900px) {
  .about-card {
    padding: 24px 20px;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .about-profile {
    justify-content: flex-start;
  }

  .about-avatar-card {
    margin-bottom: 4px;
  }
}

/* ========== CONTACT CARD ========== */

.contact-card {
  border-radius: 32px;
  padding: 28px 30px;
  background:
    radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.12), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.08), transparent 60%),
    rgba(248, 250, 252, 0.98);
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow:
    0 22px 60px rgba(15, 23, 42, 0.16),
    0 0 0 1px rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.contact-left .section-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
  margin-bottom: 8px;
}

.contact-left .section-title {
  margin-bottom: 8px;
}

.contact-left .section-subtitle {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.contact-cta-wrapper {
  margin-bottom: 10px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: #020617;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.45);
}

.contact-btn i.fa-whatsapp {
  font-size: 16px;
}

.contact-note {
  font-size: 12px;
  color: rgba(100, 116, 139, 0.95);
  margin-top: 4px;
}

.contact-right {
  max-width: 380px;
  margin-left: auto;
}

.contact-form {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 16px 40px rgba(148, 163, 184, 0.35);
}

.contact-form .form-group {
  margin-bottom: 10px;
}

.contact-form label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  color: #0f172a;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(203, 213, 225, 0.95);
  background: #f9fafb;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.35);
}

/* Responsive contact */
@media (max-width: 900px) {
  .contact-card {
    padding: 22px 18px;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .contact-right {
    max-width: 100%;
    margin-left: 0;
  }
}

/* Kurangi jarak antar section about & contact di desktop */
@media (min-width: 901px) {
  #contact.section {
    padding-top: 40px;
  }
}
/* ===== SCROLL MOTION BASE ===== */

[data-motion] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
  will-change: opacity, transform;
}

/* Saat sudah terlihat */
[data-motion].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* VARIASI ARAH */

[data-motion="fade-up"] {
  transform: translateY(24px);
}

[data-motion="fade-right"] {
  transform: translateX(-24px);
}

[data-motion="fade-left"] {
  transform: translateX(24px);
}

[data-motion="fade-in"] {
  transform: translateY(0);
}

/* Saat visible semua kembali ke posisi normal */
[data-motion="fade-right"].is-visible,
[data-motion="fade-left"].is-visible,
[data-motion="fade-in"].is-visible {
  transform: translateX(0);
}

/* Delay opsional via data-motion-delay (dalam ms) */
[data-motion].is-visible {
  /* delay akan di-set via JS */
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  [data-motion] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
