:root {
  --bg: #0a0a0f;
  --bg-2: #0e0e15;
  --surface: #15151f;
  --surface-2: #1b1b28;
  --border: #262635;
  --text: #f4f4f7;
  --muted: #a3a7b8;
  --orange: #ff5c28;
  --amber: #ffb03d;
  --grad: linear-gradient(135deg, #ff5c28 0%, #ffb03d 100%);
  --wa: #25d366;
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .3s ease;
}
.navbar.scrolled {
  background: rgba(10, 10, 15, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.02em;
}
.logo-mark {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--grad);
  color: #fff;
  font-size: .95rem;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(255, 92, 40, .35);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links > a:not(.nav-cta) {
  font-weight: 600;
  font-size: .95rem;
  color: var(--muted);
  transition: color .2s;
}
.nav-links > a:not(.nav-cta):hover { color: var(--text); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 26px; height: 3px;
  border-radius: 3px;
  background: var(--text);
  transition: all .3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: inherit;
  font-size: .98rem;
  font-weight: 700;
  cursor: pointer;
  border: 0;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 26px rgba(255, 92, 40, .35);
}
.btn-primary:hover { box-shadow: 0 14px 32px rgba(255, 92, 40, .45); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--muted); background: rgba(255,255,255,.04); }

.btn-wa {
  background: var(--wa);
  color: #062b16;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .28);
}
.btn-wa:hover { background: #2ee274; box-shadow: 0 12px 28px rgba(37, 211, 102, .4); }
.btn-wa.disabled {
  background: var(--surface-2);
  color: var(--muted);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
  border: 1px dashed var(--border);
}
.btn-sm { padding: 10px 20px; font-size: .88rem; }

.wa-icon { flex-shrink: 0; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 170px 0 90px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .5;
}
.blob-1 {
  width: 520px; height: 520px;
  top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(255,92,40,.55), transparent 70%);
  animation: float 9s ease-in-out infinite;
}
.blob-2 {
  width: 420px; height: 420px;
  bottom: -140px; left: -140px;
  background: radial-gradient(circle, rgba(255,176,61,.35), transparent 70%);
  animation: float 11s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
}
.grid-overlay {
  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: 56px 56px;
  mask-image: radial-gradient(ellipse at center top, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center top, black 30%, transparent 75%);
}
.hero-inner {
  position: relative;
  text-align: center;
  max-width: 860px;
}
.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.04);
  font-size: .85rem;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 6vw, 72px);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat span {
  font-size: .88rem;
  color: var(--muted);
  font-weight: 500;
}

/* ============ MARQUEE ============ */
.marquee {
  position: relative;
  margin-top: 80px;
  border-block: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 28s linear infinite;
}
.marquee-track span {
  white-space: nowrap;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============ SECTIONS ============ */
.section { padding: 100px 0; }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.eyebrow {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-head h2,
.about-left h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ============ SERVICES ============ */
.services { background: var(--bg-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 92, 40, .45);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .45);
}
.service-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-photo img { transform: scale(1.07); }
.service-tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(10, 10, 15, .78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--amber);
}
.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
}
.service-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.01em;
}
.service-body p {
  color: var(--muted);
  font-size: .95rem;
  flex: 1;
}
.service-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--muted);
}
.service-phone svg { width: 15px; height: 15px; color: var(--amber); }
.service-note {
  font-size: .8rem;
  color: var(--amber);
  font-style: italic;
}
.service-body .btn { width: 100%; margin-top: 4px; }

/* ============ ABOUT ============ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-left { position: sticky; top: 110px; }
.about-left p { color: var(--muted); margin-bottom: 16px; }
.about-lead { font-size: 1.12rem; color: var(--text) !important; }
.about-quote {
  border-left: 3px solid var(--orange);
  padding-left: 18px;
  font-style: italic;
  color: var(--text) !important;
  margin-top: 26px !important;
}
.about-right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255, 92, 40, .4); }
.card-icon {
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  border-radius: 14px;
  background: rgba(255, 92, 40, .12);
  border: 1px solid rgba(255, 92, 40, .25);
  margin-bottom: 16px;
}
.card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.card p { color: var(--muted); font-size: .97rem; }
.misi-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  counter-reset: misi;
}
.misi-list li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  color: var(--muted);
  font-size: .97rem;
}
.misi-list li span {
  font-weight: 800;
  font-size: .85rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: .86rem;
  font-weight: 600;
  color: var(--text);
  transition: all .2s ease;
}
.chip:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* ============ CTA BAND ============ */
.cta-band { padding: 40px 0 100px; }
.cta-inner {
  text-align: center;
  padding: clamp(44px, 7vw, 72px) 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,176,61,.25), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,92,40,.3), transparent 50%),
    var(--surface);
  border: 1px solid var(--border);
}
.cta-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.cta-inner h2 span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-inner p { color: var(--muted); margin-bottom: 30px; }
.btn-dark {
  background: #fff;
  color: #0a0a0f;
  box-shadow: 0 10px 26px rgba(255,255,255,.12);
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-brand p {
  color: var(--muted);
  font-size: .95rem;
  margin-top: 16px;
  max-width: 340px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}
.footer-col a {
  color: var(--muted);
  font-size: .95rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.footer-bottom p {
  text-align: center;
  color: var(--muted);
  font-size: .88rem;
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .blob { animation: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-left { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: rgba(14, 14, 21, .97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > a:not(.nav-cta) { font-size: 1.15rem; }
}
@media (max-width: 560px) {
  .hero { padding-top: 130px; }
  .hero-actions .btn { width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
