:root {
  --night-sky: #0f1818;
  --pit-deep: #1c1c28;
  --card-surface: #2a2a38;
  --border-iron: #3d4555;
  --safety-orange: #e8762a;
  --steel-blue: #3d5a80;
  --profit-mint: #2ecc87;
  --marble-white: #f5f3ef;
  --rock-gray: #8a9199;
  --sand-tan: #c4a574;
  --amber-fuel: #e8a830;
  --dust: rgba(196, 165, 116, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "SF Pro Rounded", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  background: var(--night-sky);
  color: var(--marble-white);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(61, 90, 128, 0.35), transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(232, 118, 42, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 45% at 10% 90%, rgba(61, 90, 128, 0.3), transparent 50%),
    linear-gradient(155deg, var(--night-sky) 0%, var(--pit-deep) 45%, #1a1410 100%);
  pointer-events: none;
}

.dust-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
}

.conveyor {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 1;
  background: repeating-linear-gradient(
    90deg,
    var(--safety-orange) 0px,
    var(--safety-orange) 20px,
    var(--amber-fuel) 20px,
    var(--amber-fuel) 40px
  );
  animation: conveyorMove 2s linear infinite;
  opacity: 0.6;
}

.page {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 48px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--card-surface), rgba(42, 42, 56, 0.6));
  border: 1px solid var(--border-iron);
  border-left: 4px solid var(--safety-orange);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  animation: slideDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(232, 118, 42, 0.35));
}

.brand-text h1 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-text p {
  font-size: 0.75rem;
  color: var(--rock-gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-pill {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-pill a {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--rock-gray);
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.nav-pill a:hover {
  color: var(--marble-white);
  border-color: var(--border-iron);
}

.hero {
  text-align: center;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 20px;
  background: rgba(232, 118, 42, 0.15);
  border: 1px solid rgba(232, 118, 42, 0.4);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--safety-orange);
}

.hero-badge img {
  width: 18px;
  height: 18px;
}

.hero h2 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--marble-white), var(--sand-tan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--rock-gray);
  font-size: 1.05rem;
}

.hero-visual {
  margin-top: 32px;
  position: relative;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  position: absolute;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
}

.hero-visual .main-img {
  width: 120px;
  height: 120px;
  z-index: 2;
  filter: drop-shadow(0 8px 24px rgba(232, 118, 42, 0.3));
}

.hero-visual .orbit-img {
  width: 48px;
  height: 48px;
  opacity: 0.85;
}

.hero-visual .orbit-1 { top: 10px; left: 28%; animation-delay: -1s; }
.hero-visual .orbit-2 { bottom: 8px; right: 26%; animation-delay: -2s; }
.hero-visual .orbit-3 { top: 50%; right: 18%; transform: translateY(-50%); animation-delay: -0.5s; }

.page-section {
  margin-bottom: 40px;
  scroll-margin-top: 24px;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 3px solid var(--safety-orange);
}

.subsection-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--marble-white);
}

.section-lead {
  color: var(--rock-gray);
  margin-bottom: 24px;
  max-width: 640px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.help-tile {
  padding: 20px;
  background: var(--card-surface);
  border: 1px solid var(--border-iron);
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.help-tile:nth-child(1) { animation-delay: 0.2s; }
.help-tile:nth-child(2) { animation-delay: 0.3s; }
.help-tile:nth-child(3) { animation-delay: 0.4s; }

.help-tile:hover {
  border-color: var(--safety-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(232, 118, 42, 0.15);
}

.help-tile img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.help-tile h4 {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.help-tile p {
  font-size: 0.78rem;
  color: var(--rock-gray);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--card-surface);
  border: 1px solid var(--border-iron);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.open {
  border-color: rgba(232, 118, 42, 0.5);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--marble-white);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--safety-orange);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--safety-orange);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 320px;
}

.faq-answer p {
  padding: 0 20px 18px;
  color: var(--rock-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-card {
  background: linear-gradient(145deg, var(--card-surface), rgba(28, 28, 40, 0.95));
  border: 1px solid var(--border-iron);
  border-radius: 18px;
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
  scroll-margin-top: 24px;
  animation: fadeUp 0.7s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.contact-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 118, 42, 0.12), transparent 70%);
  pointer-events: none;
}

.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.contact-card p {
  color: var(--rock-gray);
  margin-bottom: 22px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(90deg, var(--safety-orange), var(--amber-fuel));
  color: var(--night-sky);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 24px rgba(232, 118, 42, 0.35);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(232, 118, 42, 0.45);
}

.contact-btn img {
  width: 20px;
  height: 20px;
}

.response-time {
  margin-top: 16px !important;
  margin-bottom: 0 !important;
  font-size: 0.78rem;
  color: var(--rock-gray);
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card {
  background: linear-gradient(145deg, var(--card-surface), rgba(28, 28, 40, 0.9));
  border: 1px solid var(--border-iron);
  border-radius: 16px;
  padding: 24px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--steel-blue), var(--profit-mint));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(61, 90, 128, 0.6);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
  opacity: 1;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 90, 128, 0.25);
  border-radius: 10px;
  border: 1px solid rgba(61, 90, 128, 0.4);
}

.card-icon img {
  width: 24px;
  height: 24px;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--marble-white);
}

.card p,
.card li {
  color: var(--rock-gray);
  font-size: 0.95rem;
}

.card ul {
  list-style: none;
  margin-top: 10px;
}

.card li {
  padding: 6px 0 6px 22px;
  position: relative;
}

.card li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--profit-mint);
  font-weight: 700;
}

.card-note {
  margin-top: 12px;
}

.card-list-spaced {
  margin-top: 14px !important;
}

.inline-link {
  color: var(--safety-orange);
  font-weight: 700;
  text-decoration: none;
}

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

.perm-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.perm-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(232, 118, 42, 0.1);
  border: 1px solid rgba(232, 118, 42, 0.3);
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sand-tan);
}

.perm-chip span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--safety-orange);
  box-shadow: 0 0 8px var(--safety-orange);
}

.site-footer {
  margin-top: 48px;
  padding: 24px;
  text-align: center;
  border-top: 1px solid var(--border-iron);
  color: var(--rock-gray);
  font-size: 0.82rem;
}

.updated {
  margin-top: 8px;
  font-size: 0.75rem;
  opacity: 0.7;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes conveyorMove {
  from { background-position: 0 0; }
  to { background-position: 40px 0; }
}

@media (max-width: 600px) {
  .site-header {
    flex-direction: column;
    text-align: center;
  }

  .nav-pill {
    width: 100%;
    justify-content: center;
  }
}
