:root {
  --bg: #0b0f17;
  --bg-soft: #121826;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(244, 210, 129, 0.08);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f7fb;
  --muted: rgba(244, 247, 251, 0.72);
  --muted-strong: rgba(244, 247, 251, 0.9);
  --accent: #f4d281;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --radius-lg: 24px;
  --radius-xl: 32px;
  --container: 1140px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(88px + env(safe-area-inset-top, 0px));
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: clip;
  background: #0b0f17;
  color-scheme: dark;
}

body {
  min-height: 100vh;
  width: 100%;
  background:
    radial-gradient(circle at top left, rgba(244, 210, 129, 0.08), transparent 28rem),
    linear-gradient(180deg, #0b0f17 0%, #0d121b 52%, #0a0e16 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

.space-scene {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.space-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,0.95) 0 1px, transparent 1.8px),
    radial-gradient(circle at 76% 14%, rgba(255,255,255,0.72) 0 1px, transparent 1.6px),
    radial-gradient(circle at 88% 34%, rgba(244,210,129,0.72) 0 1px, transparent 1.8px),
    radial-gradient(circle at 18% 58%, rgba(255,255,255,0.68) 0 1px, transparent 1.7px),
    radial-gradient(circle at 64% 64%, rgba(255,255,255,0.78) 0 1px, transparent 1.6px),
    radial-gradient(circle at 28% 82%, rgba(244,210,129,0.6) 0 1px, transparent 1.8px);
}

.space-star,
.shooting-star {
  position: absolute;
  display: block;
}

.space-star {
  width: 2px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 10px rgba(255,255,255,0.18);
  animation: starPulse 7s ease-in-out infinite;
}

.space-star.star-1 { top: 11%; left: 22%; animation-delay: -1s; }
.space-star.star-2 { top: 24%; left: 78%; animation-delay: -3s; }
.space-star.star-3 { top: 39%; left: 14%; animation-delay: -5s; }
.space-star.star-4 { top: 56%; left: 86%; animation-delay: -2s; }
.space-star.star-5 { top: 74%; left: 38%; animation-delay: -4s; }
.space-star.star-6 { top: 86%; left: 69%; animation-delay: -6s; }

.shooting-star {
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.85), rgba(255,255,255,0));
  opacity: 0;
  transform: rotate(-18deg) translate3d(0, 0, 0);
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.14));
  animation: shootingStar 14s linear infinite;
}

.shooting-star.shooting-1 {
  top: 16%;
  left: 72%;
  animation-delay: 2s;
}

.shooting-star.shooting-2 {
  top: 62%;
  left: 18%;
  animation-delay: 8s;
}

@keyframes starPulse {
  0%, 100% { opacity: 0.18; transform: scale(0.9); }
  50% { opacity: 0.52; transform: scale(1.2); }
}

