:root {
  --bg: #010101;
  --panel: rgba(11, 8, 15, 0.92);
  --panel-strong: #17111f;
  --line: rgba(255, 137, 0, 0.28);
  --text: #f5f1fb;
  --muted: #beb4cc;
  --accent: #8f42ff;
  --accent-strong: #6920d7;
  --warm: #ff9a1a;
  --warm-strong: #ff6a00;
  --metal-light: #e7e4ef;
  --metal-mid: #9891a8;
  --metal-dark: #2b2633;
  --glow-purple: rgba(122, 49, 255, 0.32);
  --glow-orange: rgba(255, 106, 0, 0.28);
  --shadow: 0 28px 64px rgba(0, 0, 0, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  background: #000000;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 137, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 66, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 106, 0, 0.12), transparent 2px),
    radial-gradient(circle at 74% 18%, rgba(143, 66, 255, 0.1), transparent 2px),
    radial-gradient(circle at 62% 64%, rgba(255, 106, 0, 0.08), transparent 2px),
    radial-gradient(circle at 28% 74%, rgba(143, 66, 255, 0.08), transparent 2px);
  background-size: 220px 220px, 260px 260px, 320px 320px, 280px 280px;
  opacity: 0.65;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 48px;
}

.hero {
  padding: 96px 0 48px;
}

.nav {
  position: fixed;
  top: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  width: min(1180px, calc(100% - 32px));
  background:
    linear-gradient(180deg, rgba(20, 15, 27, 0.96), rgba(7, 7, 9, 0.92));
  border: 1px solid var(--line);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -1px 0 rgba(143, 66, 255, 0.08),
    0 14px 34px rgba(0, 0, 0, 0.45);
}

.brand-name,
.brand-tag,
.eyebrow,
.service-tier,
.card-label,
.client-meta,
.form-note {
  margin: 0;
}

.brand-name,
h1,
h2,
h3,
.pricing-table th {
  font-family: "Space Grotesk", sans-serif;
}

.brand-name {
  font-size: 1rem;
}

.brand-tag {
  font-size: 0.88rem;
  color: var(--muted);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-start;
  min-width: max-content;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-divider {
  color: rgba(255, 191, 95, 0.6);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #ffd8a0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #ffc15f 0%, #ff9820 22%, #ff6a00 100%);
  color: #101217;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow:
    inset 0 1px 0 rgba(255, 237, 210, 0.45),
    0 0 18px rgba(255, 106, 0, 0.18),
    0 14px 30px rgba(255, 106, 0, 0.22);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 237, 210, 0.45),
    0 0 26px rgba(255, 106, 0, 0.26),
    0 18px 34px rgba(255, 106, 0, 0.28);
}

.button-secondary,
.button-ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 18px;
  justify-items: center;
}

.hero-copy,
.hero-card,
.service-card,
.pricing-shell,
.results-panel,
.testimonial-card,
.process-grid article,
.contact-card {
  background:
    linear-gradient(180deg, rgba(24, 18, 31, 0.96), rgba(7, 7, 9, 0.94));
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: visible;
  width: min(100%, 760px);
  padding: 12px 0 0;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
}

.hero-social {
  margin: 18px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
}

.hero-logo-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 460px);
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.hero-logo-halo {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.9;
}

.hero-logo-halo-purple {
  width: 220px;
  height: 220px;
  background: rgba(143, 66, 255, 0.2);
  left: 24px;
  top: 24px;
}

.hero-logo-halo-orange {
  width: 180px;
  height: 180px;
  background: rgba(255, 106, 0, 0.2);
  right: 18px;
  bottom: 26px;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  height: auto;
  display: block;
  mix-blend-mode: screen;
  opacity: 0.98;
  filter:
    drop-shadow(0 0 22px rgba(255, 106, 0, 0.16))
    drop-shadow(0 0 30px rgba(143, 66, 255, 0.12))
    drop-shadow(0 18px 40px rgba(0, 0, 0, 0.42));
}

.hero-copy::after {
  content: none;
}

.eyebrow,
.service-tier,
.card-label {
  color: #ffbf5f;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.98rem;
  font-weight: 700;
}

#services .eyebrow,
#pricing .eyebrow,
#results .eyebrow,
.process-section .eyebrow,
#contact .eyebrow {
  color: #ffbf5f;
  font-size: 1.4rem;
  letter-spacing: 0.22em;
}

h1,
h2,
.hero-card h2,
.pricing-header h3,
.addon-card h3,
.client {
  color: var(--metal-light);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 28px rgba(0, 0, 0, 0.35);
}

h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.98;
  max-width: 12ch;
}

