/* ============ TOKENS ============ */
:root {
  /* Dark Theme Colors */
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: #1a2236;
  --bg-section-alt: #0f1629;
  --bg-input: #1e2a42;
  
  --text-primary: #f0f4ff;
  --text-secondary: #b8c8e8;
  --text-muted: #7a8aaa;
  
  --accent: #5b8def;
  --accent-light: #7aa7ff;
  --accent-glow: rgba(91, 141, 239, 0.3);
  
  --gold: #d4a843;
  --gold-light: #e8c86a;
  --gold-glow: rgba(212, 168, 67, 0.3);
  
  --border: #2a3a5a;
  --border-light: #3a4a6a;
  
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-lg: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
  --shadow-sm: 0 10px 24px -12px rgba(0, 0, 0, 0.5);
  
  --ff-display: 'Sora', sans-serif;
  --ff-body: 'Inter', sans-serif;
  --ff-mono: 'JetBrains Mono', monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

section {
  padding: 100px 0;
}

@media (max-width: 720px) {
  section {
    padding: 70px 0;
  }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .96rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #fff;
  box-shadow: 0 14px 30px -10px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px -10px var(--accent-glow);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--bg-primary);
  box-shadow: 0 14px 30px -10px var(--gold-glow);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px -10px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-outline.on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, .2);
}

.btn-outline.on-dark:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn-sm {
  padding: 10px 20px;
  font-size: .85rem;
}

/* ============ HEADER ============ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}

header.scrolled {
  background: rgba(10, 14, 26, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .8);
  padding: 12px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.28rem;
  color: #fff;
}

.logo .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold-light);
}

.logo span {
  color: var(--gold-light);
}

nav ul {
  display: flex;
  gap: 34px;
}

nav a {
  color: rgba(255, 255, 255, .7);
  font-size: .95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color .2s;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold-light);
  transition: width .25s ease;
}

nav a:hover {
  color: #fff;
}

nav a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  z-index: 1200;
}

.burger span {
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.65, 0, .35, 1);
}

.mobile-nav.open {
  transform: translateY(0);
}

.mobile-nav a {
  color: #fff;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  nav, .nav-actions .btn-outline {
    display: none;
  }
  .burger {
    display: flex;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 168px 0 120px;
  background: radial-gradient(1200px 700px at 82% -10%, #1a2a5a 0%, var(--bg-primary) 55%), var(--bg-primary);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent 75%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy .eyebrow {
  color: var(--gold-light);
}

.hero-copy .eyebrow::before {
  background: var(--accent);
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 22px;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--gold-light);
  position: relative;
}

.hero-copy p {
  color: rgba(255, 255, 255, .7);
  font-size: 1.12rem;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stats .stat b {
  display: block;
  font-family: var(--ff-mono);
  font-size: 1.7rem;
  color: #fff;
  font-weight: 700;
}

.hero-stats .stat span {
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
}

/* signature 3D browser stack */
.hero-3d {
  position: relative;
  height: 460px;
  perspective: 1400px;
}

.browser-stack {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform .15s ease-out;
}

.bcard {
  position: absolute;
  width: 300px;
  border-radius: 14px;
  overflow: hidden;
  background: #1a2a4a;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 40px 70px -25px rgba(0, 0, 0, .8);
  animation: float 6s ease-in-out infinite;
}

.bcard .bar {
  height: 28px;
  background: #2a3a5a;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.bcard .bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
}

.bcard .screen {
  height: 180px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bcard .line {
  height: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .1);
}

.bcard .line.short {
  width: 55%;
}

.bcard .tag {
  position: absolute;
  bottom: -14px;
  left: 14px;
  background: var(--gold);
  color: var(--bg-primary);
  font-family: var(--ff-mono);
  font-size: .68rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
}

.bcard.c1 {
  top: 10px;
  left: 30px;
  transform: translateZ(40px) rotateY(-8deg) rotateX(4deg);
  z-index: 3;
}

.bcard.c2 {
  top: 90px;
  left: 150px;
  transform: translateZ(10px) rotateY(6deg) rotateX(-2deg);
  z-index: 2;
  animation-delay: -2s;
}

.bcard.c3 {
  top: 210px;
  left: 10px;
  transform: translateZ(-20px) rotateY(-4deg);
  z-index: 1;
  animation-delay: -4s;
}