@keyframes shootingStar {
  0% { opacity: 0; transform: translate3d(0, 0, 0) rotate(-18deg); }
  8% { opacity: 0.9; }
  18% { opacity: 0; transform: translate3d(-180px, 100px, 0) rotate(-18deg); }
  100% { opacity: 0; transform: translate3d(-180px, 100px, 0) rotate(-18deg); }
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.08);
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: none;
  color: inherit;
  touch-action: manipulation;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 94px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(11, 15, 23, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner,
.footer-inner,
.desktop-nav,
.header-actions,
.hero-actions,
.footer-links {
  display: flex;
  align-items: center;
}

.header-inner {
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
  transform: translateY(2px);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1.03rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.84rem;
}

.desktop-nav,
.footer-links,
.header-actions,
.hero-actions {
  gap: 12px;
}

.desktop-nav {
  gap: 26px;
}

.desktop-nav a,
.footer-links a {
  color: var(--muted);
  font-weight: 650;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: #f6f8fb;
  color: #0b0f17;
  box-shadow: 0 14px 36px rgba(255, 255, 255, 0.08);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--line);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-inner {
  display: grid;
  gap: 10px;
  padding: 16px 0 18px;
}

.mobile-menu a {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.hero-grid,
.compact-grid,
.service-grid,
.process-grid,
.result-layout,
.result-grid,
.contact-box {
  display: grid;
}

.hero-grid > *,
.compact-grid > *,
.service-grid > *,
.process-grid > *,
.result-layout > *,
.result-grid > *,
.contact-box > *,
.cta-box > *,
.faq-list > * {
  min-width: 0;
}

.hero-grid {
  gap: 28px;
}

.eyebrow,
.card-label,
.service-number {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 850;
}

h1,
h2,
h3,
.result-card strong {
  letter-spacing: -0.04em;
  line-height: 1.04;
}

h1 {
  margin-top: 18px;
}

.hero-text,
.section-head p,
.contact-copy p,
.result-copy p,
.service-card p,
.process-card p,
.result-card p,
.faq-answer p,
.compact-card p {
  color: var(--muted);
}

.hero-text {
  margin-top: 22px;
  line-height: 1.84;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-benefits,
.check-list,
.service-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-benefits {
  margin-top: 28px;
}

.hero-benefits-label {
  display: none;
}

.hero-benefits li,
.check-list li,
.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
}

.hero-benefits li::before,
.check-list li::before,
.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--accent);
}

.hero-stack {
  display: grid;
  gap: 18px;
}

.surface-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.emphasis-card {
  background: linear-gradient(180deg, rgba(244, 210, 129, 0.09), rgba(255, 255, 255, 0.03));
}

.surface-card,
.compact-card {
  padding: 28px;
}

.hero-stack h2,
.section-head h2,
.result-copy h2,
.contact-copy h2 {
  margin-top: 16px;
}

.hero-copy h1,
.hero-stack h2,
.section-head h2,
.result-copy h2,
.contact-copy h2,
.cta-copy h2 {
  text-wrap: balance;
}

.hero-stack p,
.service-card p,
.process-card p,
.result-card p {
  margin-top: 14px;
}

.compact-grid,
.service-grid,
.process-grid,
.result-grid {
  gap: 18px;
}

.compact-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.compact-card strong {
  display: block;
  font-size: 1rem;
}

.compact-card p {
  margin-top: 8px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head.align-left {
  margin-left: 0;
  text-align: left;
}

.section-head p:last-child,
.contact-copy p,
.result-copy p {
  margin-top: 14px;
  line-height: 1.72;
}

.section-head p:last-child {
  font-size: 0.98rem;
}

.service-card h3,
.process-card h3,
.result-card strong {
  margin-top: 16px;
  font-size: 1.34rem;
}

.service-card ul {
  margin-top: 18px;
}

.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 24px 26px;
}

.service-cta-copy strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.service-cta-copy p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.72;
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 850;
}

.contact-box {
  gap: 24px;
}

.cta-section {
  padding-top: 10px;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.cta-copy h2 {
  margin-top: 14px;
}

.cta-copy p:last-child {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.72;
}

.cta-actions {
  display: grid;
  gap: 12px;
  min-width: 250px;
}

.contact-note {
  font-size: 0.94rem;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: var(--muted-strong);
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(244, 247, 251, 0.4);
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(244, 210, 129, 0.48);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(244, 210, 129, 0.08);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

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

.faq-answer p {
  padding: 0 24px 24px;
}

.site-footer {
  padding: 28px 0 calc(28px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header,
main,
.site-footer,
.floating-wa {
  position: relative;
  z-index: 1;
  overflow-x: clip;
}

.footer-inner {
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

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

.footer-social svg,
.floating-wa svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.floating-wa {
  position: fixed;
  right: calc(18px + env(safe-area-inset-right, 0px));
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f6f8fb;
  color: #0b0f17;
  font-weight: 850;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.desktop-only {
  display: inline-flex;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .space-star,
  .shooting-star {
    animation: none;
    opacity: 0.22;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
