:root {
  --amber: #f0b429;
  --amber-light: #ffd166;
  --amber-dark: #c98f16;
  --black: #08080c;
  --charcoal: #0f0f15;
  --panel: #16161f;
  --panel-2: #1c1c27;
  --line: #262635;
  --white: #ffffff;
  --off-white: #f7f6f2;
  --gray: #9b9bae;
  --gray-dark: #6c6c7e;
  --wa: #25d366;
  --radius: 18px;
  --shadow: 0 16px 46px rgba(0, 0, 0, 0.35);
  --font: 'Inter', system-ui, sans-serif;
  --display: 'Orbitron', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--off-white);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.reveal { opacity: 0; }
.reveal.visible { animation: fadeUp 0.7s ease forwards; }

/* ---------- Topbar ---------- */
.topbar { background: var(--black); color: #fff; border-bottom: 2px solid var(--amber); }
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 0;
}
.topbar-phone { color: var(--amber-light); font-weight: 800; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 14, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-badge {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  border-radius: 13px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.1rem;
  color: #000;
  box-shadow: 0 4px 16px rgba(240, 180, 41, 0.4);
}
.logo-text { line-height: 1.1; }
.logo-text strong {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: #fff;
}
.logo-text em {
  display: block;
  font-style: normal;
  font-size: 0.58rem;
  color: var(--amber-light);
  letter-spacing: 0.18em;
  font-weight: 700;
  text-transform: uppercase;
}
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { font-weight: 600; font-size: 0.95rem; color: rgba(255, 255, 255, 0.75); transition: color 0.2s; }
.nav a:hover, .nav a.active { color: var(--amber-light); }
.nav .nav-cta {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #000;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 800;
}
.nav .nav-cta:hover { color: #000; filter: brightness(1.1); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-toggle span { display: block; width: 24px; height: 2.5px; background: #fff; margin: 5px 0; border-radius: 2px; transition: 0.3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: none;
  cursor: pointer;
}
.btn svg { width: 20px; height: 20px; fill: currentColor; }
.btn-amber { background: linear-gradient(135deg, var(--amber), var(--amber-dark)); color: #000; box-shadow: 0 8px 24px rgba(240, 180, 41, 0.35); }
.btn-amber:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3); }
.btn-wa:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; border: 2px solid var(--line); color: #fff; }
.btn-ghost:hover { background: var(--amber); border-color: var(--amber); color: #000; }

/* ---------- Hero ---------- */
.hero {
  background: var(--black);
  color: #fff;
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 180, 41, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 180, 41, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; animation: glowPulse 4s ease-in-out infinite; }
.glow-1 {
  width: 500px; height: 500px;
  top: -120px; right: -80px;
  background: rgba(240, 180, 41, 0.18);
}
.glow-2 {
  width: 400px; height: 400px;
  bottom: -120px; left: -80px;
  background: rgba(240, 180, 41, 0.10);
  animation-delay: 2s;
}
.hero-inner { position: relative; z-index: 1; }
.hero-tag {
  display: inline-block;
  border: 1px solid rgba(240, 180, 41, 0.4);
  color: var(--amber-light);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 26px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero h1 span { color: #fff; text-shadow: 0 0 20px rgba(240, 180, 41, 0.4); }
.hero h1 em { font-style: normal; color: var(--amber-light); }
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.18rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-badges { display: flex; gap: 26px; flex-wrap: wrap; }
.hero-badges span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  border-left: 2px solid var(--amber);
  padding-left: 10px;
}
.hero-badges b { color: #fff; }

/* ---------- Marquee band ---------- */
.marquee-band { padding: 0; background: var(--black); }
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--amber-light);
  margin: 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.marquee-track i { color: var(--amber); font-style: normal; font-size: 0.7rem; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-title {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-title em { font-style: normal; color: var(--amber-dark); }
.section-subtitle { color: var(--gray-dark); max-width: 600px; margin: 0 auto; }
.section-kicker {
  display: inline-block;
  color: var(--amber-dark);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.center-cta { text-align: center; margin-top: 40px; }

/* ---------- Services (home) ---------- */
.services { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border, #e7e4df);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: block;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10); border-color: var(--amber); }
.service-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--border, #eee);
}
.service-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.service-card p { color: var(--gray-dark); font-size: 0.94rem; }

/* ---------- Why ---------- */
.why { background: var(--black); color: #fff; }
.why .section-kicker { color: var(--amber-light); }
.why .section-title em { color: var(--amber-light); }
.why-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
.why-text p { color: rgba(255, 255, 255, 0.72); margin-bottom: 26px; }
.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  background: var(--panel);
}
.why-item > span {
  width: 34px; height: 34px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #000;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.why-item b { display: block; font-size: 0.98rem; color: #fff; }
.why-item small { color: rgba(255, 255, 255, 0.6); font-size: 0.82rem; }

.why-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.why-card-top {
  display: flex;
  justify-content: space-between;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
}
.why-stat { text-align: center; }
.why-stat b {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber-light);
}
.why-stat small { font-size: 0.78rem; color: rgba(255, 255, 255, 0.6); }
.why-card-mid { padding: 34px 26px; text-align: center; }
.why-card-mid .seal {
  width: 74px; height: 74px;
  margin: 0 auto 18px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--amber-light);
}
.why-card-mid p {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.seal-label {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--amber-light);
  font-weight: 700;
}
.why-card-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.why-card-bottom span {
  padding: 18px 8px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  border-right: 1px solid var(--line);
}
.why-card-bottom span:last-child { border-right: none; }
.why-card-bottom b { display: block; color: #fff; font-size: 0.84rem; }

/* ---------- States ---------- */
.states { background: var(--off-white); }
.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
}
.state-card {
  background: var(--white);
  border: 1px solid var(--border, #e7e4df);
  border-radius: 16px;
  padding: 26px 20px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.state-card:hover { transform: translateY(-4px); border-color: var(--amber); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08); }
.state-card.active { border-color: var(--amber); background: var(--black); color: #fff; }
.state-pin { font-size: 1.8rem; margin-bottom: 8px; }
.state-card h3 { font-size: 1.05rem; font-weight: 800; }
.state-card span { font-size: 0.78rem; color: var(--gray-dark); }
.state-card.active span { color: var(--amber-light); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--amber-dark), var(--amber));
  color: #000;
  padding: 64px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 { font-family: var(--display); font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; }
.cta-band p { font-weight: 500; margin-top: 8px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-ghost { border-color: rgba(0, 0, 0, 0.5); color: #000; }
.cta-band .btn-ghost:hover { background: #000; border-color: #000; color: #fff; }

/* ---------- Footer ---------- */
.footer { background: var(--black); color: rgba(255, 255, 255, 0.7); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  padding: 50px 20px 30px;
}
.footer-logo {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--amber-light);
}
.footer-brand p { font-size: 0.88rem; margin-top: 12px; max-width: 300px; }
.footer-col h4 { color: var(--amber-light); margin-bottom: 14px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col a { display: block; font-size: 0.9rem; padding: 5px 0; color: rgba(255, 255, 255, 0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--amber-light); }
.footer-bottom { border-top: 1px solid var(--line); text-align: center; font-size: 0.82rem; color: rgba(255, 255, 255, 0.4); padding: 16px 0; }

/* ---------- Page hero (inner) ---------- */
.page-hero {
  background: var(--black);
  color: #fff;
  padding: 80px 0 70px;
  text-align: center;
  border-bottom: 3px solid var(--amber);
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 12px; }
.page-hero h1 em { font-style: normal; color: var(--amber-light); }
.page-hero p { color: rgba(255, 255, 255, 0.75); max-width: 560px; margin: 0 auto; }

/* ---------- Service detail ---------- */
.detail-section { background: var(--off-white); }
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.detail-card {
  background: var(--white);
  border: 1px solid var(--border, #e7e4df);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.detail-card:hover { transform: translateY(-6px); box-shadow: 0 22px 56px rgba(0, 0, 0, 0.10); border-color: var(--amber); }
.detail-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--border, #e7e4df);
}
.detail-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.detail-card h2 { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.detail-card p { color: var(--gray-dark); font-size: 0.95rem; margin-bottom: 16px; }
.detail-card ul { list-style: none; }
.detail-card ul li { font-size: 0.9rem; padding: 6px 0 6px 22px; position: relative; font-weight: 500; }
.detail-card ul li::before { content: '\2713'; position: absolute; left: 0; color: var(--amber-dark); font-weight: 800; }

/* ---------- Contact ---------- */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 30px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--border, #e7e4df);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.contact-card:hover { transform: translateY(-3px); border-color: var(--amber); box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08); }
.contact-icon {
  width: 54px; height: 54px;
  flex-shrink: 0;
  background: var(--black);
  color: var(--amber-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.contact-card.wa .contact-icon { background: var(--wa); color: #fff; }
.contact-card h3 { font-size: 1.05rem; font-weight: 800; }
.contact-card p { color: var(--gray-dark); font-size: 0.9rem; }
.contact-action { color: var(--amber-dark); font-weight: 700; font-size: 0.9rem; }
.contact-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-badges span {
  background: var(--black);
  color: var(--amber-light);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
}
.contact-note {
  border: 1px solid var(--line);
  background: var(--black);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: 0.92rem;
  border-left: 3px solid var(--amber);
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border, #e7e4df);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.08);
}
.contact-form-card h2 { font-family: var(--display); font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.contact-form-card p { color: var(--gray-dark); font-size: 0.92rem; margin-bottom: 22px; }
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border, #e7e4df);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font);
  margin-bottom: 14px;
  outline: none;
  background: var(--off-white);
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus { border-color: var(--amber); }
.contact-form-card .btn { width: 100%; }

/* ---------- Floating actions ---------- */
.quick-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}
.qa {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
  color: #fff;
}
.qa svg { width: 28px; height: 28px; fill: currentColor; }
.qa-wa { background: var(--wa); }
.qa-call { background: linear-gradient(135deg, var(--amber), var(--amber-dark)); }
.qa:hover { transform: scale(1.1); }

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--black);
    flex-direction: column;
    padding: 90px 28px 28px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.5);
    z-index: 150;
  }
  .nav.open { transform: translateX(0); }
  .nav a { font-size: 1.05rem; color: #fff; }
  .nav .nav-cta { text-align: center; }

  .topbar-inner { justify-content: center; text-align: center; font-size: 0.72rem; }

  .hero { padding: 70px 0 64px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-badges { gap: 14px; }

  .section { padding: 60px 0; }
  .why-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; padding: 36px 20px 20px; gap: 24px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
}