.service-card p,
.result-item p,
.testimonial-card p,
.process-grid p,
.cta-copy p,
.addon-card p,
.addon-card span {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-stats strong,
.price-row strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.hero-stats span,
.price-row span {
  color: var(--muted);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 106, 0, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(28, 20, 37, 0.98), rgba(8, 8, 10, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -1px 0 rgba(255, 106, 0, 0.08),
    0 24px 60px rgba(0, 0, 0, 0.56);
}

.hero-card h2 {
  margin: 18px 0 14px;
  font-size: 2rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 24px;
}

.card-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.shine {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 34%, rgba(255, 183, 93, 0.22) 50%, transparent 64%);
  transform: translateX(-120%);
  animation: sweep 7s linear infinite;
}

@keyframes sweep {
  to {
    transform: translateX(120%);
  }
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 16px 8px 0;
}

.trust-bar p {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 92px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading.compact {
  max-width: 620px;
}

h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.service-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.process-grid article,
.pricing-shell,
.results-panel,
.testimonial-card,
.contact-card {
  padding: 28px;
  border-radius: 28px;
}

.service-card.featured {
  background:
    linear-gradient(180deg, rgba(36, 31, 44, 0.94), rgba(12, 11, 15, 0.96));
}

.service-grid {
  grid-template-columns: 1fr;
}

.service-card {
  min-height: 280px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(36, 31, 44, 0.94), rgba(12, 11, 15, 0.96));
  border: 1px solid rgba(255, 166, 33, 0.28);
  position: relative;
}

.service-card h3,
.result-item h3,
.process-grid h3,
.pricing-header h3,
.addon-card h3 {
  margin: 16px 0 12px;
  font-size: 1.5rem;
}

.sale-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -12px;
  right: -10px;
  margin: 0;
  padding: 22px 26px;
  min-width: 170px;
  min-height: 170px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffc15f 0%, #ff9820 22%, #ff6a00 100%);
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 235, 200, 0.5);
  text-align: center;
  line-height: 1.1;
  transform: rotate(14deg);
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 237, 210, 0.45),
    0 0 34px rgba(255, 106, 0, 0.34),
    0 16px 34px rgba(255, 106, 0, 0.36);
}

@media (max-width: 640px) {
  .sale-badge {
    top: -6px;
    right: -4px;
    min-width: 118px;
    min-height: 118px;
    padding: 14px 16px;
    font-size: 1.08rem;
  }
}

.service-card,
.pricing-shell,
.results-panel,
.testimonial-card,
.process-grid article,
.contact-card {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -1px 0 rgba(255, 137, 0, 0.05),
    0 22px 52px rgba(0, 0, 0, 0.54);
}

.service-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.8;
}

.old-price {
  margin-left: 8px;
  color: #ffffff;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #ff7a00;
}

.sale-price {
  margin-left: 10px;
  color: #ff9a1a;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(255, 106, 0, 0.2);
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
}

.pricing-note {
  margin: 0;
  color: var(--muted);
}

.pricing-table-wrap {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 18px 20px;
  text-align: left;
  border: 1px solid rgba(255, 166, 33, 0.34);
}

.pricing-table th {
  background:
    linear-gradient(180deg, rgba(43, 38, 51, 0.95), rgba(23, 17, 31, 0.96));
  color: #fff0d4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pricing-table td {
  font-size: 1.08rem;
  background: rgba(6, 6, 8, 0.72);
}

.pricing-table tbody td:first-child {
  font-weight: 700;
}

.addon-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(36, 31, 44, 0.94), rgba(12, 11, 15, 0.96));
  border: 1px solid rgba(255, 166, 33, 0.28);
}

.addon-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.addon-card strong {
  color: #ffd28f;
  font-size: 1.1rem;
  text-shadow: 0 0 14px rgba(255, 106, 0, 0.18);
}

.results-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 20px;
}

.result-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.result-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.result-item span,
.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(143, 66, 255, 0.22), rgba(255, 106, 0, 0.12));
  color: #ffd391;
  font-weight: 700;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 16px rgba(255, 106, 0, 0.08);
}

.quote {
  font-size: 1.2rem;
  line-height: 1.8;
}

.client {
  margin: 28px 0 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  color: var(--text);
}

.client-meta {
  color: var(--muted);
}

.process-grid article {
  min-height: 100%;
}

.process-grid span {
  margin-bottom: 18px;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 24px;
  align-items: start;
}

.cta-copy {
  padding-right: 10px;
}

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

.contact-card label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  border: 1px solid rgba(255, 166, 33, 0.16);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(20, 20, 24, 0.96), rgba(9, 9, 11, 0.96));
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: #a89bb7;
}

.conditional-field.is-hidden {
  display: none;
}


.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  outline: 2px solid rgba(255, 166, 33, 0.4);
  outline-offset: 2px;
}

.form-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.social-link {
  color: #ffbf5f;
  text-decoration: none;
  font-weight: 700;
}

.social-link:hover,
.social-link:focus-visible {
  color: #ffd391;
}

@media (max-width: 980px) {
  .hero-content,
  .results-layout,
  .cta-section,
  .service-grid,
  .process-grid,
  .trust-bar,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .nav {
    justify-content: center;
  }

  .nav-actions {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-contact {
    width: 100%;
    justify-content: center;
    margin-right: 0;
  }

  .pricing-header {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    max-width: 100%;
  }

  .addon-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 100%);
  }

  .nav {
    width: min(100% - 20px, 100%);
  }

  .hero-copy,
  .hero-card,
  .service-card,
  .pricing-shell,
  .results-panel,
  .testimonial-card,
  .process-grid article,
  .contact-card {
    padding: 22px;
    border-radius: 24px;
  }

  .hero {
    padding-top: 14px;
  }

  .hero-logo-stage {
    padding: 20px 16px 14px;
    border-radius: 28px;
    width: min(100%, 400px);
  }

  .hero-logo-rim {
    inset: 10px;
    border-radius: 22px;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 14px;
    font-size: 0.96rem;
  }
}