.bcard.c4 {
  top: 260px;
  left: 175px;
  transform: translateZ(-40px) rotateY(10deg) rotateX(3deg);
  z-index: 1;
  animation-delay: -1s;
}

.bcard.c1 .screen {
  background: linear-gradient(160deg, #1a3a6a, #0e2040);
}

.bcard.c2 .screen {
  background: linear-gradient(160deg, #2a2a5a, #1a1a3a);
}

.bcard.c3 .screen {
  background: linear-gradient(160deg, #3a2a1a, #1a140e);
}

.bcard.c4 .screen {
  background: linear-gradient(160deg, #1a2a4a, #0e1a2a);
}

@keyframes float {
  0%, 100% {
    margin-top: 0px;
  }
  50% {
    margin-top: -16px;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-3d {
    height: 360px;
    margin-top: 20px;
  }
  .hero-copy p {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .bcard {
    width: 220px;
  }
  .bcard .screen {
    height: 130px;
  }
}

/* ============ LAYANAN ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.s-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  transform-style: preserve-3d;
  position: relative;
}

.s-card:hover {
  transform: translateY(-10px) rotateX(3deg);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.s-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
  border: 1px solid var(--border);
  margin-bottom: 22px;
}

.s-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold-light);
}

.s-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.s-card p {
  color: var(--text-secondary);
  font-size: .92rem;
  margin-bottom: 18px;
}

.s-card ul li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: .86rem;
  color: var(--text-primary);
  margin-bottom: 9px;
}

.s-card ul li svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ HARGA ============ */
.price-section {
  background: var(--bg-secondary);
}

.price-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 44px;
}

.p-tab {
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all .25s ease;
}

.p-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.price-panel {
  display: none;
}

.price-panel.active {
  display: block;
  animation: fadeUp .5s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 34px 28px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.price-card.featured {
  border: 2px solid var(--gold);
}

.price-card .badge {
  position: absolute;
  top: -13px;
  left: 28px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: .7rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: .03em;
}

.price-card .tier {
  font-family: var(--ff-mono);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.price-card .amount {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.price-card .amount span {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
  font-family: var(--ff-body);
}

.price-card .desc {
  color: var(--text-secondary);
  font-size: .87rem;
  margin-bottom: 22px;
}

.price-card ul {
  margin-bottom: 26px;
}

.price-card ul li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: .88rem;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  color: var(--text-secondary);
}

.price-card ul li svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.price-note {
  text-align: center;
  color: var(--text-muted);
  font-size: .85rem;
  margin-top: 30px;
}

@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ PORTOFOLIO ============ */
.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.g-filter {
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all .25s ease;
}

.g-filter.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.g-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .4s ease, box-shadow .4s ease;
  background: var(--bg-card);
}

.g-item.hide {
  display: none;
}

.g-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.g-frame {
  height: 34px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid var(--border);
}

.g-frame i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
}

.g-mock {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  gap: 8px;
  flex-direction: column;
}

.g-mock .gl {
  height: 9px;
  width: 70%;
  border-radius: 6px;
  background: rgba(255, 255, 255, .15);
}

.g-mock .gl.s {
  width: 40%;
}

.g-mock.m1 {
  background: linear-gradient(135deg, #1a3a7a, #0e2a5a);
}

.g-mock.m2 {
  background: linear-gradient(135deg, #3a2a1a, #2a1a0e);
}

.g-mock.m3 {
  background: linear-gradient(135deg, #1a2a3a, #0e1a2a);
}

.g-mock.m4 {
  background: linear-gradient(135deg, #1a3a5a, #0e2a3a);
}

.g-info {
  padding: 18px 20px;
}

.g-info b {
  display: block;
  font-size: .95rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.g-info span {
  font-size: .78rem;
  color: var(--accent);
  font-family: var(--ff-mono);
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ PROSES ============ */
.process-section {
  background: var(--bg-secondary);
  color: #fff;
}

.process-section .section-head h2 {
  color: #fff;
}

.process-section .section-head p {
  color: rgba(255, 255, 255, .6);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  counter-reset: step;
}

.p-step {
  position: relative;
  padding: 30px 22px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .02);
}

.p-step .num {
  font-family: var(--ff-mono);
  font-size: .8rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 16px;
}

.p-step h4 {
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.p-step p {
  color: rgba(255, 255, 255, .55);
  font-size: .85rem;
}

@media (max-width: 980px) {
  .process-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .process-list {
    grid-template-columns: 1fr;
  }
}

/* ============ TESTIMONI ============ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.t-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.t-card p {
  font-size: .94rem;
  color: var(--text-secondary);
  margin-bottom: 22px;
}

.t-who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-weight: 700;
  color: #fff;
  font-size: .9rem;
}

.t-who b {
  display: block;
  font-size: .9rem;
  color: var(--text-primary);
}

.t-who span {
  font-size: .78rem;
  color: var(--text-muted);
}

@media (max-width: 980px) {
  .testi-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ KALKULATOR ============ */
.calc-section {
  background: var(--bg-secondary);
}

.calc-box {
  background: var(--bg-card);
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
}

.calc-left {
  padding: 44px;
}

.calc-left h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.calc-left > p {
  color: var(--text-secondary);
  font-size: .9rem;
  margin-bottom: 28px;
}

.calc-group {
  margin-bottom: 26px;
}

.calc-group > label {
  display: block;
  font-family: var(--ff-mono);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.calc-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.calc-radio {
  position: relative;
}

.calc-radio input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.calc-radio .box {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  font-size: .86rem;
  font-weight: 600;
  transition: all .2s ease;
  color: var(--text-secondary);
}

.calc-radio input:checked+.box {
  border-color: var(--accent);
  background: rgba(91, 141, 239, .1);
  color: var(--accent);
}

.calc-check label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: .9rem;
  border-bottom: 1px dashed var(--border);
  cursor: pointer;
  color: var(--text-secondary);
}

.calc-check input {
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
}

.calc-check .price {
  margin-left: auto;
  font-family: var(--ff-mono);
  color: var(--text-muted);
  font-size: .82rem;
}

.calc-right {
  background: var(--bg-secondary);
  color: #fff;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-right span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .5);
  font-family: var(--ff-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.calc-total {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold-light);
  margin: 10px 0 24px;
  word-break: break-word;
}

.calc-right small {
  color: rgba(255, 255, 255, .4);
  font-size: .78rem;
  display: block;
  margin-bottom: 26px;
}

@media (max-width: 900px) {
  .calc-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .calc-types {
    grid-template-columns: 1fr;
  }
  .calc-left, .calc-right {
    padding: 28px;
  }
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  cursor: pointer;
}

.faq-q svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  transition: transform .3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-q svg {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-a p {
  padding: 0 4px 24px;
  color: var(--text-secondary);
  font-size: .92rem;
  max-width: 640px;
}

/* ============ KONTAK ============ */
.contact-section {
  background: var(--bg-secondary);
  color: #fff;
}

.contact-section .section-head h2 {
  color: #fff;
}

.contact-section .section-head p {
  color: rgba(255, 255, 255, .6);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.c-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 34px;
}

.c-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.c-info-item .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-info-item .ic svg {
  width: 19px;
  height: 19px;
  stroke: var(--gold-light);
}

.c-info-item b {
  display: block;
  font-size: .95rem;
  margin-bottom: 3px;
  color: var(--text-primary);
}

.c-info-item span,
.c-info-item a {
  color: var(--text-secondary);
  font-size: .87rem;
}

.c-info-item a:hover {
  color: var(--gold-light);
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.social-row a svg {
  width: 17px;
  height: 17px;
  stroke: #fff;
}

.social-row a:hover svg {
  stroke: var(--bg-primary);
}

.contact-form {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 34px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: .82rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-input);
  color: var(--text-primary);
  font-size: .92rem;
  transition: border-color .2s ease;
}

.field select option {
  color: var(--text-primary);
  background: var(--bg-input);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-muted);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-light);
}

.form-msg {
  margin-top: 14px;
  font-size: .85rem;
  color: var(--gold-light);
  display: none;
}

.form-msg.show {
  display: block;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============ FOOTER ============ */
footer {
  background: #060a14;
  color: var(--text-muted);
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-grid .logo {
  margin-bottom: 14px;
}

.footer-grid p {
  font-size: .87rem;
  max-width: 280px;
  color: var(--text-secondary);
}

.footer-col h5 {
  color: var(--text-primary);
  font-size: .85rem;
  margin-bottom: 16px;
  font-family: var(--ff-display);
}

.footer-col li {
  margin-bottom: 10px;
  font-size: .86rem;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ FLOATING WA ============ */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1ea952;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px rgba(30, 169, 82, .5);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--gold-light);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(.85);
    opacity: .9;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}